Added some methods for proxy model.
This commit is contained in:
parent
5c1915c98b
commit
b52e0e7027
@ -179,6 +179,10 @@ bool FeedsProxyModel::lessThan(const QModelIndex &left, const QModelIndex &right
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool FeedsProxyModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const {
|
||||||
|
return QSortFilterProxyModel::filterAcceptsRow(source_row, source_parent);
|
||||||
|
}
|
||||||
|
|
||||||
QModelIndexList FeedsProxyModel::mapListToSource(const QModelIndexList &indexes) {
|
QModelIndexList FeedsProxyModel::mapListToSource(const QModelIndexList &indexes) {
|
||||||
QModelIndexList source_indexes;
|
QModelIndexList source_indexes;
|
||||||
|
|
||||||
@ -188,3 +192,7 @@ QModelIndexList FeedsProxyModel::mapListToSource(const QModelIndexList &indexes)
|
|||||||
|
|
||||||
return source_indexes;
|
return source_indexes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void FeedsProxyModel::invalidateFilter() {
|
||||||
|
QSortFilterProxyModel::invalidateFilter();
|
||||||
|
}
|
||||||
|
@ -41,9 +41,13 @@ class FeedsProxyModel : public QSortFilterProxyModel {
|
|||||||
// Maps list of indexes.
|
// Maps list of indexes.
|
||||||
QModelIndexList mapListToSource(const QModelIndexList &indexes);
|
QModelIndexList mapListToSource(const QModelIndexList &indexes);
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void invalidateFilter();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Compares two rows of data.
|
// Compares two rows of data.
|
||||||
bool lessThan(const QModelIndex &left, const QModelIndex &right) const;
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const;
|
||||||
|
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Source model pointer.
|
// Source model pointer.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user