2 Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3 For a list of contributors, see the accompanying CONTRIBUTORS file.
5 This file is part of GtkRadiant.
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.
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.
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
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
26 // Leonardo Zide (leo@lokigames.com)
29 #include "groupdialog.h"
31 #include "debugging/debugging.h"
37 #include "gtkutil/widget.h"
38 #include "gtkutil/accelerator.h"
39 #include "entityinspector.h"
46 #include "gtkutil/window.h"
51 ui::Widget m_pNotebook;
55 void Create( ui::Window parent );
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 gtk_widget_show( GTK_WIDGET( m_window ) );
63 gtk_widget_hide( GTK_WIDGET( m_window ) );
66 WindowPositionTracker m_position_tracker;
73 std::size_t g_current_page;
74 std::vector<StringExportCallback> g_pages;
77 void GroupDialog_updatePageTitle( ui::Window window, std::size_t pageIndex ){
78 if ( pageIndex < g_pages.size() ) {
79 g_pages[pageIndex]( PointerCaller1<GtkWindow, const char*, gtk_window_set_title>( window ) );
83 static gboolean switch_page( GtkNotebook *notebook, gpointer page, guint page_num, gpointer data ){
84 GroupDialog_updatePageTitle( ui::Window(GTK_WINDOW( data )), page_num );
85 g_current_page = page_num;
90 GroupDlg::GroupDlg() : m_window( 0 ){
91 m_position_tracker.setPosition( c_default_window_pos );
94 void GroupDlg::Create( ui::Window parent ){
95 ASSERT_MESSAGE( !m_window, "dialog already created" );
97 ui::Window window = ui::Window(create_persistent_floating_window( "Entities", parent ));
99 global_accel_connect_window( window );
101 window_connect_focus_in_clear_focus_widget( window );
106 if ( g_multimon_globals.m_bStartOnPrimMon ) {
107 WindowPosition pos( m_position_tracker.getPosition() );
108 PositionWindowOnPrimaryScreen( pos );
109 m_position_tracker.setPosition( pos );
112 m_position_tracker.connect( window );
115 ui::Widget notebook = ui::Widget(gtk_notebook_new());
116 gtk_widget_show( notebook );
117 gtk_container_add( GTK_CONTAINER( window ), notebook );
118 gtk_notebook_set_tab_pos( GTK_NOTEBOOK( notebook ), GTK_POS_BOTTOM );
119 m_pNotebook = notebook;
121 g_signal_connect( G_OBJECT(notebook), "switch_page", G_CALLBACK( switch_page ), (gpointer) window );
126 ui::Widget GroupDialog_addPage( const char* tabLabel, ui::Widget widget, const StringExportCallback& title ){
127 ui::Widget w = ui::Label( tabLabel );
128 gtk_widget_show( w );
129 ui::Widget page = ui::Widget(gtk_notebook_get_nth_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gtk_notebook_insert_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), widget, w, -1 ) ));
130 g_pages.push_back( title );
136 bool GroupDialog_isShown(){
137 return widget_is_visible( GTK_WIDGET( g_GroupDlg.m_window ) );
139 void GroupDialog_setShown( bool shown ){
140 shown ? g_GroupDlg.Show() : g_GroupDlg.Hide();
142 void GroupDialog_ToggleShow(){
143 GroupDialog_setShown( !GroupDialog_isShown() );
146 void GroupDialog_constructWindow( ui::Window main_window ){
147 g_GroupDlg.Create( main_window );
149 void GroupDialog_destroyWindow(){
150 ASSERT_TRUE( g_GroupDlg.m_window );
151 destroy_floating_window( g_GroupDlg.m_window );
152 g_GroupDlg.m_window = ui::Window();
156 ui::Window GroupDialog_getWindow(){
157 return ui::Window(g_GroupDlg.m_window);
159 void GroupDialog_show(){
163 ui::Widget GroupDialog_getPage(){
164 return ui::Widget(gtk_notebook_get_nth_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) ));
167 void GroupDialog_setPage( ui::Widget page ){
168 g_current_page = gtk_notebook_page_num( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), page );
169 gtk_notebook_set_current_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
172 void GroupDialog_showPage( ui::Widget page ){
173 if ( GroupDialog_getPage() == page ) {
174 GroupDialog_ToggleShow();
178 gtk_widget_show( GTK_WIDGET( g_GroupDlg.m_window ) );
179 GroupDialog_setPage( page );
183 void GroupDialog_cycle(){
184 g_current_page = ( g_current_page + 1 ) % g_pages.size();
185 gtk_notebook_set_current_page( GTK_NOTEBOOK( g_GroupDlg.m_pNotebook ), gint( g_current_page ) );
188 void GroupDialog_updatePageTitle( ui::Widget page ){
189 if ( GroupDialog_getPage() == page ) {
190 GroupDialog_updatePageTitle( g_GroupDlg.m_window, g_current_page );
195 #include "preferencesystem.h"
197 void GroupDialog_Construct(){
198 GlobalPreferenceSystem().registerPreference( "EntityWnd", WindowPositionTrackerImportStringCaller( g_GroupDlg.m_position_tracker ), WindowPositionTrackerExportStringCaller( g_GroupDlg.m_position_tracker ) );
200 GlobalCommands_insert( "ViewEntityInfo", FreeCaller<GroupDialog_ToggleShow>(), Accelerator( 'N' ) );
202 void GroupDialog_Destroy(){