Button label will now be updated to reflect downloaded remote
[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 public slots:
18     void updateRemoteName;
19
20 private slots:
21     void showAdvSettingsDlg();
22     void showSelectRemoteDlg();
23
24 private:
25     QHBoxLayout *layout;
26     QPushButton *advSettingsBtn;
27     QPushButton *selectRemoteBtn;
28 };
29
30 #endif
31