diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-10-31 17:45:39 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-31 14:58:56 -0700 |
commit | d87a1f6784c2d04ecc38b6864c6b6493ee0c121d (patch) | |
tree | 12c52ec2e11be009b85026c605c36b4d4291b504 /qt-ui/simplewidgets.h | |
parent | 14bc7dfeeb7c15fc5bbaa97726cc0d232cc596fc (diff) | |
download | subsurface-d87a1f6784c2d04ecc38b6864c6b6493ee0c121d.tar.gz |
Implemented the LocationFilter widget.
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 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index 02467e201..89cf28716 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -150,6 +150,17 @@ private: Ui::FilterWidget ui; }; +class LocationFilter : public QWidget { + Q_OBJECT +public: + LocationFilter(QWidget *parent = 0); + virtual void showEvent(QShowEvent *); + virtual void hideEvent(QHideEvent *); +private: + Ui::FilterWidget ui; +}; + + class MultiFilter : public QScrollArea { Q_OBJECT public: |