2 Copyright (C) 2001-2006, William Joseph.
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
29 ui::VBox create_dialog_vbox( int spacing, int border ){
30 auto vbox = ui::VBox( FALSE, spacing );
32 gtk_container_set_border_width( GTK_CONTAINER( vbox ), border );
36 ui::HBox create_dialog_hbox( int spacing, int border ){
37 auto hbox = ui::HBox( FALSE, spacing );
39 gtk_container_set_border_width( GTK_CONTAINER( hbox ), border );
43 ui::Frame create_dialog_frame( const char* label, ui::Shadow shadow ){
44 auto frame = ui::Frame( label );
46 gtk_frame_set_shadow_type( frame, (GtkShadowType) shadow );
50 ui::Table create_dialog_table( unsigned int rows, unsigned int columns, unsigned int row_spacing, unsigned int col_spacing, int border ){
51 auto table = ui::Table( rows, columns, FALSE );
53 gtk_table_set_row_spacings( table, row_spacing );
54 gtk_table_set_col_spacings( table, col_spacing );
55 gtk_container_set_border_width( GTK_CONTAINER( table ), border );
59 ui::Button create_dialog_button( const char* label, GCallback func, gpointer data ){
60 auto button = ui::Button( label );
61 gtk_widget_set_size_request( GTK_WIDGET( button ), 64, -1 );
63 button.connect( "clicked", func, data );
67 ui::Window create_dialog_window( ui::Window parent, const char* title, GCallback func, gpointer data, int default_w, int default_h ){
68 ui::Window window = create_floating_window( title, parent );
69 gtk_window_set_default_size( window, default_w, default_h );
70 gtk_window_set_position( window, GTK_WIN_POS_CENTER_ON_PARENT );
71 window.connect( "delete_event", func, data );
76 gboolean modal_dialog_button_clicked( ui::Widget widget, ModalDialogButton* button ){
77 button->m_dialog.loop = false;
78 button->m_dialog.ret = button->m_value;
82 gboolean modal_dialog_delete( ui::Widget widget, GdkEvent* event, ModalDialog* dialog ){
84 dialog->ret = eIDCANCEL;
88 EMessageBoxReturn modal_dialog_show( ui::Window window, ModalDialog& dialog ){
89 gtk_grab_add( GTK_WIDGET( window ) );
90 gtk_widget_show( GTK_WIDGET( window ) );
98 gtk_widget_hide( GTK_WIDGET( window ) );
99 gtk_grab_remove( GTK_WIDGET( window ) );
104 ui::Button create_modal_dialog_button( const char* label, ModalDialogButton& button ){
105 return create_dialog_button( label, G_CALLBACK( modal_dialog_button_clicked ), &button );
108 ui::Window create_modal_dialog_window( ui::Window parent, const char* title, ModalDialog& dialog, int default_w, int default_h ){
109 return create_dialog_window( parent, title, G_CALLBACK( modal_dialog_delete ), &dialog, default_w, default_h );
112 ui::Window create_fixedsize_modal_dialog_window( ui::Window parent, const char* title, ModalDialog& dialog, int width, int height ){
113 auto window = create_modal_dialog_window( parent, title, dialog, width, height );
115 gtk_window_set_resizable( window, FALSE );
116 gtk_window_set_modal( window, TRUE );
117 gtk_window_set_position( window, GTK_WIN_POS_CENTER );
119 window_remove_minmax( window );
121 //gtk_widget_set_size_request(GTK_WIDGET(window), width, height);
122 //gtk_window_set_default_size(window, width, height);
123 //gtk_window_resize(window, width, height);
124 //GdkGeometry geometry = { width, height, -1, -1, width, height, -1, -1, -1, -1, GDK_GRAVITY_STATIC, };
125 //gtk_window_set_geometry_hints(window, GTK_WIDGET(window), &geometry, (GdkWindowHints)(GDK_HINT_POS|GDK_HINT_MIN_SIZE|GDK_HINT_BASE_SIZE));
130 gboolean dialog_button_ok( ui::Widget widget, ModalDialog* data ){
136 gboolean dialog_button_cancel( ui::Widget widget, ModalDialog* data ){
138 data->ret = eIDCANCEL;
142 gboolean dialog_button_yes( ui::Widget widget, ModalDialog* data ){
148 gboolean dialog_button_no( ui::Widget widget, ModalDialog* data ){
154 gboolean dialog_delete_callback( ui::Widget widget, GdkEventAny* event, ModalDialog* data ){
155 gtk_widget_hide( widget );
160 ui::Window create_simple_modal_dialog_window( const char* title, ModalDialog& dialog, ui::Widget contents ){
161 ui::Window window = create_fixedsize_modal_dialog_window(ui::Window{ui::null}, title, dialog );
163 auto vbox1 = create_dialog_vbox( 8, 4 );
168 ui::Alignment alignment = ui::Alignment( 0.5, 0.0, 0.0, 0.0 );
169 gtk_widget_show( GTK_WIDGET( alignment ) );
170 gtk_box_pack_start( GTK_BOX( vbox1 ), GTK_WIDGET( alignment ), FALSE, FALSE, 0 );
172 auto button = create_dialog_button( "OK", G_CALLBACK( dialog_button_ok ), &dialog );
173 alignment.add(button);
178 RadioHBox RadioHBox_new( StringArrayRange names ){
179 auto hbox = ui::HBox( TRUE, 4 );
180 gtk_widget_show( GTK_WIDGET( hbox ) );
183 auto radio = ui::RadioButton(ui::null);
184 for ( StringArrayRange::Iterator i = names.first; i != names.last; ++i )
186 radio = ui::RadioButton(GTK_RADIO_BUTTON( gtk_radio_button_new_with_label( group, *i ) ));
187 gtk_widget_show( GTK_WIDGET( radio ) );
188 gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( radio ), FALSE, FALSE, 0 );
190 group = gtk_radio_button_get_group( radio );
193 return RadioHBox( hbox, radio );
197 PathEntry PathEntry_new(){
198 auto frame = ui::Frame();
200 gtk_frame_set_shadow_type( frame, GTK_SHADOW_IN );
203 auto hbox = ui::HBox( FALSE, 0 );
204 gtk_widget_show( GTK_WIDGET( hbox ) );
206 auto entry = ui::Entry(ui::New);
207 gtk_entry_set_has_frame( entry, FALSE );
208 gtk_widget_show( GTK_WIDGET( entry ) );
209 gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( entry ), TRUE, TRUE, 0 );
212 auto button = ui::Button(ui::New);
213 button_set_icon( button, "ellipsis.bmp" );
214 gtk_widget_show( GTK_WIDGET( button ) );
215 gtk_box_pack_end( GTK_BOX( hbox ), GTK_WIDGET( button ), FALSE, FALSE, 0 );
219 return PathEntry( frame, entry, button );
222 void PathEntry_setPath( PathEntry& self, const char* path ){
223 gtk_entry_set_text( self.m_entry, path );
225 typedef ReferenceCaller1<PathEntry, const char*, PathEntry_setPath> PathEntrySetPathCaller;
227 void BrowsedPathEntry_clicked( ui::Widget widget, BrowsedPathEntry* self ){
228 self->m_browse( PathEntrySetPathCaller( self->m_entry ) );
231 BrowsedPathEntry::BrowsedPathEntry( const BrowseCallback& browse ) :
232 m_entry( PathEntry_new() ),
234 m_entry.m_button.connect( "clicked", G_CALLBACK( BrowsedPathEntry_clicked ), this );
238 ui::Label DialogLabel_new( const char* name ){
239 auto label = ui::Label( name );
240 gtk_widget_show(label);
241 gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
242 gtk_label_set_justify( label, GTK_JUSTIFY_LEFT );
247 ui::Table DialogRow_new( const char* name, ui::Widget widget ){
248 auto table = ui::Table( 1, 3, TRUE );
249 gtk_widget_show( GTK_WIDGET( table ) );
251 gtk_table_set_col_spacings( table, 4 );
252 gtk_table_set_row_spacings( table, 0 );
254 gtk_table_attach( table, GTK_WIDGET( DialogLabel_new( name ) ), 0, 1, 0, 1,
255 (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
256 (GtkAttachOptions) ( 0 ), 0, 0 );
258 gtk_table_attach( table, widget, 1, 3, 0, 1,
259 (GtkAttachOptions) ( GTK_EXPAND | GTK_FILL ),
260 (GtkAttachOptions) ( 0 ), 0, 0 );
265 void DialogVBox_packRow( ui::VBox vbox, ui::Widget row ){
266 gtk_box_pack_start( GTK_BOX( vbox ), row, FALSE, FALSE, 0 );