]> Pileus Git - ~andy/gtk/blob - gtk/gtkmessagedialog.c
messagedialog: don't use gtk_widget_override_font()
[~andy/gtk] / gtk / gtkmessagedialog.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 2 -*- */
2 /* GTK - The GIMP Toolkit
3  * Copyright (C) 2000 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 /*
20  * Modified by the GTK+ Team and others 1997-2003.  See the AUTHORS
21  * file for a list of people on the GTK+ Team.  See the ChangeLog
22  * files for a list of changes.  These files are distributed with
23  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
24  */
25
26 #include "config.h"
27
28 #include <string.h>
29
30 #include "gtkmessagedialog.h"
31 #include "gtkaccessible.h"
32 #include "gtkbuildable.h"
33 #include "gtklabel.h"
34 #include "gtkbox.h"
35 #include "gtkimage.h"
36 #include "gtkstock.h"
37 #include "gtkiconfactory.h"
38 #include "gtkintl.h"
39 #include "gtkprivate.h"
40 #include "gtktypebuiltins.h"
41
42 /**
43  * SECTION:gtkmessagedialog
44  * @Short_description: A convenient message window
45  * @Title: GtkMessageDialog
46  * @See_also:#GtkDialog
47  *
48  * #GtkMessageDialog presents a dialog with an image representing the type of
49  * message (Error, Question, etc.) alongside some message text. It's simply a
50  * convenience widget; you could construct the equivalent of #GtkMessageDialog
51  * from #GtkDialog without too much effort, but #GtkMessageDialog saves typing.
52  *
53  * The easiest way to do a modal message dialog is to use gtk_dialog_run(), though
54  * you can also pass in the %GTK_DIALOG_MODAL flag, gtk_dialog_run() automatically
55  * makes the dialog modal and waits for the user to respond to it. gtk_dialog_run()
56  * returns when any dialog button is clicked.
57  * <example>
58  * <title>A modal dialog.</title>
59  * <programlisting>
60  *  dialog = gtk_message_dialog_new (main_application_window,
61  *                                   GTK_DIALOG_DESTROY_WITH_PARENT,
62  *                                   GTK_MESSAGE_ERROR,
63  *                                   GTK_BUTTONS_CLOSE,
64  *                                   "Error loading file '&percnt;s': &percnt;s",
65  *                                   filename, g_strerror (errno));
66  *  gtk_dialog_run (GTK_DIALOG (dialog));
67  *  gtk_widget_destroy (dialog);
68  * </programlisting>
69  * </example>
70  * You might do a non-modal #GtkMessageDialog as follows:
71  * <example>
72  * <title>A non-modal dialog.</title>
73  * <programlisting>
74  *  dialog = gtk_message_dialog_new (main_application_window,
75  *                                   GTK_DIALOG_DESTROY_WITH_PARENT,
76  *                                   GTK_MESSAGE_ERROR,
77  *                                   GTK_BUTTONS_CLOSE,
78  *                                   "Error loading file '&percnt;s': &percnt;s",
79  *                                   filename, g_strerror (errno));
80  *
81  *  /&ast; Destroy the dialog when the user responds to it (e.g. clicks a button) &ast;/
82  *  g_signal_connect_swapped (dialog, "response",
83  *                            G_CALLBACK (gtk_widget_destroy),
84  *                            dialog);
85  * </programlisting>
86  * </example>
87  *
88  * <refsect2 id="GtkMessageDialog-BUILDER-UI">
89  * <title>GtkMessageDialog as GtkBuildable</title>
90  * <para>
91  * The GtkMessageDialog implementation of the GtkBuildable interface exposes
92  * the message area as an internal child with the name "message_area".
93  * </para>
94  * </refsect2>
95  */
96
97 struct _GtkMessageDialogPrivate
98 {
99   GtkWidget     *image;
100   GtkWidget     *label;
101   GtkWidget     *message_area; /* vbox for the primary and secondary labels, and any extra content from the caller */
102   GtkWidget     *secondary_label;
103
104   guint          has_primary_markup : 1;
105   guint          has_secondary_text : 1;
106   guint          message_type       : 3;
107 };
108
109 static void gtk_message_dialog_style_updated (GtkWidget             *widget);
110
111 static void gtk_message_dialog_set_property (GObject          *object,
112                                              guint             prop_id,
113                                              const GValue     *value,
114                                              GParamSpec       *pspec);
115 static void gtk_message_dialog_get_property (GObject          *object,
116                                              guint             prop_id,
117                                              GValue           *value,
118                                              GParamSpec       *pspec);
119 static void gtk_message_dialog_add_buttons  (GtkMessageDialog *message_dialog,
120                                              GtkButtonsType    buttons);
121 static void      gtk_message_dialog_buildable_interface_init     (GtkBuildableIface *iface);
122 static GObject * gtk_message_dialog_buildable_get_internal_child (GtkBuildable  *buildable,
123                                                                   GtkBuilder    *builder,
124                                                                   const gchar   *childname);
125
126
127 enum {
128   PROP_0,
129   PROP_MESSAGE_TYPE,
130   PROP_BUTTONS,
131   PROP_TEXT,
132   PROP_USE_MARKUP,
133   PROP_SECONDARY_TEXT,
134   PROP_SECONDARY_USE_MARKUP,
135   PROP_IMAGE,
136   PROP_MESSAGE_AREA
137 };
138
139 G_DEFINE_TYPE_WITH_CODE (GtkMessageDialog, gtk_message_dialog, GTK_TYPE_DIALOG,
140                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
141                                                 gtk_message_dialog_buildable_interface_init))
142
143 static GtkBuildableIface *parent_buildable_iface;
144
145 static void
146 gtk_message_dialog_buildable_interface_init (GtkBuildableIface *iface)
147 {
148   parent_buildable_iface = g_type_interface_peek_parent (iface);
149   iface->get_internal_child = gtk_message_dialog_buildable_get_internal_child;
150   iface->custom_tag_start = parent_buildable_iface->custom_tag_start;
151   iface->custom_finished = parent_buildable_iface->custom_finished;
152 }
153
154 static GObject *
155 gtk_message_dialog_buildable_get_internal_child (GtkBuildable *buildable,
156                                                  GtkBuilder   *builder,
157                                                  const gchar  *childname)
158 {
159   if (strcmp (childname, "message_area") == 0)
160     return G_OBJECT (gtk_message_dialog_get_message_area (GTK_MESSAGE_DIALOG (buildable)));
161
162   return parent_buildable_iface->get_internal_child (buildable, builder, childname);
163 }
164
165
166 static void
167 gtk_message_dialog_class_init (GtkMessageDialogClass *class)
168 {
169   GtkWidgetClass *widget_class;
170   GObjectClass *gobject_class;
171
172   widget_class = GTK_WIDGET_CLASS (class);
173   gobject_class = G_OBJECT_CLASS (class);
174   
175   widget_class->style_updated = gtk_message_dialog_style_updated;
176
177   gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_ALERT);
178
179   gobject_class->set_property = gtk_message_dialog_set_property;
180   gobject_class->get_property = gtk_message_dialog_get_property;
181   
182   gtk_widget_class_install_style_property (widget_class,
183                                            g_param_spec_int ("message-border",
184                                                              P_("Image/label border"),
185                                                              P_("Width of border around the label and image in the message dialog"),
186                                                              0,
187                                                              G_MAXINT,
188                                                              12,
189                                                              GTK_PARAM_READABLE));
190
191   /**
192    * GtkMessageDialog:message-type:
193    *
194    * The type of the message. The type is used to determine
195    * the image that is shown in the dialog, unless the image is 
196    * explicitly set by the ::image property.
197    */
198   g_object_class_install_property (gobject_class,
199                                    PROP_MESSAGE_TYPE,
200                                    g_param_spec_enum ("message-type",
201                                                       P_("Message Type"),
202                                                       P_("The type of message"),
203                                                       GTK_TYPE_MESSAGE_TYPE,
204                                                       GTK_MESSAGE_INFO,
205                                                       GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
206   g_object_class_install_property (gobject_class,
207                                    PROP_BUTTONS,
208                                    g_param_spec_enum ("buttons",
209                                                       P_("Message Buttons"),
210                                                       P_("The buttons shown in the message dialog"),
211                                                       GTK_TYPE_BUTTONS_TYPE,
212                                                       GTK_BUTTONS_NONE,
213                                                       GTK_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
214
215   /**
216    * GtkMessageDialog:text:
217    * 
218    * The primary text of the message dialog. If the dialog has 
219    * a secondary text, this will appear as the title.
220    *
221    * Since: 2.10
222    */
223   g_object_class_install_property (gobject_class,
224                                    PROP_TEXT,
225                                    g_param_spec_string ("text",
226                                                         P_("Text"),
227                                                         P_("The primary text of the message dialog"),
228                                                         "",
229                                                         GTK_PARAM_READWRITE));
230
231   /**
232    * GtkMessageDialog:use-markup:
233    * 
234    * %TRUE if the primary text of the dialog includes Pango markup. 
235    * See pango_parse_markup(). 
236    *
237    * Since: 2.10
238    */
239   g_object_class_install_property (gobject_class,
240                                    PROP_USE_MARKUP,
241                                    g_param_spec_boolean ("use-markup",
242                                                          P_("Use Markup"),
243                                                          P_("The primary text of the title includes Pango markup."),
244                                                          FALSE,
245                                                          GTK_PARAM_READWRITE));
246   
247   /**
248    * GtkMessageDialog:secondary-text:
249    * 
250    * The secondary text of the message dialog. 
251    *
252    * Since: 2.10
253    */
254   g_object_class_install_property (gobject_class,
255                                    PROP_SECONDARY_TEXT,
256                                    g_param_spec_string ("secondary-text",
257                                                         P_("Secondary Text"),
258                                                         P_("The secondary text of the message dialog"),
259                                                         NULL,
260                                                         GTK_PARAM_READWRITE));
261
262   /**
263    * GtkMessageDialog:secondary-use-markup:
264    * 
265    * %TRUE if the secondary text of the dialog includes Pango markup. 
266    * See pango_parse_markup(). 
267    *
268    * Since: 2.10
269    */
270   g_object_class_install_property (gobject_class,
271                                    PROP_SECONDARY_USE_MARKUP,
272                                    g_param_spec_boolean ("secondary-use-markup",
273                                                          P_("Use Markup in secondary"),
274                                                          P_("The secondary text includes Pango markup."),
275                                                          FALSE,
276                                                          GTK_PARAM_READWRITE));
277
278   /**
279    * GtkMessageDialog:image:
280    * 
281    * The image for this dialog.
282    *
283    * Since: 2.10
284    */
285   g_object_class_install_property (gobject_class,
286                                    PROP_IMAGE,
287                                    g_param_spec_object ("image",
288                                                         P_("Image"),
289                                                         P_("The image"),
290                                                         GTK_TYPE_WIDGET,
291                                                         GTK_PARAM_READWRITE));
292
293   /**
294    * GtkMessageDialog:message-area:
295    *
296    * The #GtkVBox that corresponds to the message area of this dialog.  See
297    * gtk_message_dialog_get_message_area() for a detailed description of this
298    * area.
299    *
300    * Since: 2.22
301    */
302   g_object_class_install_property (gobject_class,
303                                    PROP_MESSAGE_AREA,
304                                    g_param_spec_object ("message-area",
305                                                         P_("Message area"),
306                                                         P_("GtkVBox that holds the dialog's primary and secondary labels"),
307                                                         GTK_TYPE_WIDGET,
308                                                         GTK_PARAM_READABLE));
309
310   g_type_class_add_private (gobject_class, sizeof (GtkMessageDialogPrivate));
311 }
312
313 static void
314 gtk_message_dialog_init (GtkMessageDialog *dialog)
315 {
316   GtkWidget *hbox;
317   GtkDialog *message_dialog = GTK_DIALOG (dialog);
318   GtkWidget *action_area, *content_area;
319   GtkMessageDialogPrivate *priv;
320
321   dialog->priv = G_TYPE_INSTANCE_GET_PRIVATE (dialog,
322                                               GTK_TYPE_MESSAGE_DIALOG,
323                                               GtkMessageDialogPrivate);
324   priv = dialog->priv;
325
326   content_area = gtk_dialog_get_content_area (message_dialog);
327   action_area = gtk_dialog_get_action_area (message_dialog);
328
329   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
330   gtk_window_set_title (GTK_WINDOW (dialog), "");
331   gtk_window_set_skip_taskbar_hint (GTK_WINDOW (dialog), TRUE);
332
333   priv->has_primary_markup = FALSE;
334   priv->has_secondary_text = FALSE;
335   priv->secondary_label = gtk_label_new (NULL);
336   gtk_widget_set_no_show_all (priv->secondary_label, TRUE);
337
338   priv->label = gtk_label_new (NULL);
339   priv->image = gtk_image_new_from_stock (NULL, GTK_ICON_SIZE_DIALOG);
340   gtk_widget_set_halign (priv->image, GTK_ALIGN_CENTER);
341   gtk_widget_set_valign (priv->image, GTK_ALIGN_START);
342
343   gtk_label_set_line_wrap  (GTK_LABEL (priv->label), TRUE);
344   gtk_label_set_selectable (GTK_LABEL (priv->label), TRUE);
345   gtk_widget_set_halign (priv->label, GTK_ALIGN_START);
346   gtk_widget_set_valign (priv->label, GTK_ALIGN_START);
347
348   gtk_label_set_line_wrap  (GTK_LABEL (priv->secondary_label), TRUE);
349   gtk_label_set_selectable (GTK_LABEL (priv->secondary_label), TRUE);
350   gtk_widget_set_halign (priv->secondary_label, GTK_ALIGN_START);
351   gtk_widget_set_valign (priv->secondary_label, GTK_ALIGN_START);
352
353   hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
354   priv->message_area = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
355
356   gtk_box_pack_start (GTK_BOX (priv->message_area), priv->label,
357                       FALSE, FALSE, 0);
358
359   gtk_box_pack_start (GTK_BOX (priv->message_area), priv->secondary_label,
360                       TRUE, TRUE, 0);
361
362   gtk_box_pack_start (GTK_BOX (hbox), priv->image,
363                       FALSE, FALSE, 0);
364
365   gtk_box_pack_start (GTK_BOX (hbox), priv->message_area,
366                       TRUE, TRUE, 0);
367
368   gtk_box_pack_start (GTK_BOX (content_area),
369                       hbox,
370                       FALSE, FALSE, 0);
371
372   gtk_container_set_border_width (GTK_CONTAINER (dialog), 5);
373   gtk_container_set_border_width (GTK_CONTAINER (hbox), 5);
374   gtk_box_set_spacing (GTK_BOX (content_area), 14); /* 14 + 2 * 5 = 24 */
375   gtk_container_set_border_width (GTK_CONTAINER (action_area), 5);
376   gtk_box_set_spacing (GTK_BOX (action_area), 6);
377
378   gtk_message_dialog_style_updated (GTK_WIDGET (dialog));
379
380   gtk_widget_show_all (hbox);
381 }
382
383 static void
384 setup_primary_label_font (GtkMessageDialog *dialog)
385 {
386   GtkMessageDialogPrivate *priv = dialog->priv;
387
388   if (priv->has_secondary_text && !priv->has_primary_markup)
389     {
390       PangoAttrList *attributes;
391       PangoAttribute *attr;
392
393       attributes = pango_attr_list_new ();
394
395       attr = pango_attr_weight_new (PANGO_WEIGHT_BOLD);
396       pango_attr_list_insert (attributes, attr);
397
398       attr = pango_attr_scale_new (PANGO_SCALE_LARGE);
399       pango_attr_list_insert (attributes, attr);
400
401       gtk_label_set_attributes (GTK_LABEL (priv->label), attributes);
402       pango_attr_list_unref (attributes);
403     }
404   else
405     {
406       /* unset the font settings */
407       gtk_label_set_attributes (GTK_LABEL (priv->label), NULL);
408     }
409 }
410
411 static void
412 setup_type (GtkMessageDialog *dialog,
413             GtkMessageType    type)
414 {
415   GtkMessageDialogPrivate *priv = dialog->priv;
416   const gchar *stock_id = NULL;
417   AtkObject *atk_obj;
418  
419   priv->message_type = type;
420
421   switch (type)
422     {
423     case GTK_MESSAGE_INFO:
424       stock_id = GTK_STOCK_DIALOG_INFO;
425       break;
426
427     case GTK_MESSAGE_QUESTION:
428       stock_id = GTK_STOCK_DIALOG_QUESTION;
429       break;
430
431     case GTK_MESSAGE_WARNING:
432       stock_id = GTK_STOCK_DIALOG_WARNING;
433       break;
434       
435     case GTK_MESSAGE_ERROR:
436       stock_id = GTK_STOCK_DIALOG_ERROR;
437       break;
438
439     case GTK_MESSAGE_OTHER:
440       break;
441
442     default:
443       g_warning ("Unknown GtkMessageType %u", type);
444       break;
445     }
446
447   if (stock_id)
448     gtk_image_set_from_stock (GTK_IMAGE (priv->image), stock_id,
449                               GTK_ICON_SIZE_DIALOG);
450       
451   atk_obj = gtk_widget_get_accessible (GTK_WIDGET (dialog));
452   if (GTK_IS_ACCESSIBLE (atk_obj))
453     {
454       atk_object_set_role (atk_obj, ATK_ROLE_ALERT);
455       if (stock_id)
456         {
457           GtkStockItem item;
458
459           gtk_stock_lookup (stock_id, &item);
460           atk_object_set_name (atk_obj, item.label);
461         }
462     }
463 }
464
465 static void 
466 gtk_message_dialog_set_property (GObject      *object,
467                                  guint         prop_id,
468                                  const GValue *value,
469                                  GParamSpec   *pspec)
470 {
471   GtkMessageDialog *dialog = GTK_MESSAGE_DIALOG (object);
472   GtkMessageDialogPrivate *priv = dialog->priv;
473
474   switch (prop_id)
475     {
476     case PROP_MESSAGE_TYPE:
477       setup_type (dialog, g_value_get_enum (value));
478       break;
479     case PROP_BUTTONS:
480       gtk_message_dialog_add_buttons (dialog, g_value_get_enum (value));
481       break;
482     case PROP_TEXT:
483       if (priv->has_primary_markup)
484         gtk_label_set_markup (GTK_LABEL (priv->label),
485                               g_value_get_string (value));
486       else
487         gtk_label_set_text (GTK_LABEL (priv->label),
488                             g_value_get_string (value));
489       break;
490     case PROP_USE_MARKUP:
491       priv->has_primary_markup = g_value_get_boolean (value) != FALSE;
492       gtk_label_set_use_markup (GTK_LABEL (priv->label),
493                                 priv->has_primary_markup);
494       setup_primary_label_font (dialog);
495       break;
496     case PROP_SECONDARY_TEXT:
497       {
498         const gchar *txt = g_value_get_string (value);
499
500         if (gtk_label_get_use_markup (GTK_LABEL (priv->secondary_label)))
501           gtk_label_set_markup (GTK_LABEL (priv->secondary_label), txt);
502         else
503           gtk_label_set_text (GTK_LABEL (priv->secondary_label), txt);
504
505         if (txt)
506           {
507             priv->has_secondary_text = TRUE;
508             gtk_widget_show (priv->secondary_label);
509           }
510         else
511           {
512             priv->has_secondary_text = FALSE;
513             gtk_widget_hide (priv->secondary_label);
514           }
515         setup_primary_label_font (dialog);
516       }
517       break;
518     case PROP_SECONDARY_USE_MARKUP:
519       gtk_label_set_use_markup (GTK_LABEL (priv->secondary_label), 
520                                 g_value_get_boolean (value));
521       break;
522     case PROP_IMAGE:
523       gtk_message_dialog_set_image (dialog, g_value_get_object (value));
524       break;
525
526     default:
527       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
528       break;
529     }
530 }
531
532 static void 
533 gtk_message_dialog_get_property (GObject     *object,
534                                  guint        prop_id,
535                                  GValue      *value,
536                                  GParamSpec  *pspec)
537 {
538   GtkMessageDialog *dialog = GTK_MESSAGE_DIALOG (object);
539   GtkMessageDialogPrivate *priv = dialog->priv;
540
541   switch (prop_id)
542     {
543     case PROP_MESSAGE_TYPE:
544       g_value_set_enum (value, (GtkMessageType) priv->message_type);
545       break;
546     case PROP_TEXT:
547       g_value_set_string (value, gtk_label_get_label (GTK_LABEL (priv->label)));
548       break;
549     case PROP_USE_MARKUP:
550       g_value_set_boolean (value, priv->has_primary_markup);
551       break;
552     case PROP_SECONDARY_TEXT:
553       if (priv->has_secondary_text)
554       g_value_set_string (value, 
555                           gtk_label_get_label (GTK_LABEL (priv->secondary_label)));
556       else
557         g_value_set_string (value, NULL);
558       break;
559     case PROP_SECONDARY_USE_MARKUP:
560       if (priv->has_secondary_text)
561         g_value_set_boolean (value, 
562                              gtk_label_get_use_markup (GTK_LABEL (priv->secondary_label)));
563       else
564         g_value_set_boolean (value, FALSE);
565       break;
566     case PROP_IMAGE:
567       g_value_set_object (value, priv->image);
568       break;
569     case PROP_MESSAGE_AREA:
570       g_value_set_object (value, priv->message_area);
571       break;
572     default:
573       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
574       break;
575     }
576 }
577
578 /**
579  * gtk_message_dialog_new:
580  * @parent: (allow-none): transient parent, or %NULL for none
581  * @flags: flags
582  * @type: type of message
583  * @buttons: set of buttons to use
584  * @message_format: (allow-none): printf()-style format string, or %NULL
585  * @...: arguments for @message_format
586  *
587  * Creates a new message dialog, which is a simple dialog with an icon
588  * indicating the dialog type (error, warning, etc.) and some text the
589  * user may want to see. When the user clicks a button a "response"
590  * signal is emitted with response IDs from #GtkResponseType. See
591  * #GtkDialog for more details.
592  *
593  * Return value: (transfer none): a new #GtkMessageDialog
594  */
595 GtkWidget*
596 gtk_message_dialog_new (GtkWindow     *parent,
597                         GtkDialogFlags flags,
598                         GtkMessageType type,
599                         GtkButtonsType buttons,
600                         const gchar   *message_format,
601                         ...)
602 {
603   GtkWidget *widget;
604   GtkDialog *dialog;
605   gchar* msg = NULL;
606   va_list args;
607
608   g_return_val_if_fail (parent == NULL || GTK_IS_WINDOW (parent), NULL);
609
610   widget = g_object_new (GTK_TYPE_MESSAGE_DIALOG,
611                          "message-type", type,
612                          "buttons", buttons,
613                          NULL);
614   dialog = GTK_DIALOG (widget);
615
616   if (message_format)
617     {
618       va_start (args, message_format);
619       msg = g_strdup_vprintf (message_format, args);
620       va_end (args);
621
622       gtk_label_set_text (GTK_LABEL (GTK_MESSAGE_DIALOG (widget)->priv->label),
623                           msg);
624
625       g_free (msg);
626     }
627
628   if (parent != NULL)
629     gtk_window_set_transient_for (GTK_WINDOW (widget),
630                                   GTK_WINDOW (parent));
631   
632   if (flags & GTK_DIALOG_MODAL)
633     gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
634
635   if (flags & GTK_DIALOG_DESTROY_WITH_PARENT)
636     gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
637
638   return widget;
639 }
640
641 /**
642  * gtk_message_dialog_new_with_markup:
643  * @parent: (allow-none): transient parent, or %NULL for none
644  * @flags: flags
645  * @type: type of message
646  * @buttons: set of buttons to use
647  * @message_format: (allow-none): printf()-style format string, or %NULL
648  * @...: arguments for @message_format
649  *
650  * Creates a new message dialog, which is a simple dialog with an icon
651  * indicating the dialog type (error, warning, etc.) and some text which
652  * is marked up with the <link linkend="PangoMarkupFormat">Pango text markup language</link>.
653  * When the user clicks a button a "response" signal is emitted with
654  * response IDs from #GtkResponseType. See #GtkDialog for more details.
655  *
656  * Special XML characters in the printf() arguments passed to this
657  * function will automatically be escaped as necessary.
658  * (See g_markup_printf_escaped() for how this is implemented.)
659  * Usually this is what you want, but if you have an existing
660  * Pango markup string that you want to use literally as the
661  * label, then you need to use gtk_message_dialog_set_markup()
662  * instead, since you can't pass the markup string either
663  * as the format (it might contain '%' characters) or as a string
664  * argument.
665  * |[
666  *  GtkWidget *dialog;
667  *  dialog = gtk_message_dialog_new (main_application_window,
668  *                                   GTK_DIALOG_DESTROY_WITH_PARENT,
669  *                                   GTK_MESSAGE_ERROR,
670  *                                   GTK_BUTTONS_CLOSE,
671  *                                   NULL);
672  *  gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (dialog),
673  *                                 markup);
674  * ]|
675  * 
676  * Return value: a new #GtkMessageDialog
677  *
678  * Since: 2.4
679  **/
680 GtkWidget*
681 gtk_message_dialog_new_with_markup (GtkWindow     *parent,
682                                     GtkDialogFlags flags,
683                                     GtkMessageType type,
684                                     GtkButtonsType buttons,
685                                     const gchar   *message_format,
686                                     ...)
687 {
688   GtkWidget *widget;
689   va_list args;
690   gchar *msg = NULL;
691
692   g_return_val_if_fail (parent == NULL || GTK_IS_WINDOW (parent), NULL);
693
694   widget = gtk_message_dialog_new (parent, flags, type, buttons, NULL);
695
696   if (message_format)
697     {
698       va_start (args, message_format);
699       msg = g_markup_vprintf_escaped (message_format, args);
700       va_end (args);
701
702       gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (widget), msg);
703
704       g_free (msg);
705     }
706
707   return widget;
708 }
709
710 /**
711  * gtk_message_dialog_set_image:
712  * @dialog: a #GtkMessageDialog
713  * @image: the image
714  * 
715  * Sets the dialog's image to @image.
716  *
717  * Since: 2.10
718  **/
719 void
720 gtk_message_dialog_set_image (GtkMessageDialog *dialog,
721                               GtkWidget        *image)
722 {
723   GtkMessageDialogPrivate *priv;
724   GtkWidget *parent;
725
726   g_return_if_fail (GTK_IS_MESSAGE_DIALOG (dialog));
727   g_return_if_fail (image == NULL || GTK_IS_WIDGET (image));
728
729   priv = dialog->priv;
730
731   if (image == NULL)
732     {
733       image = gtk_image_new_from_stock (NULL, GTK_ICON_SIZE_DIALOG);
734       gtk_widget_set_halign (image, GTK_ALIGN_CENTER);
735       gtk_widget_set_valign (image, GTK_ALIGN_START);
736     }
737
738   priv->message_type = GTK_MESSAGE_OTHER;
739
740   parent = gtk_widget_get_parent (priv->image);
741   gtk_container_add (GTK_CONTAINER (parent), image);
742   gtk_container_remove (GTK_CONTAINER (parent), priv->image);
743   gtk_box_reorder_child (GTK_BOX (parent), image, 0);
744
745   priv->image = image;
746
747   g_object_notify (G_OBJECT (dialog), "image");
748 }
749
750 /**
751  * gtk_message_dialog_get_image:
752  * @dialog: a #GtkMessageDialog
753  *
754  * Gets the dialog's image.
755  *
756  * Return value: (transfer none): the dialog's image
757  *
758  * Since: 2.14
759  **/
760 GtkWidget *
761 gtk_message_dialog_get_image (GtkMessageDialog *dialog)
762 {
763   g_return_val_if_fail (GTK_IS_MESSAGE_DIALOG (dialog), NULL);
764
765   return dialog->priv->image;
766 }
767
768 /**
769  * gtk_message_dialog_set_markup:
770  * @message_dialog: a #GtkMessageDialog
771  * @str: markup string (see <link linkend="PangoMarkupFormat">Pango markup format</link>)
772  * 
773  * Sets the text of the message dialog to be @str, which is marked
774  * up with the <link linkend="PangoMarkupFormat">Pango text markup
775  * language</link>.
776  *
777  * Since: 2.4
778  **/
779 void
780 gtk_message_dialog_set_markup (GtkMessageDialog *message_dialog,
781                                const gchar      *str)
782 {
783   GtkMessageDialogPrivate *priv;
784
785   g_return_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog));
786
787   priv = message_dialog->priv;
788
789   priv->has_primary_markup = TRUE;
790   gtk_label_set_markup (GTK_LABEL (priv->label), str);
791 }
792
793 /**
794  * gtk_message_dialog_format_secondary_text:
795  * @message_dialog: a #GtkMessageDialog
796  * @message_format: (allow-none): printf()-style format string, or %NULL
797  * @...: arguments for @message_format
798  *
799  * Sets the secondary text of the message dialog to be @message_format
800  * (with printf()-style).
801  *
802  * Note that setting a secondary text makes the primary text become
803  * bold, unless you have provided explicit markup.
804  *
805  * Since: 2.6
806  */
807 void
808 gtk_message_dialog_format_secondary_text (GtkMessageDialog *message_dialog,
809                                           const gchar      *message_format,
810                                           ...)
811 {
812   va_list args;
813   gchar *msg = NULL;
814   GtkMessageDialogPrivate *priv;
815
816   g_return_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog));
817
818   priv = message_dialog->priv;
819
820   if (message_format)
821     {
822       priv->has_secondary_text = TRUE;
823
824       va_start (args, message_format);
825       msg = g_strdup_vprintf (message_format, args);
826       va_end (args);
827
828       gtk_widget_show (priv->secondary_label);
829       gtk_label_set_text (GTK_LABEL (priv->secondary_label), msg);
830
831       g_free (msg);
832     }
833   else
834     {
835       priv->has_secondary_text = FALSE;
836       gtk_widget_hide (priv->secondary_label);
837     }
838
839   setup_primary_label_font (message_dialog);
840 }
841
842 /**
843  * gtk_message_dialog_format_secondary_markup:
844  * @message_dialog: a #GtkMessageDialog
845  * @message_format: printf()-style markup string (see
846      <link linkend="PangoMarkupFormat">Pango markup format</link>), or %NULL
847  * @...: arguments for @message_format
848  *
849  * Sets the secondary text of the message dialog to be @message_format (with
850  * printf()-style), which is marked up with the
851  * <link linkend="PangoMarkupFormat">Pango text markup language</link>.
852  *
853  * Note that setting a secondary text makes the primary text become
854  * bold, unless you have provided explicit markup.
855  *
856  * Due to an oversight, this function does not escape special XML characters
857  * like gtk_message_dialog_new_with_markup() does. Thus, if the arguments
858  * may contain special XML characters, you should use g_markup_printf_escaped()
859  * to escape it.
860
861  * <informalexample><programlisting>
862  * gchar *msg;
863  *
864  * msg = g_markup_printf_escaped (message_format, ...);
865  * gtk_message_dialog_format_secondary_markup (message_dialog, "&percnt;s", msg);
866  * g_free (msg);
867  * </programlisting></informalexample>
868  *
869  * Since: 2.6
870  */
871 void
872 gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message_dialog,
873                                             const gchar      *message_format,
874                                             ...)
875 {
876   va_list args;
877   gchar *msg = NULL;
878   GtkMessageDialogPrivate *priv;
879
880   g_return_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog));
881
882   priv = message_dialog->priv;
883
884   if (message_format)
885     {
886       priv->has_secondary_text = TRUE;
887
888       va_start (args, message_format);
889       msg = g_strdup_vprintf (message_format, args);
890       va_end (args);
891
892       gtk_widget_show (priv->secondary_label);
893       gtk_label_set_markup (GTK_LABEL (priv->secondary_label), msg);
894
895       g_free (msg);
896     }
897   else
898     {
899       priv->has_secondary_text = FALSE;
900       gtk_widget_hide (priv->secondary_label);
901     }
902
903   setup_primary_label_font (message_dialog);
904 }
905
906 /**
907  * gtk_message_dialog_get_message_area:
908  * @message_dialog: a #GtkMessageDialog
909  *
910  * Returns the message area of the dialog. This is the box where the
911  * dialog's primary and secondary labels are packed. You can add your
912  * own extra content to that box and it will appear below those labels,
913  * on the right side of the dialog's image (or on the left for right-to-left
914  * languages).  See gtk_dialog_get_content_area() for the corresponding
915  * function in the parent #GtkDialog.
916  *
917  * Return value: (transfer none): A #GtkVBox corresponding to the
918  *     "message area" in the @message_dialog.
919  *
920  * Since: 2.22
921  **/
922 GtkWidget *
923 gtk_message_dialog_get_message_area (GtkMessageDialog *message_dialog)
924 {
925   g_return_val_if_fail (GTK_IS_MESSAGE_DIALOG (message_dialog), NULL);
926
927   return message_dialog->priv->message_area;
928 }
929
930 static void
931 gtk_message_dialog_add_buttons (GtkMessageDialog* message_dialog,
932                                 GtkButtonsType buttons)
933 {
934   GtkDialog* dialog = GTK_DIALOG (message_dialog);
935
936   switch (buttons)
937     {
938     case GTK_BUTTONS_NONE:
939       /* nothing */
940       break;
941
942     case GTK_BUTTONS_OK:
943       gtk_dialog_add_button (dialog,
944                              GTK_STOCK_OK,
945                              GTK_RESPONSE_OK);
946       break;
947
948     case GTK_BUTTONS_CLOSE:
949       gtk_dialog_add_button (dialog,
950                              GTK_STOCK_CLOSE,
951                              GTK_RESPONSE_CLOSE);
952       break;
953
954     case GTK_BUTTONS_CANCEL:
955       gtk_dialog_add_button (dialog,
956                              GTK_STOCK_CANCEL,
957                              GTK_RESPONSE_CANCEL);
958       break;
959
960     case GTK_BUTTONS_YES_NO:
961       gtk_dialog_add_button (dialog,
962                              GTK_STOCK_NO,
963                              GTK_RESPONSE_NO);
964       gtk_dialog_add_button (dialog,
965                              GTK_STOCK_YES,
966                              GTK_RESPONSE_YES);
967       gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
968                                                GTK_RESPONSE_YES,
969                                                GTK_RESPONSE_NO,
970                                                -1);
971       break;
972
973     case GTK_BUTTONS_OK_CANCEL:
974       gtk_dialog_add_button (dialog,
975                              GTK_STOCK_CANCEL,
976                              GTK_RESPONSE_CANCEL);
977       gtk_dialog_add_button (dialog,
978                              GTK_STOCK_OK,
979                              GTK_RESPONSE_OK);
980       gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
981                                                GTK_RESPONSE_OK,
982                                                GTK_RESPONSE_CANCEL,
983                                                -1);
984       break;
985       
986     default:
987       g_warning ("Unknown GtkButtonsType");
988       break;
989     } 
990
991   g_object_notify (G_OBJECT (message_dialog), "buttons");
992 }
993
994 static void
995 gtk_message_dialog_style_updated (GtkWidget *widget)
996 {
997   GtkMessageDialog *dialog = GTK_MESSAGE_DIALOG (widget);
998   GtkWidget *parent;
999   gint border_width;
1000
1001   parent = gtk_widget_get_parent (gtk_message_dialog_get_image (dialog));
1002
1003   if (parent)
1004     {
1005       gtk_widget_style_get (widget, "message-border",
1006                             &border_width, NULL);
1007
1008       gtk_container_set_border_width (GTK_CONTAINER (parent),
1009                                       MAX (0, border_width - 7));
1010     }
1011
1012   GTK_WIDGET_CLASS (gtk_message_dialog_parent_class)->style_updated (widget);
1013 }