blob: eaf762681001e50a7d4a93f5c10923cb98087f49 (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
// Copyright (C) 2008 Lukas Lalinsky
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QClipboard>
#include <QSplitter>
#include <QStackedWidget>
#include <QUndoGroup>
#include <QAction>
#include "diagramview.h"
#include "diagramdocument.h"
class MainWindow: public QMainWindow
{
Q_OBJECT
public:
MainWindow();
~MainWindow();
QIcon loadIcon(const QString &name);
public slots:
void newModel(DiagramDocument *newModel = 0);
void updateMode(DiagramDocument::Mode mode);
void switchModeSelect();
void switchModeAddTable();
void switchModeAddRelation();
void setDiagramNotation(QAction *action);
void updateSelection();
void deleteSelectedItems();
void open();
bool save();
bool maybeSave();
bool saveAs();
void exportPNG();
void setViewScale(const QString &scale);
void about();
void loadFile(const QString &fileName);
void saveFile(const QString &fileName);
void addRecentFile(const QString &fileName);
void openRecentFile();
void updateRecentFileActions();
void updateWindowTitle();
void cut();
void copy();
void paste();
void updateClipboard(QClipboard::Mode mode);
void closeAll();
void showGrid(bool);
protected:
void setupUi();
void setupActions();
void setupToolBar();
void setupMenuBar();
void closeEvent(QCloseEvent *event);
void resizeEvent(QResizeEvent *event);
void moveEvent(QMoveEvent *event);
void showEvent(QShowEvent *event);
void saveWindowState();
void restoreWindowState();
private:
class MainWindowPrivate;
MainWindowPrivate *const d;
DiagramView *m_view;
DiagramDocument *m_model;
QAction *m_actionUndo, *m_actionRedo;
QAction *m_actionSwitchMode[3];
QAction *m_actionNew;
QAction *m_actionOpen;
QAction *m_actionSave;
QAction *m_actionSaveAs;
QAction *m_actionExportPNG;
QAction *m_actionClose;
QAction *m_actionQuit;
QAction *m_actionShowGrid;
QAction *m_actionCut;
QAction *m_actionCopy;
QAction *m_actionPaste;
QAction *m_actionDelete;
QAction *m_actionAbout;
QPoint m_lastPos;
QSize m_lastSize;
enum { MaxRecentFiles = 5 };
QAction *m_actionRecentFilesSeparator;
QAction *m_actionRecentFile[MaxRecentFiles];
};
#endif
|