]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/groupdialog.cpp
* added MeshTex plugin src to project (can't compile)
[xonotic/netradiant.git] / radiant / groupdialog.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 // Floating dialog that contains a notebook with at least Entities and Group tabs
24 // I merged the 2 MS Windows dialogs in a single class
25 //
26 // Leonardo Zide (leo@lokigames.com)
27 //
28
29 #include "groupdialog.h"
30
31 #include "debugging/debugging.h"
32
33 #include <vector>
34
35 #include <gtk/gtknotebook.h>
36 #include <gtk/gtktextview.h>
37 #include <gtk/gtklabel.h>
38 #include <gtk/gtkscrolledwindow.h>
39
40 #include "gtkutil/widget.h"
41 #include "gtkutil/accelerator.h"
42 #include "entityinspector.h"
43 #include "gtkmisc.h"
44 #include "multimon.h"
45 #include "console.h"
46 #include "commands.h"
47
48
49 #include <gtk/gtkwidget.h>
50 #include "gtkutil/window.h"
51
52 class GroupDlg
53 {
54 public:
55 GtkWidget* m_pNotebook;
56 GtkWindow* m_window;
57
58 GroupDlg();
59 void Create( GtkWindow* parent );
60
61 void Show(){
62         // workaround for strange gtk behaviour - modifying the contents of a window while it is not visible causes the window position to change without sending a configure_event
63         m_position_tracker.sync( m_window );
64         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
65         GtkWidget* glwidget = GTK_WIDGET( g_object_get_data( G_OBJECT( m_window ), "glwidget" ) );
66         if ( glwidget ){
67                 //if ( widget_is_visible( glwidget ) )
68                         //globalOutputStream() << "glwidget have been already visible :0\n"; /* is not hidden aswell, according to this */
69                 gtk_widget_hide( glwidget );
70                 gtk_widget_show( glwidget );
71         }
72         gtk_widget_show( GTK_WIDGET( m_window ) );
73 }
74 void Hide(){
75         gtk_widget_hide( GTK_WIDGET( m_window ) );
76 }
77
78 WindowPositionTracker m_position_tracker;
79 };
80
81 namespace
82 {
83 GroupDlg g_GroupDlg;
84
85 std::size_t g_current_page;
86 std::vector<StringExportCallback> g_pages;
87 }
88
89 void GroupDialog_updatePageTitle( GtkWindow* window, std::size_t pageIndex ){
90         if ( pageIndex < g_pages.size() ) {
91                 g_pages[pageIndex]( PointerCaller1<GtkWindow, const char*, gtk_window_set_title>( window ) );
92         }
93 }
94
95 static gboolean switch_page( GtkNotebook *notebook, GtkNotebookPage *page, guint page_num, gpointer data ){
96         GroupDialog_updatePageTitle( GTK_WINDOW( data ), page_num );
97         g_current_page = page_num;
98
99         return FALSE;
100 }
101
102 GroupDlg::GroupDlg() : m_window( 0 ){
103         m_position_tracker.setPosition( c_default_window_pos );
104 }
105
106 void GroupDlg::Create( GtkWindow* parent ){
107         ASSERT_MESSAGE( m_window == 0, "dialog already created" );
108
109         GtkWindow* window = create_persistent_floating_window( "Entities", parent );
110
111         global_accel_connect_window( window );
112
113         window_connect_focus_in_clear_focus_widget( window );
114
115         m_window = window;
116
117 #ifdef WIN32
118         if ( g_multimon_globals.m_bStartOnPrimMon ) {
119                 WindowPosition pos( m_position_tracker.getPosition() );
120                 PositionWindowOnPrimaryScreen( pos );
121                 m_position_tracker.setPosition( pos );
122         }
123 #endif
124         m_position_tracker.connect( window );
125
126         {
127                 GtkWidget* notebook = gtk_notebook_new();
128                 gtk_widget_show( notebook );
129                 gtk_container_add( GTK_CONTAINER( window ), notebook );
130                 gtk_notebook_set_tab_pos( GTK_NOTEBOOK( notebook ), GTK_POS_BOTTOM );
131                 m_pNotebook = notebook;
132
133                 g_signal_connect( G_OBJECT( notebook ), "switch_page", G_CALLBACK( switch_page ), window );
134         }
135 }
136
137
138 GtkWidget* GroupDialog_addPage( const char* tabLabel, GtkWidget* widget, const StringExportCallback& title ){
139         GtkWidget* w = gtk_label_new( tabLabel );
140         gtk_widget_show( w );
141         GtkWidget* page = gtk_notebook_get_nth_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gtk_notebook_insert_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), widget, w, -1 ) );
142         g_pages.push_back( title );
143
144         return page;
145 }
146
147
148 bool GroupDialog_isShown(){
149         return widget_is_visible( GTK_WIDGET( g_GroupDlg.m_window ) );
150 }
151 void GroupDialog_setShown( bool shown ){
152         shown ? g_GroupDlg.Show() : g_GroupDlg.Hide();
153 }
154 void GroupDialog_ToggleShow(){
155         GroupDialog_setShown( !GroupDialog_isShown() );
156 }
157
158 void GroupDialog_constructWindow( GtkWindow* main_window ){
159         g_GroupDlg.Create( main_window );
160 }
161 void GroupDialog_destroyWindow(){
162         ASSERT_NOTNULL( g_GroupDlg.m_window );
163         destroy_floating_window( g_GroupDlg.m_window );
164         g_GroupDlg.m_window = 0;
165 }
166
167
168 GtkWindow* GroupDialog_getWindow(){
169         return g_GroupDlg.m_window;
170 }
171 void GroupDialog_show(){
172         g_GroupDlg.Show();
173 }
174
175 GtkWidget* GroupDialog_getPage(){
176         return gtk_notebook_get_nth_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
177 }
178
179 void GroupDialog_setPage( GtkWidget* page ){
180         g_current_page = gtk_notebook_page_num( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), page );
181         gtk_notebook_set_current_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
182 }
183
184 void GroupDialog_showPage( GtkWidget* page ){
185         if ( GroupDialog_getPage() == page ) {
186                 GroupDialog_ToggleShow();
187         }
188         else
189         {
190                 gtk_widget_show( GTK_WIDGET( g_GroupDlg.m_window ) );
191                 GroupDialog_setPage( page );
192         }
193 }
194
195 void GroupDialog_cycle(){
196         g_current_page = ( g_current_page + 1 ) % g_pages.size();
197         gtk_notebook_set_current_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
198 }
199
200 void GroupDialog_updatePageTitle( GtkWidget* page ){
201         if ( GroupDialog_getPage() == page ) {
202                 GroupDialog_updatePageTitle( g_GroupDlg.m_window, g_current_page );
203         }
204 }
205
206
207 #include "preferencesystem.h"
208
209 void GroupDialog_Construct(){
210         GlobalPreferenceSystem().registerPreference( "EntityWnd", WindowPositionTrackerImportStringCaller( g_GroupDlg.m_position_tracker ), WindowPositionTrackerExportStringCaller( g_GroupDlg.m_position_tracker ) );
211
212         GlobalCommands_insert( "ViewEntityInfo", FreeCaller<GroupDialog_ToggleShow>(), Accelerator( 'N' ) );
213 }
214 void GroupDialog_Destroy(){
215 }