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