diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-10-31 15:22:21 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-31 13:52:51 -0700 |
commit | 19ac1dfa0983b98d9cc2680e9553020d1c936bb9 (patch) | |
tree | 528c3758a290ff49e9b87981373aad0ca327d34a /qt-ui/simplewidgets.h | |
parent | 063e6d9fbf221cac4d0f5be314c4f7c005e805b1 (diff) | |
download | subsurface-19ac1dfa0983b98d9cc2680e9553020d1c936bb9.tar.gz |
Added a 'MultiFilter' widget.
The multifilter widget is a container with all the filter
widgets inside of it. currently there's just one.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.h')
-rw-r--r-- | qt-ui/simplewidgets.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index d3e27c06c..48a57493b 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -140,6 +140,12 @@ private: Ui::TagFilter ui; }; +class MultiFilter : public QScrollArea { + Q_OBJECT +public: + MultiFilter(QWidget *parent); +}; + bool isGnome3Session(); QImage grayImage(const QImage &coloredImg); |