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