Subclass QSortFilterProxyModel to hide the group column in EntryView.

QTreeView::hideColumn() does not work well with keyboard search.
This commit is contained in:
Felix Geyer
2012-07-22 21:56:31 +02:00
parent edb644baef
commit 9ad4cc8783
8 changed files with 138 additions and 11 deletions

View File

@@ -25,7 +25,7 @@
class Entry;
class EntryModel;
class Group;
class QSortFilterProxyModel;
class SortFilterHideProxyModel;
class EntryView : public QTreeView
{
@@ -55,7 +55,7 @@ private Q_SLOTS:
private:
EntryModel* const m_model;
QSortFilterProxyModel* const m_sortModel;
SortFilterHideProxyModel* const m_sortModel;
bool m_inEntryListMode;
};