diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-09-17 13:51:08 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-09-17 15:27:21 -0700 |
commit | a59ac2199ba12e278be176dfe03378e954715ec1 (patch) | |
tree | 1302b0c0b0da555cf2bdb0eee70935e240a23fad /qt-ui/simplewidgets.h | |
parent | d4bdb8c73d82f41551348b2d3bda14ed0c3310c5 (diff) | |
download | subsurface-a59ac2199ba12e278be176dfe03378e954715ec1.tar.gz |
Add skeleton to the Tag Filtering.
Just the ui file and a empty class to start playing with it.
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 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index b41189fe5..1673055c0 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -12,6 +12,7 @@ class QAbstractButton; #include "ui_shifttimes.h" #include "ui_shiftimagetimes.h" #include "ui_divecomponentselection.h" +#include "ui_tagfilter.h" #include "exif.h" class MinMaxAvgWidget : public QWidget { @@ -126,6 +127,12 @@ private: struct dive_components *what; }; +class TagFilter : public QWidget { + Q_OBJECT +public: + TagFilter(QWidget *parent); +}; + bool isGnome3Session(); QImage grayImage(const QImage& coloredImg); |