]> Pileus Git - ~andy/gtk/blob - docs/reference/gtk/tmpl/gtkdialog.sgml
87865c37f3bb19bb8c122d42d48bc4939c57c892
[~andy/gtk] / docs / reference / gtk / tmpl / gtkdialog.sgml
1 <!-- ##### SECTION Title ##### -->
2 GtkDialog
3
4 <!-- ##### SECTION Short_Description ##### -->
5 Create popup windows
6
7 <!-- ##### SECTION Long_Description ##### -->
8
9 <para>
10 Dialog boxes are a convenient way to prompt the user for a small amount of
11 input, e.g. to display a message, ask a question, or anything else that does 
12 not require extensive effort on the user's part.
13 </para>
14
15 <para>
16 GTK+ treats a dialog as a window split vertically. The top section is a
17 #GtkVBox, and is where widgets such as a #GtkLabel or a #GtkEntry should
18 be packed. The bottom area is known as the
19 <structfield>action_area</structfield>. This is generally used for
20 packing buttons into the dialog which may perform functions such as
21 cancel, ok, or apply. The two areas are separated by a #GtkHSeparator.
22 </para>
23
24 <para>
25 #GtkDialog boxes are created with a call to gtk_dialog_new() or
26 gtk_dialog_new_with_buttons(). gtk_dialog_new_with_buttons() is recommended; it
27 allows you to set the dialog title, some convenient flags, and add simple
28 buttons.
29 </para>
30
31 <para>
32 If 'dialog' is a newly created dialog, the two primary areas of the window 
33 can be accessed as <literal>GTK_DIALOG(dialog)->vbox</literal> and 
34 <literal>GTK_DIALOG(dialog)->action_area</literal>,
35 as can be seen from the example, below.
36 </para>
37
38 <para>
39 A 'modal' dialog (that is, one which freezes the rest of the application from
40 user input), can be created by calling gtk_window_set_modal() on the dialog. Use
41 the GTK_WINDOW() macro to cast the widget returned from gtk_dialog_new() into a
42 #GtkWindow. When using gtk_dialog_new_with_buttons() you can also pass the
43 #GTK_DIALOG_MODAL flag to make a dialog modal.
44 </para>
45
46 <para>
47 If you add buttons to #GtkDialog using gtk_dialog_new_with_buttons(),
48 gtk_dialog_add_button(), gtk_dialog_add_buttons(), or
49 gtk_dialog_add_action_widget(), clicking the button will emit a signal called
50 "response" with a response ID that you specified. GTK+ will never assign a
51 meaning to positive response IDs; these are entirely user-defined. But for
52 convenience, you can use the response IDs in the #GtkResponseType enumeration
53 (these all have values less than zero). If a dialog receives a delete event, 
54 the "response" signal will be emitted with a response ID of #GTK_RESPONSE_DELETE_EVENT.
55 </para>
56
57
58 <para>
59 If you want to block waiting for a dialog to return before returning control
60 flow to your code, you can call gtk_dialog_run(). This function enters a
61 recursive main loop and waits for the user to respond to the dialog, returning the 
62 response ID corresponding to the button the user clicked.
63 </para>
64
65 <para>
66 For the simple dialog in the following example, in reality you'd probably use
67 #GtkMessageDialog to save yourself some effort.  But you'd need to create the
68 dialog contents manually if you had more than a simple message in the dialog.
69 <example>
70 <title>Simple <structname>GtkDialog</structname> usage.</title>
71 <programlisting>
72
73 /* Function to open a dialog box displaying the message provided. */
74
75 void quick_message (gchar *message) {
76
77    GtkWidget *dialog, *label;
78    
79    /* Create the widgets */
80    
81    dialog = gtk_dialog_new_with_buttons ("Message",
82                                          main_application_window,
83                                          GTK_DIALOG_DESTROY_WITH_PARENT,
84                                          GTK_STOCK_OK,
85                                          GTK_RESPONSE_NONE,
86                                          NULL);
87    label = gtk_label_new (message);
88    
89    /* Ensure that the dialog box is destroyed when the user responds. */
90    
91    g_signal_connect_swapped (dialog,
92                              "response", 
93                              G_CALLBACK (gtk_widget_destroy),
94                              dialog);
95
96    /* Add the label, and show everything we've added to the dialog. */
97
98    gtk_container_add (GTK_CONTAINER (GTK_DIALOG(dialog)->vbox),
99                       label);
100    gtk_widget_show_all (dialog);
101 }
102
103 </programlisting>
104 </example>
105 </para>
106
107 <!-- ##### SECTION See_Also ##### -->
108
109 <para>
110 <variablelist>
111 <varlistentry>
112 <term>#GtkVBox</term>
113 <listitem><para>Pack widgets vertically.</para></listitem>
114 </varlistentry>
115 <varlistentry>
116 <term>#GtkWindow</term>
117 <listitem><para>Alter the properties of your dialog box.</para></listitem>
118 </varlistentry>
119 <varlistentry>
120 <term>#GtkButton</term>
121 <listitem><para>Add them to the <structfield>action_area</structfield> to get a
122 response from the user.</para></listitem>
123 </varlistentry>
124 </variablelist>
125 </para>
126
127 <!-- ##### STRUCT GtkDialog ##### -->
128 <para>
129 <structfield>vbox</structfield> is a #GtkVBox - the main part of the
130 dialog box.
131 </para>
132
133 <para>
134 <structfield>action_area</structfield> is a #GtkHButtonBox packed below the
135 dividing #GtkHSeparator in the dialog. It is treated exactly the same
136 as any other #GtkHButtonBox.
137 </para>
138
139 @vbox: 
140 @action_area: 
141
142 <!-- ##### SIGNAL GtkDialog::close ##### -->
143 <para>
144
145 </para>
146
147 @dialog: the object which received the signal.
148
149 <!-- ##### SIGNAL GtkDialog::response ##### -->
150 <para>
151 Emitted when an action widget is clicked, the dialog receives a delete event, or
152 the application programmer calls gtk_dialog_response(). On a delete event, the
153 response ID is #GTK_RESPONSE_NONE. Otherwise, it depends on which action widget
154 was clicked.
155 </para>
156
157 @dialog: the object which received the signal.
158 @arg1: the response ID
159
160 <!-- ##### ARG GtkDialog:has-separator ##### -->
161 <para>
162
163 </para>
164
165 <!-- ##### ARG GtkDialog:action-area-border ##### -->
166 <para>
167
168 </para>
169
170 <!-- ##### ARG GtkDialog:button-spacing ##### -->
171 <para>
172
173 </para>
174
175 <!-- ##### ARG GtkDialog:content-area-border ##### -->
176 <para>
177
178 </para>
179
180 <!-- ##### ENUM GtkDialogFlags ##### -->
181 <para>
182 Flags used to influence dialog construction.
183 </para>
184
185 @GTK_DIALOG_MODAL: Make the constructed dialog modal, 
186   see gtk_widget_set_modal().
187 @GTK_DIALOG_DESTROY_WITH_PARENT: Destroy the dialog when its
188   parent is destroyed, see gtk_window_set_destroy_with_parent().
189 @GTK_DIALOG_NO_SEPARATOR: Don't put a separator between the
190   action area and the dialog content.
191
192 <!-- ##### ENUM GtkResponseType ##### -->
193 <para>
194 Predefined values for use as response ids in gtk_dialog_add_button().
195 All predefined values are negative, GTK+ leaves positive values for
196 application-defined response ids. 
197 </para>
198
199 @GTK_RESPONSE_NONE: Returned if an action widget has no response id, or if 
200    the dialog gets programmatically hidden or destroyed.
201 @GTK_RESPONSE_REJECT: Generic response id, not used by GTK+ dialogs.
202 @GTK_RESPONSE_ACCEPT: Generic response id, not used by GTK+ dialogs.
203 @GTK_RESPONSE_DELETE_EVENT: Returned if the dialog is deleted.
204 @GTK_RESPONSE_OK: Returned by OK buttons in GTK+ dialogs.
205 @GTK_RESPONSE_CANCEL: Returned by Cancel buttons in GTK+ dialogs.
206 @GTK_RESPONSE_CLOSE: Returned by Close buttons in GTK+ dialogs.
207 @GTK_RESPONSE_YES: Returned by Yes buttons in GTK+ dialogs.
208 @GTK_RESPONSE_NO: Returned by No buttons in GTK+ dialogs.
209 @GTK_RESPONSE_APPLY: Returned by Apply buttons in GTK+ dialogs.
210 @GTK_RESPONSE_HELP: Returned by Help buttons in GTK+ dialogs.
211
212 <!-- ##### FUNCTION gtk_dialog_new ##### -->
213 <para>
214 Creates a new dialog box. Widgets should not be packed into this #GtkWindow
215 directly, but into the @vbox and @action_area, as described above. 
216 </para>
217
218 @Returns: a new #GtkDialog.
219
220
221 <!-- ##### FUNCTION gtk_dialog_new_with_buttons ##### -->
222 <para>
223
224 </para>
225
226 @title: 
227 @parent: 
228 @flags: 
229 @first_button_text: 
230 @Varargs: 
231 @Returns: 
232
233
234 <!-- ##### FUNCTION gtk_dialog_run ##### -->
235 <para>
236
237 </para>
238
239 @dialog: 
240 @Returns: 
241
242
243 <!-- ##### FUNCTION gtk_dialog_response ##### -->
244 <para>
245
246 </para>
247
248 @dialog: 
249 @response_id: 
250
251
252 <!-- ##### FUNCTION gtk_dialog_add_button ##### -->
253 <para>
254
255 </para>
256
257 @dialog: 
258 @button_text: 
259 @response_id: 
260 @Returns: 
261
262
263 <!-- ##### FUNCTION gtk_dialog_add_buttons ##### -->
264 <para>
265
266 </para>
267
268 @dialog: 
269 @first_button_text: 
270 @Varargs: 
271
272
273 <!-- ##### FUNCTION gtk_dialog_add_action_widget ##### -->
274 <para>
275
276 </para>
277
278 @dialog: 
279 @child: 
280 @response_id: 
281 <!-- # Unused Parameters # -->
282 @widget: 
283
284
285 <!-- ##### FUNCTION gtk_dialog_get_has_separator ##### -->
286 <para>
287
288 </para>
289
290 @dialog: 
291 @Returns: 
292
293
294 <!-- ##### FUNCTION gtk_dialog_set_default_response ##### -->
295 <para>
296
297 </para>
298
299 @dialog: 
300 @response_id: 
301
302
303 <!-- ##### FUNCTION gtk_dialog_set_has_separator ##### -->
304 <para>
305
306 </para>
307
308 @dialog: 
309 @setting: 
310
311
312 <!-- ##### FUNCTION gtk_dialog_set_response_sensitive ##### -->
313 <para>
314
315 </para>
316
317 @dialog: 
318 @response_id: 
319 @setting: 
320
321
322 <!-- ##### FUNCTION gtk_alternative_dialog_button_order ##### -->
323 <para>
324
325 </para>
326
327 @screen: 
328 @Returns: 
329
330
331 <!-- ##### FUNCTION gtk_dialog_set_alternative_button_order ##### -->
332 <para>
333
334 </para>
335
336 @dialog: 
337 @first_response_id: 
338 @Varargs: 
339
340