-rw-r--r-- | kmicromail/settingsdialog.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/kmicromail/settingsdialog.h b/kmicromail/settingsdialog.h new file mode 100644 index 0000000..6b4d456 --- a/dev/null +++ b/kmicromail/settingsdialog.h | |||
@@ -0,0 +1,29 @@ | |||
1 | #ifndef SETTINGS_DIALOG_H | ||
2 | #define SETTINGS_DIALOG_H | ||
3 | |||
4 | #include <qwidget.h> | ||
5 | |||
6 | #include "settingsdialogui.h" | ||
7 | |||
8 | class SettingsDialog : public SettingsDialogUI { | ||
9 | |||
10 | Q_OBJECT | ||
11 | |||
12 | public: | ||
13 | SettingsDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); | ||
14 | ~SettingsDialog(); | ||
15 | |||
16 | private: | ||
17 | void readConfig(); | ||
18 | void writeConfig(); | ||
19 | |||
20 | |||
21 | private slots: | ||
22 | void accept(); | ||
23 | |||
24 | |||
25 | }; | ||
26 | |||
27 | |||
28 | |||
29 | #endif | ||