]> Shamusworld >> Repos - wozmaker/blob - src/settingsdialog.h
Flesh out the disk settings dialog.
[wozmaker] / src / settingsdialog.h
1 #ifndef __SETTINGSDIALOG_H__
2 #define __SETTINGSDIALOG_H__
3
4 #include <QtWidgets>
5
6 class SettingsDialog: public QDialog
7 {
8         Q_OBJECT
9
10         public:
11                 SettingsDialog(QWidget * parent = 0);
12                 ~SettingsDialog();
13
14         private:
15                 QDialogButtonBox * buttonBox;
16
17         public:
18                 QLabel label[12];
19                 QLineEdit line[9];
20                 QComboBox combo[3];
21                 QCheckBox check[10];
22 };
23
24 #endif  // __SETTINGSDIALOG_H__
25