]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/gtkutil/dialog.h
- Radiant is now Vista compatible (Aero must be disabled)
[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 #include <gtk/gtkenums.h>
29
30 typedef int gint;
31 typedef gint gboolean;
32 typedef struct _GdkEventAny GdkEventAny;
33 typedef struct _GtkWidget GtkWidget;
34 typedef struct _GtkHBox GtkHBox;
35 typedef struct _GtkVBox GtkVBox;
36 typedef struct _GtkRadioButton GtkRadioButton;
37 typedef struct _GtkFrame GtkFrame;
38 typedef struct _GtkEntry GtkEntry;
39 typedef struct _GtkButton GtkButton;
40 typedef struct _GtkLabel GtkLabel;
41 typedef struct _GtkTable GtkTable;
42
43
44 struct ModalDialog
45 {
46   ModalDialog()
47     : loop(true), ret(eIDCANCEL)
48   {
49   }
50   bool loop;
51   EMessageBoxReturn ret;
52 };
53
54 struct ModalDialogButton
55 {
56   ModalDialogButton(ModalDialog& dialog, EMessageBoxReturn value)
57     : m_dialog(dialog), m_value(value)
58   {
59   }
60   ModalDialog& m_dialog;
61   EMessageBoxReturn m_value;
62 };
63
64 typedef void (*GCallback)(void);
65 typedef void* gpointer;
66 typedef struct _GtkWindow GtkWindow;
67 typedef struct _GtkTable GtkTable;
68 typedef struct _GtkButton GtkButton;
69 typedef struct _GtkVBox GtkVBox;
70 typedef struct _GtkHBox GtkHBox;
71 typedef struct _GtkFrame GtkFrame;
72
73 GtkWindow* create_fixedsize_modal_window(GtkWindow* parent, const char* title, int width, int height);
74
75 GtkWindow* create_dialog_window(GtkWindow* parent, const char* title, GCallback func, gpointer data, int default_w = -1, int default_h = -1);
76 GtkTable* create_dialog_table(unsigned int rows, unsigned int columns, unsigned int row_spacing, unsigned int col_spacing, int border = 0);
77 GtkButton* create_dialog_button(const char* label, GCallback func, gpointer data);
78 GtkVBox* create_dialog_vbox(int spacing, int border = 0);
79 GtkHBox* create_dialog_hbox(int spacing, int border = 0);
80 GtkFrame* create_dialog_frame(const char* label, GtkShadowType shadow = GTK_SHADOW_ETCHED_IN);
81
82 GtkButton* create_modal_dialog_button(const char* label, ModalDialogButton& button);
83 GtkWindow* create_modal_dialog_window(GtkWindow* parent, const char* title, ModalDialog& dialog, int default_w = -1, int default_h = -1);
84 GtkWindow* create_fixedsize_modal_dialog_window(GtkWindow* parent, const char* title, ModalDialog& dialog, int width = -1, int height = -1);
85 EMessageBoxReturn modal_dialog_show(GtkWindow* window, ModalDialog& dialog);
86
87
88 gboolean dialog_button_ok(GtkWidget *widget, ModalDialog* data);
89 gboolean dialog_button_cancel(GtkWidget *widget, ModalDialog* data);
90 gboolean dialog_button_yes(GtkWidget *widget, ModalDialog* data);
91 gboolean dialog_button_no(GtkWidget *widget, ModalDialog* data);
92 gboolean dialog_delete_callback(GtkWidget *widget, GdkEventAny* event, ModalDialog* data);
93
94 GtkWindow* create_simple_modal_dialog_window(const char* title, ModalDialog& dialog, GtkWidget* contents);
95
96 class RadioHBox
97 {
98 public:
99   GtkHBox* m_hbox;
100   GtkRadioButton* m_radio;
101   RadioHBox(GtkHBox* hbox, GtkRadioButton* radio) :
102     m_hbox(hbox),
103     m_radio(radio)
104   {
105   }
106 };
107
108 RadioHBox RadioHBox_new(StringArrayRange names);
109
110
111 class PathEntry
112 {
113 public:
114   GtkFrame* m_frame;
115   GtkEntry* m_entry;
116   GtkButton* m_button;
117   PathEntry(GtkFrame* frame, GtkEntry* entry, GtkButton* button) :
118     m_frame(frame),
119     m_entry(entry),
120     m_button(button)
121   {
122   }
123 };
124
125 PathEntry PathEntry_new();
126
127 class BrowsedPathEntry
128 {
129 public:
130   typedef Callback1<const char*> SetPathCallback;
131   typedef Callback1<const SetPathCallback&> BrowseCallback;
132
133   PathEntry m_entry;
134   BrowseCallback m_browse;
135
136   BrowsedPathEntry(const BrowseCallback& browse);
137 };
138
139 GtkLabel* DialogLabel_new(const char* name);
140 GtkTable* DialogRow_new(const char* name, GtkWidget* widget);
141 typedef struct _GtkVBox GtkVBox;
142 void DialogVBox_packRow(GtkVBox* vbox, GtkWidget* row);
143
144
145 #endif