X-Git-Url: http://git.maemo.org/git/?p=impuzzle;a=blobdiff_plain;f=src%2Fsettingsdialog.h;h=757a489b70ccda4786e38b73ef9fa8398b97de32;hp=53feb6778e2f6934c225626c9314bdf614fc5066;hb=fe6a84bdca195d7eae5f21447f4d9aad5226db49;hpb=fdcfe62bec5ff683a2e728b4b49c93c807edc316 diff --git a/src/settingsdialog.h b/src/settingsdialog.h index 53feb67..757a489 100644 --- a/src/settingsdialog.h +++ b/src/settingsdialog.h @@ -7,6 +7,8 @@ class QVBoxLayout; class QGroupBox; class QRadioButton; class QHBoxLayout; +class QComboBox; +class QLabel; class SettingsDialog : public QDialog { @@ -15,8 +17,12 @@ class SettingsDialog : public QDialog public: SettingsDialog(QWidget *parent = 0); +public slots: + int exec(); + private slots: void difficultySelectionChanged(bool value); + void imageSelectionChanged(const QString &txt); private: QVBoxLayout *mainLayout_; @@ -26,5 +32,9 @@ private: QRadioButton *hardButton_; QGroupBox *buttonGroup_; + + QComboBox *imageCombo_; + + QLabel *selectedImageLabel_; }; #endif