Implement the Buddy Filter interface.

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 16:49:52 -02:00 committed by Dirk Hohndel
parent b1d76ed4d7
commit 358611d029
4 changed files with 38 additions and 1 deletions

View file

@ -140,6 +140,16 @@ private:
Ui::FilterWidget ui;
};
class BuddyFilter : public QWidget {
Q_OBJECT
public:
BuddyFilter(QWidget *parent = 0);
virtual void showEvent(QShowEvent *);
virtual void hideEvent(QHideEvent *);
private:
Ui::FilterWidget ui;
};
class MultiFilter : public QScrollArea {
Q_OBJECT
public: