aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/simplewidgets.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-10-01 16:23:02 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-10-02 07:35:23 -0700
commite0b60167f2366092f2e38436d443f0e2bcfe417d (patch)
tree17e3dd326d1b0062df3a9058c712b65c6ee9aed6 /qt-ui/simplewidgets.cpp
parent28800622f00b07724b3395eacc49f1ee87b42d08 (diff)
downloadsubsurface-e0b60167f2366092f2e38436d443f0e2bcfe417d.tar.gz
Add possibility to filter by more than one criteria at a time
This new version of the TagFilterSortModel actually accepts *any* new MultiFilterInterface. So, how to use it to create a new filter: Implement a class that inherits from MultiFilterInterface Implement the filterRow method TagFilterSortModel::instance->add( myClass ); and you are done. [Dirk Hohndel: removed some debug code and did whitespace cleanup] Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.cpp')
-rw-r--r--qt-ui/simplewidgets.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.cpp b/qt-ui/simplewidgets.cpp
index 05532f805..b31261518 100644
--- a/qt-ui/simplewidgets.cpp
+++ b/qt-ui/simplewidgets.cpp
@@ -464,3 +464,15 @@ TagFilter::TagFilter(QWidget *parent) : QWidget(parent)
connect(ui.filterTag, SIGNAL(textChanged(QString)), filter, SLOT(setFilterFixedString(QString)));
ui.tagView->setModel(filter);
}
+
+void TagFilter::showEvent(QShowEvent *event)
+{
+ TagFilterSortModel::instance()->addFilterModel(TagFilterModel::instance());
+ QWidget::showEvent(event);
+}
+
+void TagFilter::hideEvent(QHideEvent *event)
+{
+ TagFilterSortModel::instance()->removeFilterModel(TagFilterModel::instance());
+ QWidget::hideEvent(event);
+}