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 button.dimensions(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 ){
90 g_assert( GTK_IS_WINDOW(window) );
91 gtk_grab_add( GTK_WIDGET(window) );
100 gtk_grab_remove( window );
105 ui::Button create_modal_dialog_button( const char* label, ModalDialogButton& button ){
106 return create_dialog_button( label, G_CALLBACK( modal_dialog_button_clicked ), &button );
109 ui::Window create_modal_dialog_window( ui::Window parent, const char* title, ModalDialog& dialog, int default_w, int default_h ){
110 return create_dialog_window( parent, title, G_CALLBACK( modal_dialog_delete ), &dialog, default_w, default_h );
113 ui::Window create_fixedsize_modal_dialog_window( ui::Window parent, const char* title, ModalDialog& dialog, int width, int height ){
114 auto window = create_modal_dialog_window( parent, title, dialog, width, height );
116 gtk_window_set_resizable( window, FALSE );
117 gtk_window_set_modal( window, TRUE );
118 gtk_window_set_position( window, GTK_WIN_POS_CENTER );
120 window_remove_minmax( window );
122 //window.dimensions(width, height);
123 //gtk_window_set_default_size(window, width, height);
124 //gtk_window_resize(window, width, height);
125 //GdkGeometry geometry = { width, height, -1, -1, width, height, -1, -1, -1, -1, GDK_GRAVITY_STATIC, };
126 //gtk_window_set_geometry_hints(window, window, &geometry, (GdkWindowHints)(GDK_HINT_POS|GDK_HINT_MIN_SIZE|GDK_HINT_BASE_SIZE));
131 gboolean dialog_button_ok( ui::Widget widget, ModalDialog* data ){
137 gboolean dialog_button_cancel( ui::Widget widget, ModalDialog* data ){
139 data->ret = eIDCANCEL;
143 gboolean dialog_button_yes( ui::Widget widget, ModalDialog* data ){
149 gboolean dialog_button_no( ui::Widget widget, ModalDialog* data ){
155 gboolean dialog_delete_callback( ui::Widget widget, GdkEventAny* event, ModalDialog* data ){
161 ui::Window create_simple_modal_dialog_window( const char* title, ModalDialog& dialog, ui::Widget contents ){
162 ui::Window window = create_fixedsize_modal_dialog_window(ui::Window{ui::null}, title, dialog );
164 auto vbox1 = create_dialog_vbox( 8, 4 );
169 ui::Alignment alignment = ui::Alignment( 0.5, 0.0, 0.0, 0.0 );
171 vbox1.pack_start( alignment, FALSE, FALSE, 0 );
173 auto button = create_dialog_button( "OK", G_CALLBACK( dialog_button_ok ), &dialog );
174 alignment.add(button);
175 gtk_widget_grab_focus (button);
180 RadioHBox RadioHBox_new( StringArrayRange names ){
181 auto hbox = ui::HBox( TRUE, 4 );
185 auto radio = ui::RadioButton(ui::null);
186 for ( StringArrayRange::Iterator i = names.first; i != names.last; ++i )
188 radio = ui::RadioButton::from( gtk_radio_button_new_with_label( group, *i ) );
190 hbox.pack_start( radio, FALSE, FALSE, 0 );
192 group = gtk_radio_button_get_group( radio );
195 return RadioHBox( hbox, radio );
199 PathEntry PathEntry_new(){
200 auto frame = ui::Frame();
202 gtk_frame_set_shadow_type( frame, GTK_SHADOW_IN );
205 auto hbox = ui::HBox( FALSE, 0 );
208 auto entry = ui::Entry(ui::New);
209 gtk_entry_set_has_frame( entry, FALSE );
211 hbox.pack_start( entry, TRUE, TRUE, 0 );
214 auto button = ui::Button(ui::New);
215 button_set_icon( button, "ellipsis.png" );
217 hbox.pack_end(button, FALSE, FALSE, 0);
221 return PathEntry( frame, entry, button );
224 void PathEntry_setPath( PathEntry& self, const char* path ){
225 gtk_entry_set_text( self.m_entry, path );
227 typedef ReferenceCaller<PathEntry, void(const char*), PathEntry_setPath> PathEntrySetPathCaller;
229 void BrowsedPathEntry_clicked( ui::Widget widget, BrowsedPathEntry* self ){
230 self->m_browse( PathEntrySetPathCaller( self->m_entry ) );
233 BrowsedPathEntry::BrowsedPathEntry( const BrowseCallback& browse ) :
234 m_entry( PathEntry_new() ),
236 m_entry.m_button.connect( "clicked", G_CALLBACK( BrowsedPathEntry_clicked ), this );
240 ui::Label DialogLabel_new( const char* name ){
241 auto label = ui::Label( name );
243 gtk_misc_set_alignment( GTK_MISC( label ), 1, 0.5 );
244 gtk_label_set_justify( label, GTK_JUSTIFY_LEFT );
249 ui::Table DialogRow_new( const char* name, ui::Widget widget ){
250 auto table = ui::Table( 1, 3, TRUE );
253 gtk_table_set_col_spacings( table, 4 );
254 gtk_table_set_row_spacings( table, 0 );
256 table.attach(DialogLabel_new(name), {0, 1, 0, 1}, {GTK_EXPAND | GTK_FILL, 0});
258 table.attach(widget, {1, 3, 0, 1}, {GTK_EXPAND | GTK_FILL, 0});
263 void DialogVBox_packRow( ui::Box vbox, ui::Widget row ){
264 vbox.pack_start( row, FALSE, FALSE, 0 );