diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-06-03 05:58:50 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-06-03 06:02:05 +0900 |
commit | 77c4b8ef87fcbf0fd6be7cdd7581035bb96f0b58 (patch) | |
tree | 4afb1d460070341c68c68f5eeb239f4abf5627ec /qt-ui/preferences.h | |
parent | de8395e09e0e6c6ada06dbd3d5e6a053fd821a71 (diff) | |
download | subsurface-77c4b8ef87fcbf0fd6be7cdd7581035bb96f0b58.tar.gz |
Implement Apply / Close without Saving for preferences
This hooks up the buttons correctly
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/preferences.h')
-rw-r--r-- | qt-ui/preferences.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/qt-ui/preferences.h b/qt-ui/preferences.h index 34fc26b07..f50c05c1b 100644 --- a/qt-ui/preferences.h +++ b/qt-ui/preferences.h @@ -6,23 +6,25 @@ #include "../pref.h" namespace Ui{ - class PreferencesDialog; +class PreferencesDialog; } +class QAbstractButton; class PreferencesDialog :public QDialog{ Q_OBJECT public: static PreferencesDialog* instance(); - + void showEvent(QShowEvent* ); signals: void settingsChanged(); - public slots: + void buttonClicked(QAbstractButton* button); void syncSettings(); void resetSettings(); private: explicit PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0); + void reloadPrefs(); Ui::PreferencesDialog* ui; struct preferences oldPrefs; }; |