Added reset settings button and some functionality to advanced settings.
[irwi] / src / advsettingsdlg.h
1 #ifndef _ADVSETTINGSDLG_H_
2 #define _ADVSETTINGSDLG_H_
3
4 #include <QDialog>
5
6 class QGridLayout;
7 class QSettings;
8 class QPushButton;
9
10 class AdvSettingsDlg : public QDialog
11 {
12 public:
13     AdvSettingsDlg(QDialog *parent = 0);
14     ~AdvSettingsDlg();
15
16 private:
17     AdvSettingsDlg(const AdvSettingsDlg &);
18
19 private slots:
20     void resetToDefaults();
21
22 private:
23     QGridLayout *layout;
24     QSettings *settings;
25     QPushButton *resetBtn;
26 };
27
28 #endif // _ADVSETTINGSDLG_H_
29