]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/dialog.cpp
redo a windows fix from 20dbf5c that was mistakenly lost
[xonotic/netradiant.git] / radiant / dialog.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 // Base dialog class, provides a way to run modal dialogs and
24 // set/get the widget values in member variables.
25 //
26 // Leonardo Zide (leo@lokigames.com)
27 //
28
29 #include "dialog.h"
30
31 #include <gtk/gtk.h>
32
33 #include "debugging/debugging.h"
34
35
36 #include "mainframe.h"
37
38 #include <stdlib.h>
39
40 #include "stream/stringstream.h"
41 #include "convert.h"
42 #include "gtkutil/dialog.h"
43 #include "gtkutil/button.h"
44 #include "gtkutil/entry.h"
45 #include "gtkutil/image.h"
46
47 #include "gtkmisc.h"
48
49
50 ui::Entry DialogEntry_new(){
51         auto entry = ui::Entry(ui::New);
52         entry.show();
53         entry.dimensions(64, -1);
54         return entry;
55 }
56
57 class DialogEntryRow
58 {
59 public:
60 DialogEntryRow( ui::Widget row, ui::Entry entry ) : m_row( row ), m_entry( entry ){
61 }
62 ui::Widget m_row;
63 ui::Entry m_entry;
64 };
65
66 DialogEntryRow DialogEntryRow_new( const char* name ){
67         auto alignment = ui::Alignment( 0.0, 0.5, 0.0, 0.0 );
68         alignment.show();
69
70         auto entry = DialogEntry_new();
71         alignment.add(entry);
72
73         return DialogEntryRow( ui::Widget(DialogRow_new( name, alignment  )), entry );
74 }
75
76
77 ui::SpinButton DialogSpinner_new( double value, double lower, double upper, int fraction ){
78         double step = 1.0 / double(fraction);
79         unsigned int digits = 0;
80         for (; fraction > 1; fraction /= 10 )
81         {
82                 ++digits;
83         }
84         auto spin = ui::SpinButton( ui::Adjustment( value, lower, upper, step, 10, 0 ), step, digits );
85         spin.show();
86         spin.dimensions(64, -1);
87         return spin;
88 }
89
90 class DialogSpinnerRow
91 {
92 public:
93 DialogSpinnerRow( ui::Widget row, ui::SpinButton spin ) : m_row( row ), m_spin( spin ){
94 }
95 ui::Widget m_row;
96 ui::SpinButton m_spin;
97 };
98
99 DialogSpinnerRow DialogSpinnerRow_new( const char* name, double value, double lower, double upper, int fraction ){
100         auto alignment = ui::Alignment( 0.0, 0.5, 0.0, 0.0 );
101         alignment.show();
102
103         auto spin = DialogSpinner_new( value, lower, upper, fraction );
104         alignment.add(spin);
105
106         return DialogSpinnerRow( ui::Widget(DialogRow_new( name, alignment  )), spin );
107 }
108
109
110 struct BoolToggle {
111         static void Export(const ui::ToggleButton &self, const Callback<void(bool)> &returnz) {
112                 returnz(self.active());
113         }
114
115         static void Import(ui::ToggleButton &self, bool value) {
116                 self.active(value);
117         }
118 };
119
120 using BoolToggleImportExport = PropertyAdaptor<ui::ToggleButton, bool, BoolToggle>;
121
122 struct IntEntry {
123         static void Export(const ui::Entry &self, const Callback<void(int)> &returnz) {
124                 returnz(atoi(gtk_entry_get_text(self)));
125         }
126
127         static void Import(ui::Entry &self, int value) {
128                 entry_set_int(self, value);
129         }
130 };
131
132 using IntEntryImportExport = PropertyAdaptor<ui::Entry, int, IntEntry>;
133
134 struct IntRadio {
135         static void Export(const ui::RadioButton &self, const Callback<void(int)> &returnz) {
136                 returnz(radio_button_get_active(self));
137         }
138
139         static void Import(ui::RadioButton &self, int value) {
140                 radio_button_set_active(self, value);
141         }
142 };
143
144 using IntRadioImportExport = PropertyAdaptor<ui::RadioButton, int, IntRadio>;
145
146 struct IntCombo {
147         static void Export(const ui::ComboBox &self, const Callback<void(int)> &returnz) {
148                 returnz(gtk_combo_box_get_active(self));
149         }
150
151         static void Import(ui::ComboBox &self, int value) {
152                 gtk_combo_box_set_active(self, value);
153         }
154 };
155
156 using IntComboImportExport = PropertyAdaptor<ui::ComboBox, int, IntCombo>;
157
158 struct IntAdjustment {
159         static void Export(const ui::Adjustment &self, const Callback<void(int)> &returnz) {
160                 returnz(int(gtk_adjustment_get_value(self)));
161         }
162
163         static void Import(ui::Adjustment &self, int value) {
164                 gtk_adjustment_set_value(self, value);
165         }
166 };
167
168 using IntAdjustmentImportExport = PropertyAdaptor<ui::Adjustment, int, IntAdjustment>;
169
170 struct IntSpinner {
171         static void Export(const ui::SpinButton &self, const Callback<void(int)> &returnz) {
172                 returnz(gtk_spin_button_get_value_as_int(self));
173         }
174
175         static void Import(ui::SpinButton &self, int value) {
176                 gtk_spin_button_set_value(self, value);
177         }
178 };
179
180 using IntSpinnerImportExport = PropertyAdaptor<ui::SpinButton, int, IntSpinner>;
181
182 struct TextEntry {
183         static void Export(const ui::Entry &self, const Callback<void(const char *)> &returnz) {
184                 returnz(gtk_entry_get_text(self));
185         }
186
187         static void Import(ui::Entry &self, const char *value) {
188                 self.text(value);
189         }
190 };
191
192 using TextEntryImportExport = PropertyAdaptor<ui::Entry, const char *, TextEntry>;
193
194 struct SizeEntry {
195         static void Export(const ui::Entry &self, const Callback<void(std::size_t)> &returnz) {
196                 int value = atoi(gtk_entry_get_text(self));
197                 if (value < 0) {
198                         value = 0;
199                 }
200                 returnz(value);
201         }
202
203         static void Import(ui::Entry &self, std::size_t value) {
204                 entry_set_int(self, int(value));
205         }
206 };
207
208 using SizeEntryImportExport = PropertyAdaptor<ui::Entry, std::size_t, SizeEntry>;
209
210 struct FloatEntry {
211         static void Export(const ui::Entry &self, const Callback<void(float)> &returnz) {
212                 returnz(float(atof(gtk_entry_get_text(self))));
213         }
214
215         static void Import(ui::Entry &self, float value) {
216                 entry_set_float(self, value);
217         }
218 };
219
220 using FloatEntryImportExport = PropertyAdaptor<ui::Entry, float, FloatEntry>;
221
222 struct FloatSpinner {
223         static void Export(const ui::SpinButton &self, const Callback<void(float)> &returnz) {
224                 returnz(float(gtk_spin_button_get_value(self)));
225         }
226
227         static void Import(ui::SpinButton &self, float value) {
228                 gtk_spin_button_set_value(self, value);
229         }
230 };
231
232 using FloatSpinnerImportExport = PropertyAdaptor<ui::SpinButton, float, FloatSpinner>;
233
234
235
236 template<typename T>
237 class CallbackDialogData : public DLG_DATA {
238         Property<T> m_pWidget;
239         Property<T> m_pData;
240
241 public:
242         CallbackDialogData(const Property<T> &pWidget, const Property<T> &pData)
243                         : m_pWidget(pWidget), m_pData(pData) {
244         }
245
246         void release() {
247                 delete this;
248         }
249
250         void importData() const {
251                 m_pData.get(m_pWidget.set);
252         }
253
254         void exportData() const {
255                 m_pWidget.get(m_pData.set);
256         }
257 };
258
259 template<class Widget>
260 void AddDataCustom(DialogDataList &self, typename Widget::Type widget, Property<typename Widget::Other> const &property) {
261     using Self = typename Widget::Type;
262     using T = typename Widget::Other;
263     using native = typename std::remove_pointer<typename Self::native>::type;
264     struct Wrapper {
265         static void Export(const native &self, const Callback<void(T)> &returnz) {
266                         native *p = &const_cast<native &>(self);
267                         auto widget = Self::from(p);
268                         Widget::Get::thunk_(widget, returnz);
269         }
270
271         static void Import(native &self, T value) {
272                         native *p = &self;
273                         auto widget = Self::from(p);
274                         Widget::Set::thunk_(widget, value);
275         }
276     };
277     self.push_back(new CallbackDialogData<typename Widget::Other>(
278             make_property<PropertyAdaptor<native, T, Wrapper>>(*static_cast<native *>(widget)),
279             property
280     ));
281 }
282
283 template<class Widget, class D>
284 void AddData(DialogDataList &self, typename Widget::Type widget, D &data) {
285     AddDataCustom<Widget>(self, widget, make_property<PropertyAdaptor<D, typename Widget::Other>>(data));
286 }
287
288 // =============================================================================
289 // Dialog class
290
291 Dialog::Dialog() : m_window( ui::null ), m_parent( ui::null ){
292 }
293
294 Dialog::~Dialog(){
295         for ( DialogDataList::iterator i = m_data.begin(); i != m_data.end(); ++i )
296         {
297                 ( *i )->release();
298         }
299
300         ASSERT_MESSAGE( !m_window, "dialog window not destroyed" );
301 }
302
303 void Dialog::ShowDlg(){
304         ASSERT_MESSAGE( m_window, "dialog was not constructed" );
305         importData();
306         m_window.show();
307 }
308
309 void Dialog::HideDlg(){
310         ASSERT_MESSAGE( m_window, "dialog was not constructed" );
311         exportData();
312         m_window.hide();
313 }
314
315 static gint delete_event_callback( ui::Widget widget, GdkEvent* event, gpointer data ){
316         reinterpret_cast<Dialog*>( data )->HideDlg();
317         reinterpret_cast<Dialog*>( data )->EndModal( eIDCANCEL );
318         return TRUE;
319 }
320
321 void Dialog::Create(){
322         ASSERT_MESSAGE( !m_window, "dialog cannot be constructed" );
323
324         m_window = BuildDialog();
325         m_window.connect( "delete_event", G_CALLBACK( delete_event_callback ), this );
326 }
327
328 void Dialog::Destroy(){
329         ASSERT_MESSAGE( m_window, "dialog cannot be destroyed" );
330
331         m_window.destroy();
332         m_window = ui::Window{ui::null};
333 }
334
335
336 void Dialog::AddBoolToggleData( ui::ToggleButton widget, Property<bool> const &cb ){
337     AddDataCustom<BoolToggleImportExport>( m_data, widget, cb );
338 }
339
340 void Dialog::AddIntRadioData( ui::RadioButton widget, Property<int> const &cb ){
341     AddDataCustom<IntRadioImportExport>( m_data, widget, cb );
342 }
343
344 void Dialog::AddTextEntryData( ui::Entry widget, Property<const char *> const &cb ){
345     AddDataCustom<TextEntryImportExport>( m_data, widget, cb );
346 }
347
348 void Dialog::AddIntEntryData( ui::Entry widget, Property<int> const &cb ){
349     AddDataCustom<IntEntryImportExport>( m_data, widget, cb );
350 }
351
352 void Dialog::AddSizeEntryData( ui::Entry widget, Property<std::size_t> const &cb ){
353     AddDataCustom<SizeEntryImportExport>( m_data, widget, cb );
354 }
355
356 void Dialog::AddFloatEntryData( ui::Entry widget, Property<float> const &cb ){
357     AddDataCustom<FloatEntryImportExport>( m_data, widget, cb );
358 }
359
360 void Dialog::AddFloatSpinnerData( ui::SpinButton widget, Property<float> const &cb ){
361     AddDataCustom<FloatSpinnerImportExport>( m_data, widget, cb );
362 }
363
364 void Dialog::AddIntSpinnerData( ui::SpinButton widget, Property<int> const &cb ){
365     AddDataCustom<IntSpinnerImportExport>( m_data, widget, cb );
366 }
367
368 void Dialog::AddIntAdjustmentData( ui::Adjustment widget, Property<int> const &cb ){
369     AddDataCustom<IntAdjustmentImportExport>( m_data, widget, cb );
370 }
371
372 void Dialog::AddIntComboData( ui::ComboBox widget, Property<int> const &cb ){
373     AddDataCustom<IntComboImportExport>( m_data, widget, cb );
374 }
375
376
377 void Dialog::AddDialogData( ui::ToggleButton widget, bool& data ){
378         AddData<BoolToggleImportExport>( m_data, widget, data );
379 }
380 void Dialog::AddDialogData( ui::RadioButton widget, int& data ){
381         AddData<IntRadioImportExport>( m_data, widget, data );
382 }
383 void Dialog::AddDialogData( ui::Entry widget, CopiedString& data ){
384         AddData<TextEntryImportExport>( m_data, widget, data );
385 }
386 void Dialog::AddDialogData( ui::Entry widget, int& data ){
387         AddData<IntEntryImportExport>( m_data, widget, data );
388 }
389 void Dialog::AddDialogData( ui::Entry widget, std::size_t& data ){
390         AddData<SizeEntryImportExport>( m_data, widget, data );
391 }
392 void Dialog::AddDialogData( ui::Entry widget, float& data ){
393         AddData<FloatEntryImportExport>( m_data, widget, data );
394 }
395 void Dialog::AddDialogData( ui::SpinButton widget, float& data ){
396         AddData<FloatSpinnerImportExport>( m_data, widget, data );
397 }
398 void Dialog::AddDialogData( ui::SpinButton widget, int& data ){
399         AddData<IntSpinnerImportExport>( m_data, widget, data );
400 }
401 void Dialog::AddDialogData( ui::Adjustment widget, int& data ){
402         AddData<IntAdjustmentImportExport>( m_data, widget, data );
403 }
404 void Dialog::AddDialogData( ui::ComboBox widget, int& data ){
405         AddData<IntComboImportExport>( m_data, widget, data );
406 }
407
408 void Dialog::exportData(){
409         for ( DialogDataList::iterator i = m_data.begin(); i != m_data.end(); ++i )
410         {
411                 ( *i )->exportData();
412         }
413 }
414
415 void Dialog::importData(){
416         for ( DialogDataList::iterator i = m_data.begin(); i != m_data.end(); ++i )
417         {
418                 ( *i )->importData();
419         }
420 }
421
422 void Dialog::EndModal( EMessageBoxReturn code ){
423         m_modal.loop = 0;
424         m_modal.ret = code;
425 }
426
427 EMessageBoxReturn Dialog::DoModal(){
428         importData();
429
430         PreModal();
431
432         EMessageBoxReturn ret = modal_dialog_show( m_window, m_modal );
433         ASSERT_TRUE( (bool) m_window );
434         if ( ret == eIDOK ) {
435                 exportData();
436         }
437
438         m_window.hide();
439
440         PostModal( m_modal.ret );
441
442         return m_modal.ret;
443 }
444
445
446 ui::CheckButton Dialog::addCheckBox( ui::VBox vbox, const char* name, const char* flag, Property<bool> const &cb ){
447         auto check = ui::CheckButton( flag );
448         check.show();
449         AddBoolToggleData( check, cb );
450
451         DialogVBox_packRow( vbox, ui::Widget(DialogRow_new( name, check  ) ));
452         return check;
453 }
454
455 ui::CheckButton Dialog::addCheckBox( ui::VBox vbox, const char* name, const char* flag, bool& data ){
456         return addCheckBox(vbox, name, flag, make_property(data));
457 }
458
459 void Dialog::addCombo( ui::VBox vbox, const char* name, StringArrayRange values, Property<int> const &cb ){
460         auto alignment = ui::Alignment( 0.0, 0.5, 0.0, 0.0 );
461         alignment.show();
462         {
463                 auto combo = ui::ComboBoxText(ui::New);
464
465                 for ( StringArrayRange::Iterator i = values.first; i != values.last; ++i )
466                 {
467                         gtk_combo_box_text_append_text( GTK_COMBO_BOX_TEXT( combo ), *i );
468                 }
469
470                 AddIntComboData( combo, cb );
471
472                 combo.show();
473                 alignment.add(combo);
474         }
475
476         auto row = DialogRow_new( name, alignment );
477         DialogVBox_packRow( vbox, row );
478 }
479
480 void Dialog::addCombo( ui::VBox vbox, const char* name, int& data, StringArrayRange values ){
481         addCombo(vbox, name, values, make_property(data));
482 }
483
484 void Dialog::addSlider( ui::VBox vbox, const char* name, int& data, gboolean draw_value, const char* low, const char* high, double value, double lower, double upper, double step_increment, double page_increment ){
485 #if 0
486         if ( draw_value == FALSE ) {
487                 auto hbox2 = ui::HBox( FALSE, 0 );
488                 hbox2.show();
489                 vbox.pack_start( hbox2 , FALSE, FALSE, 0 );
490                 {
491                         ui::Widget label = ui::Label( low );
492                         label.show();
493                         hbox2.pack_start( label, FALSE, FALSE, 0 );
494                 }
495                 {
496                         ui::Widget label = ui::Label( high );
497                         label.show();
498                         hbox2.pack_end(label, FALSE, FALSE, 0);
499                 }
500         }
501 #endif
502
503         // adjustment
504         auto adj = ui::Adjustment( value, lower, upper, step_increment, page_increment, 0 );
505         AddIntAdjustmentData(adj, make_property(data));
506
507         // scale
508         auto alignment = ui::Alignment( 0.0, 0.5, 1.0, 0.0 );
509         alignment.show();
510
511         ui::Widget scale = ui::HScale( adj );
512         gtk_scale_set_value_pos( GTK_SCALE( scale ), GTK_POS_LEFT );
513         scale.show();
514         alignment.add(scale);
515
516         gtk_scale_set_draw_value( GTK_SCALE( scale ), draw_value );
517         gtk_scale_set_digits( GTK_SCALE( scale ), 0 );
518
519         auto row = DialogRow_new( name, alignment );
520         DialogVBox_packRow( vbox, row );
521 }
522
523 void Dialog::addRadio( ui::VBox vbox, const char* name, StringArrayRange names, Property<int> const &cb ){
524         auto alignment = ui::Alignment( 0.0, 0.5, 0.0, 0.0 );
525         alignment.show();;
526         {
527                 RadioHBox radioBox = RadioHBox_new( names );
528                 alignment.add(radioBox.m_hbox);
529                 AddIntRadioData( radioBox.m_radio, cb );
530         }
531
532         auto row = DialogRow_new( name, alignment );
533         DialogVBox_packRow( vbox, row );
534 }
535
536 void Dialog::addRadio( ui::VBox vbox, const char* name, int& data, StringArrayRange names ){
537         addRadio(vbox, name, names, make_property(data));
538 }
539
540 void Dialog::addRadioIcons( ui::VBox vbox, const char* name, StringArrayRange icons, Property<int> const &cb ){
541     auto table = ui::Table(2, icons.last - icons.first, FALSE);
542     table.show();
543
544     gtk_table_set_row_spacings(table, 5);
545     gtk_table_set_col_spacings(table, 5);
546
547         GSList* group = 0;
548         ui::RadioButton radio{ui::null};
549         for ( StringArrayRange::Iterator icon = icons.first; icon != icons.last; ++icon )
550         {
551                 guint pos = static_cast<guint>( icon - icons.first );
552                 auto image = new_local_image( *icon );
553                 image.show();
554         table.attach(image, {pos, pos + 1, 0, 1}, {0, 0});
555
556                 radio = ui::RadioButton::from(gtk_radio_button_new( group ));
557                 radio.show();
558         table.attach(radio, {pos, pos + 1, 1, 2}, {0, 0});
559
560                 group = gtk_radio_button_get_group( GTK_RADIO_BUTTON( radio ) );
561         }
562
563         AddIntRadioData( radio, cb );
564
565         DialogVBox_packRow( vbox, DialogRow_new( name, table ) );
566 }
567
568 void Dialog::addRadioIcons( ui::VBox vbox, const char* name, int& data, StringArrayRange icons ){
569         addRadioIcons(vbox, name, icons, make_property(data));
570 }
571
572 ui::Widget Dialog::addIntEntry( ui::VBox vbox, const char* name, Property<int> const &cb ){
573         DialogEntryRow row( DialogEntryRow_new( name ) );
574         AddIntEntryData( row.m_entry, cb );
575         DialogVBox_packRow( vbox, row.m_row );
576         return row.m_row;
577 }
578
579 ui::Widget Dialog::addSizeEntry( ui::VBox vbox, const char* name, Property<std::size_t> const &cb ){
580         DialogEntryRow row( DialogEntryRow_new( name ) );
581         AddSizeEntryData( row.m_entry, cb );
582         DialogVBox_packRow( vbox, row.m_row );
583         return row.m_row;
584 }
585
586 ui::Widget Dialog::addFloatEntry( ui::VBox vbox, const char* name, Property<float> const &cb ){
587         DialogEntryRow row( DialogEntryRow_new( name ) );
588         AddFloatEntryData( row.m_entry, cb );
589         DialogVBox_packRow( vbox, row.m_row );
590         return row.m_row;
591 }
592
593 ui::Widget Dialog::addPathEntry( ui::VBox vbox, const char* name, bool browse_directory, Property<const char *> const &cb ){
594         PathEntry pathEntry = PathEntry_new();
595         pathEntry.m_button.connect( "clicked", G_CALLBACK( browse_directory ? button_clicked_entry_browse_directory : button_clicked_entry_browse_file ), pathEntry.m_entry );
596
597         AddTextEntryData( pathEntry.m_entry, cb );
598
599         auto row = DialogRow_new( name, ui::Widget(pathEntry.m_frame ) );
600         DialogVBox_packRow( vbox, row );
601
602         return row;
603 }
604
605 ui::Widget Dialog::addPathEntry( ui::VBox vbox, const char* name, CopiedString& data, bool browse_directory ){
606     return addPathEntry(vbox, name, browse_directory, make_property<CopiedString, const char *>(data));
607 }
608
609 ui::SpinButton Dialog::addSpinner( ui::VBox vbox, const char* name, double value, double lower, double upper, Property<int> const &cb ){
610         DialogSpinnerRow row( DialogSpinnerRow_new( name, value, lower, upper, 1 ) );
611         AddIntSpinnerData( row.m_spin, cb );
612         DialogVBox_packRow( vbox, row.m_row );
613         return row.m_spin;
614 }
615
616 ui::SpinButton Dialog::addSpinner( ui::VBox vbox, const char* name, int& data, double value, double lower, double upper ){
617         return addSpinner(vbox, name, value, lower, upper, make_property(data));
618 }
619
620 ui::SpinButton Dialog::addSpinner( ui::VBox vbox, const char* name, double value, double lower, double upper, Property<float> const &cb ){
621         DialogSpinnerRow row( DialogSpinnerRow_new( name, value, lower, upper, 10 ) );
622         AddFloatSpinnerData( row.m_spin, cb );
623         DialogVBox_packRow( vbox, row.m_row );
624         return row.m_spin;
625 }