]> Pileus Git - ~andy/gtk/blob - gtk/gtkmessagedialog.c
remove correction on x when detail is "menuitem". With the new menu look
[~andy/gtk] / gtk / gtkmessagedialog.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2000 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "gtkmessagedialog.h"
28 #include "gtklabel.h"
29 #include "gtkhbox.h"
30 #include "gtkimage.h"
31 #include "gtkstock.h"
32 #include "gtkiconfactory.h"
33 #include "gtkintl.h"
34 #include <string.h>
35
36 static void gtk_message_dialog_class_init (GtkMessageDialogClass *klass);
37 static void gtk_message_dialog_init       (GtkMessageDialog      *dialog);
38 static void gtk_message_dialog_style_set  (GtkWidget             *widget,
39                                            GtkStyle              *prev_style);
40
41 static void gtk_message_dialog_set_property (GObject          *object,
42                                              guint             prop_id,
43                                              const GValue     *value,
44                                              GParamSpec       *pspec);
45 static void gtk_message_dialog_get_property (GObject          *object,
46                                              guint             prop_id,
47                                              GValue           *value,
48                                              GParamSpec       *pspec);
49 static void gtk_message_dialog_add_buttons  (GtkMessageDialog *message_dialog,
50                                              GtkButtonsType    buttons);
51
52
53 enum {
54   PROP_0,
55   PROP_MESSAGE_TYPE,
56   PROP_BUTTONS
57 };
58
59 static gpointer parent_class;
60
61 GType
62 gtk_message_dialog_get_type (void)
63 {
64   static GType dialog_type = 0;
65
66   if (!dialog_type)
67     {
68       static const GTypeInfo dialog_info =
69       {
70         sizeof (GtkMessageDialogClass),
71         NULL,           /* base_init */
72         NULL,           /* base_finalize */
73         (GClassInitFunc) gtk_message_dialog_class_init,
74         NULL,           /* class_finalize */
75         NULL,           /* class_data */
76         sizeof (GtkMessageDialog),
77         0,              /* n_preallocs */
78         (GInstanceInitFunc) gtk_message_dialog_init,
79       };
80
81       dialog_type = g_type_register_static (GTK_TYPE_DIALOG, "GtkMessageDialog",
82                                             &dialog_info, 0);
83     }
84
85   return dialog_type;
86 }
87
88 static void
89 gtk_message_dialog_class_init (GtkMessageDialogClass *class)
90 {
91   GtkWidgetClass *widget_class;
92   GObjectClass *gobject_class;
93
94   widget_class = GTK_WIDGET_CLASS (class);
95   gobject_class = G_OBJECT_CLASS (class);
96
97   parent_class = g_type_class_peek_parent (class);
98   
99   widget_class->style_set = gtk_message_dialog_style_set;
100
101   gobject_class->set_property = gtk_message_dialog_set_property;
102   gobject_class->get_property = gtk_message_dialog_get_property;
103   
104   gtk_widget_class_install_style_property (widget_class,
105                                            g_param_spec_int ("message_border",
106                                                              _("Image/label border"),
107                                                              _("Width of border around the label and image in the message dialog"),
108                                                              0,
109                                                              G_MAXINT,
110                                                              8,
111                                                              G_PARAM_READABLE));
112   g_object_class_install_property (gobject_class,
113                                    PROP_MESSAGE_TYPE,
114                                    g_param_spec_enum ("message_type",
115                                                       _("Message Type"),
116                                                       _("The type of message"),
117                                                       GTK_TYPE_MESSAGE_TYPE,
118                                                       GTK_MESSAGE_INFO,
119                                                       G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));
120   g_object_class_install_property (gobject_class,
121                                    PROP_BUTTONS,
122                                    g_param_spec_enum ("buttons",
123                                                       _("Message Buttons"),
124                                                       _("The buttons shown in the message dialog"),
125                                                       GTK_TYPE_BUTTONS_TYPE,
126                                                       GTK_BUTTONS_NONE,
127                                                       G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
128
129 }
130
131 static void
132 gtk_message_dialog_init (GtkMessageDialog *dialog)
133 {
134   GtkWidget *hbox;
135   
136   dialog->label = gtk_label_new (NULL);
137   dialog->image = gtk_image_new_from_stock (NULL, GTK_ICON_SIZE_DIALOG);
138   gtk_misc_set_alignment (GTK_MISC (dialog->image), 0.5, 0.0);
139   
140   gtk_label_set_line_wrap (GTK_LABEL (dialog->label), TRUE);
141   gtk_label_set_selectable (GTK_LABEL (dialog->label), TRUE);
142   
143   hbox = gtk_hbox_new (FALSE, 6);
144
145   gtk_box_pack_start (GTK_BOX (hbox), dialog->image,
146                       FALSE, FALSE, 0);
147
148   gtk_box_pack_start (GTK_BOX (hbox), dialog->label,
149                       TRUE, TRUE, 0);
150
151   gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox),
152                       hbox,
153                       FALSE, FALSE, 0);
154
155   gtk_widget_show_all (hbox);
156 }
157
158 static GtkMessageType
159 gtk_message_dialog_get_message_type (GtkMessageDialog *dialog)
160 {
161   const gchar* stock_id = NULL;
162
163   g_return_val_if_fail (GTK_IS_MESSAGE_DIALOG (dialog), GTK_MESSAGE_INFO);
164   g_return_val_if_fail (GTK_IS_IMAGE(dialog->image), GTK_MESSAGE_INFO);
165
166   stock_id = GTK_IMAGE(dialog->image)->data.stock.stock_id;
167
168   /* Look at the stock id of the image to guess the
169    * GtkMessageType value that was used to choose it
170    * in setup_type()
171    */
172   if (strcmp (stock_id, GTK_STOCK_DIALOG_INFO) == 0)
173     return GTK_MESSAGE_INFO;
174   else if (strcmp (stock_id, GTK_STOCK_DIALOG_QUESTION) == 0)
175     return GTK_MESSAGE_QUESTION;
176   else if (strcmp (stock_id, GTK_STOCK_DIALOG_WARNING) == 0)
177     return GTK_MESSAGE_WARNING;
178   else if (strcmp (stock_id, GTK_STOCK_DIALOG_ERROR) == 0)
179     return GTK_MESSAGE_ERROR;
180   else
181     {
182       g_assert_not_reached (); 
183       return GTK_MESSAGE_INFO;
184     }
185 }
186
187 static void
188 setup_type (GtkMessageDialog *dialog,
189             GtkMessageType    type)
190 {
191   const gchar *stock_id = NULL;
192   GtkStockItem item;
193   
194   switch (type)
195     {
196     case GTK_MESSAGE_INFO:
197       stock_id = GTK_STOCK_DIALOG_INFO;
198       break;
199
200     case GTK_MESSAGE_QUESTION:
201       stock_id = GTK_STOCK_DIALOG_QUESTION;
202       break;
203
204     case GTK_MESSAGE_WARNING:
205       stock_id = GTK_STOCK_DIALOG_WARNING;
206       break;
207       
208     case GTK_MESSAGE_ERROR:
209       stock_id = GTK_STOCK_DIALOG_ERROR;
210       break;
211       
212     default:
213       g_warning ("Unknown GtkMessageType %d", type);
214       break;
215     }
216
217   if (stock_id == NULL)
218     stock_id = GTK_STOCK_DIALOG_INFO;
219
220   if (gtk_stock_lookup (stock_id, &item))
221     {
222       gtk_image_set_from_stock (GTK_IMAGE (dialog->image), stock_id,
223                                 GTK_ICON_SIZE_DIALOG);
224       
225       gtk_window_set_title (GTK_WINDOW (dialog), item.label);
226     }
227   else
228     g_warning ("Stock dialog ID doesn't exist?");  
229 }
230
231 static void 
232 gtk_message_dialog_set_property (GObject      *object,
233                                  guint         prop_id,
234                                  const GValue *value,
235                                  GParamSpec   *pspec)
236 {
237   GtkMessageDialog *dialog;
238   
239   dialog = GTK_MESSAGE_DIALOG (object);
240   
241   switch (prop_id)
242     {
243     case PROP_MESSAGE_TYPE:
244       setup_type (dialog, g_value_get_enum (value));
245       break;
246     case PROP_BUTTONS:
247       gtk_message_dialog_add_buttons (dialog, g_value_get_enum (value));
248       break;
249     default:
250       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
251       break;
252     }
253 }
254
255 static void 
256 gtk_message_dialog_get_property (GObject     *object,
257                                  guint        prop_id,
258                                  GValue      *value,
259                                  GParamSpec  *pspec)
260 {
261   GtkMessageDialog *dialog;
262   
263   dialog = GTK_MESSAGE_DIALOG (object);
264   
265   switch (prop_id)
266     {
267     case PROP_MESSAGE_TYPE:
268       g_value_set_enum (value, gtk_message_dialog_get_message_type (dialog));
269     default:
270       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
271       break;
272     }
273 }
274
275
276 /**
277  * gtk_message_dialog_new:
278  * @parent: transient parent, or NULL for none 
279  * @flags: flags
280  * @type: type of message
281  * @buttons: set of buttons to use
282  * @message_format: printf()-style format string, or NULL
283  * @Varargs: arguments for @message_format
284  * 
285  * Creates a new message dialog, which is a simple dialog with an icon
286  * indicating the dialog type (error, warning, etc.) and some text the
287  * user may want to see. When the user clicks a button a "response"
288  * signal is emitted with response IDs from #GtkResponseType. See
289  * #GtkDialog for more details.
290  * 
291  * Return value: a new #GtkMessageDialog
292  **/
293 GtkWidget*
294 gtk_message_dialog_new (GtkWindow     *parent,
295                         GtkDialogFlags flags,
296                         GtkMessageType type,
297                         GtkButtonsType buttons,
298                         const gchar   *message_format,
299                         ...)
300 {
301   GtkWidget *widget;
302   GtkDialog *dialog;
303   gchar* msg = 0;
304   va_list args;
305   
306   widget = g_object_new (GTK_TYPE_MESSAGE_DIALOG,
307                          "message_type", type,
308                          "buttons", buttons,
309                          NULL);
310   dialog = GTK_DIALOG (widget);
311
312   if (flags & GTK_DIALOG_NO_SEPARATOR)
313     {
314       g_warning ("The GTK_DIALOG_NO_SEPARATOR flag cannot be used for GtkMessageDialog");
315       flags &= ~GTK_DIALOG_NO_SEPARATOR;
316     }
317
318   if (message_format)
319     {
320       va_start (args, message_format);
321       msg = g_strdup_vprintf (message_format, args);
322       va_end (args);
323       
324       
325       gtk_label_set_text (GTK_LABEL (GTK_MESSAGE_DIALOG (widget)->label),
326                           msg);
327       
328       g_free (msg);
329     }
330
331   if (parent != NULL)
332     gtk_window_set_transient_for (GTK_WINDOW (widget),
333                                   GTK_WINDOW (parent));
334   
335   if (flags & GTK_DIALOG_MODAL)
336     gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
337
338   if (flags & GTK_DIALOG_DESTROY_WITH_PARENT)
339     gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
340
341   if (flags & GTK_DIALOG_NO_SEPARATOR)
342     gtk_dialog_set_has_separator (dialog, FALSE);
343
344   return widget;
345 }
346
347 static void
348 gtk_message_dialog_add_buttons (GtkMessageDialog* message_dialog,
349                                 GtkButtonsType buttons)
350 {
351   GtkDialog* dialog = GTK_DIALOG (message_dialog);
352
353   switch (buttons)
354     {
355     case GTK_BUTTONS_NONE:
356       /* nothing */
357       break;
358
359     case GTK_BUTTONS_OK:
360       gtk_dialog_add_button (dialog,
361                              GTK_STOCK_OK,
362                              GTK_RESPONSE_OK);
363       break;
364
365     case GTK_BUTTONS_CLOSE:
366       gtk_dialog_add_button (dialog,
367                              GTK_STOCK_CLOSE,
368                              GTK_RESPONSE_CLOSE);
369       break;
370
371     case GTK_BUTTONS_CANCEL:
372       gtk_dialog_add_button (dialog,
373                              GTK_STOCK_CANCEL,
374                              GTK_RESPONSE_CANCEL);
375       break;
376
377     case GTK_BUTTONS_YES_NO:
378       gtk_dialog_add_button (dialog,
379                              GTK_STOCK_NO,
380                              GTK_RESPONSE_NO);
381       gtk_dialog_add_button (dialog,
382                              GTK_STOCK_YES,
383                              GTK_RESPONSE_YES);
384       break;
385
386     case GTK_BUTTONS_OK_CANCEL:
387       gtk_dialog_add_button (dialog,
388                              GTK_STOCK_CANCEL,
389                              GTK_RESPONSE_CANCEL);
390       gtk_dialog_add_button (dialog,
391                              GTK_STOCK_OK,
392                              GTK_RESPONSE_OK);
393       break;
394       
395     default:
396       g_warning ("Unknown GtkButtonsType");
397       break;
398     } 
399
400   g_object_notify (G_OBJECT (message_dialog), "buttons");
401 }
402
403 static void
404 gtk_message_dialog_style_set (GtkWidget *widget,
405                               GtkStyle  *prev_style)
406 {
407   GtkWidget *parent;
408   gint border_width = 0;
409
410   parent = GTK_WIDGET (GTK_MESSAGE_DIALOG (widget)->image->parent);
411
412   if (parent)
413     {
414       gtk_widget_style_get (widget, "message_border",
415                             &border_width, NULL);
416       
417       gtk_container_set_border_width (GTK_CONTAINER (parent),
418                                       border_width);
419     }
420
421   if (GTK_WIDGET_CLASS (parent_class)->style_set)
422     (GTK_WIDGET_CLASS (parent_class)->style_set) (widget, prev_style);
423 }