Fixed mainwidget.cpp
[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 QVBoxLayout;
9 class QPushButton;
10 class QLabel;
11
12 class SettingsDlg : public QDialog
13 {
14     Q_OBJECT
15 public:
16     SettingsDlg(QWidget *parent = 0);
17     ~SettingsDlg();
18
19 public slots:
20     void updateRemoteName();
21
22 private slots:
23     void showAdvSettingsDlg();
24     void showSelectRemoteDlg();
25     void showAboutDlg();
26
27 private:
28     QVBoxLayout *layout;
29     QHBoxLayout *btnLayout;
30     QHBoxLayout *remoteNameLayout;
31     QPushButton *advSettingsBtn;
32     QPushButton *selectRemoteBtn;
33     QPushButton *aboutBtn;
34     QLabel *remoteNameLabel;
35 };
36
37 #endif
38