-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication_window.h
189 lines (158 loc) · 5.52 KB
/
application_window.h
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/**
* Copyright 2022 naracanto <https://naracanto.github.io>.
*
* This file is part of QTabelo <https://github.com/beletalabs/qtabelo>.
*
* QTabelo is an open source table editor written in C++ using the
* Qt framework.
*
* QTabelo 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 3 of the License,
* or (at your option) any later version.
*
* QTabelo 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 QTabelo. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef APPLICATION_WINDOW_H
#define APPLICATION_WINDOW_H
#include <QMainWindow>
class QAction;
class QActionGroup;
class QCloseEvent;
class QMdiSubWindow;
class QStatusBar;
class QToolBar;
class QUrl;
class DocumentManager;
class DocumentWidget;
class RecentDocumentList;
class ApplicationWindow : public QMainWindow
{
Q_OBJECT
public:
ApplicationWindow(QWidget *parent = nullptr);
~ApplicationWindow();
public slots:
bool openDocument(const QUrl &url);
signals:
void documentCountChanged(const int count);
protected:
void closeEvent(QCloseEvent *event) override;
private:
void setupActions();
void updateActionsToolButtonStyle(const Qt::ToolButtonStyle style);
void updateActionsToolButtonSize(const int pixel);
void updateActionFullScreen();
void enableActions(const bool enabled);
void enableActionCloseOther(const bool enabled);
void enableUrlActions(const bool enabled);
void enableFileActions(const bool enabled);
void enableFilenameActions(const bool enabled);
void loadSettings();
void saveSettings();
void updateWindowModified();
void updateWindowTitle();
DocumentWidget *createDocument();
bool loadDocument(const QUrl &url);
bool saveDocument(DocumentWidget *document, const QUrl &altUrl);
private slots:
void updateActionsDocumentTabPosition(const QTabWidget::TabPosition position);
void updateActionsSheetTabBarPosition(const QTabWidget::TabPosition position);
void updateMenuOpenRecent();
void documentCreated();
void documentActivated(QMdiSubWindow *subWindow);
void documentTabVisibleChanged(const bool visible);
void documentTabPositionChanged(const QTabWidget::TabPosition position);
void documentTabAutoHideChanged(const bool autoHide);
void documentModifiedChanged(const bool modified);
void documentUrlChanged(const QUrl &url);
void documentClosed();
private:
DocumentWidget *extractDocument(const QMdiSubWindow *subWindow) const;
DocumentWidget *activeDocument() const;
bool hasActiveDocument() const;
bool hasActiveDocumentUrl() const;
bool hasActiveDocumentUrlFile() const;
bool hasActiveDocumentUrlFilename() const;
private slots:
void slotAbout();
void slotColophon();
void slotPreferences();
void slotNew();
void slotOpen();
void slotSave();
void slotSaveAs();
void slotSaveCopyAs();
void slotSaveAll();
void slotCopyPath();
void slotCopyFilename();
void slotRenameFilename();
void slotProperties();
void slotCloseOther();
void slotCloseAll();
void slotToolButtonStyle(const QAction *action);
void slotToolButtonSize(const QAction *action);
void slotDocumentTabPosition(const QAction *action);
void slotShowSheetTabBar(const bool checked);
void slotSheetTabBarPosition(const QAction *action);
void slotSheetTabBarAutoHide(const bool checked);
void slotFullScreen(const bool checked);
private:
DocumentManager *m_documentManager;
RecentDocumentList *m_recentDocuments;
QAction *m_actionAbout;
QAction *m_actionColophon;
QAction *m_actionPreferences;
QAction *m_actionQuit;
QToolBar *m_toolbarApplication;
QAction *m_actionNew;
QAction *m_actionOpen;
QAction *m_actionOpenRecentClear;
QAction *m_actionSave;
QAction *m_actionSaveAs;
QAction *m_actionSaveCopyAs;
QAction *m_actionSaveAll;
QAction *m_actionCopyPath;
QAction *m_actionCopyFilename;
QAction *m_actionRenameFilename;
QAction *m_actionProperties;
QAction *m_actionClose;
QAction *m_actionCloseOther;
QAction *m_actionCloseAll;
QMenu *m_menuOpenRecent;
QToolBar *m_toolbarDocument;
QToolBar *m_toolbarEdit;
QToolBar *m_toolbarView;
QToolBar *m_toolbarFormat;
QToolBar *m_toolbarTools;
QAction *m_actionShowPath;
QAction *m_actionShowMenubar;
QAction *m_actionShowToolbarApplication;
QAction *m_actionShowToolbarDocument;
QAction *m_actionShowToolbarEdit;
QAction *m_actionShowToolbarView;
QAction *m_actionShowToolbarFormat;
QAction *m_actionShowToolbarTools;
QAction *m_actionShowToolbarSettings;
QAction *m_actionShowToolbarHelp;
QActionGroup *m_actionsToolButtonStyle;
QActionGroup *m_actionsToolButtonSize;
QAction *m_actionShowDocumentTabs;
QActionGroup *m_actionsDocumentTabPosition;
QAction *m_actionDocumentTabAutoHide;
QAction *m_actionShowSheetTabBar;
QActionGroup *m_actionsSheetTabBarPosition;
QAction *m_actionSheetTabBarAutoHide;
QAction *m_actionShowStatusbar;
QAction *m_actionFullScreen;
QMenu *m_menuSheetTabBarPosition;
QToolBar *m_toolbarSettings;
QToolBar *m_toolbarHelp;
};
#endif // APPLICATION_WINDOW_H