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.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 702cc18..d2b385a 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -12,6 +12,7 @@
#include <QMainWindow>
+class QAction;
class QMenu;
class QMdiArea;
@@ -25,12 +26,23 @@ class MainWindow : public QMainWindow
public:
MainWindow();
+private slots:
+ void slot_new();
+ void slot_open();
+
private:
+ void init_actions();
void init_menu();
+
+ void add_child();
QMdiArea *mainwindow_mdiarea;
QMenu *mainwindow_filemenu;
QMenu *mainwindow_editmenu;
+
+ QAction *action_new;
+ QAction *action_open;
+ QAction *action_quit;
};
}