blob: 0563aa94cdcee05109ad82df3cc1f5afb0e66d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
mainwindow.h
This file is part of the Project::OSiRiON zone editor
and is distributed under the terms and conditions of
the GNU General Public License version 2
*/
#ifndef __INCLUDED_EDITOR_MAINWINDOW__
#define __INCLUDED_EDITOR_MAINWINDOW__
#include <QtGui>
#include <QMainWindow>
class QAction;
class QMenu;
class QMdiArea;
namespace editor
{
class EditorWindow;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow();
private slots:
void slot_new();
void slot_open();
void slot_save();
void slot_save_as();
void slot_add();
void slot_delete();
void slot_duplicate();
void updateMenus();
private:
void initActions();
void initMenus();
/// add a new child window
EditorWindow *add_child();
/// find an already open file
QMdiSubWindow *find_child(const QString &filename);
/// return the active child window, NULL if none
EditorWindow *active_child();
QMdiArea *mainwindow_mdiarea;
QMenu *mainwindow_filemenu;
QMenu *mainwindow_editmenu;
QAction *action_new;
QAction *action_open;
QAction *action_save;
QAction *action_save_as;
QAction *action_quit;
QAction *action_add;
QAction *action_delete;
QAction *action_duplicate;
};
}
#endif // __INCLUDED_EDITOR_MAINWINDOW__
|