Implementation of settingsdlg
[irwi] / src / settingsdlg.h
1 #ifndef SETTINGSDLG_H
2 #define SETTINGSDLG_H
3
4 #include <QDialog>
5
6 class QWidget;
7 class QHBoxLayout;
8 class QPushButton;
9
10 class SettingsDlg : public QDialog
11 {
12     Q_OBJECT
13 public:
14     SettingsDlg(QWidget *parent = 0);
15     ~SettingsDlg();
16
17 private slots:
18     void showAdvSettingsDlg();
19     void showSelectRemoteDlg();
20
21 private:
22     QHBoxLayout *layout;
23     QPushButton *advSettingsBtn;
24     QPushButton *selectRemoteBtn;
25 };
26
27 #endif
28