]> git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/mainframe.cpp
75662b23bfc08052610d2731fb2c8db55e49d2e9
[xonotic/netradiant.git] / radiant / mainframe.cpp
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 //
23 // Main Window for Q3Radiant
24 //
25 // Leonardo Zide (leo@lokigames.com)
26 //
27
28 #include "mainframe.h"
29
30 #include "debugging/debugging.h"
31 #include "version.h"
32
33 #include "ifilesystem.h"
34 #include "iundo.h"
35 #include "ifilter.h"
36 #include "itoolbar.h"
37 #include "editable.h"
38 #include "ientity.h"
39 #include "ishaders.h"
40 #include "igl.h"
41 #include "moduleobserver.h"
42
43 #include <ctime>
44
45 #include <gdk/gdkkeysyms.h>
46 #include <gtk/gtkhbox.h>
47 #include <gtk/gtkvbox.h>
48 #include <gtk/gtkframe.h>
49 #include <gtk/gtklabel.h>
50 #include <gtk/gtkhpaned.h>
51 #include <gtk/gtkvpaned.h>
52 #include <gtk/gtktoolbar.h>
53 #include <gtk/gtkmenubar.h>
54 #include <gtk/gtkimage.h>
55 #include <gtk/gtktable.h>
56
57
58 #include "cmdlib.h"
59 #include "scenelib.h"
60 #include "stream/stringstream.h"
61 #include "signal/isignal.h"
62 #include "os/path.h"
63 #include "os/file.h"
64 #include "eclasslib.h"
65 #include "moduleobservers.h"
66
67 #include "gtkutil/clipboard.h"
68 #include "gtkutil/container.h"
69 #include "gtkutil/frame.h"
70 #include "gtkutil/glfont.h"
71 #include "gtkutil/glwidget.h"
72 #include "gtkutil/image.h"
73 #include "gtkutil/menu.h"
74 #include "gtkutil/paned.h"
75 #include "gtkutil/widget.h"
76
77 #include "autosave.h"
78 #include "build.h"
79 #include "brushmanip.h"
80 #include "brushmodule.h"
81 #include "camwindow.h"
82 #include "csg.h"
83 #include "commands.h"
84 #include "console.h"
85 #include "entity.h"
86 #include "entityinspector.h"
87 #include "entitylist.h"
88 #include "filters.h"
89 #include "findtexturedialog.h"
90 #include "grid.h"
91 #include "groupdialog.h"
92 #include "gtkdlgs.h"
93 #include "gtkmisc.h"
94 #include "help.h"
95 #include "map.h"
96 #include "mru.h"
97 #include "multimon.h"
98 #include "patchdialog.h"
99 #include "patchmanip.h"
100 #include "plugin.h"
101 #include "pluginmanager.h"
102 #include "pluginmenu.h"
103 #include "plugintoolbar.h"
104 #include "points.h"
105 #include "preferences.h"
106 #include "qe3.h"
107 #include "qgl.h"
108 #include "select.h"
109 #include "server.h"
110 #include "surfacedialog.h"
111 #include "textures.h"
112 #include "texwindow.h"
113 #include "url.h"
114 #include "xywindow.h"
115 #include "windowobservers.h"
116 #include "renderstate.h"
117 #include "feedback.h"
118 #include "referencecache.h"
119
120 #include "filterbar.h"
121 #include "gtktheme.h"
122
123
124 struct layout_globals_t
125 {
126         WindowPosition m_position;
127
128
129         int nXYHeight;
130         int nXYWidth;
131         int nCamWidth;
132         int nCamHeight;
133         int nState;
134
135         layout_globals_t() :
136                 m_position( -1, -1, 640, 480 ),
137
138                 nXYHeight( 350 ),
139                 nXYWidth( 600 ),
140                 nCamWidth( 300 ),
141                 nCamHeight( 210 ),
142                 nState( 0 ){
143         }
144 };
145
146 layout_globals_t g_layout_globals;
147 //glwindow_globals_t g_glwindow_globals;
148
149
150 // VFS
151 class VFSModuleObserver : public ModuleObserver
152 {
153 std::size_t m_unrealised;
154 public:
155 VFSModuleObserver() : m_unrealised( 1 ){
156 }
157 void realise(){
158         if ( --m_unrealised == 0 ) {
159                 QE_InitVFS();
160                 GlobalFileSystem().initialise();
161         }
162 }
163 void unrealise(){
164         if ( ++m_unrealised == 1 ) {
165                 GlobalFileSystem().shutdown();
166         }
167 }
168 };
169
170 VFSModuleObserver g_VFSModuleObserver;
171
172 void VFS_Construct(){
173         Radiant_attachHomePathsObserver( g_VFSModuleObserver );
174 }
175 void VFS_Destroy(){
176         Radiant_detachHomePathsObserver( g_VFSModuleObserver );
177 }
178
179 // Home Paths
180
181 #ifdef WIN32
182 #include <shlobj.h>
183 #include <objbase.h>
184 const GUID qFOLDERID_SavedGames = {0x4C5C32FF, 0xBB9D, 0x43b0, {0xB5, 0xB4, 0x2D, 0x72, 0xE5, 0x4E, 0xAA, 0xA4}};
185 #define qREFKNOWNFOLDERID GUID
186 #define qKF_FLAG_CREATE 0x8000
187 #define qKF_FLAG_NO_ALIAS 0x1000
188 typedef HRESULT ( WINAPI qSHGetKnownFolderPath_t )( qREFKNOWNFOLDERID rfid, DWORD dwFlags, HANDLE hToken, PWSTR *ppszPath );
189 static qSHGetKnownFolderPath_t *qSHGetKnownFolderPath;
190 #endif
191 void HomePaths_Realise(){
192         do
193         {
194                 const char* prefix = g_pGameDescription->getKeyValue( "prefix" );
195                 if ( !string_empty( prefix ) ) {
196                         StringOutputStream path( 256 );
197
198 #if defined( __APPLE__ )
199                         path.clear();
200                         path << DirectoryCleaned( g_get_home_dir() ) << "Library/Application Support" << ( prefix + 1 ) << "/";
201                         if ( file_is_directory( path.c_str() ) ) {
202                                 g_qeglobals.m_userEnginePath = path.c_str();
203                                 break;
204                         }
205 #endif
206
207 #if defined( WIN32 )
208                         TCHAR mydocsdir[MAX_PATH + 1];
209                         wchar_t *mydocsdirw;
210                         HMODULE shfolder = LoadLibrary( "shfolder.dll" );
211                         if ( shfolder ) {
212                                 qSHGetKnownFolderPath = (qSHGetKnownFolderPath_t *) GetProcAddress( shfolder, "SHGetKnownFolderPath" );
213                         }
214                         else{
215                                 qSHGetKnownFolderPath = NULL;
216                         }
217                         CoInitializeEx( NULL, COINIT_APARTMENTTHREADED );
218                         if ( qSHGetKnownFolderPath && qSHGetKnownFolderPath( qFOLDERID_SavedGames, qKF_FLAG_CREATE | qKF_FLAG_NO_ALIAS, NULL, &mydocsdirw ) == S_OK ) {
219                                 memset( mydocsdir, 0, sizeof( mydocsdir ) );
220                                 wcstombs( mydocsdir, mydocsdirw, sizeof( mydocsdir ) - 1 );
221                                 CoTaskMemFree( mydocsdirw );
222                                 path.clear();
223                                 path << DirectoryCleaned( mydocsdir ) << ( prefix + 1 ) << "/";
224                                 if ( file_is_directory( path.c_str() ) ) {
225                                         g_qeglobals.m_userEnginePath = path.c_str();
226                                         CoUninitialize();
227                                         FreeLibrary( shfolder );
228                                         break;
229                                 }
230                         }
231                         CoUninitialize();
232                         if ( shfolder ) {
233                                 FreeLibrary( shfolder );
234                         }
235                         if ( SUCCEEDED( SHGetFolderPath( NULL, CSIDL_PERSONAL, NULL, 0, mydocsdir ) ) ) {
236                                 path.clear();
237                                 path << DirectoryCleaned( mydocsdir ) << "My Games/" << ( prefix + 1 ) << "/";
238                                 // win32: only add it if it already exists
239                                 if ( file_is_directory( path.c_str() ) ) {
240                                         g_qeglobals.m_userEnginePath = path.c_str();
241                                         break;
242                                 }
243                         }
244 #endif
245
246 #if defined( POSIX )
247                         path.clear();
248                         path << DirectoryCleaned( g_get_home_dir() ) << prefix << "/";
249                         g_qeglobals.m_userEnginePath = path.c_str();
250                         break;
251 #endif
252                 }
253
254                 g_qeglobals.m_userEnginePath = EnginePath_get();
255         }
256         while ( 0 );
257
258         Q_mkdir( g_qeglobals.m_userEnginePath.c_str() );
259
260         {
261                 StringOutputStream path( 256 );
262                 path << g_qeglobals.m_userEnginePath.c_str() << gamename_get() << '/';
263                 g_qeglobals.m_userGamePath = path.c_str();
264         }
265         ASSERT_MESSAGE( !string_empty( g_qeglobals.m_userGamePath.c_str() ), "HomePaths_Realise: user-game-path is empty" );
266         Q_mkdir( g_qeglobals.m_userGamePath.c_str() );
267 }
268
269 ModuleObservers g_homePathObservers;
270
271 void Radiant_attachHomePathsObserver( ModuleObserver& observer ){
272         g_homePathObservers.attach( observer );
273 }
274
275 void Radiant_detachHomePathsObserver( ModuleObserver& observer ){
276         g_homePathObservers.detach( observer );
277 }
278
279 class HomePathsModuleObserver : public ModuleObserver
280 {
281 std::size_t m_unrealised;
282 public:
283 HomePathsModuleObserver() : m_unrealised( 1 ){
284 }
285 void realise(){
286         if ( --m_unrealised == 0 ) {
287                 HomePaths_Realise();
288                 g_homePathObservers.realise();
289         }
290 }
291 void unrealise(){
292         if ( ++m_unrealised == 1 ) {
293                 g_homePathObservers.unrealise();
294         }
295 }
296 };
297
298 HomePathsModuleObserver g_HomePathsModuleObserver;
299
300 void HomePaths_Construct(){
301         Radiant_attachEnginePathObserver( g_HomePathsModuleObserver );
302 }
303 void HomePaths_Destroy(){
304         Radiant_detachEnginePathObserver( g_HomePathsModuleObserver );
305 }
306
307
308 // Engine Path
309
310 CopiedString g_strEnginePath;
311 ModuleObservers g_enginePathObservers;
312 std::size_t g_enginepath_unrealised = 1;
313
314 void Radiant_attachEnginePathObserver( ModuleObserver& observer ){
315         g_enginePathObservers.attach( observer );
316 }
317
318 void Radiant_detachEnginePathObserver( ModuleObserver& observer ){
319         g_enginePathObservers.detach( observer );
320 }
321
322
323 void EnginePath_Realise(){
324         if ( --g_enginepath_unrealised == 0 ) {
325                 g_enginePathObservers.realise();
326         }
327 }
328
329
330 const char* EnginePath_get(){
331         ASSERT_MESSAGE( g_enginepath_unrealised == 0, "EnginePath_get: engine path not realised" );
332         return g_strEnginePath.c_str();
333 }
334
335 void EnginePath_Unrealise(){
336         if ( ++g_enginepath_unrealised == 1 ) {
337                 g_enginePathObservers.unrealise();
338         }
339 }
340
341 void setEnginePath( const char* path ){
342         StringOutputStream buffer( 256 );
343         buffer << DirectoryCleaned( path );
344         if ( !path_equal( buffer.c_str(), g_strEnginePath.c_str() ) ) {
345 #if 0
346                 while ( !ConfirmModified( "Paths Changed" ) )
347                 {
348                         if ( Map_Unnamed( g_map ) ) {
349                                 Map_SaveAs();
350                         }
351                         else
352                         {
353                                 Map_Save();
354                         }
355                 }
356                 Map_RegionOff();
357 #endif
358
359                 ScopeDisableScreenUpdates disableScreenUpdates( "Processing...", "Changing Engine Path" );
360
361                 EnginePath_Unrealise();
362
363                 g_strEnginePath = buffer.c_str();
364
365                 EnginePath_Realise();
366         }
367 }
368
369
370 // App Path
371
372 CopiedString g_strAppPath;                 ///< holds the full path of the executable
373
374 const char* AppPath_get(){
375         return g_strAppPath.c_str();
376 }
377
378 /// the path to the local rc-dir
379 const char* LocalRcPath_get( void ){
380         static CopiedString rc_path;
381         if ( rc_path.empty() ) {
382                 StringOutputStream stream( 256 );
383                 stream << GlobalRadiant().getSettingsPath() << g_pGameDescription->mGameFile.c_str() << "/";
384                 rc_path = stream.c_str();
385         }
386         return rc_path.c_str();
387 }
388
389 /// directory for temp files
390 /// NOTE: on *nix this is were we check for .pid
391 CopiedString g_strSettingsPath;
392 const char* SettingsPath_get(){
393         return g_strSettingsPath.c_str();
394 }
395
396
397 /*!
398    points to the game tools directory, for instance
399    C:/Program Files/Quake III Arena/GtkRadiant
400    (or other games)
401    this is one of the main variables that are configured by the game selection on startup
402    [GameToolsPath]/plugins
403    [GameToolsPath]/modules
404    and also q3map, bspc
405  */
406 CopiedString g_strGameToolsPath;           ///< this is set by g_GamesDialog
407
408 const char* GameToolsPath_get(){
409         return g_strGameToolsPath.c_str();
410 }
411
412 void EnginePathImport( CopiedString& self, const char* value ){
413         setEnginePath( value );
414 }
415 typedef ReferenceCaller1<CopiedString, const char*, EnginePathImport> EnginePathImportCaller;
416
417 void Paths_constructPreferences( PreferencesPage& page ){
418         page.appendPathEntry( "Engine Path", true,
419                                                   StringImportCallback( EnginePathImportCaller( g_strEnginePath ) ),
420                                                   StringExportCallback( StringExportCaller( g_strEnginePath ) )
421                                                   );
422 }
423 void Paths_constructPage( PreferenceGroup& group ){
424         PreferencesPage page( group.createPage( "Paths", "Path Settings" ) );
425         Paths_constructPreferences( page );
426 }
427 void Paths_registerPreferencesPage(){
428         PreferencesDialog_addSettingsPage( FreeCaller1<PreferenceGroup&, Paths_constructPage>() );
429 }
430
431
432 class PathsDialog : public Dialog
433 {
434 public:
435 GtkWindow* BuildDialog(){
436         GtkFrame* frame = create_dialog_frame( "Path settings", GTK_SHADOW_ETCHED_IN );
437
438         GtkVBox* vbox2 = create_dialog_vbox( 0, 4 );
439         gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( vbox2 ) );
440
441         {
442                 PreferencesPage preferencesPage( *this, GTK_WIDGET( vbox2 ) );
443                 Paths_constructPreferences( preferencesPage );
444         }
445
446         return create_simple_modal_dialog_window( "Engine Path Not Found", m_modal, GTK_WIDGET( frame ) );
447 }
448 };
449
450 PathsDialog g_PathsDialog;
451
452 bool g_strEnginePath_was_empty_1st_start = false;
453
454 void EnginePath_verify(){
455         if ( !file_exists( g_strEnginePath.c_str() ) || g_strEnginePath_was_empty_1st_start ) {
456                 g_PathsDialog.Create();
457                 g_PathsDialog.DoModal();
458                 g_PathsDialog.Destroy();
459         }
460 }
461
462 namespace
463 {
464 CopiedString g_gamename;
465 CopiedString g_gamemode;
466 ModuleObservers g_gameNameObservers;
467 ModuleObservers g_gameModeObservers;
468 }
469
470 void Radiant_attachGameNameObserver( ModuleObserver& observer ){
471         g_gameNameObservers.attach( observer );
472 }
473
474 void Radiant_detachGameNameObserver( ModuleObserver& observer ){
475         g_gameNameObservers.detach( observer );
476 }
477
478 const char* basegame_get(){
479         return g_pGameDescription->getRequiredKeyValue( "basegame" );
480 }
481
482 const char* gamename_get(){
483         const char* gamename = g_gamename.c_str();
484         if ( string_empty( gamename ) ) {
485                 return basegame_get();
486         }
487         return gamename;
488 }
489
490 void gamename_set( const char* gamename ){
491         if ( !string_equal( gamename, g_gamename.c_str() ) ) {
492                 g_gameNameObservers.unrealise();
493                 g_gamename = gamename;
494                 g_gameNameObservers.realise();
495         }
496 }
497
498 void Radiant_attachGameModeObserver( ModuleObserver& observer ){
499         g_gameModeObservers.attach( observer );
500 }
501
502 void Radiant_detachGameModeObserver( ModuleObserver& observer ){
503         g_gameModeObservers.detach( observer );
504 }
505
506 const char* gamemode_get(){
507         return g_gamemode.c_str();
508 }
509
510 void gamemode_set( const char* gamemode ){
511         if ( !string_equal( gamemode, g_gamemode.c_str() ) ) {
512                 g_gameModeObservers.unrealise();
513                 g_gamemode = gamemode;
514                 g_gameModeObservers.realise();
515         }
516 }
517
518 #include "os/dir.h"
519
520 class CLoadModule
521 {
522 const char* m_path;
523 public:
524 CLoadModule( const char* path ) : m_path( path ){
525 }
526 void operator()( const char* name ) const {
527         char fullname[1024];
528         ASSERT_MESSAGE( strlen( m_path ) + strlen( name ) < 1024, "" );
529         strcpy( fullname, m_path );
530         strcat( fullname, name );
531         globalOutputStream() << "Found '" << fullname << "'\n";
532         GlobalModuleServer_loadModule( fullname );
533 }
534 };
535
536 const char* const c_library_extension =
537 #if defined( WIN32 )
538         "dll"
539 #elif defined ( __APPLE__ )
540         "dylib"
541 #elif defined( __linux__ ) || defined ( __FreeBSD__ )
542         "so"
543 #endif
544 ;
545
546 void Radiant_loadModules( const char* path ){
547         Directory_forEach( path, MatchFileExtension<CLoadModule>( c_library_extension, CLoadModule( path ) ) );
548 }
549
550 void Radiant_loadModulesFromRoot( const char* directory ){
551         {
552                 StringOutputStream path( 256 );
553                 path << directory << g_pluginsDir;
554                 Radiant_loadModules( path.c_str() );
555         }
556
557         if ( !string_equal( g_pluginsDir, g_modulesDir ) ) {
558                 StringOutputStream path( 256 );
559                 path << directory << g_modulesDir;
560                 Radiant_loadModules( path.c_str() );
561         }
562 }
563
564 //! Make COLOR_BRUSHES override worldspawn eclass colour.
565 void SetWorldspawnColour( const Vector3& colour ){
566         EntityClass* worldspawn = GlobalEntityClassManager().findOrInsert( "worldspawn", true );
567         eclass_release_state( worldspawn );
568         worldspawn->color = colour;
569         eclass_capture_state( worldspawn );
570 }
571
572
573 class WorldspawnColourEntityClassObserver : public ModuleObserver
574 {
575 std::size_t m_unrealised;
576 public:
577 WorldspawnColourEntityClassObserver() : m_unrealised( 1 ){
578 }
579 void realise(){
580         if ( --m_unrealised == 0 ) {
581                 SetWorldspawnColour( g_xywindow_globals.color_brushes );
582         }
583 }
584 void unrealise(){
585         if ( ++m_unrealised == 1 ) {
586         }
587 }
588 };
589
590 WorldspawnColourEntityClassObserver g_WorldspawnColourEntityClassObserver;
591
592
593 ModuleObservers g_gameToolsPathObservers;
594
595 void Radiant_attachGameToolsPathObserver( ModuleObserver& observer ){
596         g_gameToolsPathObservers.attach( observer );
597 }
598
599 void Radiant_detachGameToolsPathObserver( ModuleObserver& observer ){
600         g_gameToolsPathObservers.detach( observer );
601 }
602
603 void Radiant_Initialise(){
604         GlobalModuleServer_Initialise();
605
606         Radiant_loadModulesFromRoot( AppPath_get() );
607
608         Preferences_Load();
609
610         bool success = Radiant_Construct( GlobalModuleServer_get() );
611         ASSERT_MESSAGE( success, "module system failed to initialise - see radiant.log for error messages" );
612
613         g_gameToolsPathObservers.realise();
614         g_gameModeObservers.realise();
615         g_gameNameObservers.realise();
616 }
617
618 void Radiant_Shutdown(){
619         g_gameNameObservers.unrealise();
620         g_gameModeObservers.unrealise();
621         g_gameToolsPathObservers.unrealise();
622
623         if ( !g_preferences_globals.disable_ini ) {
624                 globalOutputStream() << "Start writing prefs\n";
625                 Preferences_Save();
626                 globalOutputStream() << "Done prefs\n";
627         }
628
629         Radiant_Destroy();
630
631         GlobalModuleServer_Shutdown();
632 }
633
634 void Exit(){
635         if ( ConfirmModified( "Exit Radiant" ) ) {
636                 gtk_main_quit();
637         }
638 }
639
640
641 void Undo(){
642         GlobalUndoSystem().undo();
643         SceneChangeNotify();
644 }
645
646 void Redo(){
647         GlobalUndoSystem().redo();
648         SceneChangeNotify();
649 }
650
651 void deleteSelection(){
652         UndoableCommand undo( "deleteSelected" );
653         Select_Delete();
654 }
655
656 void Map_ExportSelected( TextOutputStream& ostream ){
657         Map_ExportSelected( ostream, Map_getFormat( g_map ) );
658 }
659
660 void Map_ImportSelected( TextInputStream& istream ){
661         Map_ImportSelected( istream, Map_getFormat( g_map ) );
662 }
663
664 void Selection_Copy(){
665         clipboard_copy( Map_ExportSelected );
666 }
667
668 void Selection_Paste(){
669         clipboard_paste( Map_ImportSelected );
670 }
671
672 void Copy(){
673         if ( SelectedFaces_empty() ) {
674                 Selection_Copy();
675         }
676         else
677         {
678                 SelectedFaces_copyTexture();
679         }
680 }
681
682 void Paste(){
683         if ( SelectedFaces_empty() ) {
684                 UndoableCommand undo( "paste" );
685
686                 GlobalSelectionSystem().setSelectedAll( false );
687                 Selection_Paste();
688         }
689         else
690         {
691                 SelectedFaces_pasteTexture();
692         }
693 }
694
695 void PasteToCamera(){
696         CamWnd& camwnd = *g_pParentWnd->GetCamWnd();
697         GlobalSelectionSystem().setSelectedAll( false );
698
699         UndoableCommand undo( "pasteToCamera" );
700
701         Selection_Paste();
702
703         // Work out the delta
704         Vector3 mid;
705         Select_GetMid( mid );
706         Vector3 delta = vector3_subtracted( vector3_snapped( Camera_getOrigin( camwnd ), GetSnapGridSize() ), mid );
707
708         // Move to camera
709         GlobalSelectionSystem().translateSelected( delta );
710 }
711
712
713 void ColorScheme_Original(){
714         TextureBrowser_setBackgroundColour( GlobalTextureBrowser(), Vector3( 0.25f, 0.25f, 0.25f ) );
715
716         g_camwindow_globals.color_selbrushes3d = Vector3( 1.0f, 0.0f, 0.0f );
717         g_camwindow_globals.color_cameraback = Vector3( 0.25f, 0.25f, 0.25f );
718         CamWnd_Update( *g_pParentWnd->GetCamWnd() );
719
720         g_xywindow_globals.color_gridback = Vector3( 1.0f, 1.0f, 1.0f );
721         g_xywindow_globals.color_gridminor = Vector3( 0.75f, 0.75f, 0.75f );
722         g_xywindow_globals.color_gridmajor = Vector3( 0.5f, 0.5f, 0.5f );
723         g_xywindow_globals.color_gridblock = Vector3( 0.0f, 0.0f, 1.0f );
724         g_xywindow_globals.color_gridtext = Vector3( 0.0f, 0.0f, 0.0f );
725         g_xywindow_globals.color_selbrushes = Vector3( 1.0f, 0.0f, 0.0f );
726         g_xywindow_globals.color_clipper = Vector3( 0.0f, 0.0f, 1.0f );
727         g_xywindow_globals.color_brushes = Vector3( 0.0f, 0.0f, 0.0f );
728         SetWorldspawnColour( g_xywindow_globals.color_brushes );
729         g_xywindow_globals.color_viewname = Vector3( 0.5f, 0.0f, 0.75f );
730         XY_UpdateAllWindows();
731 }
732
733 void ColorScheme_QER(){
734         TextureBrowser_setBackgroundColour( GlobalTextureBrowser(), Vector3( 0.25f, 0.25f, 0.25f ) );
735
736         g_camwindow_globals.color_cameraback = Vector3( 0.25f, 0.25f, 0.25f );
737         g_camwindow_globals.color_selbrushes3d = Vector3( 1.0f, 0.0f, 0.0f );
738         CamWnd_Update( *g_pParentWnd->GetCamWnd() );
739
740         g_xywindow_globals.color_gridback = Vector3( 1.0f, 1.0f, 1.0f );
741         g_xywindow_globals.color_gridminor = Vector3( 1.0f, 1.0f, 1.0f );
742         g_xywindow_globals.color_gridmajor = Vector3( 0.5f, 0.5f, 0.5f );
743         g_xywindow_globals.color_gridblock = Vector3( 0.0f, 0.0f, 1.0f );
744         g_xywindow_globals.color_gridtext = Vector3( 0.0f, 0.0f, 0.0f );
745         g_xywindow_globals.color_selbrushes = Vector3( 1.0f, 0.0f, 0.0f );
746         g_xywindow_globals.color_clipper = Vector3( 0.0f, 0.0f, 1.0f );
747         g_xywindow_globals.color_brushes = Vector3( 0.0f, 0.0f, 0.0f );
748         SetWorldspawnColour( g_xywindow_globals.color_brushes );
749         g_xywindow_globals.color_viewname = Vector3( 0.5f, 0.0f, 0.75f );
750         XY_UpdateAllWindows();
751 }
752
753 void ColorScheme_Black(){
754         TextureBrowser_setBackgroundColour( GlobalTextureBrowser(), Vector3( 0.25f, 0.25f, 0.25f ) );
755
756         g_camwindow_globals.color_cameraback = Vector3( 0.25f, 0.25f, 0.25f );
757         g_camwindow_globals.color_selbrushes3d = Vector3( 1.0f, 0.0f, 0.0f );
758         CamWnd_Update( *g_pParentWnd->GetCamWnd() );
759
760         g_xywindow_globals.color_gridback = Vector3( 0.0f, 0.0f, 0.0f );
761         g_xywindow_globals.color_gridminor = Vector3( 0.2f, 0.2f, 0.2f );
762         g_xywindow_globals.color_gridmajor = Vector3( 0.3f, 0.5f, 0.5f );
763         g_xywindow_globals.color_gridblock = Vector3( 0.0f, 0.0f, 1.0f );
764         g_xywindow_globals.color_gridtext = Vector3( 1.0f, 1.0f, 1.0f );
765         g_xywindow_globals.color_selbrushes = Vector3( 1.0f, 0.0f, 0.0f );
766         g_xywindow_globals.color_clipper = Vector3( 0.0f, 0.0f, 1.0f );
767         g_xywindow_globals.color_brushes = Vector3( 1.0f, 1.0f, 1.0f );
768         SetWorldspawnColour( g_xywindow_globals.color_brushes );
769         g_xywindow_globals.color_viewname = Vector3( 0.7f, 0.7f, 0.0f );
770         XY_UpdateAllWindows();
771 }
772
773 /* ydnar: to emulate maya/max/lightwave color schemes */
774 void ColorScheme_Ydnar(){
775         TextureBrowser_setBackgroundColour( GlobalTextureBrowser(), Vector3( 0.25f, 0.25f, 0.25f ) );
776
777         g_camwindow_globals.color_cameraback = Vector3( 0.25f, 0.25f, 0.25f );
778         g_camwindow_globals.color_selbrushes3d = Vector3( 1.0f, 0.0f, 0.0f );
779         CamWnd_Update( *g_pParentWnd->GetCamWnd() );
780
781         g_xywindow_globals.color_gridback = Vector3( 0.77f, 0.77f, 0.77f );
782         g_xywindow_globals.color_gridminor = Vector3( 0.83f, 0.83f, 0.83f );
783         g_xywindow_globals.color_gridmajor = Vector3( 0.89f, 0.89f, 0.89f );
784         g_xywindow_globals.color_gridblock = Vector3( 1.0f, 1.0f, 1.0f );
785         g_xywindow_globals.color_gridtext = Vector3( 0.0f, 0.0f, 0.0f );
786         g_xywindow_globals.color_selbrushes = Vector3( 1.0f, 0.0f, 0.0f );
787         g_xywindow_globals.color_clipper = Vector3( 0.0f, 0.0f, 1.0f );
788         g_xywindow_globals.color_brushes = Vector3( 0.0f, 0.0f, 0.0f );
789         SetWorldspawnColour( g_xywindow_globals.color_brushes );
790         g_xywindow_globals.color_viewname = Vector3( 0.5f, 0.0f, 0.75f );
791         XY_UpdateAllWindows();
792 }
793
794 typedef Callback1<Vector3&> GetColourCallback;
795 typedef Callback1<const Vector3&> SetColourCallback;
796
797 class ChooseColour
798 {
799 GetColourCallback m_get;
800 SetColourCallback m_set;
801 public:
802 ChooseColour( const GetColourCallback& get, const SetColourCallback& set )
803         : m_get( get ), m_set( set ){
804 }
805 void operator()(){
806         Vector3 colour;
807         m_get( colour );
808         color_dialog( GTK_WIDGET( MainFrame_getWindow() ), colour );
809         m_set( colour );
810 }
811 };
812
813
814
815 void Colour_get( const Vector3& colour, Vector3& other ){
816         other = colour;
817 }
818 typedef ConstReferenceCaller1<Vector3, Vector3&, Colour_get> ColourGetCaller;
819
820 void Colour_set( Vector3& colour, const Vector3& other ){
821         colour = other;
822         SceneChangeNotify();
823 }
824 typedef ReferenceCaller1<Vector3, const Vector3&, Colour_set> ColourSetCaller;
825
826 void BrushColour_set( const Vector3& other ){
827         g_xywindow_globals.color_brushes = other;
828         SetWorldspawnColour( g_xywindow_globals.color_brushes );
829         SceneChangeNotify();
830 }
831 typedef FreeCaller1<const Vector3&, BrushColour_set> BrushColourSetCaller;
832
833 void ClipperColour_set( const Vector3& other ){
834         g_xywindow_globals.color_clipper = other;
835         Brush_clipperColourChanged();
836         SceneChangeNotify();
837 }
838 typedef FreeCaller1<const Vector3&, ClipperColour_set> ClipperColourSetCaller;
839
840 void TextureBrowserColour_get( Vector3& other ){
841         other = TextureBrowser_getBackgroundColour( GlobalTextureBrowser() );
842 }
843 typedef FreeCaller1<Vector3&, TextureBrowserColour_get> TextureBrowserColourGetCaller;
844
845 void TextureBrowserColour_set( const Vector3& other ){
846         TextureBrowser_setBackgroundColour( GlobalTextureBrowser(), other );
847 }
848 typedef FreeCaller1<const Vector3&, TextureBrowserColour_set> TextureBrowserColourSetCaller;
849
850
851 class ColoursMenu
852 {
853 public:
854 ChooseColour m_textureback;
855 ChooseColour m_xyback;
856 ChooseColour m_gridmajor;
857 ChooseColour m_gridminor;
858 ChooseColour m_gridtext;
859 ChooseColour m_gridblock;
860 ChooseColour m_cameraback;
861 ChooseColour m_brush;
862 ChooseColour m_selectedbrush;
863 ChooseColour m_selectedbrush3d;
864 ChooseColour m_clipper;
865 ChooseColour m_viewname;
866
867 ColoursMenu() :
868         m_textureback( TextureBrowserColourGetCaller(), TextureBrowserColourSetCaller() ),
869         m_xyback( ColourGetCaller( g_xywindow_globals.color_gridback ), ColourSetCaller( g_xywindow_globals.color_gridback ) ),
870         m_gridmajor( ColourGetCaller( g_xywindow_globals.color_gridmajor ), ColourSetCaller( g_xywindow_globals.color_gridmajor ) ),
871         m_gridminor( ColourGetCaller( g_xywindow_globals.color_gridminor ), ColourSetCaller( g_xywindow_globals.color_gridminor ) ),
872         m_gridtext( ColourGetCaller( g_xywindow_globals.color_gridtext ), ColourSetCaller( g_xywindow_globals.color_gridtext ) ),
873         m_gridblock( ColourGetCaller( g_xywindow_globals.color_gridblock ), ColourSetCaller( g_xywindow_globals.color_gridblock ) ),
874         m_cameraback( ColourGetCaller( g_camwindow_globals.color_cameraback ), ColourSetCaller( g_camwindow_globals.color_cameraback ) ),
875         m_brush( ColourGetCaller( g_xywindow_globals.color_brushes ), BrushColourSetCaller() ),
876         m_selectedbrush( ColourGetCaller( g_xywindow_globals.color_selbrushes ), ColourSetCaller( g_xywindow_globals.color_selbrushes ) ),
877         m_selectedbrush3d( ColourGetCaller( g_camwindow_globals.color_selbrushes3d ), ColourSetCaller( g_camwindow_globals.color_selbrushes3d ) ),
878         m_clipper( ColourGetCaller( g_xywindow_globals.color_clipper ), ClipperColourSetCaller() ),
879         m_viewname( ColourGetCaller( g_xywindow_globals.color_viewname ), ColourSetCaller( g_xywindow_globals.color_viewname ) ){
880 }
881 };
882
883 ColoursMenu g_ColoursMenu;
884
885 GtkMenuItem* create_colours_menu(){
886         GtkMenuItem* colours_menu_item = new_sub_menu_item_with_mnemonic( "Colors" );
887         GtkMenu* menu_in_menu = GTK_MENU( gtk_menu_item_get_submenu( colours_menu_item ) );
888         if ( g_Layout_enableDetachableMenus.m_value ) {
889                 menu_tearoff( menu_in_menu );
890         }
891
892         GtkMenu* menu_3 = create_sub_menu_with_mnemonic( menu_in_menu, "Themes" );
893         if ( g_Layout_enableDetachableMenus.m_value ) {
894                 menu_tearoff( menu_3 );
895         }
896
897         create_menu_item_with_mnemonic( menu_3, "QE4 Original", "ColorSchemeOriginal" );
898         create_menu_item_with_mnemonic( menu_3, "Q3Radiant Original", "ColorSchemeQER" );
899         create_menu_item_with_mnemonic( menu_3, "Black and Green", "ColorSchemeBlackAndGreen" );
900         create_menu_item_with_mnemonic( menu_3, "Maya/Max/Lightwave Emulation", "ColorSchemeYdnar" );
901
902         create_menu_item_with_mnemonic( menu_in_menu, "GTK Theme...", "gtkThemeDlg" );
903
904         menu_separator( menu_in_menu );
905
906         create_menu_item_with_mnemonic( menu_in_menu, "_Texture Background...", "ChooseTextureBackgroundColor" );
907         create_menu_item_with_mnemonic( menu_in_menu, "Camera Background...", "ChooseCameraBackgroundColor" );
908         create_menu_item_with_mnemonic( menu_in_menu, "Grid Background...", "ChooseGridBackgroundColor" );
909         create_menu_item_with_mnemonic( menu_in_menu, "Grid Major...", "ChooseGridMajorColor" );
910         create_menu_item_with_mnemonic( menu_in_menu, "Grid Minor...", "ChooseGridMinorColor" );
911         create_menu_item_with_mnemonic( menu_in_menu, "Grid Text...", "ChooseGridTextColor" );
912         create_menu_item_with_mnemonic( menu_in_menu, "Grid Block...", "ChooseGridBlockColor" );
913         create_menu_item_with_mnemonic( menu_in_menu, "Default Brush (2D)...", "ChooseBrushColor" );
914         create_menu_item_with_mnemonic( menu_in_menu, "Selected Brush and Sizing (2D)...", "ChooseSelectedBrushColor" );
915         create_menu_item_with_mnemonic( menu_in_menu, "Selected Brush (Camera)...", "ChooseCameraSelectedBrushColor" );
916         create_menu_item_with_mnemonic( menu_in_menu, "Clipper...", "ChooseClipperColor" );
917         create_menu_item_with_mnemonic( menu_in_menu, "Active View Name and Outline...", "ChooseOrthoViewNameColor" );
918
919         return colours_menu_item;
920 }
921
922
923 void Restart(){
924         PluginsMenu_clear();
925         PluginToolbar_clear();
926
927         Radiant_Shutdown();
928         Radiant_Initialise();
929
930         PluginsMenu_populate();
931
932         PluginToolbar_populate();
933 }
934
935
936 void thunk_OnSleep(){
937         g_pParentWnd->OnSleep();
938 }
939
940 void OpenUpdateURL(){
941         // build the URL
942         StringOutputStream URL( 256 );
943         URL << "http://www.icculus.org/netradiant/?cmd=update&data=dlupdate&query_dlup=1";
944 #ifdef WIN32
945         URL << "&OS_dlup=1";
946 #elif defined( __APPLE__ )
947         URL << "&OS_dlup=2";
948 #else
949         URL << "&OS_dlup=3";
950 #endif
951         URL << "&Version_dlup=" RADIANT_VERSION;
952         g_GamesDialog.AddPacksURL( URL );
953         OpenURL( URL.c_str() );
954 }
955
956 // open the Q3Rad manual
957 void OpenHelpURL(){
958         // at least on win32, AppPath + "docs/index.html"
959         StringOutputStream help( 256 );
960         help << AppPath_get() << "docs/index.html";
961         OpenURL( help.c_str() );
962 }
963
964 void OpenBugReportURL(){
965         OpenURL( "http://www.icculus.org/netradiant/?cmd=bugs" );
966 }
967
968
969 GtkWidget* g_page_console;
970
971 void Console_ToggleShow(){
972         GroupDialog_showPage( g_page_console );
973 }
974
975 GtkWidget* g_page_entity;
976
977 void EntityInspector_ToggleShow(){
978         GroupDialog_showPage( g_page_entity );
979 }
980
981
982
983 void SetClipMode( bool enable );
984 void ModeChangeNotify();
985
986 typedef void ( *ToolMode )();
987 ToolMode g_currentToolMode = 0;
988 bool g_currentToolModeSupportsComponentEditing = false;
989 ToolMode g_defaultToolMode = 0;
990
991
992
993 void SelectionSystem_DefaultMode(){
994         GlobalSelectionSystem().SetMode( SelectionSystem::ePrimitive );
995         GlobalSelectionSystem().SetComponentMode( SelectionSystem::eDefault );
996         ModeChangeNotify();
997 }
998
999
1000 bool EdgeMode(){
1001         return GlobalSelectionSystem().Mode() == SelectionSystem::eComponent
1002                    && GlobalSelectionSystem().ComponentMode() == SelectionSystem::eEdge;
1003 }
1004
1005 bool VertexMode(){
1006         return GlobalSelectionSystem().Mode() == SelectionSystem::eComponent
1007                    && GlobalSelectionSystem().ComponentMode() == SelectionSystem::eVertex;
1008 }
1009
1010 bool FaceMode(){
1011         return GlobalSelectionSystem().Mode() == SelectionSystem::eComponent
1012                    && GlobalSelectionSystem().ComponentMode() == SelectionSystem::eFace;
1013 }
1014
1015 template<bool( *BoolFunction ) ( )>
1016 class BoolFunctionExport
1017 {
1018 public:
1019 static void apply( const BoolImportCallback& importCallback ){
1020         importCallback( BoolFunction() );
1021 }
1022 };
1023
1024 typedef FreeCaller1<const BoolImportCallback&, &BoolFunctionExport<EdgeMode>::apply> EdgeModeApplyCaller;
1025 EdgeModeApplyCaller g_edgeMode_button_caller;
1026 BoolExportCallback g_edgeMode_button_callback( g_edgeMode_button_caller );
1027 ToggleItem g_edgeMode_button( g_edgeMode_button_callback );
1028
1029 typedef FreeCaller1<const BoolImportCallback&, &BoolFunctionExport<VertexMode>::apply> VertexModeApplyCaller;
1030 VertexModeApplyCaller g_vertexMode_button_caller;
1031 BoolExportCallback g_vertexMode_button_callback( g_vertexMode_button_caller );
1032 ToggleItem g_vertexMode_button( g_vertexMode_button_callback );
1033
1034 typedef FreeCaller1<const BoolImportCallback&, &BoolFunctionExport<FaceMode>::apply> FaceModeApplyCaller;
1035 FaceModeApplyCaller g_faceMode_button_caller;
1036 BoolExportCallback g_faceMode_button_callback( g_faceMode_button_caller );
1037 ToggleItem g_faceMode_button( g_faceMode_button_callback );
1038
1039 void ComponentModeChanged(){
1040         g_edgeMode_button.update();
1041         g_vertexMode_button.update();
1042         g_faceMode_button.update();
1043 }
1044
1045 void ComponentMode_SelectionChanged( const Selectable& selectable ){
1046         if ( GlobalSelectionSystem().Mode() == SelectionSystem::eComponent
1047                  && GlobalSelectionSystem().countSelected() == 0 ) {
1048                 SelectionSystem_DefaultMode();
1049                 ComponentModeChanged();
1050         }
1051 }
1052
1053 void SelectEdgeMode(){
1054 #if 0
1055         if ( GlobalSelectionSystem().Mode() == SelectionSystem::eComponent ) {
1056                 GlobalSelectionSystem().Select( false );
1057         }
1058 #endif
1059
1060         if ( EdgeMode() ) {
1061                 SelectionSystem_DefaultMode();
1062         }
1063         else if ( GlobalSelectionSystem().countSelected() != 0 ) {
1064                 if ( !g_currentToolModeSupportsComponentEditing ) {
1065                         g_defaultToolMode();
1066                 }
1067
1068                 GlobalSelectionSystem().SetMode( SelectionSystem::eComponent );
1069                 GlobalSelectionSystem().SetComponentMode( SelectionSystem::eEdge );
1070         }
1071
1072         ComponentModeChanged();
1073
1074         ModeChangeNotify();
1075 }
1076
1077 void SelectVertexMode(){
1078 #if 0
1079         if ( GlobalSelectionSystem().Mode() == SelectionSystem::eComponent ) {
1080                 GlobalSelectionSystem().Select( false );
1081         }
1082 #endif
1083
1084         if ( VertexMode() ) {
1085                 SelectionSystem_DefaultMode();
1086         }
1087         else if ( GlobalSelectionSystem().countSelected() != 0 ) {
1088                 if ( !g_currentToolModeSupportsComponentEditing ) {
1089                         g_defaultToolMode();
1090                 }
1091
1092                 GlobalSelectionSystem().SetMode( SelectionSystem::eComponent );
1093                 GlobalSelectionSystem().SetComponentMode( SelectionSystem::eVertex );
1094         }
1095
1096         ComponentModeChanged();
1097
1098         ModeChangeNotify();
1099 }
1100
1101 void SelectFaceMode(){
1102 #if 0
1103         if ( GlobalSelectionSystem().Mode() == SelectionSystem::eComponent ) {
1104                 GlobalSelectionSystem().Select( false );
1105         }
1106 #endif
1107
1108         if ( FaceMode() ) {
1109                 SelectionSystem_DefaultMode();
1110         }
1111         else if ( GlobalSelectionSystem().countSelected() != 0 ) {
1112                 if ( !g_currentToolModeSupportsComponentEditing ) {
1113                         g_defaultToolMode();
1114                 }
1115
1116                 GlobalSelectionSystem().SetMode( SelectionSystem::eComponent );
1117                 GlobalSelectionSystem().SetComponentMode( SelectionSystem::eFace );
1118         }
1119
1120         ComponentModeChanged();
1121
1122         ModeChangeNotify();
1123 }
1124
1125
1126 class CloneSelected : public scene::Graph::Walker
1127 {
1128 bool doMakeUnique;
1129 NodeSmartReference worldspawn;
1130 public:
1131 CloneSelected( bool d ) : doMakeUnique( d ), worldspawn( Map_FindOrInsertWorldspawn( g_map ) ){
1132 }
1133 bool pre( const scene::Path& path, scene::Instance& instance ) const {
1134         if ( path.size() == 1 ) {
1135                 return true;
1136         }
1137
1138         // ignore worldspawn, but keep checking children
1139         NodeSmartReference me( path.top().get() );
1140         if ( me == worldspawn ) {
1141                 return true;
1142         }
1143
1144         if ( !path.top().get().isRoot() ) {
1145                 Selectable* selectable = Instance_getSelectable( instance );
1146                 if ( selectable != 0
1147                          && selectable->isSelected() ) {
1148                         return false;
1149                 }
1150         }
1151
1152         return true;
1153 }
1154 void post( const scene::Path& path, scene::Instance& instance ) const {
1155         if ( path.size() == 1 ) {
1156                 return;
1157         }
1158
1159         // ignore worldspawn, but keep checking children
1160         NodeSmartReference me( path.top().get() );
1161         if ( me == worldspawn ) {
1162                 return;
1163         }
1164
1165         if ( !path.top().get().isRoot() ) {
1166                 Selectable* selectable = Instance_getSelectable( instance );
1167                 if ( selectable != 0
1168                          && selectable->isSelected() ) {
1169                         NodeSmartReference clone( Node_Clone( path.top() ) );
1170                         if ( doMakeUnique ) {
1171                                 Map_gatherNamespaced( clone );
1172                         }
1173                         Node_getTraversable( path.parent().get() )->insert( clone );
1174                 }
1175         }
1176 }
1177 };
1178
1179 void Scene_Clone_Selected( scene::Graph& graph, bool doMakeUnique ){
1180         graph.traverse( CloneSelected( doMakeUnique ) );
1181
1182         Map_mergeClonedNames();
1183 }
1184
1185 enum ENudgeDirection
1186 {
1187         eNudgeUp = 1,
1188         eNudgeDown = 3,
1189         eNudgeLeft = 0,
1190         eNudgeRight = 2,
1191 };
1192
1193 struct AxisBase
1194 {
1195         Vector3 x;
1196         Vector3 y;
1197         Vector3 z;
1198         AxisBase( const Vector3& x_, const Vector3& y_, const Vector3& z_ )
1199                 : x( x_ ), y( y_ ), z( z_ ){
1200         }
1201 };
1202
1203 AxisBase AxisBase_forViewType( VIEWTYPE viewtype ){
1204         switch ( viewtype )
1205         {
1206         case XY:
1207                 return AxisBase( g_vector3_axis_x, g_vector3_axis_y, g_vector3_axis_z );
1208         case XZ:
1209                 return AxisBase( g_vector3_axis_x, g_vector3_axis_z, g_vector3_axis_y );
1210         case YZ:
1211                 return AxisBase( g_vector3_axis_y, g_vector3_axis_z, g_vector3_axis_x );
1212         }
1213
1214         ERROR_MESSAGE( "invalid viewtype" );
1215         return AxisBase( Vector3( 0, 0, 0 ), Vector3( 0, 0, 0 ), Vector3( 0, 0, 0 ) );
1216 }
1217
1218 Vector3 AxisBase_axisForDirection( const AxisBase& axes, ENudgeDirection direction ){
1219         switch ( direction )
1220         {
1221         case eNudgeLeft:
1222                 return vector3_negated( axes.x );
1223         case eNudgeUp:
1224                 return axes.y;
1225         case eNudgeRight:
1226                 return axes.x;
1227         case eNudgeDown:
1228                 return vector3_negated( axes.y );
1229         }
1230
1231         ERROR_MESSAGE( "invalid direction" );
1232         return Vector3( 0, 0, 0 );
1233 }
1234
1235 bool g_bNudgeAfterClone = false;
1236
1237 void Nudge_constructPreferences( PreferencesPage& page ){
1238         page.appendCheckBox( "", "Nudge selected after duplication", g_bNudgeAfterClone );
1239 }
1240
1241 void NudgeSelection( ENudgeDirection direction, float fAmount, VIEWTYPE viewtype ){
1242         AxisBase axes( AxisBase_forViewType( viewtype ) );
1243         Vector3 view_direction( vector3_negated( axes.z ) );
1244         Vector3 nudge( vector3_scaled( AxisBase_axisForDirection( axes, direction ), fAmount ) );
1245         GlobalSelectionSystem().NudgeManipulator( nudge, view_direction );
1246 }
1247
1248 void Selection_Clone(){
1249         if ( GlobalSelectionSystem().Mode() == SelectionSystem::ePrimitive ) {
1250                 UndoableCommand undo( "cloneSelected" );
1251
1252                 Scene_Clone_Selected( GlobalSceneGraph(), false );
1253
1254                 if( g_bNudgeAfterClone ){
1255                         NudgeSelection(eNudgeRight, GetGridSize(), GlobalXYWnd_getCurrentViewType());
1256                         NudgeSelection(eNudgeDown, GetGridSize(), GlobalXYWnd_getCurrentViewType());
1257                 }
1258         }
1259 }
1260
1261 void Selection_Clone_MakeUnique(){
1262         if ( GlobalSelectionSystem().Mode() == SelectionSystem::ePrimitive ) {
1263                 UndoableCommand undo( "cloneSelectedMakeUnique" );
1264
1265                 Scene_Clone_Selected( GlobalSceneGraph(), true );
1266
1267                 if( g_bNudgeAfterClone ){
1268                         NudgeSelection(eNudgeRight, GetGridSize(), GlobalXYWnd_getCurrentViewType());
1269                         NudgeSelection(eNudgeDown, GetGridSize(), GlobalXYWnd_getCurrentViewType());
1270                 }
1271         }
1272 }
1273
1274 // called when the escape key is used (either on the main window or on an inspector)
1275 void Selection_Deselect(){
1276         if ( GlobalSelectionSystem().Mode() == SelectionSystem::eComponent ) {
1277                 if ( GlobalSelectionSystem().countSelectedComponents() != 0 ) {
1278                         GlobalSelectionSystem().setSelectedAllComponents( false );
1279                 }
1280                 else
1281                 {
1282                         SelectionSystem_DefaultMode();
1283                         ComponentModeChanged();
1284                 }
1285         }
1286         else
1287         {
1288                 if ( GlobalSelectionSystem().countSelectedComponents() != 0 ) {
1289                         GlobalSelectionSystem().setSelectedAllComponents( false );
1290                 }
1291                 else
1292                 {
1293                         GlobalSelectionSystem().setSelectedAll( false );
1294                 }
1295         }
1296 }
1297
1298
1299 void Selection_NudgeUp(){
1300         UndoableCommand undo( "nudgeSelectedUp" );
1301         NudgeSelection( eNudgeUp, GetGridSize(), GlobalXYWnd_getCurrentViewType() );
1302 }
1303
1304 void Selection_NudgeDown(){
1305         UndoableCommand undo( "nudgeSelectedDown" );
1306         NudgeSelection( eNudgeDown, GetGridSize(), GlobalXYWnd_getCurrentViewType() );
1307 }
1308
1309 void Selection_NudgeLeft(){
1310         UndoableCommand undo( "nudgeSelectedLeft" );
1311         NudgeSelection( eNudgeLeft, GetGridSize(), GlobalXYWnd_getCurrentViewType() );
1312 }
1313
1314 void Selection_NudgeRight(){
1315         UndoableCommand undo( "nudgeSelectedRight" );
1316         NudgeSelection( eNudgeRight, GetGridSize(), GlobalXYWnd_getCurrentViewType() );
1317 }
1318
1319
1320 void TranslateToolExport( const BoolImportCallback& importCallback ){
1321         importCallback( GlobalSelectionSystem().ManipulatorMode() == SelectionSystem::eTranslate );
1322 }
1323
1324 void RotateToolExport( const BoolImportCallback& importCallback ){
1325         importCallback( GlobalSelectionSystem().ManipulatorMode() == SelectionSystem::eRotate );
1326 }
1327
1328 void ScaleToolExport( const BoolImportCallback& importCallback ){
1329         importCallback( GlobalSelectionSystem().ManipulatorMode() == SelectionSystem::eScale );
1330 }
1331
1332 void DragToolExport( const BoolImportCallback& importCallback ){
1333         importCallback( GlobalSelectionSystem().ManipulatorMode() == SelectionSystem::eDrag );
1334 }
1335
1336 void ClipperToolExport( const BoolImportCallback& importCallback ){
1337         importCallback( GlobalSelectionSystem().ManipulatorMode() == SelectionSystem::eClip );
1338 }
1339
1340 FreeCaller1<const BoolImportCallback&, TranslateToolExport> g_translatemode_button_caller;
1341 BoolExportCallback g_translatemode_button_callback( g_translatemode_button_caller );
1342 ToggleItem g_translatemode_button( g_translatemode_button_callback );
1343
1344 FreeCaller1<const BoolImportCallback&, RotateToolExport> g_rotatemode_button_caller;
1345 BoolExportCallback g_rotatemode_button_callback( g_rotatemode_button_caller );
1346 ToggleItem g_rotatemode_button( g_rotatemode_button_callback );
1347
1348 FreeCaller1<const BoolImportCallback&, ScaleToolExport> g_scalemode_button_caller;
1349 BoolExportCallback g_scalemode_button_callback( g_scalemode_button_caller );
1350 ToggleItem g_scalemode_button( g_scalemode_button_callback );
1351
1352 FreeCaller1<const BoolImportCallback&, DragToolExport> g_dragmode_button_caller;
1353 BoolExportCallback g_dragmode_button_callback( g_dragmode_button_caller );
1354 ToggleItem g_dragmode_button( g_dragmode_button_callback );
1355
1356 FreeCaller1<const BoolImportCallback&, ClipperToolExport> g_clipper_button_caller;
1357 BoolExportCallback g_clipper_button_callback( g_clipper_button_caller );
1358 ToggleItem g_clipper_button( g_clipper_button_callback );
1359
1360 void ToolChanged(){
1361         g_translatemode_button.update();
1362         g_rotatemode_button.update();
1363         g_scalemode_button.update();
1364         g_dragmode_button.update();
1365         g_clipper_button.update();
1366 }
1367
1368 const char* const c_ResizeMode_status = "QE4 Drag Tool: move and resize objects";
1369
1370 void DragMode(){
1371         if ( g_currentToolMode == DragMode && g_defaultToolMode != DragMode ) {
1372                 g_defaultToolMode();
1373         }
1374         else
1375         {
1376                 g_currentToolMode = DragMode;
1377                 g_currentToolModeSupportsComponentEditing = true;
1378
1379                 OnClipMode( false );
1380
1381                 Sys_Status( c_ResizeMode_status );
1382                 GlobalSelectionSystem().SetManipulatorMode( SelectionSystem::eDrag );
1383                 ToolChanged();
1384                 ModeChangeNotify();
1385         }
1386 }
1387
1388
1389 const char* const c_TranslateMode_status = "Translate Tool: translate objects and components";
1390
1391 void TranslateMode(){
1392         if ( g_currentToolMode == TranslateMode && g_defaultToolMode != TranslateMode ) {
1393                 g_defaultToolMode();
1394         }
1395         else
1396         {
1397                 g_currentToolMode = TranslateMode;
1398                 g_currentToolModeSupportsComponentEditing = true;
1399
1400                 OnClipMode( false );
1401
1402                 Sys_Status( c_TranslateMode_status );
1403                 GlobalSelectionSystem().SetManipulatorMode( SelectionSystem::eTranslate );
1404                 ToolChanged();
1405                 ModeChangeNotify();
1406         }
1407 }
1408
1409 const char* const c_RotateMode_status = "Rotate Tool: rotate objects and components";
1410
1411 void RotateMode(){
1412         if ( g_currentToolMode == RotateMode && g_defaultToolMode != RotateMode ) {
1413                 g_defaultToolMode();
1414         }
1415         else
1416         {
1417                 g_currentToolMode = RotateMode;
1418                 g_currentToolModeSupportsComponentEditing = true;
1419
1420                 OnClipMode( false );
1421
1422                 Sys_Status( c_RotateMode_status );
1423                 GlobalSelectionSystem().SetManipulatorMode( SelectionSystem::eRotate );
1424                 ToolChanged();
1425                 ModeChangeNotify();
1426         }
1427 }
1428
1429 const char* const c_ScaleMode_status = "Scale Tool: scale objects and components";
1430
1431 void ScaleMode(){
1432         if ( g_currentToolMode == ScaleMode && g_defaultToolMode != ScaleMode ) {
1433                 g_defaultToolMode();
1434         }
1435         else
1436         {
1437                 g_currentToolMode = ScaleMode;
1438                 g_currentToolModeSupportsComponentEditing = true;
1439
1440                 OnClipMode( false );
1441
1442                 Sys_Status( c_ScaleMode_status );
1443                 GlobalSelectionSystem().SetManipulatorMode( SelectionSystem::eScale );
1444                 ToolChanged();
1445                 ModeChangeNotify();
1446         }
1447 }
1448
1449
1450 const char* const c_ClipperMode_status = "Clipper Tool: apply clip planes to objects";
1451
1452
1453 void ClipperMode(){
1454         if ( g_currentToolMode == ClipperMode && g_defaultToolMode != ClipperMode ) {
1455                 g_defaultToolMode();
1456         }
1457         else
1458         {
1459                 g_currentToolMode = ClipperMode;
1460                 g_currentToolModeSupportsComponentEditing = false;
1461
1462                 SelectionSystem_DefaultMode();
1463
1464                 OnClipMode( true );
1465
1466                 Sys_Status( c_ClipperMode_status );
1467                 GlobalSelectionSystem().SetManipulatorMode( SelectionSystem::eClip );
1468                 ToolChanged();
1469                 ModeChangeNotify();
1470         }
1471 }
1472
1473
1474 void ToggleRotateScaleModes(){
1475         if ( g_currentToolMode == RotateMode ) {
1476                 ScaleMode();
1477         }
1478         else
1479         {
1480                 RotateMode();
1481         }
1482 }
1483
1484 void ToggleDragScaleModes(){
1485         if ( g_currentToolMode == DragMode ) {
1486                 ScaleMode();
1487         }
1488         else
1489         {
1490                 DragMode();
1491         }
1492 }
1493
1494
1495 void Texdef_Rotate( float angle ){
1496         StringOutputStream command;
1497         command << "brushRotateTexture -angle " << angle;
1498         UndoableCommand undo( command.c_str() );
1499         Select_RotateTexture( angle );
1500 }
1501
1502 void Texdef_RotateClockwise(){
1503         Texdef_Rotate( static_cast<float>( fabs( g_si_globals.rotate ) ) );
1504 }
1505
1506 void Texdef_RotateAntiClockwise(){
1507         Texdef_Rotate( static_cast<float>( -fabs( g_si_globals.rotate ) ) );
1508 }
1509
1510 void Texdef_Scale( float x, float y ){
1511         StringOutputStream command;
1512         command << "brushScaleTexture -x " << x << " -y " << y;
1513         UndoableCommand undo( command.c_str() );
1514         Select_ScaleTexture( x, y );
1515 }
1516
1517 void Texdef_ScaleUp(){
1518         Texdef_Scale( 0, g_si_globals.scale[1] );
1519 }
1520
1521 void Texdef_ScaleDown(){
1522         Texdef_Scale( 0, -g_si_globals.scale[1] );
1523 }
1524
1525 void Texdef_ScaleLeft(){
1526         Texdef_Scale( -g_si_globals.scale[0],0 );
1527 }
1528
1529 void Texdef_ScaleRight(){
1530         Texdef_Scale( g_si_globals.scale[0],0 );
1531 }
1532
1533 void Texdef_Shift( float x, float y ){
1534         StringOutputStream command;
1535         command << "brushShiftTexture -x " << x << " -y " << y;
1536         UndoableCommand undo( command.c_str() );
1537         Select_ShiftTexture( x, y );
1538 }
1539
1540 void Texdef_ShiftLeft(){
1541         Texdef_Shift( -g_si_globals.shift[0], 0 );
1542 }
1543
1544 void Texdef_ShiftRight(){
1545         Texdef_Shift( g_si_globals.shift[0], 0 );
1546 }
1547
1548 void Texdef_ShiftUp(){
1549         Texdef_Shift( 0, g_si_globals.shift[1] );
1550 }
1551
1552 void Texdef_ShiftDown(){
1553         Texdef_Shift( 0, -g_si_globals.shift[1] );
1554 }
1555
1556
1557
1558 class SnappableSnapToGridSelected : public scene::Graph::Walker
1559 {
1560 float m_snap;
1561 public:
1562 SnappableSnapToGridSelected( float snap )
1563         : m_snap( snap ){
1564 }
1565 bool pre( const scene::Path& path, scene::Instance& instance ) const {
1566         if ( path.top().get().visible() ) {
1567                 Snappable* snappable = Node_getSnappable( path.top() );
1568                 if ( snappable != 0
1569                          && Instance_getSelectable( instance )->isSelected() ) {
1570                         snappable->snapto( m_snap );
1571                 }
1572         }
1573         return true;
1574 }
1575 };
1576
1577 void Scene_SnapToGrid_Selected( scene::Graph& graph, float snap ){
1578         graph.traverse( SnappableSnapToGridSelected( snap ) );
1579 }
1580
1581 class ComponentSnappableSnapToGridSelected : public scene::Graph::Walker
1582 {
1583 float m_snap;
1584 public:
1585 ComponentSnappableSnapToGridSelected( float snap )
1586         : m_snap( snap ){
1587 }
1588 bool pre( const scene::Path& path, scene::Instance& instance ) const {
1589         if ( path.top().get().visible() ) {
1590                 ComponentSnappable* componentSnappable = Instance_getComponentSnappable( instance );
1591                 if ( componentSnappable != 0
1592                          && Instance_getSelectable( instance )->isSelected() ) {
1593                         componentSnappable->snapComponents( m_snap );
1594                 }
1595         }
1596         return true;
1597 }
1598 };
1599
1600 void Scene_SnapToGrid_Component_Selected( scene::Graph& graph, float snap ){
1601         graph.traverse( ComponentSnappableSnapToGridSelected( snap ) );
1602 }
1603
1604 void Selection_SnapToGrid(){
1605         StringOutputStream command;
1606         command << "snapSelected -grid " << GetGridSize();
1607         UndoableCommand undo( command.c_str() );
1608
1609         if ( GlobalSelectionSystem().Mode() == SelectionSystem::eComponent ) {
1610                 Scene_SnapToGrid_Component_Selected( GlobalSceneGraph(), GetGridSize() );
1611         }
1612         else
1613         {
1614                 Scene_SnapToGrid_Selected( GlobalSceneGraph(), GetGridSize() );
1615         }
1616 }
1617
1618
1619 static gint qe_every_second( gpointer data ){
1620         GdkModifierType mask;
1621
1622         gdk_window_get_pointer( 0, 0, 0, &mask );
1623
1624         if ( ( mask & ( GDK_BUTTON1_MASK | GDK_BUTTON2_MASK | GDK_BUTTON3_MASK ) ) == 0 ) {
1625                 QE_CheckAutoSave();
1626         }
1627
1628         return TRUE;
1629 }
1630
1631 guint s_qe_every_second_id = 0;
1632
1633 void EverySecondTimer_enable(){
1634         if ( s_qe_every_second_id == 0 ) {
1635                 s_qe_every_second_id = gtk_timeout_add( 1000, qe_every_second, 0 );
1636         }
1637 }
1638
1639 void EverySecondTimer_disable(){
1640         if ( s_qe_every_second_id != 0 ) {
1641                 gtk_timeout_remove( s_qe_every_second_id );
1642                 s_qe_every_second_id = 0;
1643         }
1644 }
1645
1646 gint window_realize_remove_decoration( GtkWidget* widget, gpointer data ){
1647         gdk_window_set_decorations( widget->window, (GdkWMDecoration)( GDK_DECOR_ALL | GDK_DECOR_MENU | GDK_DECOR_MINIMIZE | GDK_DECOR_MAXIMIZE ) );
1648         return FALSE;
1649 }
1650
1651 class WaitDialog
1652 {
1653 public:
1654 GtkWindow* m_window;
1655 GtkLabel* m_label;
1656 };
1657
1658 WaitDialog create_wait_dialog( const char* title, const char* text ){
1659         WaitDialog dialog;
1660
1661         dialog.m_window = create_floating_window( title, MainFrame_getWindow() );
1662         gtk_window_set_resizable( dialog.m_window, FALSE );
1663         gtk_container_set_border_width( GTK_CONTAINER( dialog.m_window ), 0 );
1664         gtk_window_set_position( dialog.m_window, GTK_WIN_POS_CENTER_ON_PARENT );
1665
1666         g_signal_connect( G_OBJECT( dialog.m_window ), "realize", G_CALLBACK( window_realize_remove_decoration ), 0 );
1667
1668         {
1669                 dialog.m_label = GTK_LABEL( gtk_label_new( text ) );
1670                 gtk_misc_set_alignment( GTK_MISC( dialog.m_label ), 0.0, 0.5 );
1671                 gtk_label_set_justify( dialog.m_label, GTK_JUSTIFY_LEFT );
1672                 gtk_widget_show( GTK_WIDGET( dialog.m_label ) );
1673                 gtk_widget_set_size_request( GTK_WIDGET( dialog.m_label ), 200, -1 );
1674
1675                 gtk_container_add( GTK_CONTAINER( dialog.m_window ), GTK_WIDGET( dialog.m_label ) );
1676         }
1677         return dialog;
1678 }
1679
1680 namespace
1681 {
1682 clock_t g_lastRedrawTime = 0;
1683 const clock_t c_redrawInterval = clock_t( CLOCKS_PER_SEC / 10 );
1684
1685 bool redrawRequired(){
1686         clock_t currentTime = std::clock();
1687         if ( currentTime - g_lastRedrawTime >= c_redrawInterval ) {
1688                 g_lastRedrawTime = currentTime;
1689                 return true;
1690         }
1691         return false;
1692 }
1693 }
1694
1695 bool MainFrame_isActiveApp(){
1696         //globalOutputStream() << "listing\n";
1697         GList* list = gtk_window_list_toplevels();
1698         for ( GList* i = list; i != 0; i = g_list_next( i ) )
1699         {
1700                 //globalOutputStream() << "toplevel.. ";
1701                 if ( gtk_window_is_active( GTK_WINDOW( i->data ) ) ) {
1702                         //globalOutputStream() << "is active\n";
1703                         return true;
1704                 }
1705                 //globalOutputStream() << "not active\n";
1706         }
1707         return false;
1708 }
1709
1710 typedef std::list<CopiedString> StringStack;
1711 StringStack g_wait_stack;
1712 WaitDialog g_wait;
1713
1714 bool ScreenUpdates_Enabled(){
1715         return g_wait_stack.empty();
1716 }
1717
1718 void ScreenUpdates_process(){
1719         if ( redrawRequired() && GTK_WIDGET_VISIBLE( g_wait.m_window ) ) {
1720                 process_gui();
1721         }
1722 }
1723
1724
1725 void ScreenUpdates_Disable( const char* message, const char* title ){
1726         if ( g_wait_stack.empty() ) {
1727                 EverySecondTimer_disable();
1728
1729                 process_gui();
1730
1731                 bool isActiveApp = MainFrame_isActiveApp();
1732
1733                 g_wait = create_wait_dialog( title, message );
1734                 gtk_grab_add( GTK_WIDGET( g_wait.m_window ) );
1735
1736                 if ( isActiveApp ) {
1737                         gtk_widget_show( GTK_WIDGET( g_wait.m_window ) );
1738                         ScreenUpdates_process();
1739                 }
1740         }
1741         else if ( GTK_WIDGET_VISIBLE( g_wait.m_window ) ) {
1742                 gtk_label_set_text( g_wait.m_label, message );
1743                 ScreenUpdates_process();
1744         }
1745         g_wait_stack.push_back( message );
1746 }
1747
1748 void ScreenUpdates_Enable(){
1749         ASSERT_MESSAGE( !ScreenUpdates_Enabled(), "screen updates already enabled" );
1750         g_wait_stack.pop_back();
1751         if ( g_wait_stack.empty() ) {
1752                 EverySecondTimer_enable();
1753                 //gtk_widget_set_sensitive(GTK_WIDGET(MainFrame_getWindow()), TRUE);
1754
1755                 gtk_grab_remove( GTK_WIDGET( g_wait.m_window ) );
1756                 destroy_floating_window( g_wait.m_window );
1757                 g_wait.m_window = 0;
1758
1759                 //gtk_window_present(MainFrame_getWindow());
1760         }
1761         else if ( GTK_WIDGET_VISIBLE( g_wait.m_window ) ) {
1762                 gtk_label_set_text( g_wait.m_label, g_wait_stack.back().c_str() );
1763                 ScreenUpdates_process();
1764         }
1765 }
1766
1767
1768
1769 void GlobalCamera_UpdateWindow(){
1770         if ( g_pParentWnd != 0 ) {
1771                 CamWnd_Update( *g_pParentWnd->GetCamWnd() );
1772         }
1773 }
1774
1775 void XY_UpdateWindow( MainFrame& mainframe ){
1776         if ( mainframe.GetXYWnd() != 0 ) {
1777                 XYWnd_Update( *mainframe.GetXYWnd() );
1778         }
1779 }
1780
1781 void XZ_UpdateWindow( MainFrame& mainframe ){
1782         if ( mainframe.GetXZWnd() != 0 ) {
1783                 XYWnd_Update( *mainframe.GetXZWnd() );
1784         }
1785 }
1786
1787 void YZ_UpdateWindow( MainFrame& mainframe ){
1788         if ( mainframe.GetYZWnd() != 0 ) {
1789                 XYWnd_Update( *mainframe.GetYZWnd() );
1790         }
1791 }
1792
1793 void XY_UpdateAllWindows( MainFrame& mainframe ){
1794         XY_UpdateWindow( mainframe );
1795         XZ_UpdateWindow( mainframe );
1796         YZ_UpdateWindow( mainframe );
1797 }
1798
1799 void XY_UpdateAllWindows(){
1800         if ( g_pParentWnd != 0 ) {
1801                 XY_UpdateAllWindows( *g_pParentWnd );
1802         }
1803 }
1804
1805 void UpdateAllWindows(){
1806         GlobalCamera_UpdateWindow();
1807         XY_UpdateAllWindows();
1808 }
1809
1810
1811 void ModeChangeNotify(){
1812         SceneChangeNotify();
1813 }
1814
1815 void ClipperChangeNotify(){
1816         GlobalCamera_UpdateWindow();
1817         XY_UpdateAllWindows();
1818 }
1819
1820
1821 LatchedInt g_Layout_viewStyle( 0, "Window Layout" );
1822 LatchedBool g_Layout_enableDetachableMenus( true, "Detachable Menus" );
1823 LatchedBool g_Layout_enableMainToolbar( true, "Main Toolbar" );
1824 LatchedBool g_Layout_enablePatchToolbar( true, "Patch Toolbar" );
1825 LatchedBool g_Layout_enablePluginToolbar( true, "Plugin Toolbar" );
1826 LatchedBool g_Layout_enableFilterToolbar( true, "Filter Toolbar" );
1827
1828
1829
1830 GtkMenuItem* create_file_menu(){
1831         // File menu
1832         GtkMenuItem* file_menu_item = new_sub_menu_item_with_mnemonic( "_File" );
1833         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( file_menu_item ) );
1834         if ( g_Layout_enableDetachableMenus.m_value ) {
1835                 menu_tearoff( menu );
1836         }
1837
1838         create_menu_item_with_mnemonic( menu, "_New Map", "NewMap" );
1839         menu_separator( menu );
1840
1841 #if 0
1842         //++timo temporary experimental stuff for sleep mode..
1843         create_menu_item_with_mnemonic( menu, "_Sleep", "Sleep" );
1844         menu_separator( menu );
1845         // end experimental
1846 #endif
1847
1848         create_menu_item_with_mnemonic( menu, "_Open...", "OpenMap" );
1849         create_menu_item_with_mnemonic( menu, "_Import...", "ImportMap" );
1850         menu_separator( menu );
1851         create_menu_item_with_mnemonic( menu, "_Save", "SaveMap" );
1852         create_menu_item_with_mnemonic( menu, "Save _as...", "SaveMapAs" );
1853         create_menu_item_with_mnemonic( menu, "Save s_elected...", "SaveSelected" );
1854         create_menu_item_with_mnemonic( menu, "Save re_gion...", "SaveRegion" );
1855         menu_separator( menu );
1856 //      menu_separator( menu );
1857 //      create_menu_item_with_mnemonic( menu, "_Refresh models", "RefreshReferences" );
1858 //      menu_separator( menu );
1859         create_menu_item_with_mnemonic( menu, "Pro_ject settings...", "ProjectSettings" );
1860         //menu_separator( menu );
1861         create_menu_item_with_mnemonic( menu, "_Pointfile", "TogglePointfile" );
1862         menu_separator( menu );
1863         MRU_constructMenu( menu );
1864         menu_separator( menu );
1865 //      create_menu_item_with_mnemonic( menu, "Check for NetRadiant update (web)", "CheckForUpdate" ); // FIXME
1866         create_menu_item_with_mnemonic( menu, "E_xit", "Exit" );
1867
1868         return file_menu_item;
1869 }
1870
1871 GtkMenuItem* create_edit_menu(){
1872         // Edit menu
1873         GtkMenuItem* edit_menu_item = new_sub_menu_item_with_mnemonic( "_Edit" );
1874         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( edit_menu_item ) );
1875         if ( g_Layout_enableDetachableMenus.m_value ) {
1876                 menu_tearoff( menu );
1877         }
1878         create_menu_item_with_mnemonic( menu, "_Undo", "Undo" );
1879         create_menu_item_with_mnemonic( menu, "_Redo", "Redo" );
1880         menu_separator( menu );
1881         create_menu_item_with_mnemonic( menu, "_Copy", "Copy" );
1882         create_menu_item_with_mnemonic( menu, "_Paste", "Paste" );
1883         create_menu_item_with_mnemonic( menu, "P_aste To Camera", "PasteToCamera" );
1884         menu_separator( menu );
1885         create_menu_item_with_mnemonic( menu, "_Duplicate", "CloneSelection" );
1886         create_menu_item_with_mnemonic( menu, "Duplicate, make uni_que", "CloneSelectionAndMakeUnique" );
1887         create_menu_item_with_mnemonic( menu, "D_elete", "DeleteSelection" );
1888         //create_menu_item_with_mnemonic( menu, "Pa_rent", "ParentSelection" );
1889         menu_separator( menu );
1890         create_menu_item_with_mnemonic( menu, "C_lear Selection", "UnSelectSelection" );
1891         create_menu_item_with_mnemonic( menu, "_Invert Selection", "InvertSelection" );
1892         create_menu_item_with_mnemonic( menu, "Select i_nside", "SelectInside" );
1893         create_menu_item_with_mnemonic( menu, "Select _touching", "SelectTouching" );
1894
1895         menu_separator( menu );
1896
1897 //      GtkMenu* convert_menu = create_sub_menu_with_mnemonic( menu, "E_xpand Selection" );
1898 //      if ( g_Layout_enableDetachableMenus.m_value ) {
1899 //              menu_tearoff( convert_menu );
1900 //      }
1901         create_menu_item_with_mnemonic( menu, "Select All Of Type", "SelectAllOfType" );
1902         create_menu_item_with_mnemonic( menu, "_Expand Selection To Entities", "ExpandSelectionToEntities" );
1903
1904         menu_separator( menu );
1905         create_menu_item_with_mnemonic( menu, "Pre_ferences...", "Preferences" );
1906
1907         return edit_menu_item;
1908 }
1909
1910
1911 GtkWidget* g_toggle_z_item = 0;
1912 GtkWidget* g_toggle_console_item = 0;
1913 GtkWidget* g_toggle_entity_item = 0;
1914 GtkWidget* g_toggle_entitylist_item = 0;
1915
1916 GtkMenuItem* create_view_menu( MainFrame::EViewStyle style ){
1917         // View menu
1918         GtkMenuItem* view_menu_item = new_sub_menu_item_with_mnemonic( "Vie_w" );
1919         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( view_menu_item ) );
1920         if ( g_Layout_enableDetachableMenus.m_value ) {
1921                 menu_tearoff( menu );
1922         }
1923
1924         if ( style == MainFrame::eFloating ) {
1925                 create_check_menu_item_with_mnemonic( menu, "Camera View", "ToggleCamera" );
1926                 create_check_menu_item_with_mnemonic( menu, "XY (Top) View", "ToggleView" );
1927                 create_check_menu_item_with_mnemonic( menu, "XZ (Front) View", "ToggleFrontView" );
1928                 create_check_menu_item_with_mnemonic( menu, "YZ (Side) View", "ToggleSideView" );
1929         }
1930         if ( style == MainFrame::eFloating || style == MainFrame::eSplit ) {
1931                 create_menu_item_with_mnemonic( menu, "Console", "ToggleConsole" );
1932                 create_menu_item_with_mnemonic( menu, "Texture Browser", "ToggleTextures" );
1933                 create_menu_item_with_mnemonic( menu, "Entity Inspector", "ToggleEntityInspector" );
1934         }
1935         else
1936         {
1937                 create_menu_item_with_mnemonic( menu, "Entity Inspector", "ViewEntityInfo" );
1938         }
1939         create_menu_item_with_mnemonic( menu, "_Surface Inspector", "SurfaceInspector" );
1940         create_menu_item_with_mnemonic( menu, "_Patch Inspector", "PatchInspector" );
1941         create_menu_item_with_mnemonic( menu, "Entity List", "EntityList" );
1942
1943         menu_separator( menu );
1944         {
1945                 GtkMenu* camera_menu = create_sub_menu_with_mnemonic( menu, "Camera" );
1946                 if ( g_Layout_enableDetachableMenus.m_value ) {
1947                         menu_tearoff( camera_menu );
1948                 }
1949                 create_menu_item_with_mnemonic( camera_menu, "Focus on Selected", "CameraFocusOnSelected" );
1950                 create_menu_item_with_mnemonic( camera_menu, "_Center", "CenterView" );
1951                 create_menu_item_with_mnemonic( camera_menu, "_Up Floor", "UpFloor" );
1952                 create_menu_item_with_mnemonic( camera_menu, "_Down Floor", "DownFloor" );
1953                 menu_separator( camera_menu );
1954                 create_menu_item_with_mnemonic( camera_menu, "Far Clip Plane In", "CubicClipZoomIn" );
1955                 create_menu_item_with_mnemonic( camera_menu, "Far Clip Plane Out", "CubicClipZoomOut" );
1956                 menu_separator( camera_menu );
1957                 create_menu_item_with_mnemonic( camera_menu, "Next leak spot", "NextLeakSpot" );
1958                 create_menu_item_with_mnemonic( camera_menu, "Previous leak spot", "PrevLeakSpot" );
1959                 //cameramodel is not implemented in instances, thus useless
1960 //              menu_separator( camera_menu );
1961 //              create_menu_item_with_mnemonic( camera_menu, "Look Through Selected", "LookThroughSelected" );
1962 //              create_menu_item_with_mnemonic( camera_menu, "Look Through Camera", "LookThroughCamera" );
1963         }
1964         menu_separator( menu );
1965         {
1966                 GtkMenu* orthographic_menu = create_sub_menu_with_mnemonic( menu, "Orthographic" );
1967                 if ( g_Layout_enableDetachableMenus.m_value ) {
1968                         menu_tearoff( orthographic_menu );
1969                 }
1970                 if ( style == MainFrame::eRegular || style == MainFrame::eRegularLeft || style == MainFrame::eFloating ) {
1971                         create_menu_item_with_mnemonic( orthographic_menu, "_Next (XY, YZ, XY)", "NextView" );
1972                         create_menu_item_with_mnemonic( orthographic_menu, "XY (Top)", "ViewTop" );
1973                         create_menu_item_with_mnemonic( orthographic_menu, "XZ (Front)", "ViewFront" );
1974                         create_menu_item_with_mnemonic( orthographic_menu, "YZ (Side)", "ViewSide" );
1975                         menu_separator( orthographic_menu );
1976                 }
1977                 else{
1978                         create_menu_item_with_mnemonic( orthographic_menu, "Center on Selected", "NextView" );
1979                 }
1980
1981                 create_menu_item_with_mnemonic( orthographic_menu, "Center on Selected", "CenterXYView" );
1982                 menu_separator( orthographic_menu );
1983                 create_menu_item_with_mnemonic( orthographic_menu, "_XY 100%", "Zoom100" );
1984                 create_menu_item_with_mnemonic( orthographic_menu, "XY Zoom _In", "ZoomIn" );
1985                 create_menu_item_with_mnemonic( orthographic_menu, "XY Zoom _Out", "ZoomOut" );
1986         }
1987
1988         menu_separator( menu );
1989
1990         {
1991                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Show" );
1992                 if ( g_Layout_enableDetachableMenus.m_value ) {
1993                         menu_tearoff( menu_in_menu );
1994                 }
1995                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Entity _Angles", "ShowAngles" );
1996                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Entity _Names", "ShowNames" );
1997                 create_check_menu_item_with_mnemonic( menu_in_menu, "Entity Names = Targetnames", "ShowTargetNames" );
1998                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Light Radiuses", "ShowLightRadiuses" );
1999
2000                 menu_separator( menu_in_menu );
2001
2002                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Size Info", "ToggleSizePaint" );
2003                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Crosshair", "ToggleCrosshairs" );
2004                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Grid", "ToggleGrid" );
2005                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Blocks", "ShowBlocks" );
2006                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show C_oordinates", "ShowCoordinates" );
2007                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Window Outline", "ShowWindowOutline" );
2008                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Axes", "ShowAxes" );
2009                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Workzone", "ShowWorkzone" );
2010                 create_check_menu_item_with_mnemonic( menu_in_menu, "Show Camera Stats", "ShowStats" );
2011         }
2012
2013         {
2014                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Filter" );
2015                 if ( g_Layout_enableDetachableMenus.m_value ) {
2016                         menu_tearoff( menu_in_menu );
2017                 }
2018                 Filters_constructMenu( menu_in_menu );
2019         }
2020         menu_separator( menu );
2021         {
2022                 create_check_menu_item_with_mnemonic( menu, "Hide Selected", "HideSelected" );
2023                 create_menu_item_with_mnemonic( menu, "Show Hidden", "ShowHidden" );
2024         }
2025         menu_separator( menu );
2026         {
2027                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Region" );
2028                 if ( g_Layout_enableDetachableMenus.m_value ) {
2029                         menu_tearoff( menu_in_menu );
2030                 }
2031                 create_menu_item_with_mnemonic( menu_in_menu, "_Off", "RegionOff" );
2032                 create_menu_item_with_mnemonic( menu_in_menu, "_Set XY", "RegionSetXY" );
2033                 create_menu_item_with_mnemonic( menu_in_menu, "Set _Brush", "RegionSetBrush" );
2034                 create_check_menu_item_with_mnemonic( menu_in_menu, "Set Se_lected Brushes", "RegionSetSelection" );
2035         }
2036
2037         //command_connect_accelerator( "CenterXYView" );
2038
2039         return view_menu_item;
2040 }
2041
2042 GtkMenuItem* create_selection_menu(){
2043         // Selection menu
2044         GtkMenuItem* selection_menu_item = new_sub_menu_item_with_mnemonic( "M_odify" );
2045         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( selection_menu_item ) );
2046         if ( g_Layout_enableDetachableMenus.m_value ) {
2047                 menu_tearoff( menu );
2048         }
2049
2050         {
2051                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Components" );
2052                 if ( g_Layout_enableDetachableMenus.m_value ) {
2053                         menu_tearoff( menu_in_menu );
2054                 }
2055                 create_check_menu_item_with_mnemonic( menu_in_menu, "_Edges", "DragEdges" );
2056                 create_check_menu_item_with_mnemonic( menu_in_menu, "_Vertices", "DragVertices" );
2057                 create_check_menu_item_with_mnemonic( menu_in_menu, "_Faces", "DragFaces" );
2058         }
2059
2060         menu_separator( menu );
2061         create_menu_item_with_mnemonic( menu, "Snap To Grid", "SnapToGrid" );
2062
2063         menu_separator( menu );
2064
2065         {
2066                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Nudge" );
2067                 if ( g_Layout_enableDetachableMenus.m_value ) {
2068                         menu_tearoff( menu_in_menu );
2069                 }
2070                 create_menu_item_with_mnemonic( menu_in_menu, "Nudge Left", "SelectNudgeLeft" );
2071                 create_menu_item_with_mnemonic( menu_in_menu, "Nudge Right", "SelectNudgeRight" );
2072                 create_menu_item_with_mnemonic( menu_in_menu, "Nudge Up", "SelectNudgeUp" );
2073                 create_menu_item_with_mnemonic( menu_in_menu, "Nudge Down", "SelectNudgeDown" );
2074                 menu_separator( menu_in_menu );
2075                 create_menu_item_with_mnemonic( menu_in_menu, "Nudge +Z", "MoveSelectionUP" );
2076                 create_menu_item_with_mnemonic( menu_in_menu, "Nudge -Z", "MoveSelectionDOWN" );
2077         }
2078         {
2079                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Rotate" );
2080                 if ( g_Layout_enableDetachableMenus.m_value ) {
2081                         menu_tearoff( menu_in_menu );
2082                 }
2083                 create_menu_item_with_mnemonic( menu_in_menu, "Rotate X", "RotateSelectionX" );
2084                 create_menu_item_with_mnemonic( menu_in_menu, "Rotate Y", "RotateSelectionY" );
2085                 create_menu_item_with_mnemonic( menu_in_menu, "Rotate Z", "RotateSelectionZ" );
2086                 menu_separator( menu_in_menu );
2087                 create_menu_item_with_mnemonic( menu_in_menu, "Rotate Clockwise", "RotateSelectionClockwise" );
2088                 create_menu_item_with_mnemonic( menu_in_menu, "Rotate Anticlockwise", "RotateSelectionAnticlockwise" );
2089         }
2090         {
2091                 GtkMenu* menu_in_menu = create_sub_menu_with_mnemonic( menu, "Flip" );
2092                 if ( g_Layout_enableDetachableMenus.m_value ) {
2093                         menu_tearoff( menu_in_menu );
2094                 }
2095                 create_menu_item_with_mnemonic( menu_in_menu, "Flip _X", "MirrorSelectionX" );
2096                 create_menu_item_with_mnemonic( menu_in_menu, "Flip _Y", "MirrorSelectionY" );
2097                 create_menu_item_with_mnemonic( menu_in_menu, "Flip _Z", "MirrorSelectionZ" );
2098                 menu_separator( menu_in_menu );
2099                 create_menu_item_with_mnemonic( menu_in_menu, "Flip Horizontally", "MirrorSelectionHorizontally" );
2100                 create_menu_item_with_mnemonic( menu_in_menu, "Flip Vertically", "MirrorSelectionVertically" );
2101         }
2102         menu_separator( menu );
2103         create_menu_item_with_mnemonic( menu, "Arbitrary rotation...", "ArbitraryRotation" );
2104         create_menu_item_with_mnemonic( menu, "Arbitrary scale...", "ArbitraryScale" );
2105
2106         return selection_menu_item;
2107 }
2108
2109 GtkMenuItem* create_bsp_menu(){
2110         // BSP menu
2111         GtkMenuItem* bsp_menu_item = new_sub_menu_item_with_mnemonic( "_Build" );
2112         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( bsp_menu_item ) );
2113
2114         if ( g_Layout_enableDetachableMenus.m_value ) {
2115                 menu_tearoff( menu );
2116         }
2117
2118         create_menu_item_with_mnemonic( menu, "Customize...", "BuildMenuCustomize" );
2119         create_menu_item_with_mnemonic( menu, "Run recent build", "Build_runRecentExecutedBuild" );
2120
2121         menu_separator( menu );
2122
2123         Build_constructMenu( menu );
2124
2125         g_bsp_menu = menu;
2126
2127         return bsp_menu_item;
2128 }
2129
2130 GtkMenuItem* create_grid_menu(){
2131         // Grid menu
2132         GtkMenuItem* grid_menu_item = new_sub_menu_item_with_mnemonic( "_Grid" );
2133         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( grid_menu_item ) );
2134         if ( g_Layout_enableDetachableMenus.m_value ) {
2135                 menu_tearoff( menu );
2136         }
2137
2138         Grid_constructMenu( menu );
2139
2140         return grid_menu_item;
2141 }
2142
2143 GtkMenuItem* create_misc_menu(){
2144         // Misc menu
2145         GtkMenuItem* misc_menu_item = new_sub_menu_item_with_mnemonic( "M_isc" );
2146         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( misc_menu_item ) );
2147         if ( g_Layout_enableDetachableMenus.m_value ) {
2148                 menu_tearoff( menu );
2149         }
2150
2151 #if 0
2152         create_menu_item_with_mnemonic( menu, "_Benchmark", FreeCaller<GlobalCamera_Benchmark>() );
2153 #endif
2154         gtk_container_add( GTK_CONTAINER( menu ), GTK_WIDGET( create_colours_menu() ) );
2155
2156         create_menu_item_with_mnemonic( menu, "Find brush...", "FindBrush" );
2157         create_menu_item_with_mnemonic( menu, "Map Info...", "MapInfo" );
2158         // http://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=394
2159 //  create_menu_item_with_mnemonic(menu, "_Print XY View", FreeCaller<WXY_Print>());
2160         create_menu_item_with_mnemonic( menu, "_Background image...", FreeCaller<WXY_BackgroundSelect>() );
2161         create_menu_item_with_mnemonic( menu, "Fullscreen", "Fullscreen" );
2162         create_menu_item_with_mnemonic( menu, "Maximize view", "MaximizeView" );
2163         return misc_menu_item;
2164 }
2165
2166 GtkMenuItem* create_entity_menu(){
2167         // Brush menu
2168         GtkMenuItem* entity_menu_item = new_sub_menu_item_with_mnemonic( "E_ntity" );
2169         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( entity_menu_item ) );
2170         if ( g_Layout_enableDetachableMenus.m_value ) {
2171                 menu_tearoff( menu );
2172         }
2173
2174         Entity_constructMenu( menu );
2175
2176         return entity_menu_item;
2177 }
2178
2179 GtkMenuItem* create_brush_menu(){
2180         // Brush menu
2181         GtkMenuItem* brush_menu_item = new_sub_menu_item_with_mnemonic( "B_rush" );
2182         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( brush_menu_item ) );
2183         if ( g_Layout_enableDetachableMenus.m_value ) {
2184                 menu_tearoff( menu );
2185         }
2186
2187         Brush_constructMenu( menu );
2188
2189         return brush_menu_item;
2190 }
2191
2192 GtkMenuItem* create_patch_menu(){
2193         // Curve menu
2194         GtkMenuItem* patch_menu_item = new_sub_menu_item_with_mnemonic( "_Curve" );
2195         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( patch_menu_item ) );
2196         if ( g_Layout_enableDetachableMenus.m_value ) {
2197                 menu_tearoff( menu );
2198         }
2199
2200         Patch_constructMenu( menu );
2201
2202         return patch_menu_item;
2203 }
2204
2205 GtkMenuItem* create_help_menu(){
2206         // Help menu
2207         GtkMenuItem* help_menu_item = new_sub_menu_item_with_mnemonic( "_Help" );
2208         GtkMenu* menu = GTK_MENU( gtk_menu_item_get_submenu( help_menu_item ) );
2209         if ( g_Layout_enableDetachableMenus.m_value ) {
2210                 menu_tearoff( menu );
2211         }
2212
2213 //      create_menu_item_with_mnemonic( menu, "Manual", "OpenManual" );
2214
2215         // this creates all the per-game drop downs for the game pack helps
2216         // it will take care of hooking the Sys_OpenURL calls etc.
2217         create_game_help_menu( menu );
2218
2219 //      create_menu_item_with_mnemonic( menu, "Bug report", FreeCaller<OpenBugReportURL>() );
2220         create_menu_item_with_mnemonic( menu, "Shortcuts", FreeCaller<DoCommandListDlg>() );
2221         create_menu_item_with_mnemonic( menu, "_About", FreeCaller<DoAbout>() );
2222
2223         return help_menu_item;
2224 }
2225
2226 GtkMenuBar* create_main_menu( MainFrame::EViewStyle style ){
2227         GtkMenuBar* menu_bar = GTK_MENU_BAR( gtk_menu_bar_new() );
2228         gtk_widget_show( GTK_WIDGET( menu_bar ) );
2229
2230         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_file_menu() ) );
2231         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_edit_menu() ) );
2232         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_view_menu( style ) ) );
2233         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_selection_menu() ) );
2234         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_bsp_menu() ) );
2235         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_grid_menu() ) );
2236         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_misc_menu() ) );
2237         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_entity_menu() ) );
2238         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_brush_menu() ) );
2239         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_patch_menu() ) );
2240         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_plugins_menu() ) );
2241         gtk_container_add( GTK_CONTAINER( menu_bar ), GTK_WIDGET( create_help_menu() ) );
2242
2243         return menu_bar;
2244 }
2245
2246
2247 void PatchInspector_registerShortcuts(){
2248         command_connect_accelerator( "PatchInspector" );
2249 }
2250
2251 void Patch_registerShortcuts(){
2252 //      command_connect_accelerator( "InvertCurveTextureX" );
2253 //      command_connect_accelerator( "InvertCurveTextureY" );
2254 //      command_connect_accelerator( "PatchInsertInsertColumn" );
2255 //      command_connect_accelerator( "PatchInsertInsertRow" );
2256 //      command_connect_accelerator( "PatchDeleteLastColumn" );
2257 //      command_connect_accelerator( "PatchDeleteLastRow" );
2258 //      command_connect_accelerator( "NaturalizePatch" );
2259         //command_connect_accelerator("CapCurrentCurve");
2260 }
2261
2262 void Manipulators_registerShortcuts(){
2263         toggle_add_accelerator( "MouseRotate" );
2264         toggle_add_accelerator( "MouseTranslate" );
2265         toggle_add_accelerator( "MouseScale" );
2266         toggle_add_accelerator( "MouseDrag" );
2267         toggle_add_accelerator( "ToggleClipper" );
2268 }
2269
2270 void TexdefNudge_registerShortcuts(){
2271         command_connect_accelerator( "TexRotateClock" );
2272         command_connect_accelerator( "TexRotateCounter" );
2273         command_connect_accelerator( "TexScaleUp" );
2274         command_connect_accelerator( "TexScaleDown" );
2275         command_connect_accelerator( "TexScaleLeft" );
2276         command_connect_accelerator( "TexScaleRight" );
2277         command_connect_accelerator( "TexShiftUp" );
2278         command_connect_accelerator( "TexShiftDown" );
2279         command_connect_accelerator( "TexShiftLeft" );
2280         command_connect_accelerator( "TexShiftRight" );
2281 }
2282
2283 void SelectNudge_registerShortcuts(){
2284         //command_connect_accelerator( "MoveSelectionDOWN" );
2285         //command_connect_accelerator( "MoveSelectionUP" );
2286         //command_connect_accelerator("SelectNudgeLeft");
2287         //command_connect_accelerator("SelectNudgeRight");
2288         //command_connect_accelerator("SelectNudgeUp");
2289         //command_connect_accelerator("SelectNudgeDown");
2290         command_connect_accelerator( "UnSelectSelection2" );
2291         command_connect_accelerator( "DeleteSelection2" );
2292 }
2293
2294 void SnapToGrid_registerShortcuts(){
2295         command_connect_accelerator( "SnapToGrid" );
2296 }
2297
2298 void SelectByType_registerShortcuts(){
2299         command_connect_accelerator( "SelectAllOfType" );
2300 }
2301
2302 void SurfaceInspector_registerShortcuts(){
2303         command_connect_accelerator( "FitTexture" );
2304 }
2305
2306 void TexBro_registerShortcuts(){
2307         command_connect_accelerator( "FindReplaceTextures" );
2308         command_connect_accelerator( "RefreshShaders" );
2309 }
2310
2311 void Misc_registerShortcuts(){
2312         //refresh models
2313         command_connect_accelerator( "RefreshReferences" );
2314         command_connect_accelerator( "MouseRotateOrScale" );
2315         command_connect_accelerator( "MouseDragOrScale" );
2316 }
2317
2318
2319 void register_shortcuts(){
2320 //      PatchInspector_registerShortcuts();
2321         //Patch_registerShortcuts();
2322         Grid_registerShortcuts();
2323 //      XYWnd_registerShortcuts();
2324         CamWnd_registerShortcuts();
2325         Manipulators_registerShortcuts();
2326         SurfaceInspector_registerShortcuts();
2327         TexdefNudge_registerShortcuts();
2328         SelectNudge_registerShortcuts();
2329 //      SnapToGrid_registerShortcuts();
2330 //      SelectByType_registerShortcuts();
2331         TexBro_registerShortcuts();
2332         Misc_registerShortcuts();
2333 }
2334
2335 void File_constructToolbar( GtkToolbar* toolbar ){
2336         toolbar_append_button( toolbar, "Open an existing map (CTRL + O)", "file_open.png", "OpenMap" );
2337         toolbar_append_button( toolbar, "Save the active map (CTRL + S)", "file_save.png", "SaveMap" );
2338 }
2339
2340 void UndoRedo_constructToolbar( GtkToolbar* toolbar ){
2341         toolbar_append_button( toolbar, "Undo (CTRL + Z)", "undo.png", "Undo" );
2342         toolbar_append_button( toolbar, "Redo (CTRL + Y)", "redo.png", "Redo" );
2343 }
2344
2345 void RotateFlip_constructToolbar( GtkToolbar* toolbar ){
2346 //      toolbar_append_button( toolbar, "x-axis Flip", "brush_flipx.png", "MirrorSelectionX" );
2347 //      toolbar_append_button( toolbar, "x-axis Rotate", "brush_rotatex.png", "RotateSelectionX" );
2348 //      toolbar_append_button( toolbar, "y-axis Flip", "brush_flipy.png", "MirrorSelectionY" );
2349 //      toolbar_append_button( toolbar, "y-axis Rotate", "brush_rotatey.png", "RotateSelectionY" );
2350 //      toolbar_append_button( toolbar, "z-axis Flip", "brush_flipz.png", "MirrorSelectionZ" );
2351 //      toolbar_append_button( toolbar, "z-axis Rotate", "brush_rotatez.png", "RotateSelectionZ" );
2352         toolbar_append_button( toolbar, "Flip Horizontally", "brush_flip_hor.png", "MirrorSelectionHorizontally" );
2353         toolbar_append_button( toolbar, "Flip Vertically", "brush_flip_vert.png", "MirrorSelectionVertically" );
2354
2355         toolbar_append_button( toolbar, "Rotate Clockwise", "brush_rotate_clock.png", "RotateSelectionClockwise" );
2356         toolbar_append_button( toolbar, "Rotate Anticlockwise", "brush_rotate_anti.png", "RotateSelectionAnticlockwise" );
2357 }
2358
2359 void Select_constructToolbar( GtkToolbar* toolbar ){
2360         toolbar_append_button( toolbar, "Select touching", "selection_selecttouching.png", "SelectTouching" );
2361         toolbar_append_button( toolbar, "Select inside", "selection_selectinside.png", "SelectInside" );
2362 }
2363
2364 void CSG_constructToolbar( GtkToolbar* toolbar ){
2365         toolbar_append_button( toolbar, "CSG Subtract (SHIFT + U)", "selection_csgsubtract.png", "CSGSubtract" );
2366         toolbar_append_button( toolbar, "CSG Merge (CTRL + U)", "selection_csgmerge.png", "CSGMerge" );
2367         toolbar_append_button( toolbar, "Room", "selection_makeroom.png", "CSGroom" );
2368         toolbar_append_button( toolbar, "CSG Tool", "ellipsis.png", "CSGTool" );
2369 }
2370
2371 void ComponentModes_constructToolbar( GtkToolbar* toolbar ){
2372         toolbar_append_toggle_button( toolbar, "Select Vertices (V)", "modify_vertices.png", "DragVertices" );
2373         toolbar_append_toggle_button( toolbar, "Select Edges (E)", "modify_edges.png", "DragEdges" );
2374         toolbar_append_toggle_button( toolbar, "Select Faces (F)", "modify_faces.png", "DragFaces" );
2375 }
2376
2377 void Clipper_constructToolbar( GtkToolbar* toolbar ){
2378
2379         toolbar_append_toggle_button( toolbar, "Clipper (X)", "view_clipper.png", "ToggleClipper" );
2380 }
2381
2382 void XYWnd_constructToolbar( GtkToolbar* toolbar ){
2383         toolbar_append_button( toolbar, "Change views (CTRL + TAB)", "view_change.png", "NextView" );
2384 }
2385
2386 void Manipulators_constructToolbar( GtkToolbar* toolbar ){
2387         toolbar_append_toggle_button( toolbar, "Translate (W)", "select_mousetranslate.png", "MouseTranslate" );
2388         toolbar_append_toggle_button( toolbar, "Rotate (R)", "select_mouserotate.png", "MouseRotate" );
2389         toolbar_append_toggle_button( toolbar, "Scale (Q)", "select_mousescale.png", "MouseScale" );
2390         toolbar_append_toggle_button( toolbar, "Resize (Q)", "select_mouseresize.png", "MouseDrag" );
2391
2392         Clipper_constructToolbar( toolbar );
2393 }
2394
2395 GtkToolbar* create_main_toolbar( MainFrame::EViewStyle style ){
2396         GtkToolbar* toolbar = GTK_TOOLBAR( gtk_toolbar_new() );
2397         gtk_toolbar_set_orientation( toolbar, GTK_ORIENTATION_HORIZONTAL );
2398         gtk_toolbar_set_style( toolbar, GTK_TOOLBAR_ICONS );
2399 //      gtk_toolbar_set_show_arrow( toolbar, TRUE );
2400         //gtk_orientable_set_orientation( GTK_ORIENTABLE( toolbar ), GTK_ORIENTATION_HORIZONTAL );
2401         //toolbar_append_space( toolbar );
2402         gtk_widget_show( GTK_WIDGET( toolbar ) );
2403
2404         File_constructToolbar( toolbar );
2405         gtk_toolbar_append_space( toolbar );
2406
2407         UndoRedo_constructToolbar( toolbar );
2408         gtk_toolbar_append_space( toolbar );
2409
2410         RotateFlip_constructToolbar( toolbar );
2411         gtk_toolbar_append_space( toolbar );
2412
2413         Select_constructToolbar( toolbar );
2414         gtk_toolbar_append_space( toolbar );
2415
2416         CSG_constructToolbar( toolbar );
2417         gtk_toolbar_append_space( toolbar );
2418
2419         ComponentModes_constructToolbar( toolbar );
2420         gtk_toolbar_append_space( toolbar );
2421
2422         if ( style != MainFrame::eSplit ) {
2423                 XYWnd_constructToolbar( toolbar );
2424                 gtk_toolbar_append_space( toolbar );
2425         }
2426
2427         CamWnd_constructToolbar( toolbar );
2428         gtk_toolbar_append_space( toolbar );
2429
2430         Manipulators_constructToolbar( toolbar );
2431         gtk_toolbar_append_space( toolbar );
2432
2433         if ( g_Layout_enablePatchToolbar.m_value ) {
2434                 Patch_constructToolbar( toolbar );
2435                 gtk_toolbar_append_space( toolbar );
2436         }
2437
2438         toolbar_append_toggle_button( toolbar, "Texture Lock (SHIFT + T)", "texture_lock.png", "TogTexLock" );
2439         gtk_toolbar_append_space( toolbar );
2440
2441         toolbar_append_button( toolbar, "Entities (N)", "entities.png", "ToggleEntityInspector" );
2442         // disable the console and texture button in the regular layouts
2443         if ( style != MainFrame::eRegular && style != MainFrame::eRegularLeft ) {
2444                 toolbar_append_button( toolbar, "Console (O)", "console.png", "ToggleConsole" );
2445                 toolbar_append_button( toolbar, "Texture Browser (T)", "texture_browser.png", "ToggleTextures" );
2446         }
2447
2448         // TODO: call light inspector
2449         //GtkButton* g_view_lightinspector_button = toolbar_append_button(toolbar, "Light Inspector", "lightinspector.png", "ToggleLightInspector");
2450
2451         gtk_toolbar_append_space( toolbar );
2452         toolbar_append_button( toolbar, "Refresh Models", "refresh_models.png", "RefreshReferences" );
2453
2454         return toolbar;
2455 }
2456
2457 GtkWidget* create_main_statusbar( GtkWidget *pStatusLabel[c_count_status] ){
2458         GtkTable* table = GTK_TABLE( gtk_table_new( 1, c_count_status, FALSE ) );
2459         gtk_widget_show( GTK_WIDGET( table ) );
2460
2461         {
2462                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Label" ) );
2463                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
2464                 gtk_misc_set_padding( GTK_MISC( label ), 4, 2 );
2465                 gtk_widget_show( GTK_WIDGET( label ) );
2466                 gtk_table_attach_defaults( table, GTK_WIDGET( label ), 0, 1, 0, 1 );
2467                 pStatusLabel[c_command_status] = GTK_WIDGET( label );
2468         }
2469
2470         for ( int i = 1; i < c_count_status; ++i )
2471         {
2472                 GtkFrame* frame = GTK_FRAME( gtk_frame_new( 0 ) );
2473                 gtk_widget_show( GTK_WIDGET( frame ) );
2474                 gtk_table_attach_defaults( table, GTK_WIDGET( frame ), i, i + 1, 0, 1 );
2475                 gtk_frame_set_shadow_type( frame, GTK_SHADOW_IN );
2476
2477                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Label" ) );
2478                 if( i == c_texture_status )
2479                         gtk_label_set_ellipsize( label, PANGO_ELLIPSIZE_START );
2480                 else
2481                         gtk_label_set_ellipsize( label, PANGO_ELLIPSIZE_END );
2482
2483                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
2484                 gtk_misc_set_padding( GTK_MISC( label ), 4, 2 );
2485                 gtk_widget_show( GTK_WIDGET( label ) );
2486                 gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( label ) );
2487                 pStatusLabel[i] = GTK_WIDGET( label );
2488         }
2489
2490         return GTK_WIDGET( table );
2491 }
2492
2493 #if 0
2494
2495
2496 WidgetFocusPrinter g_mainframeWidgetFocusPrinter( "mainframe" );
2497
2498 class WindowFocusPrinter
2499 {
2500 const char* m_name;
2501
2502 static gboolean frame_event( GtkWidget *widget, GdkEvent* event, WindowFocusPrinter* self ){
2503         globalOutputStream() << self->m_name << " frame_event\n";
2504         return FALSE;
2505 }
2506 static gboolean keys_changed( GtkWidget *widget, WindowFocusPrinter* self ){
2507         globalOutputStream() << self->m_name << " keys_changed\n";
2508         return FALSE;
2509 }
2510 static gboolean notify( GtkWindow* window, gpointer dummy, WindowFocusPrinter* self ){
2511         if ( gtk_window_is_active( window ) ) {
2512                 globalOutputStream() << self->m_name << " takes toplevel focus\n";
2513         }
2514         else
2515         {
2516                 globalOutputStream() << self->m_name << " loses toplevel focus\n";
2517         }
2518         return FALSE;
2519 }
2520 public:
2521 WindowFocusPrinter( const char* name ) : m_name( name ){
2522 }
2523 void connect( GtkWindow* toplevel_window ){
2524         g_signal_connect( G_OBJECT( toplevel_window ), "notify::has_toplevel_focus", G_CALLBACK( notify ), this );
2525         g_signal_connect( G_OBJECT( toplevel_window ), "notify::is_active", G_CALLBACK( notify ), this );
2526         g_signal_connect( G_OBJECT( toplevel_window ), "keys_changed", G_CALLBACK( keys_changed ), this );
2527         g_signal_connect( G_OBJECT( toplevel_window ), "frame_event", G_CALLBACK( frame_event ), this );
2528 }
2529 };
2530
2531 WindowFocusPrinter g_mainframeFocusPrinter( "mainframe" );
2532
2533 #endif
2534
2535 class MainWindowActive
2536 {
2537 static gboolean notify( GtkWindow* window, gpointer dummy, MainWindowActive* self ){
2538         if ( g_wait.m_window != 0 && gtk_window_is_active( window ) && !GTK_WIDGET_VISIBLE( g_wait.m_window ) ) {
2539                 gtk_widget_show( GTK_WIDGET( g_wait.m_window ) );
2540         }
2541
2542         return FALSE;
2543 }
2544 public:
2545 void connect( GtkWindow* toplevel_window ){
2546         g_signal_connect( G_OBJECT( toplevel_window ), "notify::is-active", G_CALLBACK( notify ), this );
2547 }
2548 };
2549
2550 MainWindowActive g_MainWindowActive;
2551
2552 SignalHandlerId XYWindowDestroyed_connect( const SignalHandler& handler ){
2553         return g_pParentWnd->GetXYWnd()->onDestroyed.connectFirst( handler );
2554 }
2555
2556 void XYWindowDestroyed_disconnect( SignalHandlerId id ){
2557         g_pParentWnd->GetXYWnd()->onDestroyed.disconnect( id );
2558 }
2559
2560 MouseEventHandlerId XYWindowMouseDown_connect( const MouseEventHandler& handler ){
2561         return g_pParentWnd->GetXYWnd()->onMouseDown.connectFirst( handler );
2562 }
2563
2564 void XYWindowMouseDown_disconnect( MouseEventHandlerId id ){
2565         g_pParentWnd->GetXYWnd()->onMouseDown.disconnect( id );
2566 }
2567
2568 // =============================================================================
2569 // MainFrame class
2570
2571 MainFrame* g_pParentWnd = 0;
2572
2573 GtkWindow* MainFrame_getWindow(){
2574         if ( g_pParentWnd == 0 ) {
2575                 return 0;
2576         }
2577         return g_pParentWnd->m_window;
2578 }
2579
2580 std::vector<GtkWidget*> g_floating_windows;
2581
2582 MainFrame::MainFrame() : m_window( 0 ), m_idleRedrawStatusText( RedrawStatusTextCaller( *this ) ){
2583         m_pXYWnd = 0;
2584         m_pCamWnd = 0;
2585         m_pZWnd = 0;
2586         m_pYZWnd = 0;
2587         m_pXZWnd = 0;
2588         m_pActiveXY = 0;
2589
2590         for ( int n = 0; n < c_count_status; n++ )
2591         {
2592                 m_pStatusLabel[n] = 0;
2593         }
2594
2595         m_bSleeping = false;
2596
2597         Create();
2598 }
2599
2600 MainFrame::~MainFrame(){
2601         SaveWindowInfo();
2602
2603         gtk_widget_hide( GTK_WIDGET( m_window ) );
2604
2605         Shutdown();
2606
2607         for ( std::vector<GtkWidget*>::iterator i = g_floating_windows.begin(); i != g_floating_windows.end(); ++i )
2608         {
2609                 gtk_widget_destroy( *i );
2610         }
2611
2612         gtk_widget_destroy( GTK_WIDGET( m_window ) );
2613 }
2614
2615 void MainFrame::SetActiveXY( XYWnd* p ){
2616         if ( m_pActiveXY ) {
2617                 m_pActiveXY->SetActive( false );
2618         }
2619
2620         m_pActiveXY = p;
2621
2622         if ( m_pActiveXY ) {
2623                 m_pActiveXY->SetActive( true );
2624         }
2625
2626 }
2627
2628 void MainFrame::ReleaseContexts(){
2629 #if 0
2630         if ( m_pXYWnd ) {
2631                 m_pXYWnd->DestroyContext();
2632         }
2633         if ( m_pYZWnd ) {
2634                 m_pYZWnd->DestroyContext();
2635         }
2636         if ( m_pXZWnd ) {
2637                 m_pXZWnd->DestroyContext();
2638         }
2639         if ( m_pCamWnd ) {
2640                 m_pCamWnd->DestroyContext();
2641         }
2642         if ( m_pTexWnd ) {
2643                 m_pTexWnd->DestroyContext();
2644         }
2645         if ( m_pZWnd ) {
2646                 m_pZWnd->DestroyContext();
2647         }
2648 #endif
2649 }
2650
2651 void MainFrame::CreateContexts(){
2652 #if 0
2653         if ( m_pCamWnd ) {
2654                 m_pCamWnd->CreateContext();
2655         }
2656         if ( m_pXYWnd ) {
2657                 m_pXYWnd->CreateContext();
2658         }
2659         if ( m_pYZWnd ) {
2660                 m_pYZWnd->CreateContext();
2661         }
2662         if ( m_pXZWnd ) {
2663                 m_pXZWnd->CreateContext();
2664         }
2665         if ( m_pTexWnd ) {
2666                 m_pTexWnd->CreateContext();
2667         }
2668         if ( m_pZWnd ) {
2669                 m_pZWnd->CreateContext();
2670         }
2671 #endif
2672 }
2673
2674 #ifdef _DEBUG
2675 //#define DBG_SLEEP
2676 #endif
2677
2678 void MainFrame::OnSleep(){
2679 #if 0
2680         m_bSleeping ^= 1;
2681         if ( m_bSleeping ) {
2682                 // useful when trying to debug crashes in the sleep code
2683                 globalOutputStream() << "Going into sleep mode..\n";
2684
2685                 globalOutputStream() << "Dispatching sleep msg...";
2686                 DispatchRadiantMsg( RADIANT_SLEEP );
2687                 globalOutputStream() << "Done.\n";
2688
2689                 gtk_window_iconify( m_window );
2690                 GlobalSelectionSystem().setSelectedAll( false );
2691
2692                 GlobalShaderCache().unrealise();
2693                 Shaders_Free();
2694                 GlobalOpenGL_debugAssertNoErrors();
2695                 ScreenUpdates_Disable();
2696
2697                 // release contexts
2698                 globalOutputStream() << "Releasing contexts...";
2699                 ReleaseContexts();
2700                 globalOutputStream() << "Done.\n";
2701         }
2702         else
2703         {
2704                 globalOutputStream() << "Waking up\n";
2705
2706                 gtk_window_deiconify( m_window );
2707
2708                 // create contexts
2709                 globalOutputStream() << "Creating contexts...";
2710                 CreateContexts();
2711                 globalOutputStream() << "Done.\n";
2712
2713                 globalOutputStream() << "Making current on camera...";
2714                 m_pCamWnd->MakeCurrent();
2715                 globalOutputStream() << "Done.\n";
2716
2717                 globalOutputStream() << "Reloading shaders...";
2718                 Shaders_Load();
2719                 GlobalShaderCache().realise();
2720                 globalOutputStream() << "Done.\n";
2721
2722                 ScreenUpdates_Enable();
2723
2724                 globalOutputStream() << "Dispatching wake msg...";
2725                 DispatchRadiantMsg( RADIANT_WAKEUP );
2726                 globalOutputStream() << "Done\n";
2727         }
2728 #endif
2729 }
2730
2731
2732 GtkWindow* create_splash(){
2733         GtkWindow* window = GTK_WINDOW( gtk_window_new( GTK_WINDOW_TOPLEVEL ) );
2734         gtk_window_set_decorated( window, FALSE );
2735         gtk_window_set_resizable( window, FALSE );
2736         gtk_window_set_modal( window, TRUE );
2737         gtk_window_set_default_size( window, -1, -1 );
2738         gtk_window_set_position( window, GTK_WIN_POS_CENTER );
2739         gtk_container_set_border_width( GTK_CONTAINER( window ), 0 );
2740
2741         GtkImage* image = new_local_image( "splash.png" );
2742         gtk_widget_show( GTK_WIDGET( image ) );
2743         gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( image ) );
2744
2745         if( gtk_image_get_storage_type( image ) == GTK_IMAGE_PIXBUF ){
2746                 GdkBitmap* mask;
2747                 GdkPixbuf* pix = gtk_image_get_pixbuf( image );
2748                 gdk_pixbuf_render_pixmap_and_mask( pix, NULL, &mask, 255 );
2749                 gtk_widget_shape_combine_mask ( GTK_WIDGET( window ), mask, 0, 0 );
2750         }
2751
2752         gtk_widget_set_size_request( GTK_WIDGET( window ), -1, -1 );
2753         gtk_widget_show( GTK_WIDGET( window ) );
2754
2755         return window;
2756 }
2757
2758 static GtkWindow *splash_screen = 0;
2759
2760 void show_splash(){
2761         splash_screen = create_splash();
2762
2763         process_gui();
2764 }
2765
2766 void hide_splash(){
2767         gtk_widget_destroy( GTK_WIDGET( splash_screen ) );
2768 }
2769
2770 WindowPositionTracker g_posCamWnd;
2771 WindowPositionTracker g_posXYWnd;
2772 WindowPositionTracker g_posXZWnd;
2773 WindowPositionTracker g_posYZWnd;
2774
2775 static gint mainframe_delete( GtkWidget *widget, GdkEvent *event, gpointer data ){
2776         if ( ConfirmModified( "Exit Radiant" ) ) {
2777                 gtk_main_quit();
2778         }
2779
2780         return TRUE;
2781 }
2782
2783 void MainFrame::Create(){
2784         GtkWindow* window = GTK_WINDOW( gtk_window_new( GTK_WINDOW_TOPLEVEL ) );
2785
2786         GlobalWindowObservers_connectTopLevel( window );
2787
2788         gtk_window_set_transient_for( splash_screen, window );
2789
2790 #if !defined( WIN32 )
2791         {
2792                 GdkPixbuf* pixbuf = pixbuf_new_from_file_with_mask( "bitmaps/icon.png" );
2793                 if ( pixbuf != 0 ) {
2794                         gtk_window_set_icon( window, pixbuf );
2795                         g_object_unref( pixbuf );
2796                 }
2797         }
2798 #endif
2799
2800         gtk_widget_add_events( GTK_WIDGET( window ), GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK | GDK_FOCUS_CHANGE_MASK );
2801         g_signal_connect( G_OBJECT( window ), "delete_event", G_CALLBACK( mainframe_delete ), this );
2802
2803         m_position_tracker.connect( window );
2804
2805 #if 0
2806         g_mainframeWidgetFocusPrinter.connect( window );
2807         g_mainframeFocusPrinter.connect( window );
2808 #endif
2809
2810         g_MainWindowActive.connect( window );
2811
2812         GetPlugInMgr().Init( GTK_WIDGET( window ) );
2813
2814         GtkWidget* vbox = gtk_vbox_new( FALSE, 0 );
2815         gtk_container_add( GTK_CONTAINER( window ), vbox );
2816         gtk_widget_show( vbox );
2817         gtk_container_set_focus_chain( GTK_CONTAINER( vbox ), NULL );
2818
2819         global_accel_connect_window( window );
2820
2821         m_nCurrentStyle = (EViewStyle)g_Layout_viewStyle.m_value;
2822
2823         register_shortcuts();
2824
2825         GtkMenuBar* main_menu = create_main_menu( CurrentStyle() );
2826         gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( main_menu ), FALSE, FALSE, 0 );
2827
2828         if( g_Layout_enableMainToolbar.m_value ){
2829                 GtkToolbar* main_toolbar = create_main_toolbar( CurrentStyle() );
2830                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( main_toolbar ), FALSE, FALSE, 0 );
2831         }
2832
2833
2834         if ( g_Layout_enablePluginToolbar.m_value || g_Layout_enableFilterToolbar.m_value ){
2835                 GtkWidget* PFbox = gtk_hbox_new( FALSE, 3 );
2836                 gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( PFbox ), FALSE, FALSE, 0 );
2837                 gtk_widget_show( PFbox );
2838                 if ( g_Layout_enablePluginToolbar.m_value ){
2839                         GtkToolbar* plugin_toolbar = create_plugin_toolbar();
2840                         if ( g_Layout_enableFilterToolbar.m_value ){
2841                                 gtk_box_pack_start( GTK_BOX( PFbox ), GTK_WIDGET( plugin_toolbar ), FALSE, FALSE, 0 );
2842                         }
2843                         else{
2844                                 gtk_box_pack_start( GTK_BOX( PFbox ), GTK_WIDGET( plugin_toolbar ), TRUE, TRUE, 0 );
2845                         }
2846                 }
2847                 if ( g_Layout_enableFilterToolbar.m_value ){
2848                         GtkToolbar* filter_toolbar = create_filter_toolbar();
2849                         gtk_box_pack_start( GTK_BOX( PFbox ), GTK_WIDGET( filter_toolbar ), TRUE, TRUE, 0 );
2850                 }
2851         }
2852
2853         /*GtkToolbar* plugin_toolbar = create_plugin_toolbar();
2854         if ( !g_Layout_enablePluginToolbar.m_value ) {
2855                 gtk_widget_hide( GTK_WIDGET( plugin_toolbar ) );
2856         }*/
2857
2858
2859
2860
2861         GtkWidget* main_statusbar = create_main_statusbar( m_pStatusLabel );
2862         gtk_box_pack_end( GTK_BOX( vbox ), main_statusbar, FALSE, TRUE, 2 );
2863
2864         GroupDialog_constructWindow( window );
2865
2866         /* want to realize it immediately; otherwise gtk paned splits positions wont be set correctly for floating group dlg */
2867         gtk_widget_realize ( GTK_WIDGET( GroupDialog_getWindow() ) );
2868
2869         g_page_entity = GroupDialog_addPage( "Entities", EntityInspector_constructWindow( GroupDialog_getWindow() ), RawStringExportCaller( "Entities" ) );
2870
2871         if ( FloatingGroupDialog() ) {
2872                 g_page_console = GroupDialog_addPage( "Console", Console_constructWindow( GroupDialog_getWindow() ), RawStringExportCaller( "Console" ) );
2873         }
2874
2875 #ifdef WIN32
2876         if ( g_multimon_globals.m_bStartOnPrimMon ) {
2877                 PositionWindowOnPrimaryScreen( g_layout_globals.m_position );
2878         }
2879 #endif
2880         window_set_position( window, g_layout_globals.m_position );
2881
2882         m_window = window;
2883
2884         gtk_widget_show( GTK_WIDGET( window ) );
2885
2886         if ( CurrentStyle() == eRegular || CurrentStyle() == eRegularLeft ) {
2887                 {
2888                         GtkWidget* hsplit = gtk_hpaned_new();
2889                         m_hSplit = hsplit;
2890                         gtk_box_pack_start( GTK_BOX( vbox ), hsplit, TRUE, TRUE, 0 );
2891                         gtk_widget_show( hsplit );
2892                         {
2893                                 GtkWidget* vsplit = gtk_vpaned_new();
2894                                 gtk_widget_show( vsplit );
2895                                 m_vSplit = vsplit;
2896                                 GtkWidget* vsplit2 = gtk_vpaned_new();
2897                                 gtk_widget_show( vsplit2 );
2898                                 m_vSplit2 = vsplit2;
2899                                 if ( CurrentStyle() == eRegular ){
2900                                         gtk_paned_pack1( GTK_PANED( hsplit ), vsplit, TRUE, TRUE );
2901                                         gtk_paned_pack2( GTK_PANED( hsplit ), vsplit2, TRUE, TRUE );
2902                                 }
2903                                 else{
2904                                         gtk_paned_pack2( GTK_PANED( hsplit ), vsplit, TRUE, TRUE );
2905                                         gtk_paned_pack1( GTK_PANED( hsplit ), vsplit2, TRUE, TRUE );
2906                                 }
2907                                 // console
2908                                 GtkWidget* console_window = Console_constructWindow( window );
2909                                 gtk_paned_pack2( GTK_PANED( vsplit ), console_window, TRUE, TRUE );
2910
2911                                 // xy
2912                                 m_pXYWnd = new XYWnd();
2913                                 m_pXYWnd->SetViewType( XY );
2914                                 GtkWidget* xy_window = GTK_WIDGET( create_framed_widget( m_pXYWnd->GetWidget() ) );
2915                                 gtk_paned_pack1( GTK_PANED( vsplit ), xy_window, TRUE, TRUE );
2916                                 {
2917                                         // camera
2918                                         m_pCamWnd = NewCamWnd();
2919                                         GlobalCamera_setCamWnd( *m_pCamWnd );
2920                                         CamWnd_setParent( *m_pCamWnd, window );
2921                                         GtkFrame* camera_window = create_framed_widget( CamWnd_getWidget( *m_pCamWnd ) );
2922
2923                                         gtk_paned_pack1( GTK_PANED( vsplit2 ), GTK_WIDGET( camera_window ), TRUE, TRUE );
2924
2925                                         // textures
2926                                         GtkFrame* texture_window = create_framed_widget( TextureBrowser_constructWindow( window ) );
2927
2928                                         gtk_paned_pack2( GTK_PANED( vsplit2 ), GTK_WIDGET( texture_window ), TRUE, TRUE );
2929                                 }
2930                         }
2931                 }
2932         }
2933         else if ( CurrentStyle() == eFloating ) {
2934                 {
2935                         GtkWindow* window = create_persistent_floating_window( "Camera", m_window );
2936                         global_accel_connect_window( window );
2937                         g_posCamWnd.connect( window );
2938
2939                         gtk_widget_show( GTK_WIDGET( window ) );
2940
2941                         m_pCamWnd = NewCamWnd();
2942                         GlobalCamera_setCamWnd( *m_pCamWnd );
2943
2944                         {
2945                                 GtkFrame* frame = create_framed_widget( CamWnd_getWidget( *m_pCamWnd ) );
2946                                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( frame ) );
2947                         }
2948                         CamWnd_setParent( *m_pCamWnd, window );
2949                         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
2950                         g_object_set_data( G_OBJECT( window ), "glwidget", CamWnd_getWidget( *m_pCamWnd ) );
2951
2952                         g_floating_windows.push_back( GTK_WIDGET( window ) );
2953                 }
2954
2955                 {
2956                         GtkWindow* window = create_persistent_floating_window( ViewType_getTitle( XY ), m_window );
2957                         global_accel_connect_window( window );
2958                         g_posXYWnd.connect( window );
2959
2960                         m_pXYWnd = new XYWnd();
2961                         m_pXYWnd->m_parent = window;
2962                         m_pXYWnd->SetViewType( XY );
2963
2964
2965                         {
2966                                 GtkFrame* frame = create_framed_widget( m_pXYWnd->GetWidget() );
2967                                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( frame ) );
2968                         }
2969                         XY_Top_Shown_Construct( window );
2970                         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
2971                         g_object_set_data( G_OBJECT( window ), "glwidget", m_pXYWnd->GetWidget() );
2972
2973                         g_floating_windows.push_back( GTK_WIDGET( window ) );
2974                 }
2975
2976                 {
2977                         GtkWindow* window = create_persistent_floating_window( ViewType_getTitle( XZ ), m_window );
2978                         global_accel_connect_window( window );
2979                         g_posXZWnd.connect( window );
2980
2981                         m_pXZWnd = new XYWnd();
2982                         m_pXZWnd->m_parent = window;
2983                         m_pXZWnd->SetViewType( XZ );
2984
2985                         {
2986                                 GtkFrame* frame = create_framed_widget( m_pXZWnd->GetWidget() );
2987                                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( frame ) );
2988                         }
2989
2990                         XZ_Front_Shown_Construct( window );
2991                         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
2992                         g_object_set_data( G_OBJECT( window ), "glwidget", m_pXZWnd->GetWidget() );
2993
2994                         g_floating_windows.push_back( GTK_WIDGET( window ) );
2995                 }
2996
2997                 {
2998                         GtkWindow* window = create_persistent_floating_window( ViewType_getTitle( YZ ), m_window );
2999                         global_accel_connect_window( window );
3000                         g_posYZWnd.connect( window );
3001
3002                         m_pYZWnd = new XYWnd();
3003                         m_pYZWnd->m_parent = window;
3004                         m_pYZWnd->SetViewType( YZ );
3005
3006                         {
3007                                 GtkFrame* frame = create_framed_widget( m_pYZWnd->GetWidget() );
3008                                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( frame ) );
3009                         }
3010
3011                         YZ_Side_Shown_Construct( window );
3012                         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
3013                         g_object_set_data( G_OBJECT( window ), "glwidget", m_pYZWnd->GetWidget() );
3014
3015                         g_floating_windows.push_back( GTK_WIDGET( window ) );
3016                 }
3017
3018                 {
3019                         GtkFrame* frame = create_framed_widget( TextureBrowser_constructWindow( GroupDialog_getWindow() ) );
3020                         g_page_textures = GroupDialog_addPage( "Textures", GTK_WIDGET( frame ), TextureBrowserExportTitleCaller() );
3021                         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
3022                         g_object_set_data( G_OBJECT( GroupDialog_getWindow() ), "glwidget", TextureBrowser_getGLWidget() );
3023                 }
3024
3025                 m_vSplit = 0;
3026                 m_hSplit = 0;
3027                 m_vSplit2 = 0;
3028
3029                 GroupDialog_show();
3030         }
3031         else // 4 way
3032         {
3033                 m_pCamWnd = NewCamWnd();
3034                 GlobalCamera_setCamWnd( *m_pCamWnd );
3035                 CamWnd_setParent( *m_pCamWnd, window );
3036
3037                 GtkWidget* camera = CamWnd_getWidget( *m_pCamWnd );
3038
3039                 m_pYZWnd = new XYWnd();
3040                 m_pYZWnd->SetViewType( YZ );
3041
3042                 GtkWidget* yz = m_pYZWnd->GetWidget();
3043
3044                 m_pXYWnd = new XYWnd();
3045                 m_pXYWnd->SetViewType( XY );
3046
3047                 GtkWidget* xy = m_pXYWnd->GetWidget();
3048
3049                 m_pXZWnd = new XYWnd();
3050                 m_pXZWnd->SetViewType( XZ );
3051
3052                 GtkWidget* xz = m_pXZWnd->GetWidget();
3053
3054                 m_hSplit = create_split_views( camera, yz, xy, xz, m_vSplit, m_vSplit2 );
3055                 gtk_box_pack_start( GTK_BOX( vbox ), m_hSplit, TRUE, TRUE, 0 );
3056
3057                 {
3058                         GtkFrame* frame = create_framed_widget( TextureBrowser_constructWindow( GroupDialog_getWindow() ) );
3059                         g_page_textures = GroupDialog_addPage( "Textures", GTK_WIDGET( frame ), TextureBrowserExportTitleCaller() );
3060                         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
3061                         g_object_set_data( G_OBJECT( GroupDialog_getWindow() ), "glwidget", TextureBrowser_getGLWidget() );
3062                 }
3063         }
3064
3065         EntityList_constructWindow( window );
3066         PreferencesDialog_constructWindow( window );
3067         FindTextureDialog_constructWindow( window );
3068         SurfaceInspector_constructWindow( window );
3069         PatchInspector_constructWindow( window );
3070
3071         SetActiveXY( m_pXYWnd );
3072
3073         AddGridChangeCallback( SetGridStatusCaller( *this ) );
3074         AddGridChangeCallback( ReferenceCaller<MainFrame, XY_UpdateAllWindows>( *this ) );
3075
3076         g_defaultToolMode = DragMode;
3077         g_defaultToolMode();
3078         SetStatusText( m_command_status, c_TranslateMode_status );
3079
3080         EverySecondTimer_enable();
3081
3082         if ( g_layout_globals.nState & GDK_WINDOW_STATE_MAXIMIZED ||
3083                 g_layout_globals.nState & GDK_WINDOW_STATE_ICONIFIED ) {
3084                 gtk_window_maximize( window );
3085         }
3086         if ( g_layout_globals.nState & GDK_WINDOW_STATE_FULLSCREEN ) {
3087                 gtk_window_fullscreen( window );
3088         }
3089
3090         if ( !FloatingGroupDialog() ) {
3091                 gtk_paned_set_position( GTK_PANED( m_vSplit ), g_layout_globals.nXYHeight );
3092
3093                 if ( CurrentStyle() == eRegular ) {
3094                         gtk_paned_set_position( GTK_PANED( m_hSplit ), g_layout_globals.nXYWidth );
3095                 }
3096                 else
3097                 {
3098                         gtk_paned_set_position( GTK_PANED( m_hSplit ), g_layout_globals.nCamWidth );
3099                 }
3100
3101                 gtk_paned_set_position( GTK_PANED( m_vSplit2 ), g_layout_globals.nCamHeight );
3102         }
3103         //GlobalShortcuts_reportUnregistered();
3104 }
3105
3106 void MainFrame::SaveWindowInfo(){
3107         if ( !FloatingGroupDialog() ) {
3108                 g_layout_globals.nXYHeight = gtk_paned_get_position( GTK_PANED( m_vSplit ) );
3109
3110                 if ( CurrentStyle() != eRegular ) {
3111                         g_layout_globals.nCamWidth = gtk_paned_get_position( GTK_PANED( m_hSplit ) );
3112                 }
3113                 else
3114                 {
3115                         g_layout_globals.nXYWidth = gtk_paned_get_position( GTK_PANED( m_hSplit ) );
3116                 }
3117
3118                 g_layout_globals.nCamHeight = gtk_paned_get_position( GTK_PANED( m_vSplit2 ) );
3119         }
3120
3121         if( gdk_window_get_state( GTK_WIDGET( m_window )->window ) == 0 ){
3122                 g_layout_globals.m_position = m_position_tracker.getPosition();
3123         }
3124
3125         g_layout_globals.nState = gdk_window_get_state( GTK_WIDGET( m_window )->window );
3126 }
3127
3128 void MainFrame::Shutdown(){
3129         EverySecondTimer_disable();
3130
3131         EntityList_destroyWindow();
3132
3133         delete m_pXYWnd;
3134         m_pXYWnd = 0;
3135         delete m_pYZWnd;
3136         m_pYZWnd = 0;
3137         delete m_pXZWnd;
3138         m_pXZWnd = 0;
3139
3140         TextureBrowser_destroyWindow();
3141
3142         DeleteCamWnd( m_pCamWnd );
3143         m_pCamWnd = 0;
3144
3145         PreferencesDialog_destroyWindow();
3146         SurfaceInspector_destroyWindow();
3147         FindTextureDialog_destroyWindow();
3148         PatchInspector_destroyWindow();
3149
3150         g_DbgDlg.destroyWindow();
3151
3152         // destroying group-dialog last because it may contain texture-browser
3153         GroupDialog_destroyWindow();
3154 }
3155
3156 void MainFrame::RedrawStatusText(){
3157         gtk_label_set_text( GTK_LABEL( m_pStatusLabel[c_command_status] ), m_command_status.c_str() );
3158         gtk_label_set_text( GTK_LABEL( m_pStatusLabel[c_position_status] ), m_position_status.c_str() );
3159         gtk_label_set_text( GTK_LABEL( m_pStatusLabel[c_brushcount_status] ), m_brushcount_status.c_str() );
3160         gtk_label_set_text( GTK_LABEL( m_pStatusLabel[c_texture_status] ), m_texture_status.c_str() );
3161         gtk_label_set_text( GTK_LABEL( m_pStatusLabel[c_grid_status] ), m_grid_status.c_str() );
3162 }
3163
3164 void MainFrame::UpdateStatusText(){
3165         m_idleRedrawStatusText.queueDraw();
3166 }
3167
3168 void MainFrame::SetStatusText( CopiedString& status_text, const char* pText ){
3169         status_text = pText;
3170         UpdateStatusText();
3171 }
3172
3173 void Sys_Status( const char* status ){
3174         if ( g_pParentWnd != 0 ) {
3175                 g_pParentWnd->SetStatusText( g_pParentWnd->m_command_status, status );
3176         }
3177 }
3178
3179 int getRotateIncrement(){
3180         return static_cast<int>( g_si_globals.rotate );
3181 }
3182
3183 int getFarClipDistance(){
3184         return g_camwindow_globals.m_nCubicScale;
3185 }
3186
3187 float ( *GridStatus_getGridSize )() = GetGridSize;
3188 int ( *GridStatus_getRotateIncrement )() = getRotateIncrement;
3189 int ( *GridStatus_getFarClipDistance )() = getFarClipDistance;
3190 bool ( *GridStatus_getTextureLockEnabled )();
3191
3192 void MainFrame::SetGridStatus(){
3193         StringOutputStream status( 64 );
3194         const char* lock = ( GridStatus_getTextureLockEnabled() ) ? "ON" : "OFF";
3195         status << ( GetSnapGridSize() > 0 ? "G:" : "g:" ) << GridStatus_getGridSize()
3196                    << "  R:" << GridStatus_getRotateIncrement()
3197                    << "  C:" << GridStatus_getFarClipDistance()
3198                    << "  L:" << lock;
3199         SetStatusText( m_grid_status, status.c_str() );
3200 }
3201
3202 void GridStatus_onTextureLockEnabledChanged(){
3203         if ( g_pParentWnd != 0 ) {
3204                 g_pParentWnd->SetGridStatus();
3205         }
3206 }
3207
3208 void GlobalGL_sharedContextCreated(){
3209         GLFont *g_font = NULL;
3210
3211         // report OpenGL information
3212         globalOutputStream() << "GL_VENDOR: " << reinterpret_cast<const char*>( glGetString( GL_VENDOR ) ) << "\n";
3213         globalOutputStream() << "GL_RENDERER: " << reinterpret_cast<const char*>( glGetString( GL_RENDERER ) ) << "\n";
3214         globalOutputStream() << "GL_VERSION: " << reinterpret_cast<const char*>( glGetString( GL_VERSION ) ) << "\n";
3215         globalOutputStream() << "GL_EXTENSIONS: " << reinterpret_cast<const char*>( glGetString( GL_EXTENSIONS ) ) << "\n";
3216
3217         QGL_sharedContextCreated( GlobalOpenGL() );
3218
3219         ShaderCache_extensionsInitialised();
3220
3221         GlobalShaderCache().realise();
3222         Textures_Realise();
3223
3224 #ifdef WIN32
3225         /* win32 is dodgy here, just use courier new then */
3226         g_font = glfont_create( "arial 9" );
3227 #else
3228         GtkSettings *settings = gtk_settings_get_default();
3229         gchar *fontname;
3230         g_object_get( settings, "gtk-font-name", &fontname, NULL );
3231         g_font = glfont_create( fontname );
3232 #endif
3233
3234         GlobalOpenGL().m_font = g_font;
3235 }
3236
3237 void GlobalGL_sharedContextDestroyed(){
3238         Textures_Unrealise();
3239         GlobalShaderCache().unrealise();
3240
3241         QGL_sharedContextDestroyed( GlobalOpenGL() );
3242 }
3243
3244
3245 void Layout_constructPreferences( PreferencesPage& page ){
3246         {
3247                 const char* layouts[] = { "window1.png", "window2.png", "window3.png", "window4.png" };
3248                 page.appendRadioIcons(
3249                         "Window Layout",
3250                         STRING_ARRAY_RANGE( layouts ),
3251                         LatchedIntImportCaller( g_Layout_viewStyle ),
3252                         IntExportCaller( g_Layout_viewStyle.m_latched )
3253                         );
3254         }
3255         page.appendCheckBox(
3256                 "", "Detachable Menus",
3257                 LatchedBoolImportCaller( g_Layout_enableDetachableMenus ),
3258                 BoolExportCaller( g_Layout_enableDetachableMenus.m_latched )
3259                 );
3260         page.appendCheckBox(
3261                 "", "Main Toolbar",
3262                 LatchedBoolImportCaller( g_Layout_enableMainToolbar ),
3263                 BoolExportCaller( g_Layout_enableMainToolbar.m_latched )
3264                 );
3265         if ( !string_empty( g_pGameDescription->getKeyValue( "no_patch" ) ) ) {
3266                 page.appendCheckBox(
3267                         "", "Patch Toolbar",
3268                         LatchedBoolImportCaller( g_Layout_enablePatchToolbar ),
3269                         BoolExportCaller( g_Layout_enablePatchToolbar.m_latched )
3270                         );
3271         }
3272         page.appendCheckBox(
3273                 "", "Plugin Toolbar",
3274                 LatchedBoolImportCaller( g_Layout_enablePluginToolbar ),
3275                 BoolExportCaller( g_Layout_enablePluginToolbar.m_latched )
3276                 );
3277         page.appendCheckBox(
3278                 "", "Filter Toolbar",
3279                 LatchedBoolImportCaller( g_Layout_enableFilterToolbar ),
3280                 BoolExportCaller( g_Layout_enableFilterToolbar.m_latched )
3281                 );
3282 }
3283
3284 void Layout_constructPage( PreferenceGroup& group ){
3285         PreferencesPage page( group.createPage( "Layout", "Layout Preferences" ) );
3286         Layout_constructPreferences( page );
3287 }
3288
3289 void Layout_registerPreferencesPage(){
3290         PreferencesDialog_addInterfacePage( FreeCaller1<PreferenceGroup&, Layout_constructPage>() );
3291 }
3292
3293 void MainFrame_toggleFullscreen(){
3294         GtkWindow* wnd = MainFrame_getWindow();
3295         if( gdk_window_get_state( GTK_WIDGET( wnd )->window ) & GDK_WINDOW_STATE_FULLSCREEN ){
3296                 //some portion of buttsex, because gtk_window_unfullscreen doesn't work correctly after calling some modal window
3297                 bool maximize = ( gdk_window_get_state( GTK_WIDGET( wnd )->window ) & GDK_WINDOW_STATE_MAXIMIZED );
3298                 gtk_window_unfullscreen( wnd );
3299                 if( maximize ){
3300                         gtk_window_unmaximize( wnd );
3301                         gtk_window_maximize( wnd );
3302                 }
3303                 else{
3304                         gtk_window_move( wnd, g_layout_globals.m_position.x, g_layout_globals.m_position.y );
3305                         gtk_window_resize( wnd, g_layout_globals.m_position.w, g_layout_globals.m_position.h );
3306                 }
3307         }
3308         else{
3309                 gtk_window_fullscreen( wnd );
3310         }
3311 }
3312
3313 class MaximizeView
3314 {
3315 public:
3316         MaximizeView(): m_maximized( false ){
3317         }
3318         void toggle(){
3319                 return m_maximized ? restore() : maximize();
3320         }
3321 private:
3322         bool m_maximized;
3323         int m_vSplitPos;
3324         int m_vSplit2Pos;
3325         int m_hSplitPos;
3326
3327         void restore(){
3328                 m_maximized = false;
3329                 gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_vSplit ), m_vSplitPos );
3330                 gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_vSplit2 ), m_vSplit2Pos );
3331                 gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_hSplit ), m_hSplitPos );
3332         }
3333
3334         void maximize(){
3335                 m_maximized = true;
3336                 m_vSplitPos = gtk_paned_get_position( GTK_PANED( g_pParentWnd->m_vSplit ) );
3337                 m_vSplit2Pos = gtk_paned_get_position( GTK_PANED( g_pParentWnd->m_vSplit2 ) );
3338                 m_hSplitPos = gtk_paned_get_position( GTK_PANED( g_pParentWnd->m_hSplit ) );
3339
3340                 int vSplitX, vSplitY, vSplit2X, vSplit2Y, hSplitX, hSplitY;
3341                 gdk_window_get_origin( g_pParentWnd->m_vSplit->window, &vSplitX, &vSplitY );
3342                 gdk_window_get_origin( g_pParentWnd->m_vSplit2->window, &vSplit2X, &vSplit2Y );
3343                 gdk_window_get_origin( g_pParentWnd->m_hSplit->window, &hSplitX, &hSplitY );
3344
3345                 vSplitY += m_vSplitPos;
3346                 vSplit2Y += m_vSplit2Pos;
3347                 hSplitX += m_hSplitPos;
3348
3349                 int cur_x, cur_y;
3350                 Sys_GetCursorPos( MainFrame_getWindow(), &cur_x, &cur_y );
3351
3352                 if( cur_x > hSplitX ){
3353                         gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_hSplit ), 0 );
3354                 }
3355                 else{
3356                         gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_hSplit ), 9999 );
3357                 }
3358                 if( cur_y > vSplitY ){
3359                         gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_vSplit ), 0 );
3360                 }
3361                 else{
3362                         gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_vSplit ), 9999 );
3363                 }
3364                 if( cur_y > vSplit2Y ){
3365                         gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_vSplit2 ), 0 );
3366                 }
3367                 else{
3368                         gtk_paned_set_position( GTK_PANED( g_pParentWnd->m_vSplit2 ), 9999 );
3369                 }
3370         }
3371 };
3372
3373 MaximizeView g_maximizeview;
3374
3375 void Maximize_View(){
3376         if( g_pParentWnd != 0 && g_pParentWnd->m_vSplit != 0 && g_pParentWnd->m_vSplit2 != 0 && g_pParentWnd->m_hSplit != 0 )
3377                 g_maximizeview.toggle();
3378 }
3379
3380
3381 #include "preferencesystem.h"
3382 #include "stringio.h"
3383
3384 void MainFrame_Construct(){
3385         GlobalCommands_insert( "OpenManual", FreeCaller<OpenHelpURL>(), Accelerator( GDK_F1 ) );
3386
3387         GlobalCommands_insert( "Sleep", FreeCaller<thunk_OnSleep>(), Accelerator( 'P', (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
3388         GlobalCommands_insert( "NewMap", FreeCaller<NewMap>() );
3389         GlobalCommands_insert( "OpenMap", FreeCaller<OpenMap>(), Accelerator( 'O', (GdkModifierType)GDK_CONTROL_MASK ) );
3390         GlobalCommands_insert( "ImportMap", FreeCaller<ImportMap>() );
3391         GlobalCommands_insert( "SaveMap", FreeCaller<SaveMap>(), Accelerator( 'S', (GdkModifierType)GDK_CONTROL_MASK ) );
3392         GlobalCommands_insert( "SaveMapAs", FreeCaller<SaveMapAs>() );
3393         GlobalCommands_insert( "SaveSelected", FreeCaller<ExportMap>() );
3394         GlobalCommands_insert( "SaveRegion", FreeCaller<SaveRegion>() );
3395         GlobalCommands_insert( "RefreshReferences", FreeCaller<RefreshReferences>() );
3396         GlobalCommands_insert( "ProjectSettings", FreeCaller<DoProjectSettings>() );
3397         GlobalCommands_insert( "CheckForUpdate", FreeCaller<OpenUpdateURL>() );
3398         GlobalCommands_insert( "Exit", FreeCaller<Exit>() );
3399
3400         GlobalCommands_insert( "Undo", FreeCaller<Undo>(), Accelerator( 'Z', (GdkModifierType)GDK_CONTROL_MASK ) );
3401         GlobalCommands_insert( "Redo", FreeCaller<Redo>(), Accelerator( 'Y', (GdkModifierType)GDK_CONTROL_MASK ) );
3402         GlobalCommands_insert( "Copy", FreeCaller<Copy>(), Accelerator( 'C', (GdkModifierType)GDK_CONTROL_MASK ) );
3403         GlobalCommands_insert( "Paste", FreeCaller<Paste>(), Accelerator( 'V', (GdkModifierType)GDK_CONTROL_MASK ) );
3404         GlobalCommands_insert( "PasteToCamera", FreeCaller<PasteToCamera>(), Accelerator( 'V', (GdkModifierType)GDK_SHIFT_MASK ) );
3405         GlobalCommands_insert( "CloneSelection", FreeCaller<Selection_Clone>(), Accelerator( GDK_space ) );
3406         GlobalCommands_insert( "CloneSelectionAndMakeUnique", FreeCaller<Selection_Clone_MakeUnique>(), Accelerator( GDK_space, (GdkModifierType)GDK_SHIFT_MASK ) );
3407 //      GlobalCommands_insert( "DeleteSelection", FreeCaller<deleteSelection>(), Accelerator( GDK_BackSpace ) );
3408         GlobalCommands_insert( "DeleteSelection2", FreeCaller<deleteSelection>(), Accelerator( GDK_BackSpace ) );
3409         GlobalCommands_insert( "DeleteSelection", FreeCaller<deleteSelection>(), Accelerator( 'Z' ) );
3410         GlobalCommands_insert( "ParentSelection", FreeCaller<Scene_parentSelected>() );
3411 //      GlobalCommands_insert( "UnSelectSelection", FreeCaller<Selection_Deselect>(), Accelerator( GDK_Escape ) );
3412         GlobalCommands_insert( "UnSelectSelection2", FreeCaller<Selection_Deselect>(), Accelerator( GDK_Escape ) );
3413         GlobalCommands_insert( "UnSelectSelection", FreeCaller<Selection_Deselect>(), Accelerator( 'C' ) );
3414         GlobalCommands_insert( "InvertSelection", FreeCaller<Select_Invert>(), Accelerator( 'I' ) );
3415         GlobalCommands_insert( "SelectInside", FreeCaller<Select_Inside>() );
3416         GlobalCommands_insert( "SelectTouching", FreeCaller<Select_Touching>() );
3417         GlobalCommands_insert( "ExpandSelectionToEntities", FreeCaller<Scene_ExpandSelectionToEntities>(), Accelerator( 'E', (GdkModifierType)GDK_SHIFT_MASK ) );
3418         GlobalCommands_insert( "Preferences", FreeCaller<PreferencesDialog_showDialog>(), Accelerator( 'P' ) );
3419
3420         GlobalCommands_insert( "ToggleConsole", FreeCaller<Console_ToggleShow>(), Accelerator( 'O' ) );
3421         GlobalCommands_insert( "ToggleEntityInspector", FreeCaller<EntityInspector_ToggleShow>(), Accelerator( 'N' ) );
3422         GlobalCommands_insert( "EntityList", FreeCaller<EntityList_toggleShown>(), Accelerator( 'L' ) );
3423
3424 //      GlobalCommands_insert( "ShowHidden", FreeCaller<Select_ShowAllHidden>(), Accelerator( 'H', (GdkModifierType)GDK_SHIFT_MASK ) );
3425 //      GlobalCommands_insert( "HideSelected", FreeCaller<HideSelected>(), Accelerator( 'H' ) );
3426         Select_registerCommands();
3427
3428         GlobalToggles_insert( "DragVertices", FreeCaller<SelectVertexMode>(), ToggleItem::AddCallbackCaller( g_vertexMode_button ), Accelerator( 'V' ) );
3429         GlobalToggles_insert( "DragEdges", FreeCaller<SelectEdgeMode>(), ToggleItem::AddCallbackCaller( g_edgeMode_button ), Accelerator( 'E' ) );
3430         GlobalToggles_insert( "DragFaces", FreeCaller<SelectFaceMode>(), ToggleItem::AddCallbackCaller( g_faceMode_button ), Accelerator( 'F' ) );
3431
3432         GlobalCommands_insert( "ArbitraryRotation", FreeCaller<DoRotateDlg>(), Accelerator( 'R', (GdkModifierType)GDK_SHIFT_MASK ) );
3433         GlobalCommands_insert( "ArbitraryScale", FreeCaller<DoScaleDlg>(), Accelerator( 'S', (GdkModifierType)( GDK_SHIFT_MASK | GDK_CONTROL_MASK ) ) );
3434
3435         GlobalCommands_insert( "BuildMenuCustomize", FreeCaller<DoBuildMenu>() );
3436         GlobalCommands_insert( "Build_runRecentExecutedBuild", FreeCaller<Build_runRecentExecutedBuild>(), Accelerator( GDK_F5 ) );
3437
3438         GlobalCommands_insert( "FindBrush", FreeCaller<DoFind>() );
3439
3440         GlobalCommands_insert( "MapInfo", FreeCaller<DoMapInfo>(), Accelerator( 'M' ) );
3441
3442
3443         GlobalToggles_insert( "ToggleClipper", FreeCaller<ClipperMode>(), ToggleItem::AddCallbackCaller( g_clipper_button ), Accelerator( 'X' ) );
3444
3445         GlobalToggles_insert( "MouseTranslate", FreeCaller<TranslateMode>(), ToggleItem::AddCallbackCaller( g_translatemode_button ), Accelerator( 'W' ) );
3446         GlobalToggles_insert( "MouseRotate", FreeCaller<RotateMode>(), ToggleItem::AddCallbackCaller( g_rotatemode_button ), Accelerator( 'R' ) );
3447         GlobalToggles_insert( "MouseScale", FreeCaller<ScaleMode>(), ToggleItem::AddCallbackCaller( g_scalemode_button ) );
3448         GlobalToggles_insert( "MouseDrag", FreeCaller<DragMode>(), ToggleItem::AddCallbackCaller( g_dragmode_button ) );
3449         GlobalCommands_insert( "MouseRotateOrScale", FreeCaller<ToggleRotateScaleModes>() );
3450         GlobalCommands_insert( "MouseDragOrScale", FreeCaller<ToggleDragScaleModes>(), Accelerator( 'Q' ) );
3451
3452         GlobalCommands_insert( "gtkThemeDlg", FreeCaller<gtkThemeDlg>() );
3453         GlobalCommands_insert( "ColorSchemeOriginal", FreeCaller<ColorScheme_Original>() );
3454         GlobalCommands_insert( "ColorSchemeQER", FreeCaller<ColorScheme_QER>() );
3455         GlobalCommands_insert( "ColorSchemeBlackAndGreen", FreeCaller<ColorScheme_Black>() );
3456         GlobalCommands_insert( "ColorSchemeYdnar", FreeCaller<ColorScheme_Ydnar>() );
3457         GlobalCommands_insert( "ChooseTextureBackgroundColor", makeCallback( g_ColoursMenu.m_textureback ) );
3458         GlobalCommands_insert( "ChooseGridBackgroundColor", makeCallback( g_ColoursMenu.m_xyback ) );
3459         GlobalCommands_insert( "ChooseGridMajorColor", makeCallback( g_ColoursMenu.m_gridmajor ) );
3460         GlobalCommands_insert( "ChooseGridMinorColor", makeCallback( g_ColoursMenu.m_gridminor ) );
3461         GlobalCommands_insert( "ChooseGridTextColor", makeCallback( g_ColoursMenu.m_gridtext ) );
3462         GlobalCommands_insert( "ChooseGridBlockColor", makeCallback( g_ColoursMenu.m_gridblock ) );
3463         GlobalCommands_insert( "ChooseBrushColor", makeCallback( g_ColoursMenu.m_brush ) );
3464         GlobalCommands_insert( "ChooseCameraBackgroundColor", makeCallback( g_ColoursMenu.m_cameraback ) );
3465         GlobalCommands_insert( "ChooseSelectedBrushColor", makeCallback( g_ColoursMenu.m_selectedbrush ) );
3466         GlobalCommands_insert( "ChooseCameraSelectedBrushColor", makeCallback( g_ColoursMenu.m_selectedbrush3d ) );
3467         GlobalCommands_insert( "ChooseClipperColor", makeCallback( g_ColoursMenu.m_clipper ) );
3468         GlobalCommands_insert( "ChooseOrthoViewNameColor", makeCallback( g_ColoursMenu.m_viewname ) );
3469
3470         GlobalCommands_insert( "Fullscreen", FreeCaller<MainFrame_toggleFullscreen>(), Accelerator( GDK_F11 ) );
3471         GlobalCommands_insert( "MaximizeView", FreeCaller<Maximize_View>(), Accelerator( GDK_F12 ) );
3472
3473
3474         GlobalCommands_insert( "CSGSubtract", FreeCaller<CSG_Subtract>(), Accelerator( 'U', (GdkModifierType)GDK_SHIFT_MASK ) );
3475         GlobalCommands_insert( "CSGMerge", FreeCaller<CSG_Merge>(), Accelerator( 'U', (GdkModifierType)GDK_CONTROL_MASK ) );
3476         GlobalCommands_insert( "CSGroom", FreeCaller<CSG_MakeRoom>() );
3477         GlobalCommands_insert( "CSGTool", FreeCaller<CSG_Tool>() );
3478
3479         Grid_registerCommands();
3480
3481         GlobalCommands_insert( "SnapToGrid", FreeCaller<Selection_SnapToGrid>(), Accelerator( 'G', (GdkModifierType)GDK_CONTROL_MASK ) );
3482
3483         GlobalCommands_insert( "SelectAllOfType", FreeCaller<Select_AllOfType>(), Accelerator( 'A', (GdkModifierType)GDK_SHIFT_MASK ) );
3484
3485         GlobalCommands_insert( "TexRotateClock", FreeCaller<Texdef_RotateClockwise>(), Accelerator( GDK_Next, (GdkModifierType)GDK_SHIFT_MASK ) );
3486         GlobalCommands_insert( "TexRotateCounter", FreeCaller<Texdef_RotateAntiClockwise>(), Accelerator( GDK_Prior, (GdkModifierType)GDK_SHIFT_MASK ) );
3487         GlobalCommands_insert( "TexScaleUp", FreeCaller<Texdef_ScaleUp>(), Accelerator( GDK_Up, (GdkModifierType)GDK_CONTROL_MASK ) );
3488         GlobalCommands_insert( "TexScaleDown", FreeCaller<Texdef_ScaleDown>(), Accelerator( GDK_Down, (GdkModifierType)GDK_CONTROL_MASK ) );
3489         GlobalCommands_insert( "TexScaleLeft", FreeCaller<Texdef_ScaleLeft>(), Accelerator( GDK_Left, (GdkModifierType)GDK_CONTROL_MASK ) );
3490         GlobalCommands_insert( "TexScaleRight", FreeCaller<Texdef_ScaleRight>(), Accelerator( GDK_Right, (GdkModifierType)GDK_CONTROL_MASK ) );
3491         GlobalCommands_insert( "TexShiftUp", FreeCaller<Texdef_ShiftUp>(), Accelerator( GDK_Up, (GdkModifierType)GDK_SHIFT_MASK ) );
3492         GlobalCommands_insert( "TexShiftDown", FreeCaller<Texdef_ShiftDown>(), Accelerator( GDK_Down, (GdkModifierType)GDK_SHIFT_MASK ) );
3493         GlobalCommands_insert( "TexShiftLeft", FreeCaller<Texdef_ShiftLeft>(), Accelerator( GDK_Left, (GdkModifierType)GDK_SHIFT_MASK ) );
3494         GlobalCommands_insert( "TexShiftRight", FreeCaller<Texdef_ShiftRight>(), Accelerator( GDK_Right, (GdkModifierType)GDK_SHIFT_MASK ) );
3495
3496         GlobalCommands_insert( "MoveSelectionDOWN", FreeCaller<Selection_MoveDown>(), Accelerator( GDK_KP_Subtract ) );
3497         GlobalCommands_insert( "MoveSelectionUP", FreeCaller<Selection_MoveUp>(), Accelerator( GDK_KP_Add ) );
3498
3499         GlobalCommands_insert( "SelectNudgeLeft", FreeCaller<Selection_NudgeLeft>(), Accelerator( GDK_Left, (GdkModifierType)GDK_MOD1_MASK ) );
3500         GlobalCommands_insert( "SelectNudgeRight", FreeCaller<Selection_NudgeRight>(), Accelerator( GDK_Right, (GdkModifierType)GDK_MOD1_MASK ) );
3501         GlobalCommands_insert( "SelectNudgeUp", FreeCaller<Selection_NudgeUp>(), Accelerator( GDK_Up, (GdkModifierType)GDK_MOD1_MASK ) );
3502         GlobalCommands_insert( "SelectNudgeDown", FreeCaller<Selection_NudgeDown>(), Accelerator( GDK_Down, (GdkModifierType)GDK_MOD1_MASK ) );
3503
3504         Patch_registerCommands();
3505         XYShow_registerCommands();
3506
3507         typedef FreeCaller1<const Selectable&, ComponentMode_SelectionChanged> ComponentModeSelectionChangedCaller;
3508         GlobalSelectionSystem().addSelectionChangeCallback( ComponentModeSelectionChangedCaller() );
3509
3510         GlobalPreferenceSystem().registerPreference( "DetachableMenus", BoolImportStringCaller( g_Layout_enableDetachableMenus.m_latched ), BoolExportStringCaller( g_Layout_enableDetachableMenus.m_latched ) );
3511         GlobalPreferenceSystem().registerPreference( "MainToolBar", BoolImportStringCaller( g_Layout_enableMainToolbar.m_latched ), BoolExportStringCaller( g_Layout_enableMainToolbar.m_latched ) );
3512         GlobalPreferenceSystem().registerPreference( "PatchToolBar", BoolImportStringCaller( g_Layout_enablePatchToolbar.m_latched ), BoolExportStringCaller( g_Layout_enablePatchToolbar.m_latched ) );
3513         GlobalPreferenceSystem().registerPreference( "PluginToolBar", BoolImportStringCaller( g_Layout_enablePluginToolbar.m_latched ), BoolExportStringCaller( g_Layout_enablePluginToolbar.m_latched ) );
3514         GlobalPreferenceSystem().registerPreference( "FilterToolBar", BoolImportStringCaller( g_Layout_enableFilterToolbar.m_latched ), BoolExportStringCaller( g_Layout_enableFilterToolbar.m_latched ) );
3515         GlobalPreferenceSystem().registerPreference( "QE4StyleWindows", IntImportStringCaller( g_Layout_viewStyle.m_latched ), IntExportStringCaller( g_Layout_viewStyle.m_latched ) );
3516         GlobalPreferenceSystem().registerPreference( "XYHeight", IntImportStringCaller( g_layout_globals.nXYHeight ), IntExportStringCaller( g_layout_globals.nXYHeight ) );
3517         GlobalPreferenceSystem().registerPreference( "XYWidth", IntImportStringCaller( g_layout_globals.nXYWidth ), IntExportStringCaller( g_layout_globals.nXYWidth ) );
3518         GlobalPreferenceSystem().registerPreference( "CamWidth", IntImportStringCaller( g_layout_globals.nCamWidth ), IntExportStringCaller( g_layout_globals.nCamWidth ) );
3519         GlobalPreferenceSystem().registerPreference( "CamHeight", IntImportStringCaller( g_layout_globals.nCamHeight ), IntExportStringCaller( g_layout_globals.nCamHeight ) );
3520
3521         GlobalPreferenceSystem().registerPreference( "State", IntImportStringCaller( g_layout_globals.nState ), IntExportStringCaller( g_layout_globals.nState ) );
3522         GlobalPreferenceSystem().registerPreference( "PositionX", IntImportStringCaller( g_layout_globals.m_position.x ), IntExportStringCaller( g_layout_globals.m_position.x ) );
3523         GlobalPreferenceSystem().registerPreference( "PositionY", IntImportStringCaller( g_layout_globals.m_position.y ), IntExportStringCaller( g_layout_globals.m_position.y ) );
3524         GlobalPreferenceSystem().registerPreference( "Width", IntImportStringCaller( g_layout_globals.m_position.w ), IntExportStringCaller( g_layout_globals.m_position.w ) );
3525         GlobalPreferenceSystem().registerPreference( "Height", IntImportStringCaller( g_layout_globals.m_position.h ), IntExportStringCaller( g_layout_globals.m_position.h ) );
3526
3527         GlobalPreferenceSystem().registerPreference( "CamWnd", WindowPositionTrackerImportStringCaller( g_posCamWnd ), WindowPositionTrackerExportStringCaller( g_posCamWnd ) );
3528         GlobalPreferenceSystem().registerPreference( "XYWnd", WindowPositionTrackerImportStringCaller( g_posXYWnd ), WindowPositionTrackerExportStringCaller( g_posXYWnd ) );
3529         GlobalPreferenceSystem().registerPreference( "YZWnd", WindowPositionTrackerImportStringCaller( g_posYZWnd ), WindowPositionTrackerExportStringCaller( g_posYZWnd ) );
3530         GlobalPreferenceSystem().registerPreference( "XZWnd", WindowPositionTrackerImportStringCaller( g_posXZWnd ), WindowPositionTrackerExportStringCaller( g_posXZWnd ) );
3531
3532         GlobalPreferenceSystem().registerPreference( "EnginePath", CopiedStringImportStringCaller( g_strEnginePath ), CopiedStringExportStringCaller( g_strEnginePath ) );
3533
3534         GlobalPreferenceSystem().registerPreference( "NudgeAfterClone", BoolImportStringCaller( g_bNudgeAfterClone ), BoolExportStringCaller( g_bNudgeAfterClone ) );
3535         if ( g_strEnginePath.empty() )
3536         {
3537                 g_strEnginePath_was_empty_1st_start = true;
3538                 const char* ENGINEPATH_ATTRIBUTE =
3539 #if defined( WIN32 )
3540                         "enginepath_win32"
3541 #elif defined( __linux__ ) || defined ( __FreeBSD__ )
3542                         "enginepath_linux"
3543 #elif defined( __APPLE__ )
3544                         "enginepath_macos"
3545 #else
3546 #error "unknown platform"
3547 #endif
3548                 ;
3549                 StringOutputStream path( 256 );
3550                 path << DirectoryCleaned( g_pGameDescription->getRequiredKeyValue( ENGINEPATH_ATTRIBUTE ) );
3551                 g_strEnginePath = path.c_str();
3552                 GlobalPreferenceSystem().registerPreference( "EnginePath", CopiedStringImportStringCaller( g_strEnginePath ), CopiedStringExportStringCaller( g_strEnginePath ) );
3553         }
3554
3555
3556
3557         g_Layout_viewStyle.useLatched();
3558         g_Layout_enableDetachableMenus.useLatched();
3559         g_Layout_enableMainToolbar.useLatched();
3560         g_Layout_enablePatchToolbar.useLatched();
3561         g_Layout_enablePluginToolbar.useLatched();
3562         g_Layout_enableFilterToolbar.useLatched();
3563
3564         Layout_registerPreferencesPage();
3565         Paths_registerPreferencesPage();
3566         PreferencesDialog_addSettingsPreferences( FreeCaller1<PreferencesPage&, Nudge_constructPreferences>() );
3567
3568         g_brushCount.setCountChangedCallback( FreeCaller<QE_brushCountChanged>() );
3569         g_entityCount.setCountChangedCallback( FreeCaller<QE_entityCountChanged>() );
3570         GlobalEntityCreator().setCounter( &g_entityCount );
3571
3572         GLWidget_sharedContextCreated = GlobalGL_sharedContextCreated;
3573         GLWidget_sharedContextDestroyed = GlobalGL_sharedContextDestroyed;
3574
3575         GlobalEntityClassManager().attach( g_WorldspawnColourEntityClassObserver );
3576 }
3577
3578 void MainFrame_Destroy(){
3579         GlobalEntityClassManager().detach( g_WorldspawnColourEntityClassObserver );
3580
3581         GlobalEntityCreator().setCounter( 0 );
3582         g_entityCount.setCountChangedCallback( Callback() );
3583         g_brushCount.setCountChangedCallback( Callback() );
3584 }
3585
3586
3587 void GLWindow_Construct(){
3588 //      GlobalPreferenceSystem().registerPreference( "MouseButtons", IntImportStringCaller( g_glwindow_globals.m_nMouseType ), IntExportStringCaller( g_glwindow_globals.m_nMouseType ) );
3589 }
3590
3591 void GLWindow_Destroy(){
3592 }