]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/dialog.h
Wrap more GTK
[xonotic/netradiant.git] / libs / gtkutil / dialog.h
1 /*
2    Copyright (C) 2001-2006, William Joseph.
3    All Rights Reserved.
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 #if !defined( INCLUDED_GTKUTIL_DIALOG_H )
23 #define INCLUDED_GTKUTIL_DIALOG_H
24
25 #include "generic/callback.h"
26 #include "generic/arrayrange.h"
27 #include "qerplugin.h"
28
29 typedef int gint;
30 typedef gint gboolean;
31 typedef struct _GdkEventAny GdkEventAny;
32
33
34 struct ModalDialog
35 {
36         ModalDialog()
37                 : loop( true ), ret( eIDCANCEL ){
38         }
39         bool loop;
40         EMessageBoxReturn ret;
41 };
42
43 struct ModalDialogButton
44 {
45         ModalDialogButton( ModalDialog& dialog, EMessageBoxReturn value )
46                 : m_dialog( dialog ), m_value( value ){
47         }
48         ModalDialog& m_dialog;
49         EMessageBoxReturn m_value;
50 };
51
52 typedef void ( *GCallback )( void );
53 typedef void* gpointer;
54
55 ui::Window create_fixedsize_modal_window( ui::Window parent, const char* title, int width, int height );
56
57 ui::Window create_dialog_window( ui::Window parent, const char* title, GCallback func, gpointer data, int default_w = -1, int default_h = -1 );
58 ui::Table create_dialog_table( unsigned int rows, unsigned int columns, unsigned int row_spacing, unsigned int col_spacing, int border = 0 );
59 ui::Button create_dialog_button( const char* label, GCallback func, gpointer data );
60 ui::VBox create_dialog_vbox( int spacing, int border = 0 );
61 ui::HBox create_dialog_hbox( int spacing, int border = 0 );
62 ui::Frame create_dialog_frame( const char* label, ui::Shadow shadow = ui::Shadow::ETCHED_IN );
63
64 ui::Button create_modal_dialog_button( const char* label, ModalDialogButton& button );
65 ui::Window create_modal_dialog_window( ui::Window parent, const char* title, ModalDialog& dialog, int default_w = -1, int default_h = -1 );
66 ui::Window create_fixedsize_modal_dialog_window( ui::Window parent, const char* title, ModalDialog& dialog, int width = -1, int height = -1 );
67 EMessageBoxReturn modal_dialog_show( ui::Window window, ModalDialog& dialog );
68
69
70 gboolean dialog_button_ok( ui::Widget widget, ModalDialog* data );
71 gboolean dialog_button_cancel( ui::Widget widget, ModalDialog* data );
72 gboolean dialog_button_yes( ui::Widget widget, ModalDialog* data );
73 gboolean dialog_button_no( ui::Widget widget, ModalDialog* data );
74 gboolean dialog_delete_callback( ui::Widget widget, GdkEventAny* event, ModalDialog* data );
75
76 ui::Window create_simple_modal_dialog_window( const char* title, ModalDialog& dialog, ui::Widget contents );
77
78 class RadioHBox
79 {
80 public:
81 ui::HBox m_hbox;
82 ui::RadioButton m_radio;
83 RadioHBox( ui::HBox hbox, ui::RadioButton radio ) :
84         m_hbox( hbox ),
85         m_radio( radio ){
86 }
87 };
88
89 RadioHBox RadioHBox_new( StringArrayRange names );
90
91
92 class PathEntry
93 {
94 public:
95 ui::Frame m_frame;
96 ui::Entry m_entry;
97 ui::Button m_button;
98 PathEntry( ui::Frame frame, ui::Entry entry, ui::Button button ) :
99         m_frame( frame ),
100         m_entry( entry ),
101         m_button( button ){
102 }
103 };
104
105 PathEntry PathEntry_new();
106
107 class BrowsedPathEntry
108 {
109 public:
110 typedef Callback1<const char*> SetPathCallback;
111 typedef Callback1<const SetPathCallback&> BrowseCallback;
112
113 PathEntry m_entry;
114 BrowseCallback m_browse;
115
116 BrowsedPathEntry( const BrowseCallback& browse );
117 };
118
119 ui::Label DialogLabel_new( const char* name );
120 ui::Table DialogRow_new( const char* name, ui::Widget widget );
121 void DialogVBox_packRow( ui::Box vbox, ui::Widget row );
122
123
124 #endif