diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-06-17 12:59:37 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-06-17 12:59:37 -0700 |
commit | 14ccbbf6e87b69267426ae69c402c1bae70ec5d5 (patch) | |
tree | c9ec8ca478b6ac45c30c3d0263bfe9b1adfa4467 /qt-ui/simplewidgets.h | |
parent | 1ee894dcedfbe071d204a2d8a0276f61d7db9c2e (diff) | |
parent | b00553919b995a0a7e81efbeacfa481eec9b857a (diff) | |
download | subsurface-14ccbbf6e87b69267426ae69c402c1bae70ec5d5.tar.gz |
Merge branch 'renumberDialog' of github.com:tcanabrava/subsurface
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/simplewidgets.h')
-rw-r--r-- | qt-ui/simplewidgets.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/qt-ui/simplewidgets.h b/qt-ui/simplewidgets.h index b05dd8f0e..ffd415767 100644 --- a/qt-ui/simplewidgets.h +++ b/qt-ui/simplewidgets.h @@ -2,7 +2,10 @@ #define SIMPLEWIDGETS_H class MinMaxAvgWidgetPrivate; +class QAbstractButton; + #include <QWidget> +#include <QDialog> class MinMaxAvgWidget : public QWidget{ Q_OBJECT @@ -25,4 +28,19 @@ private: MinMaxAvgWidgetPrivate *d; }; -#endif
\ No newline at end of file +namespace Ui{ + class RenumberDialog; +}; + +class RenumberDialog : public QDialog { + Q_OBJECT +public: + static RenumberDialog *instance(); +private slots: + void buttonClicked(QAbstractButton *button); +private: + explicit RenumberDialog(); + Ui::RenumberDialog *ui; +}; + +#endif |