summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-07-12 13:45:53 +0000
committerStijn Buys <ingar@osirion.org>2013-07-12 13:45:53 +0000
commit1ee4d49f99e7925b9ac19aadc944007bd4320389 (patch)
tree5491f9d071edb09f1991e942511392fff0faa53d /src/mainwindow.h
parenta613c9476b4a6f2aa4c9eaf3a2f0dd131594f373 (diff)
Removes sidebar buttons,
adds current filename to the window title, adds a Move -> Guess option to the menu bar, adds messageboxes to the Step, Guess and Validate actions.
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 2467f25..13283fe 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -22,6 +22,8 @@ private:
void initMenus();
+ void updateTitle();
+
SolverWindow *mainwindow_solverwindow;
QMenu *mainwindow_gamemenu;
QMenu *mainwindow_movemenu;
@@ -37,8 +39,18 @@ private:
// Move menu actions
QAction *action_hint;
QAction *action_step;
+ QAction *action_guess;
QAction *action_solve;
QAction *action_search;
+ QAction *action_validate;
+
+private slots:
+
+ void doSave();
+ void doSaveAs();
+ void doLoad();
+
+ void doValidate();
};