00001 #ifndef SETTINGS_DIALOG_H
00002 #define SETTINGS_DIALOG_H
00003
00004 #include <qwidget.h>
00005
00006 #include "settingsdialogui.h"
00007
00008 class SettingsDialog : public SettingsDialogUI {
00009
00010 Q_OBJECT
00011
00012 public:
00013 SettingsDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00014 ~SettingsDialog();
00015
00016 private:
00017 void readConfig();
00018 void writeConfig();
00019
00020
00021 private slots:
00022 void accept();
00023
00024
00025 };
00026
00027
00028
00029 #endif