53feb6778e2f6934c225626c9314bdf614fc5066
[impuzzle] / src / settingsdialog.h
1 #ifndef SETTINGSDIALOG_H
2 #define SETTINGSDIALOG_H
3
4 #include <QDialog>
5
6 class QVBoxLayout;
7 class QGroupBox;
8 class QRadioButton;
9 class QHBoxLayout;
10
11 class SettingsDialog : public QDialog
12 {
13     Q_OBJECT
14
15 public:
16     SettingsDialog(QWidget *parent = 0);
17
18 private slots:
19     void difficultySelectionChanged(bool value);
20
21 private:
22     QVBoxLayout *mainLayout_;
23     QHBoxLayout *buttonLayout_;
24
25     QRadioButton *easyButton_;
26     QRadioButton *hardButton_;
27
28     QGroupBox *buttonGroup_;
29 };
30 #endif