]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/mainframe.h
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / radiant / mainframe.h
1 /*
2    Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 #if !defined( INCLUDED_MAINFRAME_H )
23 #define INCLUDED_MAINFRAME_H
24
25 #include <uilib/uilib.h>
26 #include "gtkutil/window.h"
27 #include "gtkutil/idledraw.h"
28 #include "gtkutil/widget.h"
29 #include "string/string.h"
30
31 #include "qerplugin.h"
32
33 class IPlugIn;
34 class IToolbarButton;
35
36 class XYWnd;
37 class CamWnd;
38 class ZWnd;
39
40
41 const int c_command_status = 0;
42 const int c_position_status = 1;
43 const int c_brushcount_status = 2;
44 const int c_texture_status = 3;
45 const int c_grid_status = 4;
46 const int c_count_status = 5;
47
48 class MainFrame
49 {
50 public:
51 enum EViewStyle
52 {
53         eRegular = 0,
54         eFloating = 1,
55         eSplit = 2,
56         eRegularLeft = 3,
57         eSingle = 4,
58 };
59
60 MainFrame();
61 ~MainFrame();
62
63 ui::Window m_window{ui::null};
64
65 CopiedString m_command_status;
66 CopiedString m_position_status;
67 CopiedString m_brushcount_status;
68 CopiedString m_texture_status;
69 CopiedString m_grid_status;
70 private:
71
72 void Create();
73 void SaveWindowInfo();
74 void Shutdown();
75
76 public:
77 ui::Widget m_vSplit{ui::null};
78 ui::Widget m_hSplit{ui::null};
79 ui::Widget m_vSplit2{ui::null};
80
81 private:
82
83 XYWnd* m_pXYWnd;
84 XYWnd* m_pYZWnd;
85 XYWnd* m_pXZWnd;
86 CamWnd* m_pCamWnd;
87 ZWnd* m_pZWnd;
88 XYWnd* m_pActiveXY;
89
90 bool m_bSleeping;
91
92 void *m_pStatusLabel[c_count_status];
93
94
95 EViewStyle m_nCurrentStyle;
96 WindowPositionTracker m_position_tracker;
97
98 IdleDraw m_idleRedrawStatusText;
99
100 public:
101
102 bool IsSleeping(){
103         return m_bSleeping;
104 }
105 void OnSleep();
106
107 void SetStatusText( CopiedString& status_text, const char* pText );
108 void UpdateStatusText();
109 void RedrawStatusText();
110 typedef MemberCaller<MainFrame, void(), &MainFrame::RedrawStatusText> RedrawStatusTextCaller;
111
112 void SetGridStatus();
113 typedef MemberCaller<MainFrame, void(), &MainFrame::SetGridStatus> SetGridStatusCaller;
114
115 void SetActiveXY( XYWnd* p );
116 XYWnd* ActiveXY(){
117         return m_pActiveXY;
118 };
119 XYWnd* GetXYWnd(){
120         return m_pXYWnd;
121 }
122 XYWnd* GetXZWnd(){
123         return m_pXZWnd;
124 }
125 XYWnd* GetYZWnd(){
126         return m_pYZWnd;
127 }
128 ZWnd* GetZWnd(){
129         return m_pZWnd;
130 }
131 CamWnd* GetCamWnd(){
132         return m_pCamWnd;
133 }
134
135 void ReleaseContexts();
136 void CreateContexts();
137
138 EViewStyle CurrentStyle(){
139         return m_nCurrentStyle;
140 };
141 bool FloatingGroupDialog(){
142         return CurrentStyle() == eFloating || CurrentStyle() == eSplit;
143 };
144 };
145
146 extern MainFrame* g_pParentWnd;
147
148 ui::Window MainFrame_getWindow();
149 /*
150 enum EMouseButtonMode
151 {
152         ETwoButton = 0,
153         EThreeButton = 1,
154 };
155
156 struct glwindow_globals_t
157 {
158         int m_nMouseType;
159
160         glwindow_globals_t() :
161                 m_nMouseType( EThreeButton ){
162         }
163 };
164 */
165 void GLWindow_Construct();
166 void GLWindow_Destroy();
167
168 //extern glwindow_globals_t g_glwindow_globals;
169 template<typename Value>
170 class LatchedValue;
171 extern LatchedValue<bool> g_Layout_enableDetachableMenus;
172
173 void deleteSelection();
174
175
176 void Sys_Status( const char* status );
177
178
179 void ScreenUpdates_Disable( const char* message, const char* title );
180 void ScreenUpdates_Enable();
181 bool ScreenUpdates_Enabled();
182 void ScreenUpdates_process();
183
184 class ScopeDisableScreenUpdates
185 {
186 public:
187 ScopeDisableScreenUpdates( const char* message, const char* title ){
188         ScreenUpdates_Disable( message, title );
189 }
190 ~ScopeDisableScreenUpdates(){
191         ScreenUpdates_Enable();
192 }
193 };
194
195
196 void EnginePath_Realise();
197 void EnginePath_Unrealise();
198
199 class ModuleObserver;
200
201 void Radiant_attachEnginePathObserver( ModuleObserver& observer );
202 void Radiant_detachEnginePathObserver( ModuleObserver& observer );
203
204 void Radiant_attachGameToolsPathObserver( ModuleObserver& observer );
205 void Radiant_detachGameToolsPathObserver( ModuleObserver& observer );
206
207 extern CopiedString g_strEnginePath;
208 void EnginePath_verify();
209 const char* EnginePath_get();
210 const char* QERApp_GetGamePath();
211
212 extern bool g_disableEnginePath;
213 extern bool g_disableHomePath;
214
215 const int g_pakPathCount = 5;
216 extern CopiedString g_strPakPath[g_pakPathCount];
217 const char* PakPath_get( int num );
218
219 extern CopiedString g_strAppFilePath;
220 extern CopiedString g_strAppPath;
221 extern CopiedString g_strLibPath;
222 extern CopiedString g_strDataPath;
223
224 const char* AppFilePath_get();
225 const char* AppPath_get();
226 const char *LibPath_get();
227 const char *DataPath_get();
228
229 extern CopiedString g_strSettingsPath;
230 const char* SettingsPath_get();
231
232 const char* LocalRcPath_get( void );
233
234 const char* const g_pluginsDir = "plugins/"; ///< name of plugins directory, always sub-directory of toolspath
235 const char* const g_modulesDir = "modules/"; ///< name of modules directory, always sub-directory of toolspath
236
237 extern CopiedString g_strGameToolsPath;
238 const char* GameToolsPath_get();
239
240 void Radiant_Initialise();
241 void Radiant_Shutdown();
242
243 void SaveMapAs();
244
245
246 void XY_UpdateAllWindows();
247 void UpdateAllWindows();
248
249
250 void ClipperChangeNotify();
251 void ClipperMode();
252
253 void DefaultMode();
254
255 const char* basegame_get();
256 const char* gamename_get();
257 void gamename_set( const char* gamename );
258 void Radiant_attachGameNameObserver( ModuleObserver& observer );
259 void Radiant_detachGameNameObserver( ModuleObserver& observer );
260 const char* gamemode_get();
261 void gamemode_set( const char* gamemode );
262 void Radiant_attachGameModeObserver( ModuleObserver& observer );
263 void Radiant_detachGameModeObserver( ModuleObserver& observer );
264
265 void VFS_Refresh();
266 void VFS_Restart();
267 void VFS_Construct();
268 void VFS_Destroy();
269
270 void HomePaths_Construct();
271 void HomePaths_Destroy();
272 void Radiant_attachHomePathsObserver( ModuleObserver& observer );
273 void Radiant_detachHomePathsObserver( ModuleObserver& observer );
274
275
276 void MainFrame_Construct();
277 void MainFrame_Destroy();
278
279 extern char **environ;
280 void Radiant_Restart();
281
282 extern float ( *GridStatus_getGridSize )();
283 extern int ( *GridStatus_getRotateIncrement )();
284 extern int ( *GridStatus_getFarClipDistance )();
285 extern bool ( *GridStatus_getTextureLockEnabled )();
286 void GridStatus_onTextureLockEnabledChanged();
287
288 SignalHandlerId XYWindowDestroyed_connect( const SignalHandler& handler );
289 void XYWindowDestroyed_disconnect( SignalHandlerId id );
290 MouseEventHandlerId XYWindowMouseDown_connect( const MouseEventHandler& handler );
291 void XYWindowMouseDown_disconnect( MouseEventHandlerId id );
292
293 extern ui::Widget g_page_entity;
294
295 void FocusAllViews();
296
297 #endif