Implemented the LocationFilter widget.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Tomaz Canabrava 2014-10-31 17:45:39 -02:00 committed by Dirk Hohndel
parent 14bc7dfeeb
commit d87a1f6784
2 changed files with 35 additions and 0 deletions

View file

@ -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: