summaryrefslogtreecommitdiffstats
path: root/storemodel.h
blob: 7b3bc0a3ca42cc871c0b943415080bcb435dec8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef STOREMODEL_H
#define STOREMODEL_H

#include <QSortFilterProxyModel>
#include <QFileSystemModel>
#include <QRegExp>

class StoreModel : public QSortFilterProxyModel {
  Q_OBJECT
 private:
  QFileSystemModel *fs;
  QString store;

 public:
  StoreModel();

  bool filterAcceptsRow(int, const QModelIndex &) const;
  bool ShowThis(const QModelIndex) const;
  void setModelAndStore(QFileSystemModel *sourceModel, QString passStore);
  QVariant data(const QModelIndex &index, int role) const;
};

#endif  // STOREMODEL_H_