blob: 0f8b37285ceef93634ceb530e575865b7ddc4079 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef COLLECTIONWIDGETPROXY_H
#define COLLECTIONWIDGETPROXY_H
#include <QSortFilterProxyModel>
class CollectionWidgetProxy : public QSortFilterProxyModel {
Q_OBJECT
public:
CollectionWidgetProxy(QObject *parent = nullptr);
protected:
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
};
#endif // COLLECTIONWIDGETPROXY_H
|