Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 82a14db..48e8927 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -31,12 +31,14 @@ public:
private slots:
void slot_new();
void slot_open();
+ void slot_save();
private:
void init_actions();
void init_menu();
- EditorWindow *addEditorWindow();
+ EditorWindow *add_child();
+ EditorWindow *active_child();
QMdiArea *mainwindow_mdiarea;
QMenu *mainwindow_filemenu;
@@ -44,6 +46,7 @@ private:
QAction *action_new;
QAction *action_open;
+ QAction *action_save;
QAction *action_quit;
};