Piece place numbers, temporary random image fix and changelog update
[impuzzle] / src / settingsdialog.h
index 53feb67..757a489 100644 (file)
@@ -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