summaryrefslogtreecommitdiffstats
path: root/storemodel.h
blob: c489c0e8371a04d6382ce8cb5c99eaaa91eb8984 (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_