Bugfixes
[irwi] / src / settingsdlg.h
1 #ifndef SETTINGSDLG_H
2 #define SETTINGSDLG_H
3
4 #include <QDialog>
5 #include <QString>
6
7 class QHBoxLayout;
8 class QListWidget;
9
10 class SettingsDlg : public QDialog
11 {
12     Q_OBJECT
13 public:
14     SettingsDlg(QWidget *parent = 0);
15     ~SettingsDlg();
16
17     QString& getRemoteName();
18
19 private:
20     QHBoxLayout *layout;
21     QString remoteName;
22     QListWidget *alphabetList;
23 };
24
25 #endif
26