]> Pileus Git - ~andy/gtk/blob - gtk/gtkbutton.c
gtk/gtkbutton.c: use accessor functions to access GtkWidget
[~andy/gtk] / gtk / gtkbutton.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser 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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser 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-2001.  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 /**
28  * SECTION:gtkbutton
29  * @Short_description: A widget that creates a signal when clicked on
30  * @Title: GtkButton
31  *
32  * The #GtkButton widget is generally used to attach a function to that is
33  * called when the button is pressed.  The various signals and how to use them
34  * are outlined below.
35  *
36  * The #GtkButton widget can hold any valid child widget.  That is it can hold
37  * most any other standard #GtkWidget.  The most commonly used child is the
38  * #GtkLabel.
39  */
40
41 #include "config.h"
42 #include <string.h>
43 #include "gtkalignment.h"
44 #include "gtkbutton.h"
45 #include "gtklabel.h"
46 #include "gtkmain.h"
47 #include "gtkmarshalers.h"
48 #include "gtkimage.h"
49 #include "gtkhbox.h"
50 #include "gtkvbox.h"
51 #include "gtkstock.h"
52 #include "gtkiconfactory.h"
53 #include "gtkactivatable.h"
54 #include "gtksizerequest.h"
55 #include "gtkprivate.h"
56 #include "gtkintl.h"
57
58
59 static const GtkBorder default_default_border = { 1, 1, 1, 1 };
60 static const GtkBorder default_default_outside_border = { 0, 0, 0, 0 };
61 static const GtkBorder default_inner_border = { 1, 1, 1, 1 };
62
63 /* Time out before giving up on getting a key release when animating
64  * the close button.
65  */
66 #define ACTIVATE_TIMEOUT 250
67
68 enum {
69   PRESSED,
70   RELEASED,
71   CLICKED,
72   ENTER,
73   LEAVE,
74   ACTIVATE,
75   LAST_SIGNAL
76 };
77
78 enum {
79   PROP_0,
80   PROP_LABEL,
81   PROP_IMAGE,
82   PROP_RELIEF,
83   PROP_USE_UNDERLINE,
84   PROP_USE_STOCK,
85   PROP_FOCUS_ON_CLICK,
86   PROP_XALIGN,
87   PROP_YALIGN,
88   PROP_IMAGE_POSITION,
89
90   /* activatable properties */
91   PROP_ACTIVATABLE_RELATED_ACTION,
92   PROP_ACTIVATABLE_USE_ACTION_APPEARANCE
93 };
94
95 #define GTK_BUTTON_GET_PRIVATE(o)       (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_BUTTON, GtkButtonPrivate))
96 typedef struct _GtkButtonPrivate GtkButtonPrivate;
97
98 struct _GtkButtonPrivate
99 {
100   gfloat          xalign;
101   gfloat          yalign;
102   GtkWidget      *image;
103   guint           align_set             : 1;
104   guint           image_is_stock        : 1;
105   guint           use_action_appearance : 1;
106   guint32         grab_time;
107   GdkDevice      *grab_keyboard;
108   GtkPositionType image_position;
109   GtkAction      *action;
110 };
111
112 static void gtk_button_destroy        (GtkObject          *object);
113 static void gtk_button_dispose        (GObject            *object);
114 static void gtk_button_set_property   (GObject            *object,
115                                        guint               prop_id,
116                                        const GValue       *value,
117                                        GParamSpec         *pspec);
118 static void gtk_button_get_property   (GObject            *object,
119                                        guint               prop_id,
120                                        GValue             *value,
121                                        GParamSpec         *pspec);
122 static void gtk_button_screen_changed (GtkWidget          *widget,
123                                        GdkScreen          *previous_screen);
124 static void gtk_button_realize (GtkWidget * widget);
125 static void gtk_button_unrealize (GtkWidget * widget);
126 static void gtk_button_map (GtkWidget * widget);
127 static void gtk_button_unmap (GtkWidget * widget);
128 static void gtk_button_style_set (GtkWidget * widget, GtkStyle * prev_style);
129 static void gtk_button_size_allocate (GtkWidget * widget,
130                                       GtkAllocation * allocation);
131 static gint gtk_button_expose (GtkWidget * widget, GdkEventExpose * event);
132 static gint gtk_button_button_press (GtkWidget * widget,
133                                      GdkEventButton * event);
134 static gint gtk_button_button_release (GtkWidget * widget,
135                                        GdkEventButton * event);
136 static gint gtk_button_grab_broken (GtkWidget * widget,
137                                     GdkEventGrabBroken * event);
138 static gint gtk_button_key_release (GtkWidget * widget, GdkEventKey * event);
139 static gint gtk_button_enter_notify (GtkWidget * widget,
140                                      GdkEventCrossing * event);
141 static gint gtk_button_leave_notify (GtkWidget * widget,
142                                      GdkEventCrossing * event);
143 static void gtk_real_button_pressed (GtkButton * button);
144 static void gtk_real_button_released (GtkButton * button);
145 static void gtk_real_button_clicked (GtkButton * button);
146 static void gtk_real_button_activate  (GtkButton          *button);
147 static void gtk_button_update_state   (GtkButton          *button);
148 static void gtk_button_add            (GtkContainer       *container,
149                                        GtkWidget          *widget);
150 static GType gtk_button_child_type    (GtkContainer       *container);
151 static void gtk_button_finish_activate (GtkButton         *button,
152                                         gboolean           do_it);
153
154 static GObject* gtk_button_constructor (GType                  type,
155                                         guint                  n_construct_properties,
156                                         GObjectConstructParam *construct_params);
157 static void gtk_button_construct_child (GtkButton             *button);
158 static void gtk_button_state_changed   (GtkWidget             *widget,
159                                         GtkStateType           previous_state);
160 static void gtk_button_grab_notify     (GtkWidget             *widget,
161                                         gboolean               was_grabbed);
162
163
164 static void gtk_button_activatable_interface_init(GtkActivatableIface  *iface);
165 static void gtk_button_update                    (GtkActivatable       *activatable,
166                                                   GtkAction            *action,
167                                                   const gchar          *property_name);
168 static void gtk_button_sync_action_properties    (GtkActivatable       *activatable,
169                                                   GtkAction            *action);
170 static void gtk_button_set_related_action        (GtkButton            *button,
171                                                   GtkAction            *action);
172 static void gtk_button_set_use_action_appearance (GtkButton            *button,
173                                                   gboolean              use_appearance);
174
175 static void gtk_button_size_request_init         (GtkSizeRequestIface *iface);
176 static void gtk_button_get_width                 (GtkSizeRequest      *widget,
177                                                   gint                *minimum_size,
178                                                   gint                *natural_size);
179 static void gtk_button_get_height                (GtkSizeRequest      *widget,
180                                                   gint                *minimum_size,
181                                                   gint                *natural_size);
182   
183 static guint button_signals[LAST_SIGNAL] = { 0 };
184
185 G_DEFINE_TYPE_WITH_CODE (GtkButton, gtk_button, GTK_TYPE_BIN,
186                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
187                                                 gtk_button_activatable_interface_init)
188                          G_IMPLEMENT_INTERFACE (GTK_TYPE_SIZE_REQUEST,
189                                                 gtk_button_size_request_init))
190
191 static void
192 gtk_button_class_init (GtkButtonClass *klass)
193 {
194   GObjectClass *gobject_class;
195   GtkObjectClass *object_class;
196   GtkWidgetClass *widget_class;
197   GtkContainerClass *container_class;
198
199   gobject_class = G_OBJECT_CLASS (klass);
200   object_class = (GtkObjectClass*) klass;
201   widget_class = (GtkWidgetClass*) klass;
202   container_class = (GtkContainerClass*) klass;
203   
204   gobject_class->constructor  = gtk_button_constructor;
205   gobject_class->dispose      = gtk_button_dispose;
206   gobject_class->set_property = gtk_button_set_property;
207   gobject_class->get_property = gtk_button_get_property;
208
209   object_class->destroy = gtk_button_destroy;
210
211   widget_class->screen_changed = gtk_button_screen_changed;
212   widget_class->realize = gtk_button_realize;
213   widget_class->unrealize = gtk_button_unrealize;
214   widget_class->map = gtk_button_map;
215   widget_class->unmap = gtk_button_unmap;
216   widget_class->style_set = gtk_button_style_set;
217   widget_class->size_allocate = gtk_button_size_allocate;
218   widget_class->expose_event = gtk_button_expose;
219   widget_class->button_press_event = gtk_button_button_press;
220   widget_class->button_release_event = gtk_button_button_release;
221   widget_class->grab_broken_event = gtk_button_grab_broken;
222   widget_class->key_release_event = gtk_button_key_release;
223   widget_class->enter_notify_event = gtk_button_enter_notify;
224   widget_class->leave_notify_event = gtk_button_leave_notify;
225   widget_class->state_changed = gtk_button_state_changed;
226   widget_class->grab_notify = gtk_button_grab_notify;
227
228   container_class->child_type = gtk_button_child_type;
229   container_class->add = gtk_button_add;
230
231   klass->pressed = gtk_real_button_pressed;
232   klass->released = gtk_real_button_released;
233   klass->clicked = NULL;
234   klass->enter = gtk_button_update_state;
235   klass->leave = gtk_button_update_state;
236   klass->activate = gtk_real_button_activate;
237
238   g_object_class_install_property (gobject_class,
239                                    PROP_LABEL,
240                                    g_param_spec_string ("label",
241                                                         P_("Label"),
242                                                         P_("Text of the label widget inside the button, if the button contains a label widget"),
243                                                         NULL,
244                                                         GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
245   
246   g_object_class_install_property (gobject_class,
247                                    PROP_USE_UNDERLINE,
248                                    g_param_spec_boolean ("use-underline",
249                                                          P_("Use underline"),
250                                                          P_("If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key"),
251                                                         FALSE,
252                                                         GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
253   
254   g_object_class_install_property (gobject_class,
255                                    PROP_USE_STOCK,
256                                    g_param_spec_boolean ("use-stock",
257                                                          P_("Use stock"),
258                                                          P_("If set, the label is used to pick a stock item instead of being displayed"),
259                                                         FALSE,
260                                                         GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
261   
262   g_object_class_install_property (gobject_class,
263                                    PROP_FOCUS_ON_CLICK,
264                                    g_param_spec_boolean ("focus-on-click",
265                                                          P_("Focus on click"),
266                                                          P_("Whether the button grabs focus when it is clicked with the mouse"),
267                                                          TRUE,
268                                                          GTK_PARAM_READWRITE));
269   
270   g_object_class_install_property (gobject_class,
271                                    PROP_RELIEF,
272                                    g_param_spec_enum ("relief",
273                                                       P_("Border relief"),
274                                                       P_("The border relief style"),
275                                                       GTK_TYPE_RELIEF_STYLE,
276                                                       GTK_RELIEF_NORMAL,
277                                                       GTK_PARAM_READWRITE));
278   
279   /**
280    * GtkButton:xalign:
281    *
282    * If the child of the button is a #GtkMisc or #GtkAlignment, this property 
283    * can be used to control it's horizontal alignment. 0.0 is left aligned, 
284    * 1.0 is right aligned.
285    *
286    * Since: 2.4
287    */
288   g_object_class_install_property (gobject_class,
289                                    PROP_XALIGN,
290                                    g_param_spec_float("xalign",
291                                                       P_("Horizontal alignment for child"),
292                                                       P_("Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned"),
293                                                       0.0,
294                                                       1.0,
295                                                       0.5,
296                                                       GTK_PARAM_READWRITE));
297
298   /**
299    * GtkButton:yalign:
300    *
301    * If the child of the button is a #GtkMisc or #GtkAlignment, this property 
302    * can be used to control it's vertical alignment. 0.0 is top aligned, 
303    * 1.0 is bottom aligned.
304    *
305    * Since: 2.4
306    */
307   g_object_class_install_property (gobject_class,
308                                    PROP_YALIGN,
309                                    g_param_spec_float("yalign",
310                                                       P_("Vertical alignment for child"),
311                                                       P_("Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned"),
312                                                       0.0,
313                                                       1.0,
314                                                       0.5,
315                                                       GTK_PARAM_READWRITE));
316
317   /**
318    * GtkButton::image:
319    *
320    * The child widget to appear next to the button text.
321    *
322    * Since: 2.6
323    */
324   g_object_class_install_property (gobject_class,
325                                    PROP_IMAGE,
326                                    g_param_spec_object ("image",
327                                                         P_("Image widget"),
328                                                         P_("Child widget to appear next to the button text"),
329                                                         GTK_TYPE_WIDGET,
330                                                         GTK_PARAM_READWRITE));
331
332   /**
333    * GtkButton:image-position:
334    *
335    * The position of the image relative to the text inside the button.
336    *
337    * Since: 2.10
338    */
339   g_object_class_install_property (gobject_class,
340                                    PROP_IMAGE_POSITION,
341                                    g_param_spec_enum ("image-position",
342                                             P_("Image position"),
343                                                       P_("The position of the image relative to the text"),
344                                                       GTK_TYPE_POSITION_TYPE,
345                                                       GTK_POS_LEFT,
346                                                       GTK_PARAM_READWRITE));
347
348   g_object_class_override_property (gobject_class, PROP_ACTIVATABLE_RELATED_ACTION, "related-action");
349   g_object_class_override_property (gobject_class, PROP_ACTIVATABLE_USE_ACTION_APPEARANCE, "use-action-appearance");
350
351   /**
352    * GtkButton::pressed:
353    * @button: the object that received the signal
354    *
355    * Emitted when the button is pressed.
356    *
357    * Deprecated: 2.8: Use the #GtkWidget::button-press-event signal.
358    */ 
359   button_signals[PRESSED] =
360     g_signal_new (I_("pressed"),
361                   G_OBJECT_CLASS_TYPE (object_class),
362                   G_SIGNAL_RUN_FIRST,
363                   G_STRUCT_OFFSET (GtkButtonClass, pressed),
364                   NULL, NULL,
365                   _gtk_marshal_VOID__VOID,
366                   G_TYPE_NONE, 0);
367
368   /**
369    * GtkButton::released:
370    * @button: the object that received the signal
371    *
372    * Emitted when the button is released.
373    *
374    * Deprecated: 2.8: Use the #GtkWidget::button-release-event signal.
375    */ 
376   button_signals[RELEASED] =
377     g_signal_new (I_("released"),
378                   G_OBJECT_CLASS_TYPE (object_class),
379                   G_SIGNAL_RUN_FIRST,
380                   G_STRUCT_OFFSET (GtkButtonClass, released),
381                   NULL, NULL,
382                   _gtk_marshal_VOID__VOID,
383                   G_TYPE_NONE, 0);
384
385   /**
386    * GtkButton::clicked:
387    * @button: the object that received the signal
388    *
389    * Emitted when the button has been activated (pressed and released).
390    */ 
391   button_signals[CLICKED] =
392     g_signal_new (I_("clicked"),
393                   G_OBJECT_CLASS_TYPE (object_class),
394                   G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
395                   G_STRUCT_OFFSET (GtkButtonClass, clicked),
396                   NULL, NULL,
397                   _gtk_marshal_VOID__VOID,
398                   G_TYPE_NONE, 0);
399
400   /**
401    * GtkButton::enter:
402    * @button: the object that received the signal
403    *
404    * Emitted when the pointer enters the button.
405    *
406    * Deprecated: 2.8: Use the #GtkWidget::enter-notify-event signal.
407    */ 
408   button_signals[ENTER] =
409     g_signal_new (I_("enter"),
410                   G_OBJECT_CLASS_TYPE (object_class),
411                   G_SIGNAL_RUN_FIRST,
412                   G_STRUCT_OFFSET (GtkButtonClass, enter),
413                   NULL, NULL,
414                   _gtk_marshal_VOID__VOID,
415                   G_TYPE_NONE, 0);
416
417   /**
418    * GtkButton::leave:
419    * @button: the object that received the signal
420    *
421    * Emitted when the pointer leaves the button.
422    *
423    * Deprecated: 2.8: Use the #GtkWidget::leave-notify-event signal.
424    */ 
425   button_signals[LEAVE] =
426     g_signal_new (I_("leave"),
427                   G_OBJECT_CLASS_TYPE (object_class),
428                   G_SIGNAL_RUN_FIRST,
429                   G_STRUCT_OFFSET (GtkButtonClass, leave),
430                   NULL, NULL,
431                   _gtk_marshal_VOID__VOID,
432                   G_TYPE_NONE, 0);
433
434   /**
435    * GtkButton::activate:
436    * @widget: the object which received the signal.
437    *
438    * The ::activate signal on GtkButton is an action signal and
439    * emitting it causes the button to animate press then release. 
440    * Applications should never connect to this signal, but use the
441    * #GtkButton::clicked signal.
442    */
443   button_signals[ACTIVATE] =
444     g_signal_new (I_("activate"),
445                   G_OBJECT_CLASS_TYPE (object_class),
446                   G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
447                   G_STRUCT_OFFSET (GtkButtonClass, activate),
448                   NULL, NULL,
449                   _gtk_marshal_VOID__VOID,
450                   G_TYPE_NONE, 0);
451   widget_class->activate_signal = button_signals[ACTIVATE];
452
453   /**
454    * GtkButton:default-border:
455    *
456    * The "default-border" style property defines the extra space to add
457    * around a button that can become the default widget of its window.
458    * For more information about default widgets, see gtk_widget_grab_default().
459    */
460
461   gtk_widget_class_install_style_property (widget_class,
462                                            g_param_spec_boxed ("default-border",
463                                                                P_("Default Spacing"),
464                                                                P_("Extra space to add for GTK_CAN_DEFAULT buttons"),
465                                                                GTK_TYPE_BORDER,
466                                                                GTK_PARAM_READABLE));
467
468   /**
469    * GtkButton:default-outside-border:
470    *
471    * The "default-outside-border" style property defines the extra outside
472    * space to add around a button that can become the default widget of its
473    * window. Extra outside space is always drawn outside the button border.
474    * For more information about default widgets, see gtk_widget_grab_default().
475    */
476   gtk_widget_class_install_style_property (widget_class,
477                                            g_param_spec_boxed ("default-outside-border",
478                                                                P_("Default Outside Spacing"),
479                                                                P_("Extra space to add for GTK_CAN_DEFAULT buttons that is always drawn outside the border"),
480                                                                GTK_TYPE_BORDER,
481                                                                GTK_PARAM_READABLE));
482   gtk_widget_class_install_style_property (widget_class,
483                                            g_param_spec_int ("child-displacement-x",
484                                                              P_("Child X Displacement"),
485                                                              P_("How far in the x direction to move the child when the button is depressed"),
486                                                              G_MININT,
487                                                              G_MAXINT,
488                                                              0,
489                                                              GTK_PARAM_READABLE));
490   gtk_widget_class_install_style_property (widget_class,
491                                            g_param_spec_int ("child-displacement-y",
492                                                              P_("Child Y Displacement"),
493                                                              P_("How far in the y direction to move the child when the button is depressed"),
494                                                              G_MININT,
495                                                              G_MAXINT,
496                                                              0,
497                                                              GTK_PARAM_READABLE));
498
499   /**
500    * GtkButton:displace-focus:
501    *
502    * Whether the child_displacement_x/child_displacement_y properties 
503    * should also affect the focus rectangle.
504    *
505    * Since: 2.6
506    */
507   gtk_widget_class_install_style_property (widget_class,
508                                            g_param_spec_boolean ("displace-focus",
509                                                                  P_("Displace focus"),
510                                                                  P_("Whether the child_displacement_x/_y properties should also affect the focus rectangle"),
511                                                                  FALSE,
512                                                                  GTK_PARAM_READABLE));
513
514   /**
515    * GtkButton:inner-border:
516    *
517    * Sets the border between the button edges and child.
518    *
519    * Since: 2.10
520    */
521   gtk_widget_class_install_style_property (widget_class,
522                                            g_param_spec_boxed ("inner-border",
523                                                                P_("Inner Border"),
524                                                                P_("Border between button edges and child."),
525                                                                GTK_TYPE_BORDER,
526                                                                GTK_PARAM_READABLE));
527
528   /**
529    * GtkButton::image-spacing:
530    *
531    * Spacing in pixels between the image and label.
532    *
533    * Since: 2.10
534    */
535   gtk_widget_class_install_style_property (widget_class,
536                                            g_param_spec_int ("image-spacing",
537                                                              P_("Image spacing"),
538                                                              P_("Spacing in pixels between the image and label"),
539                                                              0,
540                                                              G_MAXINT,
541                                                              2,
542                                                              GTK_PARAM_READABLE));
543
544   /**
545    * GtkSettings::gtk-button-images:
546    *
547    * Whether images should be shown on buttons
548    *
549    * Since: 2.4
550    */
551   gtk_settings_install_property (g_param_spec_boolean ("gtk-button-images",
552                                                        P_("Show button images"),
553                                                        P_("Whether images should be shown on buttons"),
554                                                        TRUE,
555                                                        GTK_PARAM_READWRITE));
556
557   g_type_class_add_private (gobject_class, sizeof (GtkButtonPrivate));
558 }
559
560 static void
561 gtk_button_init (GtkButton *button)
562 {
563   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
564
565   gtk_widget_set_can_focus (GTK_WIDGET (button), TRUE);
566   gtk_widget_set_receives_default (GTK_WIDGET (button), TRUE);
567   gtk_widget_set_has_window (GTK_WIDGET (button), FALSE);
568
569   button->label_text = NULL;
570   
571   button->constructed = FALSE;
572   button->in_button = FALSE;
573   button->button_down = FALSE;
574   button->relief = GTK_RELIEF_NORMAL;
575   button->use_stock = FALSE;
576   button->use_underline = FALSE;
577   button->depressed = FALSE;
578   button->depress_on_activate = TRUE;
579   button->focus_on_click = TRUE;
580
581   priv->xalign = 0.5;
582   priv->yalign = 0.5;
583   priv->align_set = 0;
584   priv->image_is_stock = TRUE;
585   priv->image_position = GTK_POS_LEFT;
586   priv->use_action_appearance = TRUE;
587 }
588
589 static void
590 gtk_button_destroy (GtkObject *object)
591 {
592   GtkButton *button = GTK_BUTTON (object);
593   
594   if (button->label_text)
595     {
596       g_free (button->label_text);
597       button->label_text = NULL;
598     }
599
600   GTK_OBJECT_CLASS (gtk_button_parent_class)->destroy (object);
601 }
602
603 static GObject*
604 gtk_button_constructor (GType                  type,
605                         guint                  n_construct_properties,
606                         GObjectConstructParam *construct_params)
607 {
608   GObject *object;
609   GtkButton *button;
610
611   object = G_OBJECT_CLASS (gtk_button_parent_class)->constructor (type,
612                                                                   n_construct_properties,
613                                                                   construct_params);
614
615   button = GTK_BUTTON (object);
616   button->constructed = TRUE;
617
618   if (button->label_text != NULL)
619     gtk_button_construct_child (button);
620   
621   return object;
622 }
623
624
625 static GType
626 gtk_button_child_type  (GtkContainer     *container)
627 {
628   if (!gtk_bin_get_child (GTK_BIN (container)))
629     return GTK_TYPE_WIDGET;
630   else
631     return G_TYPE_NONE;
632 }
633
634 static void
635 maybe_set_alignment (GtkButton *button,
636                      GtkWidget *widget)
637 {
638   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
639
640   if (GTK_IS_MISC (widget))
641     {
642       GtkMisc *misc = GTK_MISC (widget);
643       
644       if (priv->align_set)
645         gtk_misc_set_alignment (misc, priv->xalign, priv->yalign);
646     }
647   else if (GTK_IS_ALIGNMENT (widget))
648     {
649       GtkAlignment *alignment = GTK_ALIGNMENT (widget);
650       gfloat xscale, yscale;
651
652       g_object_get (alignment,
653                     "xscale", &xscale,
654                     "yscale", &yscale,
655                     NULL);
656
657       if (priv->align_set)
658         gtk_alignment_set (alignment,
659                            priv->xalign, priv->yalign,
660                            xscale, yscale);
661     }
662 }
663
664 static void
665 gtk_button_add (GtkContainer *container,
666                 GtkWidget    *widget)
667 {
668   maybe_set_alignment (GTK_BUTTON (container), widget);
669
670   GTK_CONTAINER_CLASS (gtk_button_parent_class)->add (container, widget);
671 }
672
673 static void 
674 gtk_button_dispose (GObject *object)
675 {
676   GtkButton *button = GTK_BUTTON (object);
677   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
678
679   if (priv->action)
680     {
681       gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (button), NULL);
682       priv->action = NULL;
683     }
684   G_OBJECT_CLASS (gtk_button_parent_class)->dispose (object);
685 }
686
687 static void
688 gtk_button_set_property (GObject         *object,
689                          guint            prop_id,
690                          const GValue    *value,
691                          GParamSpec      *pspec)
692 {
693   GtkButton *button = GTK_BUTTON (object);
694   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
695
696   switch (prop_id)
697     {
698     case PROP_LABEL:
699       gtk_button_set_label (button, g_value_get_string (value));
700       break;
701     case PROP_IMAGE:
702       gtk_button_set_image (button, (GtkWidget *) g_value_get_object (value));
703       break;
704     case PROP_RELIEF:
705       gtk_button_set_relief (button, g_value_get_enum (value));
706       break;
707     case PROP_USE_UNDERLINE:
708       gtk_button_set_use_underline (button, g_value_get_boolean (value));
709       break;
710     case PROP_USE_STOCK:
711       gtk_button_set_use_stock (button, g_value_get_boolean (value));
712       break;
713     case PROP_FOCUS_ON_CLICK:
714       gtk_button_set_focus_on_click (button, g_value_get_boolean (value));
715       break;
716     case PROP_XALIGN:
717       gtk_button_set_alignment (button, g_value_get_float (value), priv->yalign);
718       break;
719     case PROP_YALIGN:
720       gtk_button_set_alignment (button, priv->xalign, g_value_get_float (value));
721       break;
722     case PROP_IMAGE_POSITION:
723       gtk_button_set_image_position (button, g_value_get_enum (value));
724       break;
725     case PROP_ACTIVATABLE_RELATED_ACTION:
726       gtk_button_set_related_action (button, g_value_get_object (value));
727       break;
728     case PROP_ACTIVATABLE_USE_ACTION_APPEARANCE:
729       gtk_button_set_use_action_appearance (button, g_value_get_boolean (value));
730       break;
731     default:
732       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
733       break;
734     }
735 }
736
737 static void
738 gtk_button_get_property (GObject         *object,
739                          guint            prop_id,
740                          GValue          *value,
741                          GParamSpec      *pspec)
742 {
743   GtkButton *button = GTK_BUTTON (object);
744   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
745
746   switch (prop_id)
747     {
748     case PROP_LABEL:
749       g_value_set_string (value, button->label_text);
750       break;
751     case PROP_IMAGE:
752       g_value_set_object (value, (GObject *)priv->image);
753       break;
754     case PROP_RELIEF:
755       g_value_set_enum (value, gtk_button_get_relief (button));
756       break;
757     case PROP_USE_UNDERLINE:
758       g_value_set_boolean (value, button->use_underline);
759       break;
760     case PROP_USE_STOCK:
761       g_value_set_boolean (value, button->use_stock);
762       break;
763     case PROP_FOCUS_ON_CLICK:
764       g_value_set_boolean (value, button->focus_on_click);
765       break;
766     case PROP_XALIGN:
767       g_value_set_float (value, priv->xalign);
768       break;
769     case PROP_YALIGN:
770       g_value_set_float (value, priv->yalign);
771       break;
772     case PROP_IMAGE_POSITION:
773       g_value_set_enum (value, priv->image_position);
774       break;
775     case PROP_ACTIVATABLE_RELATED_ACTION:
776       g_value_set_object (value, priv->action);
777       break;
778     case PROP_ACTIVATABLE_USE_ACTION_APPEARANCE:
779       g_value_set_boolean (value, priv->use_action_appearance);
780       break;
781     default:
782       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
783       break;
784     }
785 }
786
787 static void 
788 gtk_button_activatable_interface_init (GtkActivatableIface  *iface)
789 {
790   iface->update = gtk_button_update;
791   iface->sync_action_properties = gtk_button_sync_action_properties;
792 }
793
794 static void
795 activatable_update_stock_id (GtkButton *button,
796                              GtkAction *action)
797 {
798   if (!gtk_button_get_use_stock (button))
799     return;
800
801   gtk_button_set_label (button, gtk_action_get_stock_id (action));
802 }
803
804 static void
805 activatable_update_short_label (GtkButton *button,
806                                 GtkAction *action)
807 {
808   GtkWidget *child;
809   GtkWidget *image;
810
811   if (gtk_button_get_use_stock (button))
812     return;
813
814   image = gtk_button_get_image (button);
815
816   /* Dont touch custom child... */
817   child = gtk_bin_get_child (GTK_BIN (button));
818   if (GTK_IS_IMAGE (image) ||
819       child == NULL ||
820       GTK_IS_LABEL (child))
821     {
822       gtk_button_set_label (button, gtk_action_get_short_label (action));
823       gtk_button_set_use_underline (button, TRUE);
824     }
825 }
826
827 static void
828 activatable_update_icon_name (GtkButton *button,
829                               GtkAction *action)
830 {
831   GtkWidget *image;
832               
833   if (gtk_button_get_use_stock (button))
834     return;
835
836   image = gtk_button_get_image (button);
837
838   if (GTK_IS_IMAGE (image) &&
839       (gtk_image_get_storage_type (GTK_IMAGE (image)) == GTK_IMAGE_EMPTY ||
840        gtk_image_get_storage_type (GTK_IMAGE (image)) == GTK_IMAGE_ICON_NAME))
841     gtk_image_set_from_icon_name (GTK_IMAGE (image),
842                                   gtk_action_get_icon_name (action), GTK_ICON_SIZE_MENU);
843 }
844
845 static void
846 activatable_update_gicon (GtkButton *button,
847                           GtkAction *action)
848 {
849   GtkWidget *image = gtk_button_get_image (button);
850   GIcon *icon = gtk_action_get_gicon (action);
851   
852   if (GTK_IS_IMAGE (image) &&
853       (gtk_image_get_storage_type (GTK_IMAGE (image)) == GTK_IMAGE_EMPTY ||
854        gtk_image_get_storage_type (GTK_IMAGE (image)) == GTK_IMAGE_GICON))
855     gtk_image_set_from_gicon (GTK_IMAGE (image), icon, GTK_ICON_SIZE_BUTTON);
856 }
857
858 static void 
859 gtk_button_update (GtkActivatable *activatable,
860                    GtkAction      *action,
861                    const gchar    *property_name)
862 {
863   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (activatable);
864
865   if (strcmp (property_name, "visible") == 0)
866     {
867       if (gtk_action_is_visible (action))
868         gtk_widget_show (GTK_WIDGET (activatable));
869       else
870         gtk_widget_hide (GTK_WIDGET (activatable));
871     }
872   else if (strcmp (property_name, "sensitive") == 0)
873     gtk_widget_set_sensitive (GTK_WIDGET (activatable), gtk_action_is_sensitive (action));
874
875   if (!priv->use_action_appearance)
876     return;
877
878   if (strcmp (property_name, "stock-id") == 0)
879     activatable_update_stock_id (GTK_BUTTON (activatable), action);
880   else if (strcmp (property_name, "gicon") == 0)
881     activatable_update_gicon (GTK_BUTTON (activatable), action);
882   else if (strcmp (property_name, "short-label") == 0)
883     activatable_update_short_label (GTK_BUTTON (activatable), action);
884   else if (strcmp (property_name, "icon-name") == 0)
885     activatable_update_icon_name (GTK_BUTTON (activatable), action);
886 }
887
888 static void
889 gtk_button_sync_action_properties (GtkActivatable *activatable,
890                                    GtkAction      *action)
891 {
892   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (activatable);
893
894   if (!action)
895     return;
896
897   if (gtk_action_is_visible (action))
898     gtk_widget_show (GTK_WIDGET (activatable));
899   else
900     gtk_widget_hide (GTK_WIDGET (activatable));
901   
902   gtk_widget_set_sensitive (GTK_WIDGET (activatable), gtk_action_is_sensitive (action));
903   
904   if (priv->use_action_appearance)
905     {
906       activatable_update_stock_id (GTK_BUTTON (activatable), action);
907       activatable_update_short_label (GTK_BUTTON (activatable), action);
908       activatable_update_gicon (GTK_BUTTON (activatable), action);
909       activatable_update_icon_name (GTK_BUTTON (activatable), action);
910     }
911 }
912
913 static void
914 gtk_button_set_related_action (GtkButton *button,
915                                GtkAction *action)
916 {
917   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
918
919   if (priv->action == action)
920     return;
921
922   /* This should be a default handler, but for compatibility reasons
923    * we need to support derived classes that don't chain up their
924    * clicked handler.
925    */
926   g_signal_handlers_disconnect_by_func (button, gtk_real_button_clicked, NULL);
927   if (action)
928     g_signal_connect_after (button, "clicked",
929                             G_CALLBACK (gtk_real_button_clicked), NULL);
930
931   gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (button), action);
932
933   priv->action = action;
934 }
935
936 static void
937 gtk_button_set_use_action_appearance (GtkButton *button,
938                                       gboolean   use_appearance)
939 {
940   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
941
942   if (priv->use_action_appearance != use_appearance)
943     {
944       priv->use_action_appearance = use_appearance;
945
946       gtk_activatable_sync_action_properties (GTK_ACTIVATABLE (button), priv->action);
947     }
948 }
949
950 /**
951  * gtk_button_new:
952  *
953  * Creates a new #GtkButton widget. To add a child widget to the button,
954  * use gtk_container_add().
955  *
956  * Returns: The newly created #GtkButton widget.
957  */
958 GtkWidget*
959 gtk_button_new (void)
960 {
961   return g_object_new (GTK_TYPE_BUTTON, NULL);
962 }
963
964 static gboolean
965 show_image (GtkButton *button)
966 {
967   gboolean show;
968   
969   if (button->label_text)
970     {
971       GtkSettings *settings;
972
973       settings = gtk_widget_get_settings (GTK_WIDGET (button));        
974       g_object_get (settings, "gtk-button-images", &show, NULL);
975     }
976   else
977     show = TRUE;
978
979   return show;
980 }
981
982 static void
983 gtk_button_construct_child (GtkButton *button)
984 {
985   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
986   GtkStockItem item;
987   GtkWidget *child;
988   GtkWidget *label;
989   GtkWidget *box;
990   GtkWidget *align;
991   GtkWidget *image = NULL;
992   gchar *label_text = NULL;
993   gint image_spacing;
994
995   if (!button->constructed)
996     return;
997
998   if (!button->label_text && !priv->image)
999     return;
1000
1001   gtk_widget_style_get (GTK_WIDGET (button),
1002                         "image-spacing", &image_spacing,
1003                         NULL);
1004
1005   if (priv->image && !priv->image_is_stock)
1006     {
1007       GtkWidget *parent;
1008
1009       image = g_object_ref (priv->image);
1010
1011       parent = gtk_widget_get_parent (image);
1012       if (parent)
1013         gtk_container_remove (GTK_CONTAINER (parent), image);
1014     }
1015
1016   priv->image = NULL;
1017
1018   child = gtk_bin_get_child (GTK_BIN (button));
1019   if (child)
1020     gtk_container_remove (GTK_CONTAINER (button), child);
1021
1022   if (button->use_stock &&
1023       button->label_text &&
1024       gtk_stock_lookup (button->label_text, &item))
1025     {
1026       if (!image)
1027         image = g_object_ref (gtk_image_new_from_stock (button->label_text, GTK_ICON_SIZE_BUTTON));
1028
1029       label_text = item.label;
1030     }
1031   else
1032     label_text = button->label_text;
1033
1034   if (image)
1035     {
1036       priv->image = image;
1037       g_object_set (priv->image,
1038                     "visible", show_image (button),
1039                     "no-show-all", TRUE,
1040                     NULL);
1041
1042       if (priv->image_position == GTK_POS_LEFT ||
1043           priv->image_position == GTK_POS_RIGHT)
1044         box = gtk_hbox_new (FALSE, image_spacing);
1045       else
1046         box = gtk_vbox_new (FALSE, image_spacing);
1047
1048       if (priv->align_set)
1049         align = gtk_alignment_new (priv->xalign, priv->yalign, 0.0, 0.0);
1050       else
1051         align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
1052
1053       if (priv->image_position == GTK_POS_LEFT ||
1054           priv->image_position == GTK_POS_TOP)
1055         gtk_box_pack_start (GTK_BOX (box), priv->image, FALSE, FALSE, 0);
1056       else
1057         gtk_box_pack_end (GTK_BOX (box), priv->image, FALSE, FALSE, 0);
1058
1059       if (label_text)
1060         {
1061           if (button->use_underline || button->use_stock)
1062             {
1063               label = gtk_label_new_with_mnemonic (label_text);
1064               gtk_label_set_mnemonic_widget (GTK_LABEL (label),
1065                                              GTK_WIDGET (button));
1066             }
1067           else
1068             label = gtk_label_new (label_text);
1069
1070           if (priv->image_position == GTK_POS_RIGHT ||
1071               priv->image_position == GTK_POS_BOTTOM)
1072             gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
1073           else
1074             gtk_box_pack_end (GTK_BOX (box), label, FALSE, FALSE, 0);
1075         }
1076
1077       gtk_container_add (GTK_CONTAINER (button), align);
1078       gtk_container_add (GTK_CONTAINER (align), box);
1079       gtk_widget_show_all (align);
1080
1081       g_object_unref (image);
1082
1083       return;
1084     }
1085
1086   if (button->use_underline || button->use_stock)
1087     {
1088       label = gtk_label_new_with_mnemonic (button->label_text);
1089       gtk_label_set_mnemonic_widget (GTK_LABEL (label), GTK_WIDGET (button));
1090     }
1091   else
1092     label = gtk_label_new (button->label_text);
1093
1094   if (priv->align_set)
1095     gtk_misc_set_alignment (GTK_MISC (label), priv->xalign, priv->yalign);
1096
1097   gtk_widget_show (label);
1098   gtk_container_add (GTK_CONTAINER (button), label);
1099 }
1100
1101
1102 /**
1103  * gtk_button_new_with_label:
1104  * @label: The text you want the #GtkLabel to hold.
1105  *
1106  * Creates a #GtkButton widget with a #GtkLabel child containing the given
1107  * text.
1108  *
1109  * Returns: The newly created #GtkButton widget.
1110  */
1111 GtkWidget*
1112 gtk_button_new_with_label (const gchar *label)
1113 {
1114   return g_object_new (GTK_TYPE_BUTTON, "label", label, NULL);
1115 }
1116
1117 /**
1118  * gtk_button_new_from_stock:
1119  * @stock_id: the name of the stock item 
1120  *
1121  * Creates a new #GtkButton containing the image and text from a stock item.
1122  * Some stock ids have preprocessor macros like #GTK_STOCK_OK and
1123  * #GTK_STOCK_APPLY.
1124  *
1125  * If @stock_id is unknown, then it will be treated as a mnemonic
1126  * label (as for gtk_button_new_with_mnemonic()).
1127  *
1128  * Returns: a new #GtkButton
1129  **/
1130 GtkWidget*
1131 gtk_button_new_from_stock (const gchar *stock_id)
1132 {
1133   return g_object_new (GTK_TYPE_BUTTON,
1134                        "label", stock_id,
1135                        "use-stock", TRUE,
1136                        "use-underline", TRUE,
1137                        NULL);
1138 }
1139
1140 /**
1141  * gtk_button_new_with_mnemonic:
1142  * @label: The text of the button, with an underscore in front of the
1143  *         mnemonic character
1144  * @returns: a new #GtkButton
1145  *
1146  * Creates a new #GtkButton containing a label.
1147  * If characters in @label are preceded by an underscore, they are underlined.
1148  * If you need a literal underscore character in a label, use '__' (two 
1149  * underscores). The first underlined character represents a keyboard 
1150  * accelerator called a mnemonic.
1151  * Pressing Alt and that key activates the button.
1152  **/
1153 GtkWidget*
1154 gtk_button_new_with_mnemonic (const gchar *label)
1155 {
1156   return g_object_new (GTK_TYPE_BUTTON, "label", label, "use-underline", TRUE,  NULL);
1157 }
1158
1159 /**
1160  * gtk_button_pressed:
1161  * @button: The #GtkButton you want to send the signal to.
1162  *
1163  * Emits a #GtkButton::pressed signal to the given #GtkButton.
1164  *
1165  * Deprecated: 2.20: Use the #GtkWidget::button-press-event signal.
1166  */
1167 void
1168 gtk_button_pressed (GtkButton *button)
1169 {
1170   g_return_if_fail (GTK_IS_BUTTON (button));
1171
1172   
1173   g_signal_emit (button, button_signals[PRESSED], 0);
1174 }
1175
1176 /**
1177  * gtk_button_released:
1178  * @button: The #GtkButton you want to send the signal to.
1179  *
1180  * Emits a #GtkButton::released signal to the given #GtkButton.
1181  *
1182  * Deprecated: 2.20: Use the #GtkWidget::button-release-event signal.
1183  */
1184 void
1185 gtk_button_released (GtkButton *button)
1186 {
1187   g_return_if_fail (GTK_IS_BUTTON (button));
1188
1189   g_signal_emit (button, button_signals[RELEASED], 0);
1190 }
1191
1192 /**
1193  * gtk_button_clicked:
1194  * @button: The #GtkButton you want to send the signal to.
1195  *
1196  * Emits a #GtkButton::clicked signal to the given #GtkButton.
1197  */
1198 void
1199 gtk_button_clicked (GtkButton *button)
1200 {
1201   g_return_if_fail (GTK_IS_BUTTON (button));
1202
1203   g_signal_emit (button, button_signals[CLICKED], 0);
1204 }
1205
1206 /**
1207  * gtk_button_enter:
1208  * @button: The #GtkButton you want to send the signal to.
1209  *
1210  * Emits a #GtkButton::enter signal to the given #GtkButton.
1211  *
1212  * Deprecated: 2.20: Use the #GtkWidget::enter-notify-event signal.
1213  */
1214 void
1215 gtk_button_enter (GtkButton *button)
1216 {
1217   g_return_if_fail (GTK_IS_BUTTON (button));
1218
1219   g_signal_emit (button, button_signals[ENTER], 0);
1220 }
1221
1222 /**
1223  * gtk_button_leave:
1224  * @button: The #GtkButton you want to send the signal to.
1225  *
1226  * Emits a #GtkButton::leave signal to the given #GtkButton.
1227  *
1228  * Deprecated: 2.20: Use the #GtkWidget::leave-notify-event signal.
1229  */
1230 void
1231 gtk_button_leave (GtkButton *button)
1232 {
1233   g_return_if_fail (GTK_IS_BUTTON (button));
1234
1235   g_signal_emit (button, button_signals[LEAVE], 0);
1236 }
1237
1238 /**
1239  * gtk_button_set_relief:
1240  * @button: The #GtkButton you want to set relief styles of.
1241  * @newstyle: The GtkReliefStyle as described above.
1242  *
1243  * Sets the relief style of the edges of the given #GtkButton widget.
1244  * Three styles exist, GTK_RELIEF_NORMAL, GTK_RELIEF_HALF, GTK_RELIEF_NONE.
1245  * The default style is, as one can guess, GTK_RELIEF_NORMAL.
1246  *
1247  * <!-- FIXME: put pictures of each style -->
1248  */
1249 void
1250 gtk_button_set_relief (GtkButton *button,
1251                        GtkReliefStyle newrelief)
1252 {
1253   g_return_if_fail (GTK_IS_BUTTON (button));
1254
1255   if (newrelief != button->relief) 
1256     {
1257        button->relief = newrelief;
1258        g_object_notify (G_OBJECT (button), "relief");
1259        gtk_widget_queue_draw (GTK_WIDGET (button));
1260     }
1261 }
1262
1263 /**
1264  * gtk_button_get_relief:
1265  * @button: The #GtkButton you want the #GtkReliefStyle from.
1266  *
1267  * Returns the current relief style of the given #GtkButton.
1268  *
1269  * Returns: The current #GtkReliefStyle
1270  */
1271 GtkReliefStyle
1272 gtk_button_get_relief (GtkButton *button)
1273 {
1274   g_return_val_if_fail (GTK_IS_BUTTON (button), GTK_RELIEF_NORMAL);
1275
1276   return button->relief;
1277 }
1278
1279 static void
1280 gtk_button_realize (GtkWidget *widget)
1281 {
1282   GtkButton *button = GTK_BUTTON (widget);
1283   GtkAllocation allocation;
1284   GdkWindow *window;
1285   GdkWindowAttr attributes;
1286   gint attributes_mask;
1287   gint border_width;
1288
1289   gtk_widget_get_allocation (widget, &allocation);
1290
1291   gtk_widget_set_realized (widget, TRUE);
1292
1293   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
1294
1295   attributes.window_type = GDK_WINDOW_CHILD;
1296   attributes.x = allocation.x + border_width;
1297   attributes.y = allocation.y + border_width;
1298   attributes.width = allocation.width - border_width * 2;
1299   attributes.height = allocation.height - border_width * 2;
1300   attributes.wclass = GDK_INPUT_ONLY;
1301   attributes.event_mask = gtk_widget_get_events (widget);
1302   attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
1303                             GDK_BUTTON_RELEASE_MASK |
1304                             GDK_ENTER_NOTIFY_MASK |
1305                             GDK_LEAVE_NOTIFY_MASK);
1306
1307   attributes_mask = GDK_WA_X | GDK_WA_Y;
1308
1309   window = gtk_widget_get_parent_window (widget);
1310   gtk_widget_set_window (widget, window);
1311   g_object_ref (window);
1312
1313   button->event_window = gdk_window_new (window,
1314                                          &attributes, attributes_mask);
1315   gdk_window_set_user_data (button->event_window, button);
1316
1317   gtk_widget_style_attach (widget);
1318 }
1319
1320 static void
1321 gtk_button_unrealize (GtkWidget *widget)
1322 {
1323   GtkButton *button = GTK_BUTTON (widget);
1324
1325   if (button->activate_timeout)
1326     gtk_button_finish_activate (button, FALSE);
1327
1328   if (button->event_window)
1329     {
1330       gdk_window_set_user_data (button->event_window, NULL);
1331       gdk_window_destroy (button->event_window);
1332       button->event_window = NULL;
1333     }
1334   
1335   GTK_WIDGET_CLASS (gtk_button_parent_class)->unrealize (widget);
1336 }
1337
1338 static void
1339 gtk_button_map (GtkWidget *widget)
1340 {
1341   GtkButton *button = GTK_BUTTON (widget);
1342   
1343   GTK_WIDGET_CLASS (gtk_button_parent_class)->map (widget);
1344
1345   if (button->event_window)
1346     gdk_window_show (button->event_window);
1347 }
1348
1349 static void
1350 gtk_button_unmap (GtkWidget *widget)
1351 {
1352   GtkButton *button = GTK_BUTTON (widget);
1353     
1354   if (button->event_window)
1355     gdk_window_hide (button->event_window);
1356
1357   GTK_WIDGET_CLASS (gtk_button_parent_class)->unmap (widget);
1358 }
1359
1360 static void
1361 gtk_button_update_image_spacing (GtkButton *button)
1362 {
1363   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
1364   GtkWidget *child; 
1365   gint spacing;
1366
1367   /* Keep in sync with gtk_button_construct_child,
1368    * we only want to update the spacing if the box 
1369    * was constructed there.
1370    */
1371   if (!button->constructed || !priv->image)
1372     return;
1373
1374   child = gtk_bin_get_child (GTK_BIN (button));
1375   if (GTK_IS_ALIGNMENT (child))
1376     {
1377       child = gtk_bin_get_child (GTK_BIN (child));
1378       if (GTK_IS_BOX (child))
1379         {
1380           gtk_widget_style_get (GTK_WIDGET (button),
1381                                 "image-spacing", &spacing,
1382                                 NULL);
1383
1384           gtk_box_set_spacing (GTK_BOX (child), spacing);
1385         }
1386     }   
1387 }
1388
1389 static void
1390 gtk_button_style_set (GtkWidget *widget,
1391                       GtkStyle  *prev_style)
1392 {
1393   gtk_button_update_image_spacing (GTK_BUTTON (widget));
1394 }
1395
1396 static void
1397 gtk_button_get_props (GtkButton *button,
1398                       GtkBorder *default_border,
1399                       GtkBorder *default_outside_border,
1400                       GtkBorder *inner_border,
1401                       gboolean  *interior_focus)
1402 {
1403   GtkWidget *widget =  GTK_WIDGET (button);
1404   GtkBorder *tmp_border;
1405
1406   if (default_border)
1407     {
1408       gtk_widget_style_get (widget, "default-border", &tmp_border, NULL);
1409
1410       if (tmp_border)
1411         {
1412           *default_border = *tmp_border;
1413           gtk_border_free (tmp_border);
1414         }
1415       else
1416         *default_border = default_default_border;
1417     }
1418
1419   if (default_outside_border)
1420     {
1421       gtk_widget_style_get (widget, "default-outside-border", &tmp_border, NULL);
1422
1423       if (tmp_border)
1424         {
1425           *default_outside_border = *tmp_border;
1426           gtk_border_free (tmp_border);
1427         }
1428       else
1429         *default_outside_border = default_default_outside_border;
1430     }
1431
1432   if (inner_border)
1433     {
1434       gtk_widget_style_get (widget, "inner-border", &tmp_border, NULL);
1435
1436       if (tmp_border)
1437         {
1438           *inner_border = *tmp_border;
1439           gtk_border_free (tmp_border);
1440         }
1441       else
1442         *inner_border = default_inner_border;
1443     }
1444
1445   if (interior_focus)
1446     gtk_widget_style_get (widget, "interior-focus", interior_focus, NULL);
1447 }
1448
1449 static void
1450 gtk_button_size_allocate (GtkWidget     *widget,
1451                           GtkAllocation *allocation)
1452 {
1453   GtkButton *button = GTK_BUTTON (widget);
1454   GtkAllocation child_allocation;
1455   GtkStyle *style;
1456   GtkWidget *child;
1457
1458   guint border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
1459   gint xthickness, ythickness;
1460   GtkBorder default_border;
1461   GtkBorder inner_border;
1462   gint focus_width;
1463   gint focus_pad;
1464
1465   style = gtk_widget_get_style (widget);
1466   xthickness = style->xthickness;
1467   ythickness = style->ythickness;
1468
1469   gtk_button_get_props (button, &default_border, NULL, &inner_border, NULL);
1470   gtk_widget_style_get (GTK_WIDGET (widget),
1471                         "focus-line-width", &focus_width,
1472                         "focus-padding", &focus_pad,
1473                         NULL);
1474
1475   gtk_widget_set_allocation (widget, allocation);
1476
1477   if (gtk_widget_get_realized (widget))
1478     gdk_window_move_resize (button->event_window,
1479                             allocation->x + border_width,
1480                             allocation->y + border_width,
1481                             allocation->width - border_width * 2,
1482                             allocation->height - border_width * 2);
1483
1484   child = gtk_bin_get_child (GTK_BIN (button));
1485   if (child && gtk_widget_get_visible (child))
1486     {
1487       child_allocation.x = allocation->x + border_width + inner_border.left + xthickness;
1488       child_allocation.y = allocation->y + border_width + inner_border.top + ythickness;
1489
1490       child_allocation.width =
1491         allocation->width -
1492         xthickness * 2 -
1493         inner_border.left -
1494         inner_border.right -
1495         border_width * 2;
1496
1497       child_allocation.height = 
1498         allocation->height -
1499         ythickness * 2 -
1500         inner_border.top -
1501         inner_border.bottom -
1502         border_width * 2;
1503
1504       if (gtk_widget_get_can_default (GTK_WIDGET (button)))
1505         {
1506           child_allocation.x += default_border.left;
1507           child_allocation.y += default_border.top;
1508           child_allocation.width =  child_allocation.width - default_border.left - default_border.right;
1509           child_allocation.height = child_allocation.height - default_border.top - default_border.bottom;
1510         }
1511
1512       if (gtk_widget_get_can_focus (GTK_WIDGET (button)))
1513         {
1514           child_allocation.x += focus_width + focus_pad;
1515           child_allocation.y += focus_width + focus_pad;
1516           child_allocation.width =  child_allocation.width - (focus_width + focus_pad) * 2;
1517           child_allocation.height = child_allocation.height - (focus_width + focus_pad) * 2;
1518         }
1519
1520       if (button->depressed)
1521         {
1522           gint child_displacement_x;
1523           gint child_displacement_y;
1524           
1525           gtk_widget_style_get (widget,
1526                                 "child-displacement-x", &child_displacement_x, 
1527                                 "child-displacement-y", &child_displacement_y,
1528                                 NULL);
1529           child_allocation.x += child_displacement_x;
1530           child_allocation.y += child_displacement_y;
1531         }
1532
1533       child_allocation.width  = MAX (1, child_allocation.width);
1534       child_allocation.height = MAX (1, child_allocation.height);
1535
1536       gtk_widget_size_allocate (child, &child_allocation);
1537     }
1538 }
1539
1540 void
1541 _gtk_button_paint (GtkButton          *button,
1542                    const GdkRectangle *area,
1543                    GtkStateType        state_type,
1544                    GtkShadowType       shadow_type,
1545                    const gchar        *main_detail,
1546                    const gchar        *default_detail)
1547 {
1548   GtkWidget *widget;
1549   gint width, height;
1550   gint x, y;
1551   gint border_width;
1552   GtkBorder default_border;
1553   GtkBorder default_outside_border;
1554   gboolean interior_focus;
1555   gint focus_width;
1556   gint focus_pad;
1557
1558   widget = GTK_WIDGET (button);
1559
1560   if (gtk_widget_is_drawable (widget))
1561     {
1562       GtkAllocation allocation;
1563       GdkWindow *window;
1564       GtkStyle *style;
1565
1566       border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
1567
1568       gtk_button_get_props (button, &default_border, &default_outside_border, NULL, &interior_focus);
1569       gtk_widget_style_get (widget,
1570                             "focus-line-width", &focus_width,
1571                             "focus-padding", &focus_pad,
1572                             NULL); 
1573
1574       gtk_widget_get_allocation (widget, &allocation);
1575       style = gtk_widget_get_style (widget);
1576       window = gtk_widget_get_window (widget);
1577
1578       x = allocation.x + border_width;
1579       y = allocation.y + border_width;
1580       width = allocation.width - border_width * 2;
1581       height = allocation.height - border_width * 2;
1582
1583       if (gtk_widget_has_default (widget) &&
1584           GTK_BUTTON (widget)->relief == GTK_RELIEF_NORMAL)
1585         {
1586           gtk_paint_box (style, window,
1587                          GTK_STATE_NORMAL, GTK_SHADOW_IN,
1588                          area, widget, "buttondefault",
1589                          x, y, width, height);
1590
1591           x += default_border.left;
1592           y += default_border.top;
1593           width -= default_border.left + default_border.right;
1594           height -= default_border.top + default_border.bottom;
1595         }
1596       else if (gtk_widget_get_can_default (widget))
1597         {
1598           x += default_outside_border.left;
1599           y += default_outside_border.top;
1600           width -= default_outside_border.left + default_outside_border.right;
1601           height -= default_outside_border.top + default_outside_border.bottom;
1602         }
1603        
1604       if (!interior_focus && gtk_widget_has_focus (widget))
1605         {
1606           x += focus_width + focus_pad;
1607           y += focus_width + focus_pad;
1608           width -= 2 * (focus_width + focus_pad);
1609           height -= 2 * (focus_width + focus_pad);
1610         }
1611
1612       if (button->relief != GTK_RELIEF_NONE || button->depressed ||
1613           gtk_widget_get_state(widget) == GTK_STATE_PRELIGHT)
1614         gtk_paint_box (style, window,
1615                        state_type,
1616                        shadow_type, area, widget, "button",
1617                        x, y, width, height);
1618        
1619       if (gtk_widget_has_focus (widget))
1620         {
1621           gint child_displacement_x;
1622           gint child_displacement_y;
1623           gboolean displace_focus;
1624           
1625           gtk_widget_style_get (widget,
1626                                 "child-displacement-y", &child_displacement_y,
1627                                 "child-displacement-x", &child_displacement_x,
1628                                 "displace-focus", &displace_focus,
1629                                 NULL);
1630
1631           if (interior_focus)
1632             {
1633               x += style->xthickness + focus_pad;
1634               y += style->ythickness + focus_pad;
1635               width -= 2 * (style->xthickness + focus_pad);
1636               height -=  2 * (style->ythickness + focus_pad);
1637             }
1638           else
1639             {
1640               x -= focus_width + focus_pad;
1641               y -= focus_width + focus_pad;
1642               width += 2 * (focus_width + focus_pad);
1643               height += 2 * (focus_width + focus_pad);
1644             }
1645
1646           if (button->depressed && displace_focus)
1647             {
1648               x += child_displacement_x;
1649               y += child_displacement_y;
1650             }
1651
1652           gtk_paint_focus (style, window,
1653                            gtk_widget_get_state (widget),
1654                            area, widget, "button",
1655                            x, y, width, height);
1656         }
1657     }
1658 }
1659
1660 static gboolean
1661 gtk_button_expose (GtkWidget      *widget,
1662                    GdkEventExpose *event)
1663 {
1664   if (gtk_widget_is_drawable (widget))
1665     {
1666       GtkButton *button = GTK_BUTTON (widget);
1667       
1668       _gtk_button_paint (button, &event->area,
1669                          gtk_widget_get_state (widget),
1670                          button->depressed ? GTK_SHADOW_IN : GTK_SHADOW_OUT,
1671                          "button", "buttondefault");
1672
1673       GTK_WIDGET_CLASS (gtk_button_parent_class)->expose_event (widget, event);
1674     }
1675
1676   return FALSE;
1677 }
1678
1679 static gboolean
1680 gtk_button_button_press (GtkWidget      *widget,
1681                          GdkEventButton *event)
1682 {
1683   GtkButton *button;
1684
1685   if (event->type == GDK_BUTTON_PRESS)
1686     {
1687       button = GTK_BUTTON (widget);
1688
1689       if (button->focus_on_click && !gtk_widget_has_focus (widget))
1690         gtk_widget_grab_focus (widget);
1691
1692       if (event->button == 1)
1693         gtk_button_pressed (button);
1694     }
1695
1696   return TRUE;
1697 }
1698
1699 static gboolean
1700 gtk_button_button_release (GtkWidget      *widget,
1701                            GdkEventButton *event)
1702 {
1703   GtkButton *button;
1704
1705   if (event->button == 1)
1706     {
1707       button = GTK_BUTTON (widget);
1708       gtk_button_released (button);
1709     }
1710
1711   return TRUE;
1712 }
1713
1714 static gboolean
1715 gtk_button_grab_broken (GtkWidget          *widget,
1716                         GdkEventGrabBroken *event)
1717 {
1718   GtkButton *button = GTK_BUTTON (widget);
1719   gboolean save_in;
1720   
1721   /* Simulate a button release without the pointer in the button */
1722   if (button->button_down)
1723     {
1724       save_in = button->in_button;
1725       button->in_button = FALSE;
1726       gtk_button_released (button);
1727       if (save_in != button->in_button)
1728         {
1729           button->in_button = save_in;
1730           gtk_button_update_state (button);
1731         }
1732     }
1733
1734   return TRUE;
1735 }
1736
1737 static gboolean
1738 gtk_button_key_release (GtkWidget   *widget,
1739                         GdkEventKey *event)
1740 {
1741   GtkButton *button = GTK_BUTTON (widget);
1742
1743   if (button->activate_timeout)
1744     {
1745       gtk_button_finish_activate (button, TRUE);
1746       return TRUE;
1747     }
1748   else if (GTK_WIDGET_CLASS (gtk_button_parent_class)->key_release_event)
1749     return GTK_WIDGET_CLASS (gtk_button_parent_class)->key_release_event (widget, event);
1750   else
1751     return FALSE;
1752 }
1753
1754 static gboolean
1755 gtk_button_enter_notify (GtkWidget        *widget,
1756                          GdkEventCrossing *event)
1757 {
1758   GtkButton *button;
1759   GtkWidget *event_widget;
1760
1761   button = GTK_BUTTON (widget);
1762   event_widget = gtk_get_event_widget ((GdkEvent*) event);
1763
1764   if ((event_widget == widget) &&
1765       (event->detail != GDK_NOTIFY_INFERIOR))
1766     {
1767       button->in_button = TRUE;
1768       gtk_button_enter (button);
1769     }
1770
1771   return FALSE;
1772 }
1773
1774 static gboolean
1775 gtk_button_leave_notify (GtkWidget        *widget,
1776                          GdkEventCrossing *event)
1777 {
1778   GtkButton *button;
1779   GtkWidget *event_widget;
1780
1781   button = GTK_BUTTON (widget);
1782   event_widget = gtk_get_event_widget ((GdkEvent*) event);
1783
1784   if ((event_widget == widget) &&
1785       (event->detail != GDK_NOTIFY_INFERIOR) &&
1786       (gtk_widget_get_sensitive (event_widget)))
1787     {
1788       button->in_button = FALSE;
1789       gtk_button_leave (button);
1790     }
1791
1792   return FALSE;
1793 }
1794
1795 static void
1796 gtk_real_button_pressed (GtkButton *button)
1797 {
1798   if (button->activate_timeout)
1799     return;
1800   
1801   button->button_down = TRUE;
1802   gtk_button_update_state (button);
1803 }
1804
1805 static void
1806 gtk_real_button_released (GtkButton *button)
1807 {
1808   if (button->button_down)
1809     {
1810       button->button_down = FALSE;
1811
1812       if (button->activate_timeout)
1813         return;
1814       
1815       if (button->in_button)
1816         gtk_button_clicked (button);
1817
1818       gtk_button_update_state (button);
1819     }
1820 }
1821
1822 static void 
1823 gtk_real_button_clicked (GtkButton *button)
1824 {
1825   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
1826
1827   if (priv->action)
1828     gtk_action_activate (priv->action);
1829 }
1830
1831 static gboolean
1832 button_activate_timeout (gpointer data)
1833 {
1834   gtk_button_finish_activate (data, TRUE);
1835
1836   return FALSE;
1837 }
1838
1839 static void
1840 gtk_real_button_activate (GtkButton *button)
1841 {
1842   GtkWidget *widget = GTK_WIDGET (button);
1843   GtkButtonPrivate *priv;
1844   GdkDevice *device;
1845   guint32 time;
1846
1847   priv = GTK_BUTTON_GET_PRIVATE (button);
1848   device = gtk_get_current_event_device ();
1849
1850   if (device && device->source != GDK_SOURCE_KEYBOARD)
1851     device = gdk_device_get_associated_device (device);
1852
1853   g_return_if_fail (device && device->source == GDK_SOURCE_KEYBOARD);
1854
1855   if (gtk_widget_get_realized (widget) && !button->activate_timeout)
1856     {
1857       time = gtk_get_current_event_time ();
1858
1859       if (gdk_device_grab (device, button->event_window,
1860                            GDK_OWNERSHIP_WINDOW, TRUE,
1861                            GDK_KEY_PRESS | GDK_KEY_RELEASE,
1862                            NULL, time) == GDK_GRAB_SUCCESS)
1863         {
1864           gtk_device_grab_add (widget, device, TRUE);
1865           priv->grab_keyboard = device;
1866           priv->grab_time = time;
1867         }
1868
1869       button->activate_timeout = gdk_threads_add_timeout (ACTIVATE_TIMEOUT,
1870                                                 button_activate_timeout,
1871                                                 button);
1872       button->button_down = TRUE;
1873       gtk_button_update_state (button);
1874       gtk_widget_queue_draw (GTK_WIDGET (button));
1875     }
1876 }
1877
1878 static void
1879 gtk_button_finish_activate (GtkButton *button,
1880                             gboolean   do_it)
1881 {
1882   GtkWidget *widget = GTK_WIDGET (button);
1883   GtkButtonPrivate *priv;
1884   
1885   priv = GTK_BUTTON_GET_PRIVATE (button);
1886
1887   g_source_remove (button->activate_timeout);
1888   button->activate_timeout = 0;
1889
1890   if (priv->grab_keyboard)
1891     {
1892       gdk_device_ungrab (priv->grab_keyboard, priv->grab_time);
1893       gtk_device_grab_remove (widget, priv->grab_keyboard);
1894       priv->grab_keyboard = NULL;
1895     }
1896
1897   button->button_down = FALSE;
1898
1899   gtk_button_update_state (button);
1900   gtk_widget_queue_draw (GTK_WIDGET (button));
1901
1902   if (do_it)
1903     gtk_button_clicked (button);
1904 }
1905
1906
1907 static void
1908 gtk_button_size_request_init (GtkSizeRequestIface *iface)
1909 {
1910   iface->get_width  = gtk_button_get_width;
1911   iface->get_height = gtk_button_get_height;
1912 }
1913
1914 static void
1915 gtk_button_get_size (GtkSizeRequest *widget,
1916                      GtkOrientation  orientation,
1917                      gint           *minimum_size,
1918                      gint           *natural_size)
1919 {
1920   GtkButton *button = GTK_BUTTON (widget);
1921   GtkStyle *style;
1922   GtkWidget *child;
1923   GtkBorder default_border;
1924   GtkBorder inner_border;
1925   gint focus_width;
1926   gint focus_pad;
1927   gint minimum, natural;
1928   guint border_width;
1929
1930   gtk_button_get_props (button, &default_border, NULL, &inner_border, NULL);
1931   gtk_widget_style_get (GTK_WIDGET (widget),
1932                         "focus-line-width", &focus_width,
1933                         "focus-padding", &focus_pad,
1934                         NULL);
1935
1936   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
1937   style = gtk_widget_get_style (GTK_WIDGET (widget));
1938
1939   if (orientation == GTK_ORIENTATION_HORIZONTAL)
1940     {
1941       minimum = ((border_width + style->xthickness) * 2 +
1942                  inner_border.left + inner_border.right);
1943
1944       if (gtk_widget_get_can_default (GTK_WIDGET (widget)))
1945         minimum += default_border.left + default_border.right;
1946     }
1947   else
1948     {
1949       minimum = ((border_width + style->ythickness) * 2 +
1950                  inner_border.top + inner_border.bottom);
1951
1952       if (gtk_widget_get_can_default (GTK_WIDGET (widget)))
1953         minimum += default_border.top + default_border.bottom;
1954     }  
1955
1956   minimum += 2 * (focus_width + focus_pad);
1957   natural = minimum;
1958
1959   if ((child = gtk_bin_get_child (GTK_BIN (button))) && 
1960       gtk_widget_get_visible (child))
1961     {
1962       gint child_min, child_nat;
1963
1964       if (orientation == GTK_ORIENTATION_HORIZONTAL)
1965         gtk_size_request_get_width (GTK_SIZE_REQUEST (child), 
1966                                     &child_min, &child_nat);
1967       else
1968         gtk_size_request_get_height (GTK_SIZE_REQUEST (child), 
1969                                      &child_min, &child_nat);
1970
1971       minimum += child_min;
1972       natural += child_nat;
1973     }
1974
1975   if (minimum_size)
1976     *minimum_size = minimum;
1977
1978   if (natural_size)
1979     *natural_size = natural;
1980 }
1981
1982 static void 
1983 gtk_button_get_width (GtkSizeRequest      *widget,
1984                       gint                *minimum_size,
1985                       gint                *natural_size)
1986 {
1987   gtk_button_get_size (widget, GTK_ORIENTATION_HORIZONTAL, minimum_size, natural_size);
1988 }
1989
1990 static void 
1991 gtk_button_get_height (GtkSizeRequest      *widget,
1992                        gint                *minimum_size,
1993                        gint                *natural_size)
1994 {
1995   gtk_button_get_size (widget, GTK_ORIENTATION_VERTICAL, minimum_size, natural_size);
1996 }
1997
1998 /**
1999  * gtk_button_set_label:
2000  * @button: a #GtkButton
2001  * @label: a string
2002  *
2003  * Sets the text of the label of the button to @str. This text is
2004  * also used to select the stock item if gtk_button_set_use_stock()
2005  * is used.
2006  *
2007  * This will also clear any previously set labels.
2008  **/
2009 void
2010 gtk_button_set_label (GtkButton   *button,
2011                       const gchar *label)
2012 {
2013   gchar *new_label;
2014   
2015   g_return_if_fail (GTK_IS_BUTTON (button));
2016
2017   new_label = g_strdup (label);
2018   g_free (button->label_text);
2019   button->label_text = new_label;
2020   
2021   gtk_button_construct_child (button);
2022   
2023   g_object_notify (G_OBJECT (button), "label");
2024 }
2025
2026 /**
2027  * gtk_button_get_label:
2028  * @button: a #GtkButton
2029  *
2030  * Fetches the text from the label of the button, as set by
2031  * gtk_button_set_label(). If the label text has not 
2032  * been set the return value will be %NULL. This will be the 
2033  * case if you create an empty button with gtk_button_new() to 
2034  * use as a container.
2035  *
2036  * Return value: The text of the label widget. This string is owned
2037  * by the widget and must not be modified or freed.
2038  **/
2039 G_CONST_RETURN gchar *
2040 gtk_button_get_label (GtkButton *button)
2041 {
2042   g_return_val_if_fail (GTK_IS_BUTTON (button), NULL);
2043   
2044   return button->label_text;
2045 }
2046
2047 /**
2048  * gtk_button_set_use_underline:
2049  * @button: a #GtkButton
2050  * @use_underline: %TRUE if underlines in the text indicate mnemonics
2051  *
2052  * If true, an underline in the text of the button label indicates
2053  * the next character should be used for the mnemonic accelerator key.
2054  */
2055 void
2056 gtk_button_set_use_underline (GtkButton *button,
2057                               gboolean   use_underline)
2058 {
2059   g_return_if_fail (GTK_IS_BUTTON (button));
2060
2061   use_underline = use_underline != FALSE;
2062
2063   if (use_underline != button->use_underline)
2064     {
2065       button->use_underline = use_underline;
2066   
2067       gtk_button_construct_child (button);
2068       
2069       g_object_notify (G_OBJECT (button), "use-underline");
2070     }
2071 }
2072
2073 /**
2074  * gtk_button_get_use_underline:
2075  * @button: a #GtkButton
2076  *
2077  * Returns whether an embedded underline in the button label indicates a
2078  * mnemonic. See gtk_button_set_use_underline ().
2079  *
2080  * Return value: %TRUE if an embedded underline in the button label
2081  *               indicates the mnemonic accelerator keys.
2082  **/
2083 gboolean
2084 gtk_button_get_use_underline (GtkButton *button)
2085 {
2086   g_return_val_if_fail (GTK_IS_BUTTON (button), FALSE);
2087   
2088   return button->use_underline;
2089 }
2090
2091 /**
2092  * gtk_button_set_use_stock:
2093  * @button: a #GtkButton
2094  * @use_stock: %TRUE if the button should use a stock item
2095  *
2096  * If %TRUE, the label set on the button is used as a
2097  * stock id to select the stock item for the button.
2098  */
2099 void
2100 gtk_button_set_use_stock (GtkButton *button,
2101                           gboolean   use_stock)
2102 {
2103   g_return_if_fail (GTK_IS_BUTTON (button));
2104
2105   use_stock = use_stock != FALSE;
2106
2107   if (use_stock != button->use_stock)
2108     {
2109       button->use_stock = use_stock;
2110   
2111       gtk_button_construct_child (button);
2112       
2113       g_object_notify (G_OBJECT (button), "use-stock");
2114     }
2115 }
2116
2117 /**
2118  * gtk_button_get_use_stock:
2119  * @button: a #GtkButton
2120  *
2121  * Returns whether the button label is a stock item.
2122  *
2123  * Return value: %TRUE if the button label is used to
2124  *               select a stock item instead of being
2125  *               used directly as the label text.
2126  */
2127 gboolean
2128 gtk_button_get_use_stock (GtkButton *button)
2129 {
2130   g_return_val_if_fail (GTK_IS_BUTTON (button), FALSE);
2131   
2132   return button->use_stock;
2133 }
2134
2135 /**
2136  * gtk_button_set_focus_on_click:
2137  * @button: a #GtkButton
2138  * @focus_on_click: whether the button grabs focus when clicked with the mouse
2139  *
2140  * Sets whether the button will grab focus when it is clicked with the mouse.
2141  * Making mouse clicks not grab focus is useful in places like toolbars where
2142  * you don't want the keyboard focus removed from the main area of the
2143  * application.
2144  *
2145  * Since: 2.4
2146  **/
2147 void
2148 gtk_button_set_focus_on_click (GtkButton *button,
2149                                gboolean   focus_on_click)
2150 {
2151   g_return_if_fail (GTK_IS_BUTTON (button));
2152   
2153   focus_on_click = focus_on_click != FALSE;
2154
2155   if (button->focus_on_click != focus_on_click)
2156     {
2157       button->focus_on_click = focus_on_click;
2158       
2159       g_object_notify (G_OBJECT (button), "focus-on-click");
2160     }
2161 }
2162
2163 /**
2164  * gtk_button_get_focus_on_click:
2165  * @button: a #GtkButton
2166  *
2167  * Returns whether the button grabs focus when it is clicked with the mouse.
2168  * See gtk_button_set_focus_on_click().
2169  *
2170  * Return value: %TRUE if the button grabs focus when it is clicked with
2171  *               the mouse.
2172  *
2173  * Since: 2.4
2174  **/
2175 gboolean
2176 gtk_button_get_focus_on_click (GtkButton *button)
2177 {
2178   g_return_val_if_fail (GTK_IS_BUTTON (button), FALSE);
2179   
2180   return button->focus_on_click;
2181 }
2182
2183 /**
2184  * gtk_button_set_alignment:
2185  * @button: a #GtkButton
2186  * @xalign: the horizontal position of the child, 0.0 is left aligned, 
2187  *   1.0 is right aligned
2188  * @yalign: the vertical position of the child, 0.0 is top aligned, 
2189  *   1.0 is bottom aligned
2190  *
2191  * Sets the alignment of the child. This property has no effect unless 
2192  * the child is a #GtkMisc or a #GtkAligment.
2193  *
2194  * Since: 2.4
2195  */
2196 void
2197 gtk_button_set_alignment (GtkButton *button,
2198                           gfloat     xalign,
2199                           gfloat     yalign)
2200 {
2201   GtkButtonPrivate *priv;
2202
2203   g_return_if_fail (GTK_IS_BUTTON (button));
2204   
2205   priv = GTK_BUTTON_GET_PRIVATE (button);
2206
2207   priv->xalign = xalign;
2208   priv->yalign = yalign;
2209   priv->align_set = 1;
2210
2211   maybe_set_alignment (button, gtk_bin_get_child (GTK_BIN (button)));
2212
2213   g_object_freeze_notify (G_OBJECT (button));
2214   g_object_notify (G_OBJECT (button), "xalign");
2215   g_object_notify (G_OBJECT (button), "yalign");
2216   g_object_thaw_notify (G_OBJECT (button));
2217 }
2218
2219 /**
2220  * gtk_button_get_alignment:
2221  * @button: a #GtkButton
2222  * @xalign: return location for horizontal alignment
2223  * @yalign: return location for vertical alignment
2224  *
2225  * Gets the alignment of the child in the button.
2226  *
2227  * Since: 2.4
2228  */
2229 void
2230 gtk_button_get_alignment (GtkButton *button,
2231                           gfloat    *xalign,
2232                           gfloat    *yalign)
2233 {
2234   GtkButtonPrivate *priv;
2235
2236   g_return_if_fail (GTK_IS_BUTTON (button));
2237   
2238   priv = GTK_BUTTON_GET_PRIVATE (button);
2239  
2240   if (xalign) 
2241     *xalign = priv->xalign;
2242
2243   if (yalign)
2244     *yalign = priv->yalign;
2245 }
2246
2247 /**
2248  * _gtk_button_set_depressed:
2249  * @button: a #GtkButton
2250  * @depressed: %TRUE if the button should be drawn with a recessed shadow.
2251  *
2252  * Sets whether the button is currently drawn as down or not. This is 
2253  * purely a visual setting, and is meant only for use by derived widgets
2254  * such as #GtkToggleButton.
2255  **/
2256 void
2257 _gtk_button_set_depressed (GtkButton *button,
2258                            gboolean   depressed)
2259 {
2260   GtkWidget *widget = GTK_WIDGET (button);
2261
2262   depressed = depressed != FALSE;
2263
2264   if (depressed != button->depressed)
2265     {
2266       button->depressed = depressed;
2267       gtk_widget_queue_resize (widget);
2268     }
2269 }
2270
2271 static void
2272 gtk_button_update_state (GtkButton *button)
2273 {
2274   gboolean depressed;
2275   GtkStateType new_state;
2276
2277   if (button->activate_timeout)
2278     depressed = button->depress_on_activate;
2279   else
2280     depressed = button->in_button && button->button_down;
2281
2282   if (button->in_button && (!button->button_down || !depressed))
2283     new_state = GTK_STATE_PRELIGHT;
2284   else
2285     new_state = depressed ? GTK_STATE_ACTIVE : GTK_STATE_NORMAL;
2286
2287   _gtk_button_set_depressed (button, depressed); 
2288   gtk_widget_set_state (GTK_WIDGET (button), new_state);
2289 }
2290
2291 static void 
2292 show_image_change_notify (GtkButton *button)
2293 {
2294   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
2295
2296   if (priv->image) 
2297     {
2298       if (show_image (button))
2299         gtk_widget_show (priv->image);
2300       else
2301         gtk_widget_hide (priv->image);
2302     }
2303 }
2304
2305 static void
2306 traverse_container (GtkWidget *widget,
2307                     gpointer   data)
2308 {
2309   if (GTK_IS_BUTTON (widget))
2310     show_image_change_notify (GTK_BUTTON (widget));
2311   else if (GTK_IS_CONTAINER (widget))
2312     gtk_container_forall (GTK_CONTAINER (widget), traverse_container, NULL);
2313 }
2314
2315 static void
2316 gtk_button_setting_changed (GtkSettings *settings)
2317 {
2318   GList *list, *l;
2319
2320   list = gtk_window_list_toplevels ();
2321
2322   for (l = list; l; l = l->next)
2323     gtk_container_forall (GTK_CONTAINER (l->data), 
2324                           traverse_container, NULL);
2325
2326   g_list_free (list);
2327 }
2328
2329
2330 static void
2331 gtk_button_screen_changed (GtkWidget *widget,
2332                            GdkScreen *previous_screen)
2333 {
2334   GtkButton *button;
2335   GtkSettings *settings;
2336   guint show_image_connection;
2337
2338   if (!gtk_widget_has_screen (widget))
2339     return;
2340
2341   button = GTK_BUTTON (widget);
2342
2343   /* If the button is being pressed while the screen changes the
2344     release might never occur, so we reset the state. */
2345   if (button->button_down)
2346     {
2347       button->button_down = FALSE;
2348       gtk_button_update_state (button);
2349     }
2350
2351   settings = gtk_widget_get_settings (widget);
2352
2353   show_image_connection = 
2354     GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (settings), 
2355                                          "gtk-button-connection"));
2356   
2357   if (show_image_connection)
2358     return;
2359
2360   show_image_connection =
2361     g_signal_connect (settings, "notify::gtk-button-images",
2362                       G_CALLBACK (gtk_button_setting_changed), NULL);
2363   g_object_set_data (G_OBJECT (settings), 
2364                      I_("gtk-button-connection"),
2365                      GUINT_TO_POINTER (show_image_connection));
2366
2367   show_image_change_notify (button);
2368 }
2369
2370 static void
2371 gtk_button_state_changed (GtkWidget    *widget,
2372                           GtkStateType  previous_state)
2373 {
2374   GtkButton *button = GTK_BUTTON (widget);
2375
2376   if (!gtk_widget_is_sensitive (widget))
2377     {
2378       button->in_button = FALSE;
2379       gtk_real_button_released (button);
2380     }
2381 }
2382
2383 static void
2384 gtk_button_grab_notify (GtkWidget *widget,
2385                         gboolean   was_grabbed)
2386 {
2387   GtkButton *button = GTK_BUTTON (widget);
2388   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (button);
2389   gboolean save_in;
2390
2391   if (button->activate_timeout &&
2392       priv->grab_keyboard &&
2393       gtk_widget_device_is_shadowed (widget, priv->grab_keyboard))
2394     gtk_button_finish_activate (button, FALSE);
2395
2396   if (!was_grabbed)
2397     {
2398       save_in = button->in_button;
2399       button->in_button = FALSE; 
2400       gtk_real_button_released (button);
2401       if (save_in != button->in_button)
2402         {
2403           button->in_button = save_in;
2404           gtk_button_update_state (button);
2405         }
2406     }
2407 }
2408
2409 /**
2410  * gtk_button_set_image:
2411  * @button: a #GtkButton
2412  * @image: a widget to set as the image for the button
2413  *
2414  * Set the image of @button to the given widget. Note that
2415  * it depends on the #GtkSettings:gtk-button-images setting whether the
2416  * image will be displayed or not, you don't have to call
2417  * gtk_widget_show() on @image yourself.
2418  *
2419  * Since: 2.6
2420  */ 
2421 void
2422 gtk_button_set_image (GtkButton *button,
2423                       GtkWidget *image)
2424 {
2425   GtkButtonPrivate *priv;
2426   GtkWidget *parent;
2427
2428   g_return_if_fail (GTK_IS_BUTTON (button));
2429   g_return_if_fail (image == NULL || GTK_IS_WIDGET (image));
2430
2431   priv = GTK_BUTTON_GET_PRIVATE (button);
2432
2433   if (priv->image)
2434     {
2435       parent = gtk_widget_get_parent (priv->image);
2436       if (parent)
2437         gtk_container_remove (GTK_CONTAINER (parent), priv->image);
2438     }
2439
2440   priv->image = image;
2441   priv->image_is_stock = (image == NULL);
2442
2443   gtk_button_construct_child (button);
2444
2445   g_object_notify (G_OBJECT (button), "image");
2446 }
2447
2448 /**
2449  * gtk_button_get_image:
2450  * @button: a #GtkButton
2451  *
2452  * Gets the widget that is currenty set as the image of @button.
2453  * This may have been explicitly set by gtk_button_set_image()
2454  * or constructed by gtk_button_new_from_stock().
2455  *
2456  * Return value: a #GtkWidget or %NULL in case there is no image
2457  *
2458  * Since: 2.6
2459  */
2460 GtkWidget *
2461 gtk_button_get_image (GtkButton *button)
2462 {
2463   GtkButtonPrivate *priv;
2464
2465   g_return_val_if_fail (GTK_IS_BUTTON (button), NULL);
2466
2467   priv = GTK_BUTTON_GET_PRIVATE (button);
2468   
2469   return priv->image;
2470 }
2471
2472 /**
2473  * gtk_button_set_image_position:
2474  * @button: a #GtkButton
2475  * @position: the position
2476  *
2477  * Sets the position of the image relative to the text 
2478  * inside the button.
2479  *
2480  * Since: 2.10
2481  */ 
2482 void
2483 gtk_button_set_image_position (GtkButton       *button,
2484                                GtkPositionType  position)
2485 {
2486
2487   GtkButtonPrivate *priv;
2488
2489   g_return_if_fail (GTK_IS_BUTTON (button));
2490   g_return_if_fail (position >= GTK_POS_LEFT && position <= GTK_POS_BOTTOM);
2491   
2492   priv = GTK_BUTTON_GET_PRIVATE (button);
2493
2494   if (priv->image_position != position)
2495     {
2496       priv->image_position = position;
2497
2498       gtk_button_construct_child (button);
2499
2500       g_object_notify (G_OBJECT (button), "image-position");
2501     }
2502 }
2503
2504 /**
2505  * gtk_button_get_image_position:
2506  * @button: a #GtkButton
2507  *
2508  * Gets the position of the image relative to the text 
2509  * inside the button.
2510  *
2511  * Return value: the position
2512  *
2513  * Since: 2.10
2514  */
2515 GtkPositionType
2516 gtk_button_get_image_position (GtkButton *button)
2517 {
2518   GtkButtonPrivate *priv;
2519
2520   g_return_val_if_fail (GTK_IS_BUTTON (button), GTK_POS_LEFT);
2521
2522   priv = GTK_BUTTON_GET_PRIVATE (button);
2523   
2524   return priv->image_position;
2525 }
2526
2527
2528 /**
2529  * gtk_button_get_event_window:
2530  * @button: a #GtkButton
2531  *
2532  * Returns the button's event window if it is realized, %NULL otherwise.
2533  * This function should be rarely needed.
2534  *
2535  * Return value: (transfer none): @button's event window.
2536  *
2537  * Since: 2.22
2538  */
2539 GdkWindow*
2540 gtk_button_get_event_window (GtkButton *button)
2541 {
2542   g_return_val_if_fail (GTK_IS_BUTTON (button), NULL);
2543
2544   return button->event_window;
2545 }