]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/groupdialog.cpp
Merge commit '7ca59bef0ae15880f51b2f68104b933e918d543c' into garux-merge
[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 #include "globaldefs.h"
31
32 #include "debugging/debugging.h"
33
34 #include <vector>
35 #include <gtk/gtk.h>
36
37 #include "gtkutil/widget.h"
38 #include "gtkutil/accelerator.h"
39 #include "entityinspector.h"
40 #include "gtkmisc.h"
41 #include "multimon.h"
42 #include "console.h"
43 #include "commands.h"
44
45
46 #include "gtkutil/window.h"
47
48 class GroupDlg
49 {
50 public:
51 ui::Widget m_pNotebook{ui::null};
52 ui::Window m_window{ui::null};
53
54 GroupDlg();
55 void Create( ui::Window parent );
56
57 void Show(){
58         // 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
59         m_position_tracker.sync( m_window );
60 #define GARUX_GTK_WORKAROUND
61 #ifndef GARUX_GTK_WORKAROUND
62         /* workaround for gtk 2.24 issue: not displayed glwidget after toggle */
63         GtkWidget* glwidget = GTK_WIDGET( g_object_get_data( G_OBJECT( m_window ), "glwidget" ) );
64         if ( glwidget ){
65                 //if ( widget_is_visible( glwidget ) )
66                         //globalOutputStream() << "glwidget have been already visible :0\n"; /* is not hidden aswell, according to this */
67                 gtk_widget_hide( glwidget );
68                 gtk_widget_show( glwidget );
69         }
70 #endif
71         m_window.show();
72 }
73 void Hide(){
74         m_window.hide();
75 }
76
77 WindowPositionTracker m_position_tracker;
78 };
79
80 namespace
81 {
82 GroupDlg g_GroupDlg;
83
84 std::size_t g_current_page;
85 std::vector<Callback<void(const Callback<void(const char *)> &)>> g_pages;
86 }
87
88 void GroupDialog_updatePageTitle( ui::Window window, std::size_t pageIndex ){
89         if ( pageIndex < g_pages.size() ) {
90                 g_pages[pageIndex]( PointerCaller<GtkWindow, void(const char*), gtk_window_set_title>( window ) );
91         }
92 }
93
94 static gboolean switch_page( GtkNotebook *notebook, gpointer page, guint page_num, gpointer data ){
95         GroupDialog_updatePageTitle( ui::Window::from(data), page_num );
96         g_current_page = page_num;
97
98         return FALSE;
99 }
100
101 GroupDlg::GroupDlg() : m_window( ui::null ){
102         m_position_tracker.setPosition( c_default_window_pos );
103 }
104
105 void GroupDlg::Create( ui::Window parent ){
106         ASSERT_MESSAGE( !m_window, "dialog already created" );
107
108         auto window = ui::Window(create_persistent_floating_window( "Entities", parent ));
109
110         global_accel_connect_window( window );
111
112         window_connect_focus_in_clear_focus_widget( window );
113
114         m_window = window;
115
116 #if GDEF_OS_WINDOWS
117         if ( g_multimon_globals.m_bStartOnPrimMon ) {
118                 WindowPosition pos( m_position_tracker.getPosition() );
119                 PositionWindowOnPrimaryScreen( pos );
120                 m_position_tracker.setPosition( pos );
121         }
122 #endif
123         m_position_tracker.connect( window );
124
125         {
126                 ui::Widget notebook = ui::Widget::from(gtk_notebook_new());
127                 notebook.show();
128                 window.add(notebook);
129                 gtk_notebook_set_tab_pos( GTK_NOTEBOOK( notebook ), GTK_POS_BOTTOM );
130                 m_pNotebook = notebook;
131
132                 notebook.connect( "switch_page", G_CALLBACK( switch_page ), (gpointer) window );
133         }
134 }
135
136
137 ui::Widget GroupDialog_addPage( const char* tabLabel, ui::Widget widget, const Callback<void(const Callback<void(const char *)> &)>& title ){
138         ui::Widget w = ui::Label( tabLabel );
139         w.show();
140         auto page = ui::Widget::from(gtk_notebook_get_nth_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gtk_notebook_insert_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), widget, w, -1 ) ));
141         g_pages.push_back( title );
142
143         return page;
144 }
145
146
147 bool GroupDialog_isShown(){
148         return g_GroupDlg.m_window.visible();
149 }
150 void GroupDialog_setShown( bool shown ){
151         shown ? g_GroupDlg.Show() : g_GroupDlg.Hide();
152 }
153 void GroupDialog_ToggleShow(){
154         GroupDialog_setShown( !GroupDialog_isShown() );
155 }
156
157 void GroupDialog_constructWindow( ui::Window main_window ){
158         g_GroupDlg.Create( main_window );
159 }
160 void GroupDialog_destroyWindow(){
161         ASSERT_TRUE( g_GroupDlg.m_window );
162         destroy_floating_window( g_GroupDlg.m_window );
163         g_GroupDlg.m_window = ui::Window{ui::null};
164 }
165
166
167 ui::Window GroupDialog_getWindow(){
168         return ui::Window(g_GroupDlg.m_window);
169 }
170 void GroupDialog_show(){
171         g_GroupDlg.Show();
172 }
173
174 ui::Widget GroupDialog_getPage(){
175         return ui::Widget::from(gtk_notebook_get_nth_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) ));
176 }
177
178 void GroupDialog_setPage( ui::Widget page ){
179         g_current_page = gtk_notebook_page_num( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), page );
180         gtk_notebook_set_current_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
181 }
182
183 void GroupDialog_showPage( ui::Widget page ){
184         if ( GroupDialog_getPage() == page ) {
185                 GroupDialog_ToggleShow();
186         }
187         else
188         {
189                 g_GroupDlg.m_window.show();
190                 GroupDialog_setPage( page );
191         }
192 }
193
194 void GroupDialog_cycle(){
195         g_current_page = ( g_current_page + 1 ) % g_pages.size();
196         gtk_notebook_set_current_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
197 }
198
199 void GroupDialog_updatePageTitle( ui::Widget page ){
200         if ( GroupDialog_getPage() == page ) {
201                 GroupDialog_updatePageTitle( g_GroupDlg.m_window, g_current_page );
202         }
203 }
204
205
206 #include "preferencesystem.h"
207
208 void GroupDialog_Construct(){
209         GlobalPreferenceSystem().registerPreference( "EntityWnd", make_property<WindowPositionTracker_String>( g_GroupDlg.m_position_tracker ) );
210
211         GlobalCommands_insert( "ViewEntityInfo", makeCallbackF(GroupDialog_ToggleShow), Accelerator( 'N' ) );
212 }
213 void GroupDialog_Destroy(){
214 }