]> Pileus Git - ~andy/gtk/blob - gtk/gtkwidget.c
GtkWidget: Create GtkStyle on top of GtkStyleContext.
[~andy/gtk] / gtk / gtkwidget.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-2000.  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 #undef GDK_DISABLE_DEPRECATED /* gdk_input_set_extension_events() */
28
29 #include "config.h"
30 #include <stdarg.h>
31 #include <string.h>
32 #include <locale.h>
33 #include "gtkcontainer.h"
34 #include "gtkaccelmap.h"
35 #include "gtkclipboard.h"
36 #include "gtkiconfactory.h"
37 #include "gtkintl.h"
38 #include "gtkmain.h"
39 #include "gtkmarshalers.h"
40 #include "gtkrc.h"
41 #include "gtkselection.h"
42 #include "gtksettings.h"
43 #include "gtksizegroup-private.h"
44 #include "gtkwidget.h"
45 #include "gtkwidgetprivate.h"
46 #include "gtkwindow.h"
47 #include "gtkbindings.h"
48 #include "gtkprivate.h"
49 #include "gdk/gdk.h"
50 #include "gdk/gdkprivate.h" /* Used in gtk_reset_shapes_recurse to avoid copy */
51 #include <gobject/gvaluecollector.h>
52 #include <gobject/gobjectnotifyqueue.c>
53 #include <cairo-gobject.h>
54 #include "gdk/gdkkeysyms.h"
55 #include "gtkaccessible.h"
56 #include "gtktooltip.h"
57 #include "gtkinvisible.h"
58 #include "gtkbuildable.h"
59 #include "gtkbuilderprivate.h"
60 #include "gtksizerequest.h"
61 #include "gtkstylecontext.h"
62 #include "gtkcssprovider.h"
63 #include "gtkversion.h"
64 #include "gtkdebug.h"
65
66
67 /**
68  * SECTION:gtkwidget
69  * @Short_description: Base class for all widgets
70  * @Title: GtkWidget
71  *
72  * GtkWidget is the base class all widgets in GTK+ derive from. It manages the
73  * widget lifecycle, states and style.
74  *
75  * <refsect2 id="geometry-management">
76  * <title>Height-for-width Geometry Management</title>
77  * <para>
78  * GTK+ uses a height-for-width (and width-for-height) geometry management
79  * system. Height-for-width means that a widget can change how much
80  * vertical space it needs, depending on the amount of horizontal space
81  * that it is given (and similar for width-for-height). The most common
82  * example is a label that reflows to fill up the available width, wraps
83  * to fewer lines, and therefore needs less height.
84  *
85  * Height-for-width geometry management is implemented in GTK+ by way
86  * of five virtual methods:
87  * <itemizedlist>
88  *   <listitem>#GtkWidgetClass.get_request_mode()</listitem>
89  *   <listitem>#GtkWidgetClass.get_preferred_width()</listitem>
90  *   <listitem>#GtkWidgetClass.get_preferred_height()</listitem>
91  *   <listitem>#GtkWidgetClass.get_preferred_height_for_width()</listitem>
92  *   <listitem>#GtkWidgetClass.get_preferred_width_for_height()</listitem>
93  * </itemizedlist>
94  *
95  * There are some important things to keep in mind when implementing
96  * height-for-width and when using it in container implementations.
97  *
98  * The geometry management system will query a widget hierarchy in
99  * only one orientation at a time. When widgets are initially queried
100  * for their minimum sizes it is generally done in two initial passes
101  * in the #GtkSizeRequestMode chosen by the toplevel.
102  *
103  * For example, when queried in the normal
104  * %GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH mode:
105  * First, the default minimum and natural width for each widget
106  * in the interface will be computed using gtk_width_get_preferred_width().
107  * Because the preferred widths for each container depend on the preferred
108  * widths of their children, this information propagates up the hierarchy,
109  * and finally a minimum and natural width is determined for the entire
110  * toplevel. Next, the toplevel will use the minimum width to query for the
111  * minimum height contextual to that width using
112  * gtk_widget_get_preferred_height_for_width(), which will also be a highly
113  * recursive operation. The minimum height for the minimum width is normally
114  * used to set the minimum size constraint on the toplevel
115  * (unless gtk_window_set_geometry_hints() is explicitly used instead).
116  *
117  * After the toplevel window has initially requested its size in both
118  * dimensions it can go on to allocate itself a reasonable size (or a size
119  * previously specified with gtk_window_set_default_size()). During the
120  * recursive allocation process it's important to note that request cycles
121  * will be recursively executed while container widgets allocate their children.
122  * Each container widget, once allocated a size, will go on to first share the
123  * space in one orientation among its children and then request each child's
124  * height for its target allocated width or its width for allocated height,
125  * depending. In this way a #GtkWidget will typically be requested its size
126  * a number of times before actually being allocated a size. The size a
127  * widget is finally allocated can of course differ from the size it has
128  * requested. For this reason, #GtkWidget caches a  small number of results
129  * to avoid re-querying for the same sizes in one allocation cycle.
130  *
131  * See <link linkend="container-geometry-management">GtkContainer's
132  * geometry management section</link>
133  * to learn more about how height-for-width allocations are performed
134  * by container widgets.
135  *
136  * If a widget does move content around to intelligently use up the
137  * allocated size then it must support the request in both
138  * #GtkSizeRequestModes even if the widget in question only
139  * trades sizes in a single orientation.
140  *
141  * For instance, a #GtkLabel that does height-for-width word wrapping
142  * will not expect to have #GtkWidgetClass.get_preferred_height() called
143  * because that call is specific to a width-for-height request. In this
144  * case the label must return the height required for its own minimum
145  * possible width. By following this rule any widget that handles
146  * height-for-width or width-for-height requests will always be allocated
147  * at least enough space to fit its own content.
148  *
149  * Here are some examples of how a %GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH widget
150  * generally deals with width-for-height requests, for #GtkWidgetClass.get_preferred_height()
151  * it will do:
152  * <programlisting><![CDATA[
153  * static void
154  * foo_widget_get_preferred_height (GtkWidget *widget, gint *min_height, gint *nat_height)
155  * {
156  *    if (i_am_in_height_for_width_mode)
157  *      {
158  *        gint min_width;
159  *
160  *        GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, &min_width, NULL);
161  *        GTK_WIDGET_GET_CLASS (widget)->get_preferred_height_for_width (widget, min_width,
162  *                                                                      min_height, nat_height);
163  *      }
164  *    else
165  *      {
166  *         ... some widgets do both. For instance, if a GtkLabel is rotated to 90 degrees
167  *         it will return the minimum and natural height for the rotated label here.
168  *      }
169  * }
170  * ]]></programlisting>
171  *
172  * And in #GtkWidgetClass.get_preferred_width_for_height() it will simply return
173  * the minimum and natural width:
174  *
175  * <programlisting><![CDATA[
176  * static void
177  * foo_widget_get_preferred_width_for_height (GtkWidget *widget, gint for_height,
178  *                                            gint *min_width, gint *nat_width)
179  * {
180  *    if (i_am_in_height_for_width_mode)
181  *      {
182  *        GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, min_width, nat_width);
183  *      }
184  *    else
185  *      {
186  *         ... again if a widget is sometimes operating in width-for-height mode
187  *         (like a rotated GtkLabel) it can go ahead and do its real width for
188  *         height calculation here.
189  *      }
190  * }
191  * ]]></programlisting>
192  *
193  * Often a widget needs to get its own request during size request or
194  * allocation. For example, when computing height it may need to also
195  * compute width. Or when deciding how to use an allocation, the widget
196  * may need to know its natural size. In these cases, the widget should
197  * be careful to call its virtual methods directly, like this:
198  * <example>
199  *   <title>Widget calling its own size request method.</title>
200  *   <programlisting>
201  * GTK_WIDGET_GET_CLASS(widget)-&gt;get_preferred_width (widget),
202  *                                  &min, &natural);
203  *   </programlisting>
204  * </example>
205  *
206  * It will not work to use the wrapper functions, such as
207  * gtk_widget_get_preferred_width() inside your own size request
208  * implementation. These return a request adjusted by #GtkSizeGroup
209  * and by the #GtkWidgetClass.adjust_size_request() virtual method. If a
210  * widget used the wrappers inside its virtual method implementations,
211  * then the adjustments (such as widget margins) would be applied
212  * twice. GTK+ therefore does not allow this and will warn if you try
213  * to do it.
214  *
215  * Of course if you are getting the size request for
216  * <emphasis>another</emphasis> widget, such as a child of a
217  * container, you <emphasis>must</emphasis> use the wrapper APIs.
218  * Otherwise, you would not properly consider widget margins,
219  * #GtkSizeGroup, and so forth.
220  * </para>
221  * </refsect2>
222  * <refsect2 id="style-properties">
223  * <title>Style Properties</title>
224  * <para>
225  * <structname>GtkWidget</structname> introduces <firstterm>style
226  * properties</firstterm> - these are basically object properties that are stored
227  * not on the object, but in the style object associated to the widget. Style
228  * properties are set in <link linkend="gtk-Resource-Files">resource files</link>.
229  * This mechanism is used for configuring such things as the location of the
230  * scrollbar arrows through the theme, giving theme authors more control over the
231  * look of applications without the need to write a theme engine in C.
232  * </para>
233  * <para>
234  * Use gtk_widget_class_install_style_property() to install style properties for
235  * a widget class, gtk_widget_class_find_style_property() or
236  * gtk_widget_class_list_style_properties() to get information about existing
237  * style properties and gtk_widget_style_get_property(), gtk_widget_style_get() or
238  * gtk_widget_style_get_valist() to obtain the value of a style property.
239  * </para>
240  * </refsect2>
241  * <refsect2 id="GtkWidget-BUILDER-UI">
242  * <title>GtkWidget as GtkBuildable</title>
243  * <para>
244  * The GtkWidget implementation of the GtkBuildable interface supports a
245  * custom &lt;accelerator&gt; element, which has attributes named key,
246  * modifiers and signal and allows to specify accelerators.
247  * </para>
248  * <example>
249  * <title>A UI definition fragment specifying an accelerator</title>
250  * <programlisting><![CDATA[
251  * <object class="GtkButton">
252  *   <accelerator key="q" modifiers="GDK_CONTROL_MASK" signal="clicked"/>
253  * </object>
254  * ]]></programlisting>
255  * </example>
256  * <para>
257  * In addition to accelerators, <structname>GtkWidget</structname> also support a
258  * custom &lt;accessible&gt; element, which supports actions and relations.
259  * Properties on the accessible implementation of an object can be set by accessing the
260  * internal child "accessible" of a <structname>GtkWidget</structname>.
261  * </para>
262  * <example>
263  * <title>A UI definition fragment specifying an accessible</title>
264  * <programlisting><![CDATA[
265  * <object class="GtkButton" id="label1"/>
266  *   <property name="label">I am a Label for a Button</property>
267  * </object>
268  * <object class="GtkButton" id="button1">
269  *   <accessibility>
270  *     <action action_name="click" translatable="yes">Click the button.</action>
271  *     <relation target="label1" type="labelled-by"/>
272  *   </accessibility>
273  *   <child internal-child="accessible">
274  *     <object class="AtkObject" id="a11y-button1">
275  *       <property name="AtkObject::name">Clickable Button</property>
276  *     </object>
277  *   </child>
278  * </object>
279  * ]]></programlisting>
280  * </example>
281  * </refsect2>
282  */
283
284 #define WIDGET_CLASS(w)  GTK_WIDGET_GET_CLASS (w)
285 #define INIT_PATH_SIZE  (512)
286
287 struct _GtkWidgetPrivate
288 {
289   /* The state of the widget. There are actually only
290    * 5 widget states (defined in "gtkenums.h")
291    * so 3 bits.
292    */
293   guint state : 3;
294
295   /* The saved state of the widget. When a widget's state
296    *  is changed to GTK_STATE_INSENSITIVE via
297    *  "gtk_widget_set_state" or "gtk_widget_set_sensitive"
298    *  the old state is kept around in this field. The state
299    *  will be restored once the widget gets sensitive again.
300    */
301   guint saved_state : 3;
302
303   guint direction             : 2;
304
305   guint in_destruction        : 1;
306   guint toplevel              : 1;
307   guint anchored              : 1;
308   guint composite_child       : 1;
309   guint no_window             : 1;
310   guint realized              : 1;
311   guint mapped                : 1;
312   guint visible               : 1;
313   guint sensitive             : 1;
314   guint parent_sensitive      : 1;
315   guint can_focus             : 1;
316   guint has_focus             : 1;
317   guint can_default           : 1;
318   guint has_default           : 1;
319   guint receives_default      : 1;
320   guint has_grab              : 1;
321   guint shadowed              : 1;
322   guint rc_style              : 1;
323   guint user_style            : 1;
324   guint app_paintable         : 1;
325   guint double_buffered       : 1;
326   guint redraw_on_alloc       : 1;
327   guint no_show_all           : 1;
328   guint child_visible         : 1;
329   guint multidevice           : 1;
330   guint has_shape_mask        : 1;
331   guint in_reparent           : 1;
332   guint resize_pending        : 1;
333   guint alloc_needed          : 1;
334   guint width_request_needed  : 1;
335   guint height_request_needed : 1;
336
337   /* Expand-related flags */
338   guint need_compute_expand   : 1; /* Need to recompute computed_[hv]_expand */
339   guint computed_hexpand      : 1; /* computed results (composite of child flags) */
340   guint computed_vexpand      : 1;
341   guint hexpand               : 1; /* application-forced expand */
342   guint vexpand               : 1;
343   guint hexpand_set           : 1; /* whether to use application-forced  */
344   guint vexpand_set           : 1; /* instead of computing from children */
345
346   /* The widget's name. If the widget does not have a name
347    *  (the name is NULL), then its name (as returned by
348    *  "gtk_widget_get_name") is its class's name.
349    * Among other things, the widget name is used to determine
350    *  the style to use for a widget.
351    */
352   gchar *name;
353
354   /* The style for the widget. The style contains the
355    *  colors the widget should be drawn in for each state
356    *  along with graphics contexts used to draw with and
357    *  the font to use for text.
358    */
359   GtkStyle *style;
360
361   /* The widget's allocated size.
362    */
363   GtkAllocation allocation;
364
365   /* The widget's requested sizes */
366   SizeRequestCache requests;
367
368   /* The widget's window or its parent window if it does
369    *  not have a window. (Which will be indicated by the
370    *  GTK_NO_WINDOW flag being set).
371    */
372   GdkWindow *window;
373
374   /* The widget's parent.
375    */
376   GtkWidget *parent;
377 };
378
379 enum {
380   DESTROY,
381   SHOW,
382   HIDE,
383   MAP,
384   UNMAP,
385   REALIZE,
386   UNREALIZE,
387   SIZE_ALLOCATE,
388   STATE_CHANGED,
389   PARENT_SET,
390   HIERARCHY_CHANGED,
391   STYLE_SET,
392   DIRECTION_CHANGED,
393   GRAB_NOTIFY,
394   CHILD_NOTIFY,
395   DRAW,
396   MNEMONIC_ACTIVATE,
397   GRAB_FOCUS,
398   FOCUS,
399   MOVE_FOCUS,
400   KEYNAV_FAILED,
401   EVENT,
402   EVENT_AFTER,
403   BUTTON_PRESS_EVENT,
404   BUTTON_RELEASE_EVENT,
405   SCROLL_EVENT,
406   MOTION_NOTIFY_EVENT,
407   DELETE_EVENT,
408   DESTROY_EVENT,
409   EXPOSE_EVENT,
410   KEY_PRESS_EVENT,
411   KEY_RELEASE_EVENT,
412   ENTER_NOTIFY_EVENT,
413   LEAVE_NOTIFY_EVENT,
414   CONFIGURE_EVENT,
415   FOCUS_IN_EVENT,
416   FOCUS_OUT_EVENT,
417   MAP_EVENT,
418   UNMAP_EVENT,
419   PROPERTY_NOTIFY_EVENT,
420   SELECTION_CLEAR_EVENT,
421   SELECTION_REQUEST_EVENT,
422   SELECTION_NOTIFY_EVENT,
423   SELECTION_GET,
424   SELECTION_RECEIVED,
425   PROXIMITY_IN_EVENT,
426   PROXIMITY_OUT_EVENT,
427   CLIENT_EVENT,
428   VISIBILITY_NOTIFY_EVENT,
429   WINDOW_STATE_EVENT,
430   DAMAGE_EVENT,
431   GRAB_BROKEN_EVENT,
432   DRAG_BEGIN,
433   DRAG_END,
434   DRAG_DATA_DELETE,
435   DRAG_LEAVE,
436   DRAG_MOTION,
437   DRAG_DROP,
438   DRAG_DATA_GET,
439   DRAG_DATA_RECEIVED,
440   POPUP_MENU,
441   SHOW_HELP,
442   ACCEL_CLOSURES_CHANGED,
443   SCREEN_CHANGED,
444   CAN_ACTIVATE_ACCEL,
445   COMPOSITED_CHANGED,
446   QUERY_TOOLTIP,
447   DRAG_FAILED,
448   LAST_SIGNAL
449 };
450
451 enum {
452   PROP_0,
453   PROP_NAME,
454   PROP_PARENT,
455   PROP_WIDTH_REQUEST,
456   PROP_HEIGHT_REQUEST,
457   PROP_VISIBLE,
458   PROP_SENSITIVE,
459   PROP_APP_PAINTABLE,
460   PROP_CAN_FOCUS,
461   PROP_HAS_FOCUS,
462   PROP_IS_FOCUS,
463   PROP_CAN_DEFAULT,
464   PROP_HAS_DEFAULT,
465   PROP_RECEIVES_DEFAULT,
466   PROP_COMPOSITE_CHILD,
467   PROP_STYLE,
468   PROP_EVENTS,
469   PROP_EXTENSION_EVENTS,
470   PROP_NO_SHOW_ALL,
471   PROP_HAS_TOOLTIP,
472   PROP_TOOLTIP_MARKUP,
473   PROP_TOOLTIP_TEXT,
474   PROP_WINDOW,
475   PROP_DOUBLE_BUFFERED,
476   PROP_HALIGN,
477   PROP_VALIGN,
478   PROP_MARGIN_LEFT,
479   PROP_MARGIN_RIGHT,
480   PROP_MARGIN_TOP,
481   PROP_MARGIN_BOTTOM,
482   PROP_MARGIN,
483   PROP_HEXPAND,
484   PROP_VEXPAND,
485   PROP_HEXPAND_SET,
486   PROP_VEXPAND_SET,
487   PROP_EXPAND
488 };
489
490 typedef struct  _GtkStateData    GtkStateData;
491
492 struct _GtkStateData
493 {
494   GtkStateType  state;
495   guint         state_restoration : 1;
496   guint         parent_sensitive : 1;
497   guint         use_forall : 1;
498 };
499
500 /* --- prototypes --- */
501 static void     gtk_widget_class_init           (GtkWidgetClass     *klass);
502 static void     gtk_widget_base_class_finalize  (GtkWidgetClass     *klass);
503 static void     gtk_widget_init                 (GtkWidget          *widget);
504 static void     gtk_widget_set_property          (GObject           *object,
505                                                   guint              prop_id,
506                                                   const GValue      *value,
507                                                   GParamSpec        *pspec);
508 static void     gtk_widget_get_property          (GObject           *object,
509                                                   guint              prop_id,
510                                                   GValue            *value,
511                                                   GParamSpec        *pspec);
512 static void     gtk_widget_dispose               (GObject           *object);
513 static void     gtk_widget_real_destroy          (GtkWidget         *object);
514 static void     gtk_widget_finalize              (GObject           *object);
515 static void     gtk_widget_real_show             (GtkWidget         *widget);
516 static void     gtk_widget_real_hide             (GtkWidget         *widget);
517 static void     gtk_widget_real_map              (GtkWidget         *widget);
518 static void     gtk_widget_real_unmap            (GtkWidget         *widget);
519 static void     gtk_widget_real_realize          (GtkWidget         *widget);
520 static void     gtk_widget_real_unrealize        (GtkWidget         *widget);
521 static void     gtk_widget_real_size_allocate    (GtkWidget         *widget,
522                                                   GtkAllocation     *allocation);
523 static void     gtk_widget_real_style_set        (GtkWidget         *widget,
524                                                   GtkStyle          *previous_style);
525 static void     gtk_widget_real_direction_changed(GtkWidget         *widget,
526                                                   GtkTextDirection   previous_direction);
527
528 static void     gtk_widget_real_grab_focus       (GtkWidget         *focus_widget);
529 static gboolean gtk_widget_real_query_tooltip    (GtkWidget         *widget,
530                                                   gint               x,
531                                                   gint               y,
532                                                   gboolean           keyboard_tip,
533                                                   GtkTooltip        *tooltip);
534 static gboolean gtk_widget_real_show_help        (GtkWidget         *widget,
535                                                   GtkWidgetHelpType  help_type);
536
537 static void     gtk_widget_dispatch_child_properties_changed    (GtkWidget        *object,
538                                                                  guint             n_pspecs,
539                                                                  GParamSpec      **pspecs);
540 static gboolean         gtk_widget_real_key_press_event         (GtkWidget        *widget,
541                                                                  GdkEventKey      *event);
542 static gboolean         gtk_widget_real_key_release_event       (GtkWidget        *widget,
543                                                                  GdkEventKey      *event);
544 static gboolean         gtk_widget_real_focus_in_event           (GtkWidget       *widget,
545                                                                   GdkEventFocus   *event);
546 static gboolean         gtk_widget_real_focus_out_event         (GtkWidget        *widget,
547                                                                  GdkEventFocus    *event);
548 static gboolean         gtk_widget_real_focus                   (GtkWidget        *widget,
549                                                                  GtkDirectionType  direction);
550 static void             gtk_widget_real_move_focus              (GtkWidget        *widget,
551                                                                  GtkDirectionType  direction);
552 static gboolean         gtk_widget_real_keynav_failed           (GtkWidget        *widget,
553                                                                  GtkDirectionType  direction);
554 static PangoContext*    gtk_widget_peek_pango_context           (GtkWidget        *widget);
555 static void             gtk_widget_update_pango_context         (GtkWidget        *widget);
556 static void             gtk_widget_propagate_state              (GtkWidget        *widget,
557                                                                  GtkStateData     *data);
558 static void             gtk_widget_reset_rc_style               (GtkWidget        *widget);
559 static void             gtk_widget_set_style_internal           (GtkWidget        *widget,
560                                                                  GtkStyle         *style,
561                                                                  gboolean          initial_emission);
562 static gint             gtk_widget_event_internal               (GtkWidget        *widget,
563                                                                  GdkEvent         *event);
564 static gboolean         gtk_widget_real_mnemonic_activate       (GtkWidget        *widget,
565                                                                  gboolean          group_cycling);
566 static void             gtk_widget_real_get_width               (GtkWidget        *widget,
567                                                                  gint             *minimum_size,
568                                                                  gint             *natural_size);
569 static void             gtk_widget_real_get_height              (GtkWidget        *widget,
570                                                                  gint             *minimum_size,
571                                                                  gint             *natural_size);
572 static void             gtk_widget_real_get_height_for_width    (GtkWidget        *widget,
573                                                                  gint              width,
574                                                                  gint             *minimum_height,
575                                                                  gint             *natural_height);
576 static void             gtk_widget_real_get_width_for_height    (GtkWidget        *widget,
577                                                                  gint              height,
578                                                                  gint             *minimum_width,
579                                                                  gint             *natural_width);
580 static const GtkWidgetAuxInfo* _gtk_widget_get_aux_info_or_defaults (GtkWidget *widget);
581 static void             gtk_widget_aux_info_destroy             (GtkWidgetAuxInfo *aux_info);
582 static AtkObject*       gtk_widget_real_get_accessible          (GtkWidget        *widget);
583 static void             gtk_widget_accessible_interface_init    (AtkImplementorIface *iface);
584 static AtkObject*       gtk_widget_ref_accessible               (AtkImplementor *implementor);
585 static void             gtk_widget_invalidate_widget_windows    (GtkWidget        *widget,
586                                                                  cairo_region_t        *region);
587 static GdkScreen *      gtk_widget_get_screen_unchecked         (GtkWidget        *widget);
588 static void             gtk_widget_queue_shallow_draw           (GtkWidget        *widget);
589 static gboolean         gtk_widget_real_can_activate_accel      (GtkWidget *widget,
590                                                                  guint      signal_id);
591
592 static void             gtk_widget_real_set_has_tooltip         (GtkWidget *widget,
593                                                                  gboolean   has_tooltip,
594                                                                  gboolean   force);
595 static void             gtk_widget_buildable_interface_init     (GtkBuildableIface *iface);
596 static void             gtk_widget_buildable_set_name           (GtkBuildable     *buildable,
597                                                                  const gchar      *name);
598 static const gchar *    gtk_widget_buildable_get_name           (GtkBuildable     *buildable);
599 static GObject *        gtk_widget_buildable_get_internal_child (GtkBuildable *buildable,
600                                                                  GtkBuilder   *builder,
601                                                                  const gchar  *childname);
602 static void             gtk_widget_buildable_set_buildable_property (GtkBuildable     *buildable,
603                                                                      GtkBuilder       *builder,
604                                                                      const gchar      *name,
605                                                                      const GValue     *value);
606 static gboolean         gtk_widget_buildable_custom_tag_start   (GtkBuildable     *buildable,
607                                                                  GtkBuilder       *builder,
608                                                                  GObject          *child,
609                                                                  const gchar      *tagname,
610                                                                  GMarkupParser    *parser,
611                                                                  gpointer         *data);
612 static void             gtk_widget_buildable_custom_finished    (GtkBuildable     *buildable,
613                                                                  GtkBuilder       *builder,
614                                                                  GObject          *child,
615                                                                  const gchar      *tagname,
616                                                                  gpointer          data);
617 static void             gtk_widget_buildable_parser_finished    (GtkBuildable     *buildable,
618                                                                  GtkBuilder       *builder);
619
620 static void             gtk_widget_real_get_width               (GtkWidget         *widget,
621                                                                  gint              *minimum_size,
622                                                                  gint              *natural_size);
623 static void             gtk_widget_real_get_height              (GtkWidget         *widget,
624                                                                  gint              *minimum_size,
625                                                                  gint              *natural_size);
626
627 static void             gtk_widget_queue_tooltip_query          (GtkWidget *widget);
628
629
630 static void             gtk_widget_real_adjust_size_request     (GtkWidget         *widget,
631                                                                  GtkOrientation     orientation,
632                                                                  gint              *minimum_size,
633                                                                  gint              *natural_size);
634 static void             gtk_widget_real_adjust_size_allocation  (GtkWidget         *widget,
635                                                                  GtkOrientation     orientation,
636                                                                  gint              *natural_size,
637                                                                  gint              *allocated_pos,
638                                                                  gint              *allocated_size);
639
640 static void gtk_widget_set_usize_internal (GtkWidget          *widget,
641                                            gint                width,
642                                            gint                height,
643                                            GtkQueueResizeFlags flags);
644
645 static void gtk_widget_add_events_internal (GtkWidget *widget,
646                                             GdkDevice *device,
647                                             gint       events);
648
649 /* --- variables --- */
650 static gpointer         gtk_widget_parent_class = NULL;
651 static guint            widget_signals[LAST_SIGNAL] = { 0 };
652 static GtkStyle        *gtk_default_style = NULL;
653 static guint            composite_child_stack = 0;
654 static GtkTextDirection gtk_default_direction = GTK_TEXT_DIR_LTR;
655 static GParamSpecPool  *style_property_spec_pool = NULL;
656
657 static GQuark           quark_property_parser = 0;
658 static GQuark           quark_aux_info = 0;
659 static GQuark           quark_accel_path = 0;
660 static GQuark           quark_accel_closures = 0;
661 static GQuark           quark_event_mask = 0;
662 static GQuark           quark_device_event_mask = 0;
663 static GQuark           quark_extension_event_mode = 0;
664 static GQuark           quark_parent_window = 0;
665 static GQuark           quark_pointer_window = 0;
666 static GQuark           quark_shape_info = 0;
667 static GQuark           quark_input_shape_info = 0;
668 static GQuark           quark_pango_context = 0;
669 static GQuark           quark_rc_style = 0;
670 static GQuark           quark_accessible_object = 0;
671 static GQuark           quark_mnemonic_labels = 0;
672 static GQuark           quark_tooltip_markup = 0;
673 static GQuark           quark_has_tooltip = 0;
674 static GQuark           quark_tooltip_window = 0;
675 static GQuark           quark_visual = 0;
676 static GQuark           quark_style_context = 0;
677 GParamSpecPool         *_gtk_widget_child_property_pool = NULL;
678 GObjectNotifyContext   *_gtk_widget_child_property_notify_context = NULL;
679
680 /* --- functions --- */
681 GType
682 gtk_widget_get_type (void)
683 {
684   static GType widget_type = 0;
685
686   if (G_UNLIKELY (widget_type == 0))
687     {
688       const GTypeInfo widget_info =
689       {
690         sizeof (GtkWidgetClass),
691         NULL,           /* base_init */
692         (GBaseFinalizeFunc) gtk_widget_base_class_finalize,
693         (GClassInitFunc) gtk_widget_class_init,
694         NULL,           /* class_finalize */
695         NULL,           /* class_init */
696         sizeof (GtkWidget),
697         0,              /* n_preallocs */
698         (GInstanceInitFunc) gtk_widget_init,
699         NULL,           /* value_table */
700       };
701
702       const GInterfaceInfo accessibility_info =
703       {
704         (GInterfaceInitFunc) gtk_widget_accessible_interface_init,
705         (GInterfaceFinalizeFunc) NULL,
706         NULL /* interface data */
707       };
708
709       const GInterfaceInfo buildable_info =
710       {
711         (GInterfaceInitFunc) gtk_widget_buildable_interface_init,
712         (GInterfaceFinalizeFunc) NULL,
713         NULL /* interface data */
714       };
715
716       widget_type = g_type_register_static (G_TYPE_INITIALLY_UNOWNED, "GtkWidget",
717                                             &widget_info, G_TYPE_FLAG_ABSTRACT);
718
719       g_type_add_interface_static (widget_type, ATK_TYPE_IMPLEMENTOR,
720                                    &accessibility_info) ;
721       g_type_add_interface_static (widget_type, GTK_TYPE_BUILDABLE,
722                                    &buildable_info) ;
723     }
724
725   return widget_type;
726 }
727
728 static void
729 child_property_notify_dispatcher (GObject     *object,
730                                   guint        n_pspecs,
731                                   GParamSpec **pspecs)
732 {
733   GTK_WIDGET_GET_CLASS (object)->dispatch_child_properties_changed (GTK_WIDGET (object), n_pspecs, pspecs);
734 }
735
736 /* We guard against the draw signal callbacks modifying the state of the
737  * cairo context by surounding it with save/restore.
738  * Maybe we should also cairo_new_path() just to be sure?
739  */
740 static void
741 gtk_widget_draw_marshaller (GClosure     *closure,
742                             GValue       *return_value,
743                             guint         n_param_values,
744                             const GValue *param_values,
745                             gpointer      invocation_hint,
746                             gpointer      marshal_data)
747 {
748   cairo_t *cr = g_value_get_boxed (&param_values[1]);
749
750   cairo_save (cr);
751
752   _gtk_marshal_BOOLEAN__BOXED (closure,
753                                return_value,
754                                n_param_values,
755                                param_values,
756                                invocation_hint,
757                                marshal_data);
758
759   cairo_restore (cr);
760 }
761
762 static void
763 gtk_widget_class_init (GtkWidgetClass *klass)
764 {
765   static GObjectNotifyContext cpn_context = { 0, NULL, NULL };
766   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
767   GtkBindingSet *binding_set;
768
769   gtk_widget_parent_class = g_type_class_peek_parent (klass);
770
771   quark_property_parser = g_quark_from_static_string ("gtk-rc-property-parser");
772   quark_aux_info = g_quark_from_static_string ("gtk-aux-info");
773   quark_accel_path = g_quark_from_static_string ("gtk-accel-path");
774   quark_accel_closures = g_quark_from_static_string ("gtk-accel-closures");
775   quark_event_mask = g_quark_from_static_string ("gtk-event-mask");
776   quark_device_event_mask = g_quark_from_static_string ("gtk-device-event-mask");
777   quark_extension_event_mode = g_quark_from_static_string ("gtk-extension-event-mode");
778   quark_parent_window = g_quark_from_static_string ("gtk-parent-window");
779   quark_pointer_window = g_quark_from_static_string ("gtk-pointer-window");
780   quark_shape_info = g_quark_from_static_string ("gtk-shape-info");
781   quark_input_shape_info = g_quark_from_static_string ("gtk-input-shape-info");
782   quark_pango_context = g_quark_from_static_string ("gtk-pango-context");
783   quark_rc_style = g_quark_from_static_string ("gtk-rc-style");
784   quark_accessible_object = g_quark_from_static_string ("gtk-accessible-object");
785   quark_mnemonic_labels = g_quark_from_static_string ("gtk-mnemonic-labels");
786   quark_tooltip_markup = g_quark_from_static_string ("gtk-tooltip-markup");
787   quark_has_tooltip = g_quark_from_static_string ("gtk-has-tooltip");
788   quark_tooltip_window = g_quark_from_static_string ("gtk-tooltip-window");
789   quark_visual = g_quark_from_static_string ("gtk-widget-visual");
790   quark_style_context = g_quark_from_static_string ("gtk-style-context");
791
792   style_property_spec_pool = g_param_spec_pool_new (FALSE);
793   _gtk_widget_child_property_pool = g_param_spec_pool_new (TRUE);
794   cpn_context.quark_notify_queue = g_quark_from_static_string ("GtkWidget-child-property-notify-queue");
795   cpn_context.dispatcher = child_property_notify_dispatcher;
796   _gtk_widget_child_property_notify_context = &cpn_context;
797
798   gobject_class->dispose = gtk_widget_dispose;
799   gobject_class->finalize = gtk_widget_finalize;
800   gobject_class->set_property = gtk_widget_set_property;
801   gobject_class->get_property = gtk_widget_get_property;
802
803   klass->destroy = gtk_widget_real_destroy;
804
805   klass->activate_signal = 0;
806   klass->dispatch_child_properties_changed = gtk_widget_dispatch_child_properties_changed;
807   klass->show = gtk_widget_real_show;
808   klass->show_all = gtk_widget_show;
809   klass->hide = gtk_widget_real_hide;
810   klass->map = gtk_widget_real_map;
811   klass->unmap = gtk_widget_real_unmap;
812   klass->realize = gtk_widget_real_realize;
813   klass->unrealize = gtk_widget_real_unrealize;
814   klass->size_allocate = gtk_widget_real_size_allocate;
815   klass->get_preferred_width = gtk_widget_real_get_width;
816   klass->get_preferred_height = gtk_widget_real_get_height;
817   klass->get_preferred_width_for_height = gtk_widget_real_get_width_for_height;
818   klass->get_preferred_height_for_width = gtk_widget_real_get_height_for_width;
819   klass->state_changed = NULL;
820   klass->parent_set = NULL;
821   klass->hierarchy_changed = NULL;
822   klass->style_set = gtk_widget_real_style_set;
823   klass->direction_changed = gtk_widget_real_direction_changed;
824   klass->grab_notify = NULL;
825   klass->child_notify = NULL;
826   klass->draw = NULL;
827   klass->mnemonic_activate = gtk_widget_real_mnemonic_activate;
828   klass->grab_focus = gtk_widget_real_grab_focus;
829   klass->focus = gtk_widget_real_focus;
830   klass->move_focus = gtk_widget_real_move_focus;
831   klass->keynav_failed = gtk_widget_real_keynav_failed;
832   klass->event = NULL;
833   klass->button_press_event = NULL;
834   klass->button_release_event = NULL;
835   klass->motion_notify_event = NULL;
836   klass->delete_event = NULL;
837   klass->destroy_event = NULL;
838   klass->key_press_event = gtk_widget_real_key_press_event;
839   klass->key_release_event = gtk_widget_real_key_release_event;
840   klass->enter_notify_event = NULL;
841   klass->leave_notify_event = NULL;
842   klass->configure_event = NULL;
843   klass->focus_in_event = gtk_widget_real_focus_in_event;
844   klass->focus_out_event = gtk_widget_real_focus_out_event;
845   klass->map_event = NULL;
846   klass->unmap_event = NULL;
847   klass->window_state_event = NULL;
848   klass->property_notify_event = _gtk_selection_property_notify;
849   klass->selection_clear_event = _gtk_selection_clear;
850   klass->selection_request_event = _gtk_selection_request;
851   klass->selection_notify_event = _gtk_selection_notify;
852   klass->selection_received = NULL;
853   klass->proximity_in_event = NULL;
854   klass->proximity_out_event = NULL;
855   klass->drag_begin = NULL;
856   klass->drag_end = NULL;
857   klass->drag_data_delete = NULL;
858   klass->drag_leave = NULL;
859   klass->drag_motion = NULL;
860   klass->drag_drop = NULL;
861   klass->drag_data_received = NULL;
862   klass->screen_changed = NULL;
863   klass->can_activate_accel = gtk_widget_real_can_activate_accel;
864   klass->grab_broken_event = NULL;
865   klass->query_tooltip = gtk_widget_real_query_tooltip;
866
867   klass->show_help = gtk_widget_real_show_help;
868
869   /* Accessibility support */
870   klass->get_accessible = gtk_widget_real_get_accessible;
871
872   klass->adjust_size_request = gtk_widget_real_adjust_size_request;
873   klass->adjust_size_allocation = gtk_widget_real_adjust_size_allocation;
874
875   g_object_class_install_property (gobject_class,
876                                    PROP_NAME,
877                                    g_param_spec_string ("name",
878                                                         P_("Widget name"),
879                                                         P_("The name of the widget"),
880                                                         NULL,
881                                                         GTK_PARAM_READWRITE));
882   g_object_class_install_property (gobject_class,
883                                    PROP_PARENT,
884                                    g_param_spec_object ("parent",
885                                                         P_("Parent widget"),
886                                                         P_("The parent widget of this widget. Must be a Container widget"),
887                                                         GTK_TYPE_CONTAINER,
888                                                         GTK_PARAM_READWRITE));
889
890   g_object_class_install_property (gobject_class,
891                                    PROP_WIDTH_REQUEST,
892                                    g_param_spec_int ("width-request",
893                                                      P_("Width request"),
894                                                      P_("Override for width request of the widget, or -1 if natural request should be used"),
895                                                      -1,
896                                                      G_MAXINT,
897                                                      -1,
898                                                      GTK_PARAM_READWRITE));
899   g_object_class_install_property (gobject_class,
900                                    PROP_HEIGHT_REQUEST,
901                                    g_param_spec_int ("height-request",
902                                                      P_("Height request"),
903                                                      P_("Override for height request of the widget, or -1 if natural request should be used"),
904                                                      -1,
905                                                      G_MAXINT,
906                                                      -1,
907                                                      GTK_PARAM_READWRITE));
908   g_object_class_install_property (gobject_class,
909                                    PROP_VISIBLE,
910                                    g_param_spec_boolean ("visible",
911                                                          P_("Visible"),
912                                                          P_("Whether the widget is visible"),
913                                                          FALSE,
914                                                          GTK_PARAM_READWRITE));
915   g_object_class_install_property (gobject_class,
916                                    PROP_SENSITIVE,
917                                    g_param_spec_boolean ("sensitive",
918                                                          P_("Sensitive"),
919                                                          P_("Whether the widget responds to input"),
920                                                          TRUE,
921                                                          GTK_PARAM_READWRITE));
922   g_object_class_install_property (gobject_class,
923                                    PROP_APP_PAINTABLE,
924                                    g_param_spec_boolean ("app-paintable",
925                                                          P_("Application paintable"),
926                                                          P_("Whether the application will paint directly on the widget"),
927                                                          FALSE,
928                                                          GTK_PARAM_READWRITE));
929   g_object_class_install_property (gobject_class,
930                                    PROP_CAN_FOCUS,
931                                    g_param_spec_boolean ("can-focus",
932                                                          P_("Can focus"),
933                                                          P_("Whether the widget can accept the input focus"),
934                                                          FALSE,
935                                                          GTK_PARAM_READWRITE));
936   g_object_class_install_property (gobject_class,
937                                    PROP_HAS_FOCUS,
938                                    g_param_spec_boolean ("has-focus",
939                                                          P_("Has focus"),
940                                                          P_("Whether the widget has the input focus"),
941                                                          FALSE,
942                                                          GTK_PARAM_READWRITE));
943   g_object_class_install_property (gobject_class,
944                                    PROP_IS_FOCUS,
945                                    g_param_spec_boolean ("is-focus",
946                                                          P_("Is focus"),
947                                                          P_("Whether the widget is the focus widget within the toplevel"),
948                                                          FALSE,
949                                                          GTK_PARAM_READWRITE));
950   g_object_class_install_property (gobject_class,
951                                    PROP_CAN_DEFAULT,
952                                    g_param_spec_boolean ("can-default",
953                                                          P_("Can default"),
954                                                          P_("Whether the widget can be the default widget"),
955                                                          FALSE,
956                                                          GTK_PARAM_READWRITE));
957   g_object_class_install_property (gobject_class,
958                                    PROP_HAS_DEFAULT,
959                                    g_param_spec_boolean ("has-default",
960                                                          P_("Has default"),
961                                                          P_("Whether the widget is the default widget"),
962                                                          FALSE,
963                                                          GTK_PARAM_READWRITE));
964   g_object_class_install_property (gobject_class,
965                                    PROP_RECEIVES_DEFAULT,
966                                    g_param_spec_boolean ("receives-default",
967                                                          P_("Receives default"),
968                                                          P_("If TRUE, the widget will receive the default action when it is focused"),
969                                                          FALSE,
970                                                          GTK_PARAM_READWRITE));
971   g_object_class_install_property (gobject_class,
972                                    PROP_COMPOSITE_CHILD,
973                                    g_param_spec_boolean ("composite-child",
974                                                          P_("Composite child"),
975                                                          P_("Whether the widget is part of a composite widget"),
976                                                          FALSE,
977                                                          GTK_PARAM_READABLE));
978   g_object_class_install_property (gobject_class,
979                                    PROP_STYLE,
980                                    g_param_spec_object ("style",
981                                                         P_("Style"),
982                                                         P_("The style of the widget, which contains information about how it will look (colors etc)"),
983                                                         GTK_TYPE_STYLE,
984                                                         GTK_PARAM_READWRITE));
985   g_object_class_install_property (gobject_class,
986                                    PROP_EVENTS,
987                                    g_param_spec_flags ("events",
988                                                        P_("Events"),
989                                                        P_("The event mask that decides what kind of GdkEvents this widget gets"),
990                                                        GDK_TYPE_EVENT_MASK,
991                                                        GDK_STRUCTURE_MASK,
992                                                        GTK_PARAM_READWRITE));
993   g_object_class_install_property (gobject_class,
994                                    PROP_EXTENSION_EVENTS,
995                                    g_param_spec_enum ("extension-events",
996                                                       P_("Extension events"),
997                                                       P_("The mask that decides what kind of extension events this widget gets"),
998                                                       GDK_TYPE_EXTENSION_MODE,
999                                                       GDK_EXTENSION_EVENTS_NONE,
1000                                                       GTK_PARAM_READWRITE));
1001   g_object_class_install_property (gobject_class,
1002                                    PROP_NO_SHOW_ALL,
1003                                    g_param_spec_boolean ("no-show-all",
1004                                                          P_("No show all"),
1005                                                          P_("Whether gtk_widget_show_all() should not affect this widget"),
1006                                                          FALSE,
1007                                                          GTK_PARAM_READWRITE));
1008
1009 /**
1010  * GtkWidget:has-tooltip:
1011  *
1012  * Enables or disables the emission of #GtkWidget::query-tooltip on @widget.
1013  * A value of %TRUE indicates that @widget can have a tooltip, in this case
1014  * the widget will be queried using #GtkWidget::query-tooltip to determine
1015  * whether it will provide a tooltip or not.
1016  *
1017  * Note that setting this property to %TRUE for the first time will change
1018  * the event masks of the GdkWindows of this widget to include leave-notify
1019  * and motion-notify events.  This cannot and will not be undone when the
1020  * property is set to %FALSE again.
1021  *
1022  * Since: 2.12
1023  */
1024   g_object_class_install_property (gobject_class,
1025                                    PROP_HAS_TOOLTIP,
1026                                    g_param_spec_boolean ("has-tooltip",
1027                                                          P_("Has tooltip"),
1028                                                          P_("Whether this widget has a tooltip"),
1029                                                          FALSE,
1030                                                          GTK_PARAM_READWRITE));
1031   /**
1032    * GtkWidget:tooltip-text:
1033    *
1034    * Sets the text of tooltip to be the given string.
1035    *
1036    * Also see gtk_tooltip_set_text().
1037    *
1038    * This is a convenience property which will take care of getting the
1039    * tooltip shown if the given string is not %NULL: #GtkWidget:has-tooltip
1040    * will automatically be set to %TRUE and there will be taken care of
1041    * #GtkWidget::query-tooltip in the default signal handler.
1042    *
1043    * Since: 2.12
1044    */
1045   g_object_class_install_property (gobject_class,
1046                                    PROP_TOOLTIP_TEXT,
1047                                    g_param_spec_string ("tooltip-text",
1048                                                         P_("Tooltip Text"),
1049                                                         P_("The contents of the tooltip for this widget"),
1050                                                         NULL,
1051                                                         GTK_PARAM_READWRITE));
1052   /**
1053    * GtkWidget:tooltip-markup:
1054    *
1055    * Sets the text of tooltip to be the given string, which is marked up
1056    * with the <link linkend="PangoMarkupFormat">Pango text markup language</link>.
1057    * Also see gtk_tooltip_set_markup().
1058    *
1059    * This is a convenience property which will take care of getting the
1060    * tooltip shown if the given string is not %NULL: #GtkWidget:has-tooltip
1061    * will automatically be set to %TRUE and there will be taken care of
1062    * #GtkWidget::query-tooltip in the default signal handler.
1063    *
1064    * Since: 2.12
1065    */
1066   g_object_class_install_property (gobject_class,
1067                                    PROP_TOOLTIP_MARKUP,
1068                                    g_param_spec_string ("tooltip-markup",
1069                                                         P_("Tooltip markup"),
1070                                                         P_("The contents of the tooltip for this widget"),
1071                                                         NULL,
1072                                                         GTK_PARAM_READWRITE));
1073
1074   /**
1075    * GtkWidget:window:
1076    *
1077    * The widget's window if it is realized, %NULL otherwise.
1078    *
1079    * Since: 2.14
1080    */
1081   g_object_class_install_property (gobject_class,
1082                                    PROP_WINDOW,
1083                                    g_param_spec_object ("window",
1084                                                         P_("Window"),
1085                                                         P_("The widget's window if it is realized"),
1086                                                         GDK_TYPE_WINDOW,
1087                                                         GTK_PARAM_READABLE));
1088
1089   /**
1090    * GtkWidget:double-buffered
1091    *
1092    * Whether the widget is double buffered.
1093    *
1094    * Since: 2.18
1095    */
1096   g_object_class_install_property (gobject_class,
1097                                    PROP_DOUBLE_BUFFERED,
1098                                    g_param_spec_boolean ("double-buffered",
1099                                                          P_("Double Buffered"),
1100                                                          P_("Whether the widget is double buffered"),
1101                                                          TRUE,
1102                                                          GTK_PARAM_READWRITE));
1103
1104   /**
1105    * GtkWidget:halign:
1106    *
1107    * How to distribute horizontal space if widget gets extra space, see #GtkAlign
1108    *
1109    * Since: 3.0
1110    */
1111   g_object_class_install_property (gobject_class,
1112                                    PROP_HALIGN,
1113                                    g_param_spec_enum ("halign",
1114                                                       P_("Horizontal Alignment"),
1115                                                       P_("How to position in extra horizontal space"),
1116                                                       GTK_TYPE_ALIGN,
1117                                                       GTK_ALIGN_FILL,
1118                                                       GTK_PARAM_READWRITE));
1119
1120   /**
1121    * GtkWidget:valign:
1122    *
1123    * How to distribute vertical space if widget gets extra space, see #GtkAlign
1124    *
1125    * Since: 3.0
1126    */
1127   g_object_class_install_property (gobject_class,
1128                                    PROP_VALIGN,
1129                                    g_param_spec_enum ("valign",
1130                                                       P_("Vertical Alignment"),
1131                                                       P_("How to position in extra vertical space"),
1132                                                       GTK_TYPE_ALIGN,
1133                                                       GTK_ALIGN_FILL,
1134                                                       GTK_PARAM_READWRITE));
1135
1136   /**
1137    * GtkWidget:margin-left
1138    *
1139    * Margin on left side of widget.
1140    *
1141    * This property adds margin outside of the widget's normal size
1142    * request, the margin will be added in addition to the size from
1143    * gtk_widget_set_size_request() for example.
1144    *
1145    * Since: 3.0
1146    */
1147   g_object_class_install_property (gobject_class,
1148                                    PROP_MARGIN_LEFT,
1149                                    g_param_spec_int ("margin-left",
1150                                                      P_("Margin on Left"),
1151                                                      P_("Pixels of extra space on the left side"),
1152                                                      0,
1153                                                      G_MAXINT16,
1154                                                      0,
1155                                                      GTK_PARAM_READWRITE));
1156
1157   /**
1158    * GtkWidget:margin-right
1159    *
1160    * Margin on right side of widget.
1161    *
1162    * This property adds margin outside of the widget's normal size
1163    * request, the margin will be added in addition to the size from
1164    * gtk_widget_set_size_request() for example.
1165    *
1166    * Since: 3.0
1167    */
1168   g_object_class_install_property (gobject_class,
1169                                    PROP_MARGIN_RIGHT,
1170                                    g_param_spec_int ("margin-right",
1171                                                      P_("Margin on Right"),
1172                                                      P_("Pixels of extra space on the right side"),
1173                                                      0,
1174                                                      G_MAXINT16,
1175                                                      0,
1176                                                      GTK_PARAM_READWRITE));
1177
1178   /**
1179    * GtkWidget:margin-top
1180    *
1181    * Margin on top side of widget.
1182    *
1183    * This property adds margin outside of the widget's normal size
1184    * request, the margin will be added in addition to the size from
1185    * gtk_widget_set_size_request() for example.
1186    *
1187    * Since: 3.0
1188    */
1189   g_object_class_install_property (gobject_class,
1190                                    PROP_MARGIN_TOP,
1191                                    g_param_spec_int ("margin-top",
1192                                                      P_("Margin on Top"),
1193                                                      P_("Pixels of extra space on the top side"),
1194                                                      0,
1195                                                      G_MAXINT16,
1196                                                      0,
1197                                                      GTK_PARAM_READWRITE));
1198
1199   /**
1200    * GtkWidget:margin-bottom
1201    *
1202    * Margin on bottom side of widget.
1203    *
1204    * This property adds margin outside of the widget's normal size
1205    * request, the margin will be added in addition to the size from
1206    * gtk_widget_set_size_request() for example.
1207    *
1208    * Since: 3.0
1209    */
1210   g_object_class_install_property (gobject_class,
1211                                    PROP_MARGIN_BOTTOM,
1212                                    g_param_spec_int ("margin-bottom",
1213                                                      P_("Margin on Bottom"),
1214                                                      P_("Pixels of extra space on the bottom side"),
1215                                                      0,
1216                                                      G_MAXINT16,
1217                                                      0,
1218                                                      GTK_PARAM_READWRITE));
1219
1220   /**
1221    * GtkWidget:margin
1222    *
1223    * Sets all four sides' margin at once. If read, returns max
1224    * margin on any side.
1225    *
1226    * Since: 3.0
1227    */
1228   g_object_class_install_property (gobject_class,
1229                                    PROP_MARGIN,
1230                                    g_param_spec_int ("margin",
1231                                                      P_("All Margins"),
1232                                                      P_("Pixels of extra space on all four sides"),
1233                                                      0,
1234                                                      G_MAXINT16,
1235                                                      0,
1236                                                      GTK_PARAM_READWRITE));
1237
1238   /**
1239    * GtkWidget::destroy:
1240    * @object: the object which received the signal
1241    *
1242    * Signals that all holders of a reference to the widget should release
1243    * the reference that they hold. May result in finalization of the widget
1244    * if all references are released.
1245    */
1246   widget_signals[DESTROY] =
1247     g_signal_new (I_("destroy"),
1248                   G_TYPE_FROM_CLASS (gobject_class),
1249                   G_SIGNAL_RUN_CLEANUP | G_SIGNAL_NO_RECURSE | G_SIGNAL_NO_HOOKS,
1250                   G_STRUCT_OFFSET (GtkWidgetClass, destroy),
1251                   NULL, NULL,
1252                   _gtk_marshal_VOID__VOID,
1253                   G_TYPE_NONE, 0);
1254
1255   /**
1256    * GtkWidget:hexpand
1257    *
1258    * Whether to expand horizontally. See gtk_widget_set_hexpand().
1259    *
1260    * Since: 3.0
1261    */
1262   g_object_class_install_property (gobject_class,
1263                                    PROP_HEXPAND,
1264                                    g_param_spec_boolean ("hexpand",
1265                                                          P_("Horizontal Expand"),
1266                                                          P_("Whether widget wants more horizontal space"),
1267                                                          FALSE,
1268                                                          GTK_PARAM_READWRITE));
1269
1270   /**
1271    * GtkWidget:hexpand-set
1272    *
1273    * Whether to use the #GtkWidget:hexpand property. See gtk_widget_get_hexpand_set().
1274    *
1275    * Since: 3.0
1276    */
1277   g_object_class_install_property (gobject_class,
1278                                    PROP_HEXPAND_SET,
1279                                    g_param_spec_boolean ("hexpand-set",
1280                                                          P_("Horizontal Expand Set"),
1281                                                          P_("Whether to use the hexpand property"),
1282                                                          FALSE,
1283                                                          GTK_PARAM_READWRITE));
1284
1285   /**
1286    * GtkWidget:vexpand
1287    *
1288    * Whether to expand vertically. See gtk_widget_set_vexpand().
1289    *
1290    * Since: 3.0
1291    */
1292   g_object_class_install_property (gobject_class,
1293                                    PROP_VEXPAND,
1294                                    g_param_spec_boolean ("vexpand",
1295                                                          P_("Vertical Expand"),
1296                                                          P_("Whether widget wants more vertical space"),
1297                                                          FALSE,
1298                                                          GTK_PARAM_READWRITE));
1299
1300   /**
1301    * GtkWidget:vexpand-set
1302    *
1303    * Whether to use the #GtkWidget:vexpand property. See gtk_widget_get_vexpand_set().
1304    *
1305    * Since: 3.0
1306    */
1307   g_object_class_install_property (gobject_class,
1308                                    PROP_VEXPAND_SET,
1309                                    g_param_spec_boolean ("vexpand-set",
1310                                                          P_("Vertical Expand Set"),
1311                                                          P_("Whether to use the vexpand property"),
1312                                                          FALSE,
1313                                                          GTK_PARAM_READWRITE));
1314
1315   /**
1316    * GtkWidget:expand
1317    *
1318    * Whether to expand in both directions. Setting this sets both #GtkWidget:hexpand and #GtkWidget:vexpand
1319    *
1320    * Since: 3.0
1321    */
1322   g_object_class_install_property (gobject_class,
1323                                    PROP_EXPAND,
1324                                    g_param_spec_boolean ("expand",
1325                                                          P_("Expand Both"),
1326                                                          P_("Whether widget wants to expand in both directions"),
1327                                                          FALSE,
1328                                                          GTK_PARAM_READWRITE));
1329
1330   /**
1331    * GtkWidget::show:
1332    * @widget: the object which received the signal.
1333    */
1334   widget_signals[SHOW] =
1335     g_signal_new (I_("show"),
1336                   G_TYPE_FROM_CLASS (gobject_class),
1337                   G_SIGNAL_RUN_FIRST,
1338                   G_STRUCT_OFFSET (GtkWidgetClass, show),
1339                   NULL, NULL,
1340                   _gtk_marshal_VOID__VOID,
1341                   G_TYPE_NONE, 0);
1342
1343   /**
1344    * GtkWidget::hide:
1345    * @widget: the object which received the signal.
1346    */
1347   widget_signals[HIDE] =
1348     g_signal_new (I_("hide"),
1349                   G_TYPE_FROM_CLASS (gobject_class),
1350                   G_SIGNAL_RUN_FIRST,
1351                   G_STRUCT_OFFSET (GtkWidgetClass, hide),
1352                   NULL, NULL,
1353                   _gtk_marshal_VOID__VOID,
1354                   G_TYPE_NONE, 0);
1355
1356   /**
1357    * GtkWidget::map:
1358    * @widget: the object which received the signal.
1359    */
1360   widget_signals[MAP] =
1361     g_signal_new (I_("map"),
1362                   G_TYPE_FROM_CLASS (gobject_class),
1363                   G_SIGNAL_RUN_FIRST,
1364                   G_STRUCT_OFFSET (GtkWidgetClass, map),
1365                   NULL, NULL,
1366                   _gtk_marshal_VOID__VOID,
1367                   G_TYPE_NONE, 0);
1368
1369   /**
1370    * GtkWidget::unmap:
1371    * @widget: the object which received the signal.
1372    */
1373   widget_signals[UNMAP] =
1374     g_signal_new (I_("unmap"),
1375                   G_TYPE_FROM_CLASS (gobject_class),
1376                   G_SIGNAL_RUN_FIRST,
1377                   G_STRUCT_OFFSET (GtkWidgetClass, unmap),
1378                   NULL, NULL,
1379                   _gtk_marshal_VOID__VOID,
1380                   G_TYPE_NONE, 0);
1381
1382   /**
1383    * GtkWidget::realize:
1384    * @widget: the object which received the signal.
1385    */
1386   widget_signals[REALIZE] =
1387     g_signal_new (I_("realize"),
1388                   G_TYPE_FROM_CLASS (gobject_class),
1389                   G_SIGNAL_RUN_FIRST,
1390                   G_STRUCT_OFFSET (GtkWidgetClass, realize),
1391                   NULL, NULL,
1392                   _gtk_marshal_VOID__VOID,
1393                   G_TYPE_NONE, 0);
1394
1395   /**
1396    * GtkWidget::unrealize:
1397    * @widget: the object which received the signal.
1398    */
1399   widget_signals[UNREALIZE] =
1400     g_signal_new (I_("unrealize"),
1401                   G_TYPE_FROM_CLASS (gobject_class),
1402                   G_SIGNAL_RUN_LAST,
1403                   G_STRUCT_OFFSET (GtkWidgetClass, unrealize),
1404                   NULL, NULL,
1405                   _gtk_marshal_VOID__VOID,
1406                   G_TYPE_NONE, 0);
1407
1408   /**
1409    * GtkWidget::size-allocate:
1410    * @widget: the object which received the signal.
1411    * @allocation:
1412    */
1413   widget_signals[SIZE_ALLOCATE] =
1414     g_signal_new (I_("size-allocate"),
1415                   G_TYPE_FROM_CLASS (gobject_class),
1416                   G_SIGNAL_RUN_FIRST,
1417                   G_STRUCT_OFFSET (GtkWidgetClass, size_allocate),
1418                   NULL, NULL,
1419                   _gtk_marshal_VOID__BOXED,
1420                   G_TYPE_NONE, 1,
1421                   GDK_TYPE_RECTANGLE | G_SIGNAL_TYPE_STATIC_SCOPE);
1422
1423   /**
1424    * GtkWidget::state-changed:
1425    * @widget: the object which received the signal.
1426    * @state: the previous state
1427    *
1428    * The ::state-changed signal is emitted when the widget state changes.
1429    * See gtk_widget_get_state().
1430    */
1431   widget_signals[STATE_CHANGED] =
1432     g_signal_new (I_("state-changed"),
1433                   G_TYPE_FROM_CLASS (gobject_class),
1434                   G_SIGNAL_RUN_FIRST,
1435                   G_STRUCT_OFFSET (GtkWidgetClass, state_changed),
1436                   NULL, NULL,
1437                   _gtk_marshal_VOID__ENUM,
1438                   G_TYPE_NONE, 1,
1439                   GTK_TYPE_STATE_TYPE);
1440
1441   /**
1442    * GtkWidget::parent-set:
1443    * @widget: the object on which the signal is emitted
1444    * @old_parent: (allow-none): the previous parent, or %NULL if the widget
1445    *   just got its initial parent.
1446    *
1447    * The ::parent-set signal is emitted when a new parent
1448    * has been set on a widget.
1449    */
1450   widget_signals[PARENT_SET] =
1451     g_signal_new (I_("parent-set"),
1452                   G_TYPE_FROM_CLASS (gobject_class),
1453                   G_SIGNAL_RUN_FIRST,
1454                   G_STRUCT_OFFSET (GtkWidgetClass, parent_set),
1455                   NULL, NULL,
1456                   _gtk_marshal_VOID__OBJECT,
1457                   G_TYPE_NONE, 1,
1458                   GTK_TYPE_WIDGET);
1459
1460   /**
1461    * GtkWidget::hierarchy-changed:
1462    * @widget: the object on which the signal is emitted
1463    * @previous_toplevel: (allow-none): the previous toplevel ancestor, or %NULL
1464    *   if the widget was previously unanchored
1465    *
1466    * The ::hierarchy-changed signal is emitted when the
1467    * anchored state of a widget changes. A widget is
1468    * <firstterm>anchored</firstterm> when its toplevel
1469    * ancestor is a #GtkWindow. This signal is emitted when
1470    * a widget changes from un-anchored to anchored or vice-versa.
1471    */
1472   widget_signals[HIERARCHY_CHANGED] =
1473     g_signal_new (I_("hierarchy-changed"),
1474                   G_TYPE_FROM_CLASS (gobject_class),
1475                   G_SIGNAL_RUN_LAST,
1476                   G_STRUCT_OFFSET (GtkWidgetClass, hierarchy_changed),
1477                   NULL, NULL,
1478                   _gtk_marshal_VOID__OBJECT,
1479                   G_TYPE_NONE, 1,
1480                   GTK_TYPE_WIDGET);
1481
1482   /**
1483    * GtkWidget::style-set:
1484    * @widget: the object on which the signal is emitted
1485    * @previous_style: (allow-none): the previous style, or %NULL if the widget
1486    *   just got its initial style
1487    *
1488    * The ::style-set signal is emitted when a new style has been set
1489    * on a widget. Note that style-modifying functions like
1490    * gtk_widget_modify_base() also cause this signal to be emitted.
1491    */
1492   widget_signals[STYLE_SET] =
1493     g_signal_new (I_("style-set"),
1494                   G_TYPE_FROM_CLASS (gobject_class),
1495                   G_SIGNAL_RUN_FIRST,
1496                   G_STRUCT_OFFSET (GtkWidgetClass, style_set),
1497                   NULL, NULL,
1498                   _gtk_marshal_VOID__OBJECT,
1499                   G_TYPE_NONE, 1,
1500                   GTK_TYPE_STYLE);
1501
1502   /**
1503    * GtkWidget::direction-changed:
1504    * @widget: the object on which the signal is emitted
1505    * @previous_direction: the previous text direction of @widget
1506    *
1507    * The ::direction-changed signal is emitted when the text direction
1508    * of a widget changes.
1509    */
1510   widget_signals[DIRECTION_CHANGED] =
1511     g_signal_new (I_("direction-changed"),
1512                   G_TYPE_FROM_CLASS (gobject_class),
1513                   G_SIGNAL_RUN_FIRST,
1514                   G_STRUCT_OFFSET (GtkWidgetClass, direction_changed),
1515                   NULL, NULL,
1516                   _gtk_marshal_VOID__ENUM,
1517                   G_TYPE_NONE, 1,
1518                   GTK_TYPE_TEXT_DIRECTION);
1519
1520   /**
1521    * GtkWidget::grab-notify:
1522    * @widget: the object which received the signal
1523    * @was_grabbed: %FALSE if the widget becomes shadowed, %TRUE
1524    *               if it becomes unshadowed
1525    *
1526    * The ::grab-notify signal is emitted when a widget becomes
1527    * shadowed by a GTK+ grab (not a pointer or keyboard grab) on
1528    * another widget, or when it becomes unshadowed due to a grab
1529    * being removed.
1530    *
1531    * A widget is shadowed by a gtk_grab_add() when the topmost
1532    * grab widget in the grab stack of its window group is not
1533    * its ancestor.
1534    */
1535   widget_signals[GRAB_NOTIFY] =
1536     g_signal_new (I_("grab-notify"),
1537                   G_TYPE_FROM_CLASS (gobject_class),
1538                   G_SIGNAL_RUN_FIRST,
1539                   G_STRUCT_OFFSET (GtkWidgetClass, grab_notify),
1540                   NULL, NULL,
1541                   _gtk_marshal_VOID__BOOLEAN,
1542                   G_TYPE_NONE, 1,
1543                   G_TYPE_BOOLEAN);
1544
1545   /**
1546    * GtkWidget::child-notify:
1547    * @widget: the object which received the signal
1548    * @pspec: the #GParamSpec of the changed child property
1549    *
1550    * The ::child-notify signal is emitted for each
1551    * <link linkend="child-properties">child property</link>  that has
1552    * changed on an object. The signal's detail holds the property name.
1553    */
1554   widget_signals[CHILD_NOTIFY] =
1555     g_signal_new (I_("child-notify"),
1556                    G_TYPE_FROM_CLASS (gobject_class),
1557                    G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE | G_SIGNAL_DETAILED | G_SIGNAL_NO_HOOKS,
1558                    G_STRUCT_OFFSET (GtkWidgetClass, child_notify),
1559                    NULL, NULL,
1560                    g_cclosure_marshal_VOID__PARAM,
1561                    G_TYPE_NONE, 1,
1562                    G_TYPE_PARAM);
1563
1564   /**
1565    * GtkWidget::draw:
1566    * @widget: the object which received the signal
1567    * @cr: the cairo context to draw to
1568    *
1569    * This signal is emitted when a widget is supposed to render itself.
1570    * The @widget's top left corner must be painted at the origin of
1571    * the passed in context and be sized to the values returned by
1572    * gtk_widget_get_allocated_width() and
1573    * gtk_widget_get_allocated_height().
1574    *
1575    * Signal handlers connected to this signal can modify the cairo
1576    * context passed as @cr in any way they like and don't need to
1577    * restore it. The signal emission takes care of calling cairo_save()
1578    * before and cairo_restore() after invoking the handler.
1579    */
1580   widget_signals[DRAW] =
1581     g_signal_new (I_("draw"),
1582                    G_TYPE_FROM_CLASS (gobject_class),
1583                    G_SIGNAL_RUN_LAST,
1584                    G_STRUCT_OFFSET (GtkWidgetClass, draw),
1585                    _gtk_boolean_handled_accumulator, NULL,
1586                    gtk_widget_draw_marshaller,
1587                    G_TYPE_BOOLEAN, 1,
1588                    CAIRO_GOBJECT_TYPE_CONTEXT);
1589
1590   /**
1591    * GtkWidget::mnemonic-activate:
1592    * @widget: the object which received the signal.
1593    * @arg1:
1594    */
1595   widget_signals[MNEMONIC_ACTIVATE] =
1596     g_signal_new (I_("mnemonic-activate"),
1597                   G_TYPE_FROM_CLASS (gobject_class),
1598                   G_SIGNAL_RUN_LAST,
1599                   G_STRUCT_OFFSET (GtkWidgetClass, mnemonic_activate),
1600                   _gtk_boolean_handled_accumulator, NULL,
1601                   _gtk_marshal_BOOLEAN__BOOLEAN,
1602                   G_TYPE_BOOLEAN, 1,
1603                   G_TYPE_BOOLEAN);
1604
1605   /**
1606    * GtkWidget::grab-focus:
1607    * @widget: the object which received the signal.
1608    */
1609   widget_signals[GRAB_FOCUS] =
1610     g_signal_new (I_("grab-focus"),
1611                   G_TYPE_FROM_CLASS (gobject_class),
1612                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1613                   G_STRUCT_OFFSET (GtkWidgetClass, grab_focus),
1614                   NULL, NULL,
1615                   _gtk_marshal_VOID__VOID,
1616                   G_TYPE_NONE, 0);
1617
1618   /**
1619    * GtkWidget::focus:
1620    * @widget: the object which received the signal.
1621    * @direction:
1622    *
1623    * Returns: %TRUE to stop other handlers from being invoked for the event. %FALSE to propagate the event further.
1624    */
1625   widget_signals[FOCUS] =
1626     g_signal_new (I_("focus"),
1627                   G_TYPE_FROM_CLASS (klass),
1628                   G_SIGNAL_RUN_LAST,
1629                   G_STRUCT_OFFSET (GtkWidgetClass, focus),
1630                   _gtk_boolean_handled_accumulator, NULL,
1631                   _gtk_marshal_BOOLEAN__ENUM,
1632                   G_TYPE_BOOLEAN, 1,
1633                   GTK_TYPE_DIRECTION_TYPE);
1634
1635   /**
1636    * GtkWidget::move-focus:
1637    * @widget: the object which received the signal.
1638    * @direction:
1639    */
1640   widget_signals[MOVE_FOCUS] =
1641     g_signal_new (I_("move-focus"),
1642                   G_TYPE_FROM_CLASS (klass),
1643                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1644                   G_STRUCT_OFFSET (GtkWidgetClass, move_focus),
1645                   NULL, NULL,
1646                   _gtk_marshal_VOID__ENUM,
1647                   G_TYPE_NONE,
1648                   1,
1649                   GTK_TYPE_DIRECTION_TYPE);
1650
1651   /**
1652    * GtkWidget::keynav-failed:
1653    * @widget: the object which received the signal
1654    * @direction: the direction of movement
1655    *
1656    * Gets emitted if keyboard navigation fails.
1657    * See gtk_widget_keynav_failed() for details.
1658    *
1659    * Returns: %TRUE if stopping keyboard navigation is fine, %FALSE
1660    *          if the emitting widget should try to handle the keyboard
1661    *          navigation attempt in its parent container(s).
1662    *
1663    * Since: 2.12
1664    **/
1665   widget_signals[KEYNAV_FAILED] =
1666     g_signal_new (I_("keynav-failed"),
1667                   G_TYPE_FROM_CLASS (klass),
1668                   G_SIGNAL_RUN_LAST,
1669                   G_STRUCT_OFFSET (GtkWidgetClass, keynav_failed),
1670                   _gtk_boolean_handled_accumulator, NULL,
1671                   _gtk_marshal_BOOLEAN__ENUM,
1672                   G_TYPE_BOOLEAN, 1,
1673                   GTK_TYPE_DIRECTION_TYPE);
1674
1675   /**
1676    * GtkWidget::event:
1677    * @widget: the object which received the signal.
1678    * @event: the #GdkEvent which triggered this signal
1679    *
1680    * The GTK+ main loop will emit three signals for each GDK event delivered
1681    * to a widget: one generic ::event signal, another, more specific,
1682    * signal that matches the type of event delivered (e.g.
1683    * #GtkWidget::key-press-event) and finally a generic
1684    * #GtkWidget::event-after signal.
1685    *
1686    * Returns: %TRUE to stop other handlers from being invoked for the event
1687    * and to cancel the emission of the second specific ::event signal.
1688    *   %FALSE to propagate the event further and to allow the emission of
1689    *   the second signal. The ::event-after signal is emitted regardless of
1690    *   the return value.
1691    */
1692   widget_signals[EVENT] =
1693     g_signal_new (I_("event"),
1694                   G_TYPE_FROM_CLASS (klass),
1695                   G_SIGNAL_RUN_LAST,
1696                   G_STRUCT_OFFSET (GtkWidgetClass, event),
1697                   _gtk_boolean_handled_accumulator, NULL,
1698                   _gtk_marshal_BOOLEAN__BOXED,
1699                   G_TYPE_BOOLEAN, 1,
1700                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1701
1702   /**
1703    * GtkWidget::event-after:
1704    * @widget: the object which received the signal.
1705    * @event: the #GdkEvent which triggered this signal
1706    *
1707    * After the emission of the #GtkWidget::event signal and (optionally)
1708    * the second more specific signal, ::event-after will be emitted
1709    * regardless of the previous two signals handlers return values.
1710    *
1711    */
1712   widget_signals[EVENT_AFTER] =
1713     g_signal_new (I_("event-after"),
1714                   G_TYPE_FROM_CLASS (klass),
1715                   0,
1716                   0,
1717                   NULL, NULL,
1718                   _gtk_marshal_VOID__BOXED,
1719                   G_TYPE_NONE, 1,
1720                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1721
1722   /**
1723    * GtkWidget::button-press-event:
1724    * @widget: the object which received the signal.
1725    * @event: (type Gdk.EventButton): the #GdkEventButton which triggered
1726    *   this signal.
1727    *
1728    * The ::button-press-event signal will be emitted when a button
1729    * (typically from a mouse) is pressed.
1730    *
1731    * To receive this signal, the #GdkWindow associated to the
1732    * widget needs to enable the #GDK_BUTTON_PRESS_MASK mask.
1733    *
1734    * This signal will be sent to the grab widget if there is one.
1735    *
1736    * Returns: %TRUE to stop other handlers from being invoked for the event.
1737    *   %FALSE to propagate the event further.
1738    */
1739   widget_signals[BUTTON_PRESS_EVENT] =
1740     g_signal_new (I_("button-press-event"),
1741                   G_TYPE_FROM_CLASS (klass),
1742                   G_SIGNAL_RUN_LAST,
1743                   G_STRUCT_OFFSET (GtkWidgetClass, button_press_event),
1744                   _gtk_boolean_handled_accumulator, NULL,
1745                   _gtk_marshal_BOOLEAN__BOXED,
1746                   G_TYPE_BOOLEAN, 1,
1747                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1748
1749   /**
1750    * GtkWidget::button-release-event:
1751    * @widget: the object which received the signal.
1752    * @event: (type Gdk.EventButton): the #GdkEventButton which triggered
1753    *   this signal.
1754    *
1755    * The ::button-release-event signal will be emitted when a button
1756    * (typically from a mouse) is released.
1757    *
1758    * To receive this signal, the #GdkWindow associated to the
1759    * widget needs to enable the #GDK_BUTTON_RELEASE_MASK mask.
1760    *
1761    * This signal will be sent to the grab widget if there is one.
1762    *
1763    * Returns: %TRUE to stop other handlers from being invoked for the event.
1764    *   %FALSE to propagate the event further.
1765    */
1766   widget_signals[BUTTON_RELEASE_EVENT] =
1767     g_signal_new (I_("button-release-event"),
1768                   G_TYPE_FROM_CLASS (klass),
1769                   G_SIGNAL_RUN_LAST,
1770                   G_STRUCT_OFFSET (GtkWidgetClass, button_release_event),
1771                   _gtk_boolean_handled_accumulator, NULL,
1772                   _gtk_marshal_BOOLEAN__BOXED,
1773                   G_TYPE_BOOLEAN, 1,
1774                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1775
1776   /**
1777    * GtkWidget::scroll-event:
1778    * @widget: the object which received the signal.
1779    * @event: (type Gdk.EventScroll): the #GdkEventScroll which triggered
1780    *   this signal.
1781    *
1782    * The ::scroll-event signal is emitted when a button in the 4 to 7
1783    * range is pressed. Wheel mice are usually configured to generate
1784    * button press events for buttons 4 and 5 when the wheel is turned.
1785    *
1786    * To receive this signal, the #GdkWindow associated to the widget needs
1787    * to enable the #GDK_BUTTON_PRESS_MASK mask.
1788    *
1789    * This signal will be sent to the grab widget if there is one.
1790    *
1791    * Returns: %TRUE to stop other handlers from being invoked for the event.
1792    *   %FALSE to propagate the event further.
1793    */
1794   widget_signals[SCROLL_EVENT] =
1795     g_signal_new (I_("scroll-event"),
1796                   G_TYPE_FROM_CLASS (klass),
1797                   G_SIGNAL_RUN_LAST,
1798                   G_STRUCT_OFFSET (GtkWidgetClass, scroll_event),
1799                   _gtk_boolean_handled_accumulator, NULL,
1800                   _gtk_marshal_BOOLEAN__BOXED,
1801                   G_TYPE_BOOLEAN, 1,
1802                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1803
1804   /**
1805    * GtkWidget::motion-notify-event:
1806    * @widget: the object which received the signal.
1807    * @event: (type Gdk.EventMotion): the #GdkEventMotion which triggered
1808    *   this signal.
1809    *
1810    * The ::motion-notify-event signal is emitted when the pointer moves
1811    * over the widget's #GdkWindow.
1812    *
1813    * To receive this signal, the #GdkWindow associated to the widget
1814    * needs to enable the #GDK_POINTER_MOTION_MASK mask.
1815    *
1816    * This signal will be sent to the grab widget if there is one.
1817    *
1818    * Returns: %TRUE to stop other handlers from being invoked for the event.
1819    *   %FALSE to propagate the event further.
1820    */
1821   widget_signals[MOTION_NOTIFY_EVENT] =
1822     g_signal_new (I_("motion-notify-event"),
1823                   G_TYPE_FROM_CLASS (klass),
1824                   G_SIGNAL_RUN_LAST,
1825                   G_STRUCT_OFFSET (GtkWidgetClass, motion_notify_event),
1826                   _gtk_boolean_handled_accumulator, NULL,
1827                   _gtk_marshal_BOOLEAN__BOXED,
1828                   G_TYPE_BOOLEAN, 1,
1829                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1830
1831   /**
1832    * GtkWidget::composited-changed:
1833    * @widget: the object on which the signal is emitted
1834    *
1835    * The ::composited-changed signal is emitted when the composited
1836    * status of @widget<!-- -->s screen changes.
1837    * See gdk_screen_is_composited().
1838    */
1839   widget_signals[COMPOSITED_CHANGED] =
1840     g_signal_new (I_("composited-changed"),
1841                   G_TYPE_FROM_CLASS (klass),
1842                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
1843                   G_STRUCT_OFFSET (GtkWidgetClass, composited_changed),
1844                   NULL, NULL,
1845                   _gtk_marshal_VOID__VOID,
1846                   G_TYPE_NONE, 0);
1847
1848   /**
1849    * GtkWidget::delete-event:
1850    * @widget: the object which received the signal
1851    * @event: the event which triggered this signal
1852    *
1853    * The ::delete-event signal is emitted if a user requests that
1854    * a toplevel window is closed. The default handler for this signal
1855    * destroys the window. Connecting gtk_widget_hide_on_delete() to
1856    * this signal will cause the window to be hidden instead, so that
1857    * it can later be shown again without reconstructing it.
1858    *
1859    * Returns: %TRUE to stop other handlers from being invoked for the event.
1860    *   %FALSE to propagate the event further.
1861    */
1862   widget_signals[DELETE_EVENT] =
1863     g_signal_new (I_("delete-event"),
1864                   G_TYPE_FROM_CLASS (klass),
1865                   G_SIGNAL_RUN_LAST,
1866                   G_STRUCT_OFFSET (GtkWidgetClass, delete_event),
1867                   _gtk_boolean_handled_accumulator, NULL,
1868                   _gtk_marshal_BOOLEAN__BOXED,
1869                   G_TYPE_BOOLEAN, 1,
1870                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1871
1872   /**
1873    * GtkWidget::destroy-event:
1874    * @widget: the object which received the signal.
1875    * @event: the event which triggered this signal
1876    *
1877    * The ::destroy-event signal is emitted when a #GdkWindow is destroyed.
1878    * You rarely get this signal, because most widgets disconnect themselves
1879    * from their window before they destroy it, so no widget owns the
1880    * window at destroy time.
1881    *
1882    * To receive this signal, the #GdkWindow associated to the widget needs
1883    * to enable the #GDK_STRUCTURE_MASK mask. GDK will enable this mask
1884    * automatically for all new windows.
1885    *
1886    * Returns: %TRUE to stop other handlers from being invoked for the event.
1887    *   %FALSE to propagate the event further.
1888    */
1889   widget_signals[DESTROY_EVENT] =
1890     g_signal_new (I_("destroy-event"),
1891                   G_TYPE_FROM_CLASS (klass),
1892                   G_SIGNAL_RUN_LAST,
1893                   G_STRUCT_OFFSET (GtkWidgetClass, destroy_event),
1894                   _gtk_boolean_handled_accumulator, NULL,
1895                   _gtk_marshal_BOOLEAN__BOXED,
1896                   G_TYPE_BOOLEAN, 1,
1897                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1898
1899   /**
1900    * GtkWidget::key-press-event:
1901    * @widget: the object which received the signal
1902    * @event: (type Gdk.EventKey): the #GdkEventKey which triggered this signal.
1903    *
1904    * The ::key-press-event signal is emitted when a key is pressed.
1905    *
1906    * To receive this signal, the #GdkWindow associated to the widget needs
1907    * to enable the #GDK_KEY_PRESS_MASK mask.
1908    *
1909    * This signal will be sent to the grab widget if there is one.
1910    *
1911    * Returns: %TRUE to stop other handlers from being invoked for the event.
1912    *   %FALSE to propagate the event further.
1913    */
1914   widget_signals[KEY_PRESS_EVENT] =
1915     g_signal_new (I_("key-press-event"),
1916                   G_TYPE_FROM_CLASS (klass),
1917                   G_SIGNAL_RUN_LAST,
1918                   G_STRUCT_OFFSET (GtkWidgetClass, key_press_event),
1919                   _gtk_boolean_handled_accumulator, NULL,
1920                   _gtk_marshal_BOOLEAN__BOXED,
1921                   G_TYPE_BOOLEAN, 1,
1922                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1923
1924   /**
1925    * GtkWidget::key-release-event:
1926    * @widget: the object which received the signal
1927    * @event: (type Gdk.EventKey): the #GdkEventKey which triggered this signal.
1928    *
1929    * The ::key-release-event signal is emitted when a key is pressed.
1930    *
1931    * To receive this signal, the #GdkWindow associated to the widget needs
1932    * to enable the #GDK_KEY_RELEASE_MASK mask.
1933    *
1934    * This signal will be sent to the grab widget if there is one.
1935    *
1936    * Returns: %TRUE to stop other handlers from being invoked for the event.
1937    *   %FALSE to propagate the event further.
1938    */
1939   widget_signals[KEY_RELEASE_EVENT] =
1940     g_signal_new (I_("key-release-event"),
1941                   G_TYPE_FROM_CLASS (klass),
1942                   G_SIGNAL_RUN_LAST,
1943                   G_STRUCT_OFFSET (GtkWidgetClass, key_release_event),
1944                   _gtk_boolean_handled_accumulator, NULL,
1945                   _gtk_marshal_BOOLEAN__BOXED,
1946                   G_TYPE_BOOLEAN, 1,
1947                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1948
1949   /**
1950    * GtkWidget::enter-notify-event:
1951    * @widget: the object which received the signal
1952    * @event: (type Gdk.EventCrossing): the #GdkEventCrossing which triggered
1953    *   this signal.
1954    *
1955    * The ::enter-notify-event will be emitted when the pointer enters
1956    * the @widget's window.
1957    *
1958    * To receive this signal, the #GdkWindow associated to the widget needs
1959    * to enable the #GDK_ENTER_NOTIFY_MASK mask.
1960    *
1961    * This signal will be sent to the grab widget if there is one.
1962    *
1963    * Returns: %TRUE to stop other handlers from being invoked for the event.
1964    *   %FALSE to propagate the event further.
1965    */
1966   widget_signals[ENTER_NOTIFY_EVENT] =
1967     g_signal_new (I_("enter-notify-event"),
1968                   G_TYPE_FROM_CLASS (klass),
1969                   G_SIGNAL_RUN_LAST,
1970                   G_STRUCT_OFFSET (GtkWidgetClass, enter_notify_event),
1971                   _gtk_boolean_handled_accumulator, NULL,
1972                   _gtk_marshal_BOOLEAN__BOXED,
1973                   G_TYPE_BOOLEAN, 1,
1974                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
1975
1976   /**
1977    * GtkWidget::leave-notify-event:
1978    * @widget: the object which received the signal
1979    * @event: (type Gdk.EventCrossing): the #GdkEventCrossing which triggered
1980    *   this signal.
1981    *
1982    * The ::leave-notify-event will be emitted when the pointer leaves
1983    * the @widget's window.
1984    *
1985    * To receive this signal, the #GdkWindow associated to the widget needs
1986    * to enable the #GDK_LEAVE_NOTIFY_MASK mask.
1987    *
1988    * This signal will be sent to the grab widget if there is one.
1989    *
1990    * Returns: %TRUE to stop other handlers from being invoked for the event.
1991    *   %FALSE to propagate the event further.
1992    */
1993   widget_signals[LEAVE_NOTIFY_EVENT] =
1994     g_signal_new (I_("leave-notify-event"),
1995                   G_TYPE_FROM_CLASS (klass),
1996                   G_SIGNAL_RUN_LAST,
1997                   G_STRUCT_OFFSET (GtkWidgetClass, leave_notify_event),
1998                   _gtk_boolean_handled_accumulator, NULL,
1999                   _gtk_marshal_BOOLEAN__BOXED,
2000                   G_TYPE_BOOLEAN, 1,
2001                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2002
2003   /**
2004    * GtkWidget::configure-event:
2005    * @widget: the object which received the signal
2006    * @event: (type Gdk.EventConfigure): the #GdkEventConfigure which triggered
2007    *   this signal.
2008    *
2009    * The ::configure-event signal will be emitted when the size, position or
2010    * stacking of the @widget's window has changed.
2011    *
2012    * To receive this signal, the #GdkWindow associated to the widget needs
2013    * to enable the #GDK_STRUCTURE_MASK mask. GDK will enable this mask
2014    * automatically for all new windows.
2015    *
2016    * Returns: %TRUE to stop other handlers from being invoked for the event.
2017    *   %FALSE to propagate the event further.
2018    */
2019   widget_signals[CONFIGURE_EVENT] =
2020     g_signal_new (I_("configure-event"),
2021                   G_TYPE_FROM_CLASS (klass),
2022                   G_SIGNAL_RUN_LAST,
2023                   G_STRUCT_OFFSET (GtkWidgetClass, configure_event),
2024                   _gtk_boolean_handled_accumulator, NULL,
2025                   _gtk_marshal_BOOLEAN__BOXED,
2026                   G_TYPE_BOOLEAN, 1,
2027                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2028
2029   /**
2030    * GtkWidget::focus-in-event:
2031    * @widget: the object which received the signal
2032    * @event: (type Gdk.EventFocus): the #GdkEventFocus which triggered
2033    *   this signal.
2034    *
2035    * The ::focus-in-event signal will be emitted when the keyboard focus
2036    * enters the @widget's window.
2037    *
2038    * To receive this signal, the #GdkWindow associated to the widget needs
2039    * to enable the #GDK_FOCUS_CHANGE_MASK mask.
2040    *
2041    * Returns: %TRUE to stop other handlers from being invoked for the event.
2042    *   %FALSE to propagate the event further.
2043    */
2044   widget_signals[FOCUS_IN_EVENT] =
2045     g_signal_new (I_("focus-in-event"),
2046                   G_TYPE_FROM_CLASS (klass),
2047                   G_SIGNAL_RUN_LAST,
2048                   G_STRUCT_OFFSET (GtkWidgetClass, focus_in_event),
2049                   _gtk_boolean_handled_accumulator, NULL,
2050                   _gtk_marshal_BOOLEAN__BOXED,
2051                   G_TYPE_BOOLEAN, 1,
2052                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2053
2054   /**
2055    * GtkWidget::focus-out-event:
2056    * @widget: the object which received the signal
2057    * @event: (type Gdk.EventFocus): the #GdkEventFocus which triggered this
2058    *   signal.
2059    *
2060    * The ::focus-out-event signal will be emitted when the keyboard focus
2061    * leaves the @widget's window.
2062    *
2063    * To receive this signal, the #GdkWindow associated to the widget needs
2064    * to enable the #GDK_FOCUS_CHANGE_MASK mask.
2065    *
2066    * Returns: %TRUE to stop other handlers from being invoked for the event.
2067    *   %FALSE to propagate the event further.
2068    */
2069   widget_signals[FOCUS_OUT_EVENT] =
2070     g_signal_new (I_("focus-out-event"),
2071                   G_TYPE_FROM_CLASS (klass),
2072                   G_SIGNAL_RUN_LAST,
2073                   G_STRUCT_OFFSET (GtkWidgetClass, focus_out_event),
2074                   _gtk_boolean_handled_accumulator, NULL,
2075                   _gtk_marshal_BOOLEAN__BOXED,
2076                   G_TYPE_BOOLEAN, 1,
2077                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2078
2079   /**
2080    * GtkWidget::map-event:
2081    * @widget: the object which received the signal
2082    * @event: (type Gdk.EventAny): the #GdkEventAny which triggered this signal.
2083    *
2084    * The ::map-event signal will be emitted when the @widget's window is
2085    * mapped. A window is mapped when it becomes visible on the screen.
2086    *
2087    * To receive this signal, the #GdkWindow associated to the widget needs
2088    * to enable the #GDK_STRUCTURE_MASK mask. GDK will enable this mask
2089    * automatically for all new windows.
2090    *
2091    * Returns: %TRUE to stop other handlers from being invoked for the event.
2092    *   %FALSE to propagate the event further.
2093    */
2094   widget_signals[MAP_EVENT] =
2095     g_signal_new (I_("map-event"),
2096                   G_TYPE_FROM_CLASS (klass),
2097                   G_SIGNAL_RUN_LAST,
2098                   G_STRUCT_OFFSET (GtkWidgetClass, map_event),
2099                   _gtk_boolean_handled_accumulator, NULL,
2100                   _gtk_marshal_BOOLEAN__BOXED,
2101                   G_TYPE_BOOLEAN, 1,
2102                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2103
2104   /**
2105    * GtkWidget::unmap-event:
2106    * @widget: the object which received the signal
2107    * @event: (type Gdk.EventAny): the #GdkEventAny which triggered this signal
2108    *
2109    * The ::unmap-event signal may be emitted when the @widget's window is
2110    * unmapped. A window is unmapped when it becomes invisible on the screen.
2111    *
2112    * For performance reasons GTK+ may not emit ::unmap-event, so one
2113    * should always also implement ::unrealize in order to release
2114    * resources and disconnect signal handlers.
2115    *
2116    * To receive this signal, the #GdkWindow associated to the widget needs
2117    * to enable the #GDK_STRUCTURE_MASK mask. GDK will enable this mask
2118    * automatically for all new windows.
2119    *
2120    * Returns: %TRUE to stop other handlers from being invoked for the event.
2121    *   %FALSE to propagate the event further.
2122    */
2123   widget_signals[UNMAP_EVENT] =
2124     g_signal_new (I_("unmap-event"),
2125                   G_TYPE_FROM_CLASS (klass),
2126                   G_SIGNAL_RUN_LAST,
2127                   G_STRUCT_OFFSET (GtkWidgetClass, unmap_event),
2128                   _gtk_boolean_handled_accumulator, NULL,
2129                   _gtk_marshal_BOOLEAN__BOXED,
2130                   G_TYPE_BOOLEAN, 1,
2131                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2132
2133   /**
2134    * GtkWidget::property-notify-event:
2135    * @widget: the object which received the signal
2136    * @event: (type Gdk.EventProperty): the #GdkEventProperty which triggered
2137    *   this signal.
2138    *
2139    * The ::property-notify-event signal will be emitted when a property on
2140    * the @widget's window has been changed or deleted.
2141    *
2142    * To receive this signal, the #GdkWindow associated to the widget needs
2143    * to enable the #GDK_PROPERTY_CHANGE_MASK mask.
2144    *
2145    * Returns: %TRUE to stop other handlers from being invoked for the event.
2146    *   %FALSE to propagate the event further.
2147    */
2148   widget_signals[PROPERTY_NOTIFY_EVENT] =
2149     g_signal_new (I_("property-notify-event"),
2150                   G_TYPE_FROM_CLASS (klass),
2151                   G_SIGNAL_RUN_LAST,
2152                   G_STRUCT_OFFSET (GtkWidgetClass, property_notify_event),
2153                   _gtk_boolean_handled_accumulator, NULL,
2154                   _gtk_marshal_BOOLEAN__BOXED,
2155                   G_TYPE_BOOLEAN, 1,
2156                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2157
2158   /**
2159    * GtkWidget::selection-clear-event:
2160    * @widget: the object which received the signal
2161    * @event: (type Gdk.EventSelection): the #GdkEventSelection which triggered
2162    *   this signal.
2163    *
2164    * The ::selection-clear-event signal will be emitted when the
2165    * the @widget's window has lost ownership of a selection.
2166    *
2167    * Returns: %TRUE to stop other handlers from being invoked for the event.
2168    *   %FALSE to propagate the event further.
2169    */
2170   widget_signals[SELECTION_CLEAR_EVENT] =
2171     g_signal_new (I_("selection-clear-event"),
2172                   G_TYPE_FROM_CLASS (klass),
2173                   G_SIGNAL_RUN_LAST,
2174                   G_STRUCT_OFFSET (GtkWidgetClass, selection_clear_event),
2175                   _gtk_boolean_handled_accumulator, NULL,
2176                   _gtk_marshal_BOOLEAN__BOXED,
2177                   G_TYPE_BOOLEAN, 1,
2178                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2179
2180   /**
2181    * GtkWidget::selection-request-event:
2182    * @widget: the object which received the signal
2183    * @event: (type Gdk.EventSelection): the #GdkEventSelection which triggered
2184    *   this signal.
2185    *
2186    * The ::selection-request-event signal will be emitted when
2187    * another client requests ownership of the selection owned by
2188    * the @widget's window.
2189    *
2190    * Returns: %TRUE to stop other handlers from being invoked for the event.
2191    *   %FALSE to propagate the event further.
2192    */
2193   widget_signals[SELECTION_REQUEST_EVENT] =
2194     g_signal_new (I_("selection-request-event"),
2195                   G_TYPE_FROM_CLASS (klass),
2196                   G_SIGNAL_RUN_LAST,
2197                   G_STRUCT_OFFSET (GtkWidgetClass, selection_request_event),
2198                   _gtk_boolean_handled_accumulator, NULL,
2199                   _gtk_marshal_BOOLEAN__BOXED,
2200                   G_TYPE_BOOLEAN, 1,
2201                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2202
2203   /**
2204    * GtkWidget::selection-notify-event:
2205    * @widget: the object which received the signal.
2206    * @event:
2207    *
2208    * Returns: %TRUE to stop other handlers from being invoked for the event. %FALSE to propagate the event further.
2209    */
2210   widget_signals[SELECTION_NOTIFY_EVENT] =
2211     g_signal_new (I_("selection-notify-event"),
2212                   G_TYPE_FROM_CLASS (klass),
2213                   G_SIGNAL_RUN_LAST,
2214                   G_STRUCT_OFFSET (GtkWidgetClass, selection_notify_event),
2215                   _gtk_boolean_handled_accumulator, NULL,
2216                   _gtk_marshal_BOOLEAN__BOXED,
2217                   G_TYPE_BOOLEAN, 1,
2218                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2219
2220   /**
2221    * GtkWidget::selection-received:
2222    * @widget: the object which received the signal.
2223    * @data:
2224    * @time:
2225    */
2226   widget_signals[SELECTION_RECEIVED] =
2227     g_signal_new (I_("selection-received"),
2228                   G_TYPE_FROM_CLASS (klass),
2229                   G_SIGNAL_RUN_LAST,
2230                   G_STRUCT_OFFSET (GtkWidgetClass, selection_received),
2231                   NULL, NULL,
2232                   _gtk_marshal_VOID__BOXED_UINT,
2233                   G_TYPE_NONE, 2,
2234                   GTK_TYPE_SELECTION_DATA | G_SIGNAL_TYPE_STATIC_SCOPE,
2235                   G_TYPE_UINT);
2236
2237   /**
2238    * GtkWidget::selection-get:
2239    * @widget: the object which received the signal.
2240    * @data:
2241    * @info:
2242    * @time:
2243    */
2244   widget_signals[SELECTION_GET] =
2245     g_signal_new (I_("selection-get"),
2246                   G_TYPE_FROM_CLASS (klass),
2247                   G_SIGNAL_RUN_LAST,
2248                   G_STRUCT_OFFSET (GtkWidgetClass, selection_get),
2249                   NULL, NULL,
2250                   _gtk_marshal_VOID__BOXED_UINT_UINT,
2251                   G_TYPE_NONE, 3,
2252                   GTK_TYPE_SELECTION_DATA | G_SIGNAL_TYPE_STATIC_SCOPE,
2253                   G_TYPE_UINT,
2254                   G_TYPE_UINT);
2255
2256   /**
2257    * GtkWidget::proximity-in-event:
2258    * @widget: the object which received the signal
2259    * @event: (type Gdk.EventProximity): the #GdkEventProximity which triggered
2260    *   this signal.
2261    *
2262    * To receive this signal the #GdkWindow associated to the widget needs
2263    * to enable the #GDK_PROXIMITY_IN_MASK mask.
2264    *
2265    * This signal will be sent to the grab widget if there is one.
2266    *
2267    * Returns: %TRUE to stop other handlers from being invoked for the event.
2268    *   %FALSE to propagate the event further.
2269    */
2270   widget_signals[PROXIMITY_IN_EVENT] =
2271     g_signal_new (I_("proximity-in-event"),
2272                   G_TYPE_FROM_CLASS (klass),
2273                   G_SIGNAL_RUN_LAST,
2274                   G_STRUCT_OFFSET (GtkWidgetClass, proximity_in_event),
2275                   _gtk_boolean_handled_accumulator, NULL,
2276                   _gtk_marshal_BOOLEAN__BOXED,
2277                   G_TYPE_BOOLEAN, 1,
2278                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2279
2280   /**
2281    * GtkWidget::proximity-out-event:
2282    * @widget: the object which received the signal
2283    * @event: (type Gdk.EventProximity): the #GdkEventProximity which triggered
2284    *   this signal.
2285    *
2286    * To receive this signal the #GdkWindow associated to the widget needs
2287    * to enable the #GDK_PROXIMITY_OUT_MASK mask.
2288    *
2289    * This signal will be sent to the grab widget if there is one.
2290    *
2291    * Returns: %TRUE to stop other handlers from being invoked for the event.
2292    *   %FALSE to propagate the event further.
2293    */
2294   widget_signals[PROXIMITY_OUT_EVENT] =
2295     g_signal_new (I_("proximity-out-event"),
2296                   G_TYPE_FROM_CLASS (klass),
2297                   G_SIGNAL_RUN_LAST,
2298                   G_STRUCT_OFFSET (GtkWidgetClass, proximity_out_event),
2299                   _gtk_boolean_handled_accumulator, NULL,
2300                   _gtk_marshal_BOOLEAN__BOXED,
2301                   G_TYPE_BOOLEAN, 1,
2302                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2303
2304   /**
2305    * GtkWidget::drag-leave:
2306    * @widget: the object which received the signal.
2307    * @drag_context: the drag context
2308    * @time: the timestamp of the motion event
2309    *
2310    * The ::drag-leave signal is emitted on the drop site when the cursor
2311    * leaves the widget. A typical reason to connect to this signal is to
2312    * undo things done in #GtkWidget::drag-motion, e.g. undo highlighting
2313    * with gtk_drag_unhighlight()
2314    */
2315   widget_signals[DRAG_LEAVE] =
2316     g_signal_new (I_("drag-leave"),
2317                   G_TYPE_FROM_CLASS (klass),
2318                   G_SIGNAL_RUN_LAST,
2319                   G_STRUCT_OFFSET (GtkWidgetClass, drag_leave),
2320                   NULL, NULL,
2321                   _gtk_marshal_VOID__OBJECT_UINT,
2322                   G_TYPE_NONE, 2,
2323                   GDK_TYPE_DRAG_CONTEXT,
2324                   G_TYPE_UINT);
2325
2326   /**
2327    * GtkWidget::drag-begin:
2328    * @widget: the object which received the signal
2329    * @drag_context: the drag context
2330    *
2331    * The ::drag-begin signal is emitted on the drag source when a drag is
2332    * started. A typical reason to connect to this signal is to set up a
2333    * custom drag icon with gtk_drag_source_set_icon().
2334    *
2335    * Note that some widgets set up a drag icon in the default handler of
2336    * this signal, so you may have to use g_signal_connect_after() to
2337    * override what the default handler did.
2338    */
2339   widget_signals[DRAG_BEGIN] =
2340     g_signal_new (I_("drag-begin"),
2341                   G_TYPE_FROM_CLASS (klass),
2342                   G_SIGNAL_RUN_LAST,
2343                   G_STRUCT_OFFSET (GtkWidgetClass, drag_begin),
2344                   NULL, NULL,
2345                   _gtk_marshal_VOID__OBJECT,
2346                   G_TYPE_NONE, 1,
2347                   GDK_TYPE_DRAG_CONTEXT);
2348
2349   /**
2350    * GtkWidget::drag-end:
2351    * @widget: the object which received the signal
2352    * @drag_context: the drag context
2353    *
2354    * The ::drag-end signal is emitted on the drag source when a drag is
2355    * finished.  A typical reason to connect to this signal is to undo
2356    * things done in #GtkWidget::drag-begin.
2357    */
2358   widget_signals[DRAG_END] =
2359     g_signal_new (I_("drag-end"),
2360                   G_TYPE_FROM_CLASS (klass),
2361                   G_SIGNAL_RUN_LAST,
2362                   G_STRUCT_OFFSET (GtkWidgetClass, drag_end),
2363                   NULL, NULL,
2364                   _gtk_marshal_VOID__OBJECT,
2365                   G_TYPE_NONE, 1,
2366                   GDK_TYPE_DRAG_CONTEXT);
2367
2368   /**
2369    * GtkWidget::drag-data-delete:
2370    * @widget: the object which received the signal
2371    * @drag_context: the drag context
2372    *
2373    * The ::drag-data-delete signal is emitted on the drag source when a drag
2374    * with the action %GDK_ACTION_MOVE is successfully completed. The signal
2375    * handler is responsible for deleting the data that has been dropped. What
2376    * "delete" means depends on the context of the drag operation.
2377    */
2378   widget_signals[DRAG_DATA_DELETE] =
2379     g_signal_new (I_("drag-data-delete"),
2380                   G_TYPE_FROM_CLASS (klass),
2381                   G_SIGNAL_RUN_LAST,
2382                   G_STRUCT_OFFSET (GtkWidgetClass, drag_data_delete),
2383                   NULL, NULL,
2384                   _gtk_marshal_VOID__OBJECT,
2385                   G_TYPE_NONE, 1,
2386                   GDK_TYPE_DRAG_CONTEXT);
2387
2388   /**
2389    * GtkWidget::drag-failed:
2390    * @widget: the object which received the signal
2391    * @drag_context: the drag context
2392    * @result: the result of the drag operation
2393    *
2394    * The ::drag-failed signal is emitted on the drag source when a drag has
2395    * failed. The signal handler may hook custom code to handle a failed DND
2396    * operation based on the type of error, it returns %TRUE is the failure has
2397    * been already handled (not showing the default "drag operation failed"
2398    * animation), otherwise it returns %FALSE.
2399    *
2400    * Return value: %TRUE if the failed drag operation has been already handled.
2401    *
2402    * Since: 2.12
2403    */
2404   widget_signals[DRAG_FAILED] =
2405     g_signal_new (I_("drag-failed"),
2406                   G_TYPE_FROM_CLASS (klass),
2407                   G_SIGNAL_RUN_LAST,
2408                   0, _gtk_boolean_handled_accumulator, NULL,
2409                   _gtk_marshal_BOOLEAN__OBJECT_ENUM,
2410                   G_TYPE_BOOLEAN, 2,
2411                   GDK_TYPE_DRAG_CONTEXT,
2412                   GTK_TYPE_DRAG_RESULT);
2413
2414   /**
2415    * GtkWidget::drag-motion:
2416    * @widget: the object which received the signal
2417    * @drag_context: the drag context
2418    * @x: the x coordinate of the current cursor position
2419    * @y: the y coordinate of the current cursor position
2420    * @time: the timestamp of the motion event
2421    * @returns: whether the cursor position is in a drop zone
2422    *
2423    * The drag-motion signal is emitted on the drop site when the user
2424    * moves the cursor over the widget during a drag. The signal handler
2425    * must determine whether the cursor position is in a drop zone or not.
2426    * If it is not in a drop zone, it returns %FALSE and no further processing
2427    * is necessary. Otherwise, the handler returns %TRUE. In this case, the
2428    * handler is responsible for providing the necessary information for
2429    * displaying feedback to the user, by calling gdk_drag_status().
2430    *
2431    * If the decision whether the drop will be accepted or rejected can't be
2432    * made based solely on the cursor position and the type of the data, the
2433    * handler may inspect the dragged data by calling gtk_drag_get_data() and
2434    * defer the gdk_drag_status() call to the #GtkWidget::drag-data-received
2435    * handler. Note that you cannot not pass #GTK_DEST_DEFAULT_DROP,
2436    * #GTK_DEST_DEFAULT_MOTION or #GTK_DEST_DEFAULT_ALL to gtk_drag_dest_set()
2437    * when using the drag-motion signal that way.
2438    *
2439    * Also note that there is no drag-enter signal. The drag receiver has to
2440    * keep track of whether he has received any drag-motion signals since the
2441    * last #GtkWidget::drag-leave and if not, treat the drag-motion signal as
2442    * an "enter" signal. Upon an "enter", the handler will typically highlight
2443    * the drop site with gtk_drag_highlight().
2444    * |[
2445    * static void
2446    * drag_motion (GtkWidget *widget,
2447    *              GdkDragContext *context,
2448    *              gint x,
2449    *              gint y,
2450    *              guint time)
2451    * {
2452    *   GdkAtom target;
2453    *
2454    *   PrivateData *private_data = GET_PRIVATE_DATA (widget);
2455    *
2456    *   if (!private_data->drag_highlight)
2457    *    {
2458    *      private_data->drag_highlight = 1;
2459    *      gtk_drag_highlight (widget);
2460    *    }
2461    *
2462    *   target = gtk_drag_dest_find_target (widget, context, NULL);
2463    *   if (target == GDK_NONE)
2464    *     gdk_drag_status (context, 0, time);
2465    *   else
2466    *    {
2467    *      private_data->pending_status = context->suggested_action;
2468    *      gtk_drag_get_data (widget, context, target, time);
2469    *    }
2470    *
2471    *   return TRUE;
2472    * }
2473    *
2474    * static void
2475    * drag_data_received (GtkWidget        *widget,
2476    *                     GdkDragContext   *context,
2477    *                     gint              x,
2478    *                     gint              y,
2479    *                     GtkSelectionData *selection_data,
2480    *                     guint             info,
2481    *                     guint             time)
2482    * {
2483    *   PrivateData *private_data = GET_PRIVATE_DATA (widget);
2484    *
2485    *   if (private_data->suggested_action)
2486    *    {
2487    *      private_data->suggested_action = 0;
2488    *
2489    *     /&ast; We are getting this data due to a request in drag_motion,
2490    *      * rather than due to a request in drag_drop, so we are just
2491    *      * supposed to call gdk_drag_status (), not actually paste in
2492    *      * the data.
2493    *      &ast;/
2494    *      str = gtk_selection_data_get_text (selection_data);
2495    *      if (!data_is_acceptable (str))
2496    *        gdk_drag_status (context, 0, time);
2497    *      else
2498    *        gdk_drag_status (context, private_data->suggested_action, time);
2499    *    }
2500    *   else
2501    *    {
2502    *      /&ast; accept the drop &ast;/
2503    *    }
2504    * }
2505    * ]|
2506    */
2507   widget_signals[DRAG_MOTION] =
2508     g_signal_new (I_("drag-motion"),
2509                   G_TYPE_FROM_CLASS (klass),
2510                   G_SIGNAL_RUN_LAST,
2511                   G_STRUCT_OFFSET (GtkWidgetClass, drag_motion),
2512                   _gtk_boolean_handled_accumulator, NULL,
2513                   _gtk_marshal_BOOLEAN__OBJECT_INT_INT_UINT,
2514                   G_TYPE_BOOLEAN, 4,
2515                   GDK_TYPE_DRAG_CONTEXT,
2516                   G_TYPE_INT,
2517                   G_TYPE_INT,
2518                   G_TYPE_UINT);
2519
2520   /**
2521    * GtkWidget::drag-drop:
2522    * @widget: the object which received the signal
2523    * @drag_context: the drag context
2524    * @x: the x coordinate of the current cursor position
2525    * @y: the y coordinate of the current cursor position
2526    * @time: the timestamp of the motion event
2527    * @returns: whether the cursor position is in a drop zone
2528    *
2529    * The ::drag-drop signal is emitted on the drop site when the user drops
2530    * the data onto the widget. The signal handler must determine whether
2531    * the cursor position is in a drop zone or not. If it is not in a drop
2532    * zone, it returns %FALSE and no further processing is necessary.
2533    * Otherwise, the handler returns %TRUE. In this case, the handler must
2534    * ensure that gtk_drag_finish() is called to let the source know that
2535    * the drop is done. The call to gtk_drag_finish() can be done either
2536    * directly or in a #GtkWidget::drag-data-received handler which gets
2537    * triggered by calling gtk_drag_get_data() to receive the data for one
2538    * or more of the supported targets.
2539    */
2540   widget_signals[DRAG_DROP] =
2541     g_signal_new (I_("drag-drop"),
2542                   G_TYPE_FROM_CLASS (klass),
2543                   G_SIGNAL_RUN_LAST,
2544                   G_STRUCT_OFFSET (GtkWidgetClass, drag_drop),
2545                   _gtk_boolean_handled_accumulator, NULL,
2546                   _gtk_marshal_BOOLEAN__OBJECT_INT_INT_UINT,
2547                   G_TYPE_BOOLEAN, 4,
2548                   GDK_TYPE_DRAG_CONTEXT,
2549                   G_TYPE_INT,
2550                   G_TYPE_INT,
2551                   G_TYPE_UINT);
2552
2553   /**
2554    * GtkWidget::drag-data-get:
2555    * @widget: the object which received the signal
2556    * @drag_context: the drag context
2557    * @data: the #GtkSelectionData to be filled with the dragged data
2558    * @info: the info that has been registered with the target in the
2559    *        #GtkTargetList
2560    * @time: the timestamp at which the data was requested
2561    *
2562    * The ::drag-data-get signal is emitted on the drag source when the drop
2563    * site requests the data which is dragged. It is the responsibility of
2564    * the signal handler to fill @data with the data in the format which
2565    * is indicated by @info. See gtk_selection_data_set() and
2566    * gtk_selection_data_set_text().
2567    */
2568   widget_signals[DRAG_DATA_GET] =
2569     g_signal_new (I_("drag-data-get"),
2570                   G_TYPE_FROM_CLASS (klass),
2571                   G_SIGNAL_RUN_LAST,
2572                   G_STRUCT_OFFSET (GtkWidgetClass, drag_data_get),
2573                   NULL, NULL,
2574                   _gtk_marshal_VOID__OBJECT_BOXED_UINT_UINT,
2575                   G_TYPE_NONE, 4,
2576                   GDK_TYPE_DRAG_CONTEXT,
2577                   GTK_TYPE_SELECTION_DATA | G_SIGNAL_TYPE_STATIC_SCOPE,
2578                   G_TYPE_UINT,
2579                   G_TYPE_UINT);
2580
2581   /**
2582    * GtkWidget::drag-data-received:
2583    * @widget: the object which received the signal
2584    * @drag_context: the drag context
2585    * @x: where the drop happened
2586    * @y: where the drop happened
2587    * @data: the received data
2588    * @info: the info that has been registered with the target in the
2589    *        #GtkTargetList
2590    * @time: the timestamp at which the data was received
2591    *
2592    * The ::drag-data-received signal is emitted on the drop site when the
2593    * dragged data has been received. If the data was received in order to
2594    * determine whether the drop will be accepted, the handler is expected
2595    * to call gdk_drag_status() and <emphasis>not</emphasis> finish the drag.
2596    * If the data was received in response to a #GtkWidget::drag-drop signal
2597    * (and this is the last target to be received), the handler for this
2598    * signal is expected to process the received data and then call
2599    * gtk_drag_finish(), setting the @success parameter depending on whether
2600    * the data was processed successfully.
2601    *
2602    * The handler may inspect and modify @drag_context->action before calling
2603    * gtk_drag_finish(), e.g. to implement %GDK_ACTION_ASK as shown in the
2604    * following example:
2605    * |[
2606    * void
2607    * drag_data_received (GtkWidget          *widget,
2608    *                     GdkDragContext     *drag_context,
2609    *                     gint                x,
2610    *                     gint                y,
2611    *                     GtkSelectionData   *data,
2612    *                     guint               info,
2613    *                     guint               time)
2614    * {
2615    *   if ((data->length >= 0) && (data->format == 8))
2616    *     {
2617    *       if (drag_context->action == GDK_ACTION_ASK)
2618    *         {
2619    *           GtkWidget *dialog;
2620    *           gint response;
2621    *
2622    *           dialog = gtk_message_dialog_new (NULL,
2623    *                                            GTK_DIALOG_MODAL |
2624    *                                            GTK_DIALOG_DESTROY_WITH_PARENT,
2625    *                                            GTK_MESSAGE_INFO,
2626    *                                            GTK_BUTTONS_YES_NO,
2627    *                                            "Move the data ?\n");
2628    *           response = gtk_dialog_run (GTK_DIALOG (dialog));
2629    *           gtk_widget_destroy (dialog);
2630    *
2631    *           if (response == GTK_RESPONSE_YES)
2632    *             drag_context->action = GDK_ACTION_MOVE;
2633    *           else
2634    *             drag_context->action = GDK_ACTION_COPY;
2635    *          }
2636    *
2637    *       gtk_drag_finish (drag_context, TRUE, FALSE, time);
2638    *       return;
2639    *     }
2640    *
2641    *    gtk_drag_finish (drag_context, FALSE, FALSE, time);
2642    *  }
2643    * ]|
2644    */
2645   widget_signals[DRAG_DATA_RECEIVED] =
2646     g_signal_new (I_("drag-data-received"),
2647                   G_TYPE_FROM_CLASS (klass),
2648                   G_SIGNAL_RUN_LAST,
2649                   G_STRUCT_OFFSET (GtkWidgetClass, drag_data_received),
2650                   NULL, NULL,
2651                   _gtk_marshal_VOID__OBJECT_INT_INT_BOXED_UINT_UINT,
2652                   G_TYPE_NONE, 6,
2653                   GDK_TYPE_DRAG_CONTEXT,
2654                   G_TYPE_INT,
2655                   G_TYPE_INT,
2656                   GTK_TYPE_SELECTION_DATA | G_SIGNAL_TYPE_STATIC_SCOPE,
2657                   G_TYPE_UINT,
2658                   G_TYPE_UINT);
2659
2660   /**
2661    * GtkWidget::visibility-notify-event:
2662    * @widget: the object which received the signal
2663    * @event: (type Gdk.EventVisibility): the #GdkEventVisibility which
2664    *   triggered this signal.
2665    *
2666    * The ::visibility-notify-event will be emitted when the @widget's window
2667    * is obscured or unobscured.
2668    *
2669    * To receive this signal the #GdkWindow associated to the widget needs
2670    * to enable the #GDK_VISIBILITY_NOTIFY_MASK mask.
2671    *
2672    * Returns: %TRUE to stop other handlers from being invoked for the event.
2673    *   %FALSE to propagate the event further.
2674    */
2675   widget_signals[VISIBILITY_NOTIFY_EVENT] =
2676     g_signal_new (I_("visibility-notify-event"),
2677                   G_TYPE_FROM_CLASS (klass),
2678                   G_SIGNAL_RUN_LAST,
2679                   G_STRUCT_OFFSET (GtkWidgetClass, visibility_notify_event),
2680                   _gtk_boolean_handled_accumulator, NULL,
2681                   _gtk_marshal_BOOLEAN__BOXED,
2682                   G_TYPE_BOOLEAN, 1,
2683                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2684
2685   /**
2686    * GtkWidget::client-event:
2687    * @widget: the object which received the signal
2688    * @event: (type Gdk.EventClient): the #GdkEventClient which triggered
2689    *   this signal.
2690    *
2691    * The ::client-event will be emitted when the @widget's window
2692    * receives a message (via a ClientMessage event) from another
2693    * application.
2694    *
2695    * Returns: %TRUE to stop other handlers from being invoked for
2696    *   the event. %FALSE to propagate the event further.
2697    */
2698   widget_signals[CLIENT_EVENT] =
2699     g_signal_new (I_("client-event"),
2700                   G_TYPE_FROM_CLASS (klass),
2701                   G_SIGNAL_RUN_LAST,
2702                   G_STRUCT_OFFSET (GtkWidgetClass, client_event),
2703                   _gtk_boolean_handled_accumulator, NULL,
2704                   _gtk_marshal_BOOLEAN__BOXED,
2705                   G_TYPE_BOOLEAN, 1,
2706                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2707
2708   /**
2709    * GtkWidget::window-state-event:
2710    * @widget: the object which received the signal
2711    * @event: (type Gdk.EventWindowState): the #GdkEventWindowState which
2712    *   triggered this signal.
2713    *
2714    * The ::window-state-event will be emitted when the state of the
2715    * toplevel window associated to the @widget changes.
2716    *
2717    * To receive this signal the #GdkWindow associated to the widget
2718    * needs to enable the #GDK_STRUCTURE_MASK mask. GDK will enable
2719    * this mask automatically for all new windows.
2720    *
2721    * Returns: %TRUE to stop other handlers from being invoked for the
2722    *   event. %FALSE to propagate the event further.
2723    */
2724   widget_signals[WINDOW_STATE_EVENT] =
2725     g_signal_new (I_("window-state-event"),
2726                   G_TYPE_FROM_CLASS (klass),
2727                   G_SIGNAL_RUN_LAST,
2728                   G_STRUCT_OFFSET (GtkWidgetClass, window_state_event),
2729                   _gtk_boolean_handled_accumulator, NULL,
2730                   _gtk_marshal_BOOLEAN__BOXED,
2731                   G_TYPE_BOOLEAN, 1,
2732                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2733
2734   /**
2735    * GtkWidget::damage-event:
2736    * @widget: the object which received the signal
2737    * @event: the #GdkEventExpose event
2738    *
2739    * Emitted when a redirected window belonging to @widget gets drawn into.
2740    * The region/area members of the event shows what area of the redirected
2741    * drawable was drawn into.
2742    *
2743    * Returns: %TRUE to stop other handlers from being invoked for the event.
2744    *   %FALSE to propagate the event further.
2745    *
2746    * Since: 2.14
2747    */
2748   widget_signals[DAMAGE_EVENT] =
2749     g_signal_new (I_("damage-event"),
2750                   G_TYPE_FROM_CLASS (klass),
2751                   G_SIGNAL_RUN_LAST,
2752                   G_STRUCT_OFFSET (GtkWidgetClass, damage_event),
2753                   _gtk_boolean_handled_accumulator, NULL,
2754                   _gtk_marshal_BOOLEAN__BOXED,
2755                   G_TYPE_BOOLEAN, 1,
2756                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2757
2758 /**
2759    * GtkWidget::grab-broken-event:
2760    * @widget: the object which received the signal
2761    * @event: the #GdkEventGrabBroken event
2762    *
2763    * Emitted when a pointer or keyboard grab on a window belonging
2764    * to @widget gets broken.
2765    *
2766    * On X11, this happens when the grab window becomes unviewable
2767    * (i.e. it or one of its ancestors is unmapped), or if the same
2768    * application grabs the pointer or keyboard again.
2769    *
2770    * Returns: %TRUE to stop other handlers from being invoked for
2771    *   the event. %FALSE to propagate the event further.
2772    *
2773    * Since: 2.8
2774    */
2775   widget_signals[GRAB_BROKEN_EVENT] =
2776     g_signal_new (I_("grab-broken-event"),
2777                   G_TYPE_FROM_CLASS (klass),
2778                   G_SIGNAL_RUN_LAST,
2779                   G_STRUCT_OFFSET (GtkWidgetClass, grab_broken_event),
2780                   _gtk_boolean_handled_accumulator, NULL,
2781                   _gtk_marshal_BOOLEAN__BOXED,
2782                   G_TYPE_BOOLEAN, 1,
2783                   GDK_TYPE_EVENT | G_SIGNAL_TYPE_STATIC_SCOPE);
2784
2785   /**
2786    * GtkWidget::query-tooltip:
2787    * @widget: the object which received the signal
2788    * @x: the x coordinate of the cursor position where the request has
2789    *     been emitted, relative to @widget->window
2790    * @y: the y coordinate of the cursor position where the request has
2791    *     been emitted, relative to @widget->window
2792    * @keyboard_mode: %TRUE if the tooltip was trigged using the keyboard
2793    * @tooltip: a #GtkTooltip
2794    *
2795    * Emitted when #GtkWidget:has-tooltip is %TRUE and the #GtkSettings:gtk-tooltip-timeout
2796    * has expired with the cursor hovering "above" @widget; or emitted when @widget got
2797    * focus in keyboard mode.
2798    *
2799    * Using the given coordinates, the signal handler should determine
2800    * whether a tooltip should be shown for @widget. If this is the case
2801    * %TRUE should be returned, %FALSE otherwise.  Note that if
2802    * @keyboard_mode is %TRUE, the values of @x and @y are undefined and
2803    * should not be used.
2804    *
2805    * The signal handler is free to manipulate @tooltip with the therefore
2806    * destined function calls.
2807    *
2808    * Returns: %TRUE if @tooltip should be shown right now, %FALSE otherwise.
2809    *
2810    * Since: 2.12
2811    */
2812   widget_signals[QUERY_TOOLTIP] =
2813     g_signal_new (I_("query-tooltip"),
2814                   G_TYPE_FROM_CLASS (klass),
2815                   G_SIGNAL_RUN_LAST,
2816                   G_STRUCT_OFFSET (GtkWidgetClass, query_tooltip),
2817                   _gtk_boolean_handled_accumulator, NULL,
2818                   _gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECT,
2819                   G_TYPE_BOOLEAN, 4,
2820                   G_TYPE_INT,
2821                   G_TYPE_INT,
2822                   G_TYPE_BOOLEAN,
2823                   GTK_TYPE_TOOLTIP);
2824
2825   /**
2826    * GtkWidget::popup-menu
2827    * @widget: the object which received the signal
2828    *
2829    * This signal gets emitted whenever a widget should pop up a context
2830    * menu. This usually happens through the standard key binding mechanism;
2831    * by pressing a certain key while a widget is focused, the user can cause
2832    * the widget to pop up a menu.  For example, the #GtkEntry widget creates
2833    * a menu with clipboard commands. See <xref linkend="checklist-popup-menu"/>
2834    * for an example of how to use this signal.
2835    *
2836    * Returns: %TRUE if a menu was activated
2837    */
2838   widget_signals[POPUP_MENU] =
2839     g_signal_new (I_("popup-menu"),
2840                   G_TYPE_FROM_CLASS (klass),
2841                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
2842                   G_STRUCT_OFFSET (GtkWidgetClass, popup_menu),
2843                   _gtk_boolean_handled_accumulator, NULL,
2844                   _gtk_marshal_BOOLEAN__VOID,
2845                   G_TYPE_BOOLEAN, 0);
2846
2847   /**
2848    * GtkWidget::show-help:
2849    * @widget: the object which received the signal.
2850    * @help_type:
2851    */
2852   widget_signals[SHOW_HELP] =
2853     g_signal_new (I_("show-help"),
2854                   G_TYPE_FROM_CLASS (klass),
2855                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
2856                   G_STRUCT_OFFSET (GtkWidgetClass, show_help),
2857                   _gtk_boolean_handled_accumulator, NULL,
2858                   _gtk_marshal_BOOLEAN__ENUM,
2859                   G_TYPE_BOOLEAN, 1,
2860                   GTK_TYPE_WIDGET_HELP_TYPE);
2861
2862   /**
2863    * GtkWidget::accel-closures-changed:
2864    * @widget: the object which received the signal.
2865    */
2866   widget_signals[ACCEL_CLOSURES_CHANGED] =
2867     g_signal_new (I_("accel-closures-changed"),
2868                   G_TYPE_FROM_CLASS (klass),
2869                   0,
2870                   0,
2871                   NULL, NULL,
2872                   _gtk_marshal_VOID__VOID,
2873                   G_TYPE_NONE, 0);
2874
2875   /**
2876    * GtkWidget::screen-changed:
2877    * @widget: the object on which the signal is emitted
2878    * @previous_screen: (allow-none): the previous screen, or %NULL if the
2879    *   widget was not associated with a screen before
2880    *
2881    * The ::screen-changed signal gets emitted when the
2882    * screen of a widget has changed.
2883    */
2884   widget_signals[SCREEN_CHANGED] =
2885     g_signal_new (I_("screen-changed"),
2886                   G_TYPE_FROM_CLASS (klass),
2887                   G_SIGNAL_RUN_LAST,
2888                   G_STRUCT_OFFSET (GtkWidgetClass, screen_changed),
2889                   NULL, NULL,
2890                   _gtk_marshal_VOID__OBJECT,
2891                   G_TYPE_NONE, 1,
2892                   GDK_TYPE_SCREEN);
2893
2894   /**
2895    * GtkWidget::can-activate-accel:
2896    * @widget: the object which received the signal
2897    * @signal_id: the ID of a signal installed on @widget
2898    *
2899    * Determines whether an accelerator that activates the signal
2900    * identified by @signal_id can currently be activated.
2901    * This signal is present to allow applications and derived
2902    * widgets to override the default #GtkWidget handling
2903    * for determining whether an accelerator can be activated.
2904    *
2905    * Returns: %TRUE if the signal can be activated.
2906    */
2907   widget_signals[CAN_ACTIVATE_ACCEL] =
2908      g_signal_new (I_("can-activate-accel"),
2909                   G_TYPE_FROM_CLASS (klass),
2910                   G_SIGNAL_RUN_LAST,
2911                   G_STRUCT_OFFSET (GtkWidgetClass, can_activate_accel),
2912                   _gtk_boolean_handled_accumulator, NULL,
2913                   _gtk_marshal_BOOLEAN__UINT,
2914                   G_TYPE_BOOLEAN, 1, G_TYPE_UINT);
2915
2916   binding_set = gtk_binding_set_by_class (klass);
2917   gtk_binding_entry_add_signal (binding_set, GDK_KEY_F10, GDK_SHIFT_MASK,
2918                                 "popup-menu", 0);
2919   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Menu, 0,
2920                                 "popup-menu", 0);
2921
2922   gtk_binding_entry_add_signal (binding_set, GDK_KEY_F1, GDK_CONTROL_MASK,
2923                                 "show-help", 1,
2924                                 GTK_TYPE_WIDGET_HELP_TYPE,
2925                                 GTK_WIDGET_HELP_TOOLTIP);
2926   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_F1, GDK_CONTROL_MASK,
2927                                 "show-help", 1,
2928                                 GTK_TYPE_WIDGET_HELP_TYPE,
2929                                 GTK_WIDGET_HELP_TOOLTIP);
2930   gtk_binding_entry_add_signal (binding_set, GDK_KEY_F1, GDK_SHIFT_MASK,
2931                                 "show-help", 1,
2932                                 GTK_TYPE_WIDGET_HELP_TYPE,
2933                                 GTK_WIDGET_HELP_WHATS_THIS);
2934   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_F1, GDK_SHIFT_MASK,
2935                                 "show-help", 1,
2936                                 GTK_TYPE_WIDGET_HELP_TYPE,
2937                                 GTK_WIDGET_HELP_WHATS_THIS);
2938
2939   gtk_widget_class_install_style_property (klass,
2940                                            g_param_spec_boolean ("interior-focus",
2941                                                                  P_("Interior Focus"),
2942                                                                  P_("Whether to draw the focus indicator inside widgets"),
2943                                                                  TRUE,
2944                                                                  GTK_PARAM_READABLE));
2945
2946   gtk_widget_class_install_style_property (klass,
2947                                            g_param_spec_int ("focus-line-width",
2948                                                              P_("Focus linewidth"),
2949                                                              P_("Width, in pixels, of the focus indicator line"),
2950                                                              0, G_MAXINT, 1,
2951                                                              GTK_PARAM_READABLE));
2952
2953   gtk_widget_class_install_style_property (klass,
2954                                            g_param_spec_string ("focus-line-pattern",
2955                                                                 P_("Focus line dash pattern"),
2956                                                                 P_("Dash pattern used to draw the focus indicator"),
2957                                                                 "\1\1",
2958                                                                 GTK_PARAM_READABLE));
2959   gtk_widget_class_install_style_property (klass,
2960                                            g_param_spec_int ("focus-padding",
2961                                                              P_("Focus padding"),
2962                                                              P_("Width, in pixels, between focus indicator and the widget 'box'"),
2963                                                              0, G_MAXINT, 1,
2964                                                              GTK_PARAM_READABLE));
2965   gtk_widget_class_install_style_property (klass,
2966                                            g_param_spec_boxed ("cursor-color",
2967                                                                P_("Cursor color"),
2968                                                                P_("Color with which to draw insertion cursor"),
2969                                                                GDK_TYPE_COLOR,
2970                                                                GTK_PARAM_READABLE));
2971   gtk_widget_class_install_style_property (klass,
2972                                            g_param_spec_boxed ("secondary-cursor-color",
2973                                                                P_("Secondary cursor color"),
2974                                                                P_("Color with which to draw the secondary insertion cursor when editing mixed right-to-left and left-to-right text"),
2975                                                                GDK_TYPE_COLOR,
2976                                                                GTK_PARAM_READABLE));
2977   gtk_widget_class_install_style_property (klass,
2978                                            g_param_spec_float ("cursor-aspect-ratio",
2979                                                                P_("Cursor line aspect ratio"),
2980                                                                P_("Aspect ratio with which to draw insertion cursor"),
2981                                                                0.0, 1.0, 0.04,
2982                                                                GTK_PARAM_READABLE));
2983
2984   gtk_widget_class_install_style_property (klass,
2985                                            g_param_spec_boolean ("window-dragging",
2986                                                                  P_("Window dragging"),
2987                                                                  P_("Whether windows can be dragged by clicking on empty areas"),
2988                                                                  FALSE,
2989                                                                  GTK_PARAM_READABLE));
2990
2991   /**
2992    * GtkWidget:link-color:
2993    *
2994    * The "link-color" style property defines the color of unvisited links.
2995    *
2996    * Since: 2.10
2997    */
2998   gtk_widget_class_install_style_property (klass,
2999                                            g_param_spec_boxed ("link-color",
3000                                                                P_("Unvisited Link Color"),
3001                                                                P_("Color of unvisited links"),
3002                                                                GDK_TYPE_COLOR,
3003                                                                GTK_PARAM_READABLE));
3004
3005   /**
3006    * GtkWidget:visited-link-color:
3007    *
3008    * The "visited-link-color" style property defines the color of visited links.
3009    *
3010    * Since: 2.10
3011    */
3012   gtk_widget_class_install_style_property (klass,
3013                                            g_param_spec_boxed ("visited-link-color",
3014                                                                P_("Visited Link Color"),
3015                                                                P_("Color of visited links"),
3016                                                                GDK_TYPE_COLOR,
3017                                                                GTK_PARAM_READABLE));
3018
3019   /**
3020    * GtkWidget:wide-separators:
3021    *
3022    * The "wide-separators" style property defines whether separators have
3023    * configurable width and should be drawn using a box instead of a line.
3024    *
3025    * Since: 2.10
3026    */
3027   gtk_widget_class_install_style_property (klass,
3028                                            g_param_spec_boolean ("wide-separators",
3029                                                                  P_("Wide Separators"),
3030                                                                  P_("Whether separators have configurable width and should be drawn using a box instead of a line"),
3031                                                                  FALSE,
3032                                                                  GTK_PARAM_READABLE));
3033
3034   /**
3035    * GtkWidget:separator-width:
3036    *
3037    * The "separator-width" style property defines the width of separators.
3038    * This property only takes effect if #GtkWidget:wide-separators is %TRUE.
3039    *
3040    * Since: 2.10
3041    */
3042   gtk_widget_class_install_style_property (klass,
3043                                            g_param_spec_int ("separator-width",
3044                                                              P_("Separator Width"),
3045                                                              P_("The width of separators if wide-separators is TRUE"),
3046                                                              0, G_MAXINT, 0,
3047                                                              GTK_PARAM_READABLE));
3048
3049   /**
3050    * GtkWidget:separator-height:
3051    *
3052    * The "separator-height" style property defines the height of separators.
3053    * This property only takes effect if #GtkWidget:wide-separators is %TRUE.
3054    *
3055    * Since: 2.10
3056    */
3057   gtk_widget_class_install_style_property (klass,
3058                                            g_param_spec_int ("separator-height",
3059                                                              P_("Separator Height"),
3060                                                              P_("The height of separators if \"wide-separators\" is TRUE"),
3061                                                              0, G_MAXINT, 0,
3062                                                              GTK_PARAM_READABLE));
3063
3064   /**
3065    * GtkWidget:scroll-arrow-hlength:
3066    *
3067    * The "scroll-arrow-hlength" style property defines the length of
3068    * horizontal scroll arrows.
3069    *
3070    * Since: 2.10
3071    */
3072   gtk_widget_class_install_style_property (klass,
3073                                            g_param_spec_int ("scroll-arrow-hlength",
3074                                                              P_("Horizontal Scroll Arrow Length"),
3075                                                              P_("The length of horizontal scroll arrows"),
3076                                                              1, G_MAXINT, 16,
3077                                                              GTK_PARAM_READABLE));
3078
3079   /**
3080    * GtkWidget:scroll-arrow-vlength:
3081    *
3082    * The "scroll-arrow-vlength" style property defines the length of
3083    * vertical scroll arrows.
3084    *
3085    * Since: 2.10
3086    */
3087   gtk_widget_class_install_style_property (klass,
3088                                            g_param_spec_int ("scroll-arrow-vlength",
3089                                                              P_("Vertical Scroll Arrow Length"),
3090                                                              P_("The length of vertical scroll arrows"),
3091                                                              1, G_MAXINT, 16,
3092                                                              GTK_PARAM_READABLE));
3093
3094   g_type_class_add_private (klass, sizeof (GtkWidgetPrivate));
3095 }
3096
3097 static void
3098 gtk_widget_base_class_finalize (GtkWidgetClass *klass)
3099 {
3100   GList *list, *node;
3101
3102   list = g_param_spec_pool_list_owned (style_property_spec_pool, G_OBJECT_CLASS_TYPE (klass));
3103   for (node = list; node; node = node->next)
3104     {
3105       GParamSpec *pspec = node->data;
3106
3107       g_param_spec_pool_remove (style_property_spec_pool, pspec);
3108       g_param_spec_unref (pspec);
3109     }
3110   g_list_free (list);
3111 }
3112
3113 static void
3114 gtk_widget_set_property (GObject         *object,
3115                          guint            prop_id,
3116                          const GValue    *value,
3117                          GParamSpec      *pspec)
3118 {
3119   GtkWidget *widget = GTK_WIDGET (object);
3120
3121   switch (prop_id)
3122     {
3123       gboolean tmp;
3124       gchar *tooltip_markup;
3125       const gchar *tooltip_text;
3126       GtkWindow *tooltip_window;
3127
3128     case PROP_NAME:
3129       gtk_widget_set_name (widget, g_value_get_string (value));
3130       break;
3131     case PROP_PARENT:
3132       gtk_container_add (GTK_CONTAINER (g_value_get_object (value)), widget);
3133       break;
3134     case PROP_WIDTH_REQUEST:
3135       gtk_widget_set_usize_internal (widget, g_value_get_int (value), -2, 0);
3136       break;
3137     case PROP_HEIGHT_REQUEST:
3138       gtk_widget_set_usize_internal (widget, -2, g_value_get_int (value), 0);
3139       break;
3140     case PROP_VISIBLE:
3141       gtk_widget_set_visible (widget, g_value_get_boolean (value));
3142       break;
3143     case PROP_SENSITIVE:
3144       gtk_widget_set_sensitive (widget, g_value_get_boolean (value));
3145       break;
3146     case PROP_APP_PAINTABLE:
3147       gtk_widget_set_app_paintable (widget, g_value_get_boolean (value));
3148       break;
3149     case PROP_CAN_FOCUS:
3150       gtk_widget_set_can_focus (widget, g_value_get_boolean (value));
3151       break;
3152     case PROP_HAS_FOCUS:
3153       if (g_value_get_boolean (value))
3154         gtk_widget_grab_focus (widget);
3155       break;
3156     case PROP_IS_FOCUS:
3157       if (g_value_get_boolean (value))
3158         gtk_widget_grab_focus (widget);
3159       break;
3160     case PROP_CAN_DEFAULT:
3161       gtk_widget_set_can_default (widget, g_value_get_boolean (value));
3162       break;
3163     case PROP_HAS_DEFAULT:
3164       if (g_value_get_boolean (value))
3165         gtk_widget_grab_default (widget);
3166       break;
3167     case PROP_RECEIVES_DEFAULT:
3168       gtk_widget_set_receives_default (widget, g_value_get_boolean (value));
3169       break;
3170     case PROP_STYLE:
3171       gtk_widget_set_style (widget, g_value_get_object (value));
3172       break;
3173     case PROP_EVENTS:
3174       if (!gtk_widget_get_realized (widget) && gtk_widget_get_has_window (widget))
3175         gtk_widget_set_events (widget, g_value_get_flags (value));
3176       break;
3177     case PROP_EXTENSION_EVENTS:
3178       gtk_widget_set_extension_events (widget, g_value_get_enum (value));
3179       break;
3180     case PROP_NO_SHOW_ALL:
3181       gtk_widget_set_no_show_all (widget, g_value_get_boolean (value));
3182       break;
3183     case PROP_HAS_TOOLTIP:
3184       gtk_widget_real_set_has_tooltip (widget,
3185                                        g_value_get_boolean (value), FALSE);
3186       break;
3187     case PROP_TOOLTIP_MARKUP:
3188       tooltip_window = g_object_get_qdata (object, quark_tooltip_window);
3189       tooltip_markup = g_value_dup_string (value);
3190
3191       /* Treat an empty string as a NULL string,
3192        * because an empty string would be useless for a tooltip:
3193        */
3194       if (tooltip_markup && (strlen (tooltip_markup) == 0))
3195         {
3196           g_free (tooltip_markup);
3197           tooltip_markup = NULL;
3198         }
3199
3200       g_object_set_qdata_full (object, quark_tooltip_markup,
3201                                tooltip_markup, g_free);
3202
3203       tmp = (tooltip_window != NULL || tooltip_markup != NULL);
3204       gtk_widget_real_set_has_tooltip (widget, tmp, FALSE);
3205       if (gtk_widget_get_visible (widget))
3206         gtk_widget_queue_tooltip_query (widget);
3207       break;
3208     case PROP_TOOLTIP_TEXT:
3209       tooltip_window = g_object_get_qdata (object, quark_tooltip_window);
3210
3211       tooltip_text = g_value_get_string (value);
3212
3213       /* Treat an empty string as a NULL string,
3214        * because an empty string would be useless for a tooltip:
3215        */
3216       if (tooltip_text && (strlen (tooltip_text) == 0))
3217         tooltip_text = NULL;
3218
3219       tooltip_markup = tooltip_text ? g_markup_escape_text (tooltip_text, -1) : NULL;
3220
3221       g_object_set_qdata_full (object, quark_tooltip_markup,
3222                                tooltip_markup, g_free);
3223
3224       tmp = (tooltip_window != NULL || tooltip_markup != NULL);
3225       gtk_widget_real_set_has_tooltip (widget, tmp, FALSE);
3226       if (gtk_widget_get_visible (widget))
3227         gtk_widget_queue_tooltip_query (widget);
3228       break;
3229     case PROP_DOUBLE_BUFFERED:
3230       gtk_widget_set_double_buffered (widget, g_value_get_boolean (value));
3231       break;
3232     case PROP_HALIGN:
3233       gtk_widget_set_halign (widget, g_value_get_enum (value));
3234       break;
3235     case PROP_VALIGN:
3236       gtk_widget_set_valign (widget, g_value_get_enum (value));
3237       break;
3238     case PROP_MARGIN_LEFT:
3239       gtk_widget_set_margin_left (widget, g_value_get_int (value));
3240       break;
3241     case PROP_MARGIN_RIGHT:
3242       gtk_widget_set_margin_right (widget, g_value_get_int (value));
3243       break;
3244     case PROP_MARGIN_TOP:
3245       gtk_widget_set_margin_top (widget, g_value_get_int (value));
3246       break;
3247     case PROP_MARGIN_BOTTOM:
3248       gtk_widget_set_margin_bottom (widget, g_value_get_int (value));
3249       break;
3250     case PROP_MARGIN:
3251       g_object_freeze_notify (G_OBJECT (widget));
3252       gtk_widget_set_margin_left (widget, g_value_get_int (value));
3253       gtk_widget_set_margin_right (widget, g_value_get_int (value));
3254       gtk_widget_set_margin_top (widget, g_value_get_int (value));
3255       gtk_widget_set_margin_bottom (widget, g_value_get_int (value));
3256       g_object_thaw_notify (G_OBJECT (widget));
3257       break;
3258     case PROP_HEXPAND:
3259       gtk_widget_set_hexpand (widget, g_value_get_boolean (value));
3260       break;
3261     case PROP_HEXPAND_SET:
3262       gtk_widget_set_hexpand_set (widget, g_value_get_boolean (value));
3263       break;
3264     case PROP_VEXPAND:
3265       gtk_widget_set_vexpand (widget, g_value_get_boolean (value));
3266       break;
3267     case PROP_VEXPAND_SET:
3268       gtk_widget_set_vexpand_set (widget, g_value_get_boolean (value));
3269       break;
3270     case PROP_EXPAND:
3271       g_object_freeze_notify (G_OBJECT (widget));
3272       gtk_widget_set_hexpand (widget, g_value_get_boolean (value));
3273       gtk_widget_set_vexpand (widget, g_value_get_boolean (value));
3274       g_object_thaw_notify (G_OBJECT (widget));
3275       break;
3276     default:
3277       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
3278       break;
3279     }
3280 }
3281
3282 static void
3283 gtk_widget_get_property (GObject         *object,
3284                          guint            prop_id,
3285                          GValue          *value,
3286                          GParamSpec      *pspec)
3287 {
3288   GtkWidget *widget = GTK_WIDGET (object);
3289   GtkWidgetPrivate *priv = widget->priv;
3290
3291   switch (prop_id)
3292     {
3293       gpointer *eventp;
3294       gpointer *modep;
3295
3296     case PROP_NAME:
3297       if (priv->name)
3298         g_value_set_string (value, priv->name);
3299       else
3300         g_value_set_static_string (value, "");
3301       break;
3302     case PROP_PARENT:
3303       g_value_set_object (value, priv->parent);
3304       break;
3305     case PROP_WIDTH_REQUEST:
3306       {
3307         int w;
3308         gtk_widget_get_size_request (widget, &w, NULL);
3309         g_value_set_int (value, w);
3310       }
3311       break;
3312     case PROP_HEIGHT_REQUEST:
3313       {
3314         int h;
3315         gtk_widget_get_size_request (widget, NULL, &h);
3316         g_value_set_int (value, h);
3317       }
3318       break;
3319     case PROP_VISIBLE:
3320       g_value_set_boolean (value, (gtk_widget_get_visible (widget) != FALSE));
3321       break;
3322     case PROP_SENSITIVE:
3323       g_value_set_boolean (value, (gtk_widget_get_sensitive (widget) != FALSE));
3324       break;
3325     case PROP_APP_PAINTABLE:
3326       g_value_set_boolean (value, (gtk_widget_get_app_paintable (widget) != FALSE));
3327       break;
3328     case PROP_CAN_FOCUS:
3329       g_value_set_boolean (value, (gtk_widget_get_can_focus (widget) != FALSE));
3330       break;
3331     case PROP_HAS_FOCUS:
3332       g_value_set_boolean (value, (gtk_widget_has_focus (widget) != FALSE));
3333       break;
3334     case PROP_IS_FOCUS:
3335       g_value_set_boolean (value, (gtk_widget_is_focus (widget)));
3336       break;
3337     case PROP_CAN_DEFAULT:
3338       g_value_set_boolean (value, (gtk_widget_get_can_default (widget) != FALSE));
3339       break;
3340     case PROP_HAS_DEFAULT:
3341       g_value_set_boolean (value, (gtk_widget_has_default (widget) != FALSE));
3342       break;
3343     case PROP_RECEIVES_DEFAULT:
3344       g_value_set_boolean (value, (gtk_widget_get_receives_default (widget) != FALSE));
3345       break;
3346     case PROP_COMPOSITE_CHILD:
3347       g_value_set_boolean (value, widget->priv->composite_child);
3348       break;
3349     case PROP_STYLE:
3350       g_value_set_object (value, gtk_widget_get_style (widget));
3351       break;
3352     case PROP_EVENTS:
3353       eventp = g_object_get_qdata (G_OBJECT (widget), quark_event_mask);
3354       g_value_set_flags (value, GPOINTER_TO_INT (eventp));
3355       break;
3356     case PROP_EXTENSION_EVENTS:
3357       modep = g_object_get_qdata (G_OBJECT (widget), quark_extension_event_mode);
3358       g_value_set_enum (value, GPOINTER_TO_INT (modep));
3359       break;
3360     case PROP_NO_SHOW_ALL:
3361       g_value_set_boolean (value, gtk_widget_get_no_show_all (widget));
3362       break;
3363     case PROP_HAS_TOOLTIP:
3364       g_value_set_boolean (value, GPOINTER_TO_UINT (g_object_get_qdata (object, quark_has_tooltip)));
3365       break;
3366     case PROP_TOOLTIP_TEXT:
3367       {
3368         gchar *escaped = g_object_get_qdata (object, quark_tooltip_markup);
3369         gchar *text = NULL;
3370
3371         if (escaped && !pango_parse_markup (escaped, -1, 0, NULL, &text, NULL, NULL))
3372           g_assert (NULL == text); /* text should still be NULL in case of markup errors */
3373
3374         g_value_take_string (value, text);
3375       }
3376       break;
3377     case PROP_TOOLTIP_MARKUP:
3378       g_value_set_string (value, g_object_get_qdata (object, quark_tooltip_markup));
3379       break;
3380     case PROP_WINDOW:
3381       g_value_set_object (value, gtk_widget_get_window (widget));
3382       break;
3383     case PROP_DOUBLE_BUFFERED:
3384       g_value_set_boolean (value, gtk_widget_get_double_buffered (widget));
3385       break;
3386     case PROP_HALIGN:
3387       g_value_set_enum (value, gtk_widget_get_halign (widget));
3388       break;
3389     case PROP_VALIGN:
3390       g_value_set_enum (value, gtk_widget_get_valign (widget));
3391       break;
3392     case PROP_MARGIN_LEFT:
3393       g_value_set_int (value, gtk_widget_get_margin_left (widget));
3394       break;
3395     case PROP_MARGIN_RIGHT:
3396       g_value_set_int (value, gtk_widget_get_margin_right (widget));
3397       break;
3398     case PROP_MARGIN_TOP:
3399       g_value_set_int (value, gtk_widget_get_margin_top (widget));
3400       break;
3401     case PROP_MARGIN_BOTTOM:
3402       g_value_set_int (value, gtk_widget_get_margin_bottom (widget));
3403       break;
3404     case PROP_MARGIN:
3405       {
3406         GtkWidgetAuxInfo *aux_info = _gtk_widget_get_aux_info (widget, FALSE);
3407         if (aux_info == NULL)
3408           {
3409             g_value_set_int (value, 0);
3410           }
3411         else
3412           {
3413             g_value_set_int (value, MAX (MAX (aux_info->margin.left,
3414                                               aux_info->margin.right),
3415                                          MAX (aux_info->margin.top,
3416                                               aux_info->margin.bottom)));
3417           }
3418       }
3419       break;
3420     case PROP_HEXPAND:
3421       g_value_set_boolean (value, gtk_widget_get_hexpand (widget));
3422       break;
3423     case PROP_HEXPAND_SET:
3424       g_value_set_boolean (value, gtk_widget_get_hexpand_set (widget));
3425       break;
3426     case PROP_VEXPAND:
3427       g_value_set_boolean (value, gtk_widget_get_vexpand (widget));
3428       break;
3429     case PROP_VEXPAND_SET:
3430       g_value_set_boolean (value, gtk_widget_get_vexpand_set (widget));
3431       break;
3432     case PROP_EXPAND:
3433       g_value_set_boolean (value,
3434                            gtk_widget_get_hexpand (widget) &&
3435                            gtk_widget_get_vexpand (widget));
3436       break;
3437     default:
3438       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
3439       break;
3440     }
3441 }
3442
3443 static void
3444 gtk_widget_init (GtkWidget *widget)
3445 {
3446   GtkWidgetPrivate *priv;
3447
3448   widget->priv = G_TYPE_INSTANCE_GET_PRIVATE (widget,
3449                                               GTK_TYPE_WIDGET,
3450                                               GtkWidgetPrivate);
3451   priv = widget->priv;
3452
3453   priv->child_visible = TRUE;
3454   priv->state = GTK_STATE_NORMAL;
3455   priv->saved_state = GTK_STATE_NORMAL;
3456   priv->name = NULL;
3457   priv->allocation.x = -1;
3458   priv->allocation.y = -1;
3459   priv->allocation.width = 1;
3460   priv->allocation.height = 1;
3461   priv->window = NULL;
3462   priv->parent = NULL;
3463
3464   priv->sensitive = TRUE;
3465   priv->parent_sensitive = TRUE;
3466   priv->composite_child = composite_child_stack != 0;
3467   priv->double_buffered = TRUE;
3468   priv->redraw_on_alloc = TRUE;
3469   priv->width_request_needed = TRUE;
3470   priv->height_request_needed = TRUE;
3471   priv->alloc_needed = TRUE;
3472
3473   /* this will be set to TRUE if the widget gets a child or if the
3474    * expand flag is set on the widget, but until one of those happen
3475    * we know the expand is already properly FALSE.
3476    *
3477    * We really want to default FALSE here to avoid computing expand
3478    * all over the place while initially building a widget tree.
3479    */
3480   priv->need_compute_expand = FALSE;
3481
3482   priv->style = gtk_widget_get_default_style ();
3483   g_object_ref (priv->style);
3484 }
3485
3486
3487 static void
3488 gtk_widget_dispatch_child_properties_changed (GtkWidget   *widget,
3489                                               guint        n_pspecs,
3490                                               GParamSpec **pspecs)
3491 {
3492   GtkWidgetPrivate *priv = widget->priv;
3493   GtkWidget *container = priv->parent;
3494   guint i;
3495
3496   for (i = 0; widget->priv->parent == container && i < n_pspecs; i++)
3497     g_signal_emit (widget, widget_signals[CHILD_NOTIFY], g_quark_from_string (pspecs[i]->name), pspecs[i]);
3498 }
3499
3500 /**
3501  * gtk_widget_freeze_child_notify:
3502  * @widget: a #GtkWidget
3503  *
3504  * Stops emission of #GtkWidget::child-notify signals on @widget. The
3505  * signals are queued until gtk_widget_thaw_child_notify() is called
3506  * on @widget.
3507  *
3508  * This is the analogue of g_object_freeze_notify() for child properties.
3509  **/
3510 void
3511 gtk_widget_freeze_child_notify (GtkWidget *widget)
3512 {
3513   g_return_if_fail (GTK_IS_WIDGET (widget));
3514
3515   if (!G_OBJECT (widget)->ref_count)
3516     return;
3517
3518   g_object_ref (widget);
3519   g_object_notify_queue_freeze (G_OBJECT (widget), _gtk_widget_child_property_notify_context);
3520   g_object_unref (widget);
3521 }
3522
3523 /**
3524  * gtk_widget_child_notify:
3525  * @widget: a #GtkWidget
3526  * @child_property: the name of a child property installed on the
3527  *                  class of @widget<!-- -->'s parent
3528  *
3529  * Emits a #GtkWidget::child-notify signal for the
3530  * <link linkend="child-properties">child property</link> @child_property
3531  * on @widget.
3532  *
3533  * This is the analogue of g_object_notify() for child properties.
3534  **/
3535 void
3536 gtk_widget_child_notify (GtkWidget    *widget,
3537                          const gchar  *child_property)
3538 {
3539   GtkWidgetPrivate *priv = widget->priv;
3540   GParamSpec *pspec;
3541
3542   g_return_if_fail (GTK_IS_WIDGET (widget));
3543   g_return_if_fail (child_property != NULL);
3544   if (!G_OBJECT (widget)->ref_count || !priv->parent)
3545     return;
3546
3547   g_object_ref (widget);
3548   pspec = g_param_spec_pool_lookup (_gtk_widget_child_property_pool,
3549                                     child_property,
3550                                     G_OBJECT_TYPE (priv->parent),
3551                                     TRUE);
3552   if (!pspec)
3553     g_warning ("%s: container class `%s' has no child property named `%s'",
3554                G_STRLOC,
3555                G_OBJECT_TYPE_NAME (priv->parent),
3556                child_property);
3557   else
3558     {
3559       GObjectNotifyQueue *nqueue = g_object_notify_queue_freeze (G_OBJECT (widget), _gtk_widget_child_property_notify_context);
3560
3561       g_object_notify_queue_add (G_OBJECT (widget), nqueue, pspec);
3562       g_object_notify_queue_thaw (G_OBJECT (widget), nqueue);
3563     }
3564   g_object_unref (widget);
3565 }
3566
3567 /**
3568  * gtk_widget_thaw_child_notify:
3569  * @widget: a #GtkWidget
3570  *
3571  * Reverts the effect of a previous call to gtk_widget_freeze_child_notify().
3572  * This causes all queued #GtkWidget::child-notify signals on @widget to be
3573  * emitted.
3574  */
3575 void
3576 gtk_widget_thaw_child_notify (GtkWidget *widget)
3577 {
3578   GObjectNotifyQueue *nqueue;
3579
3580   g_return_if_fail (GTK_IS_WIDGET (widget));
3581
3582   if (!G_OBJECT (widget)->ref_count)
3583     return;
3584
3585   g_object_ref (widget);
3586   nqueue = g_object_notify_queue_from_object (G_OBJECT (widget), _gtk_widget_child_property_notify_context);
3587   if (!nqueue || !nqueue->freeze_count)
3588     g_warning (G_STRLOC ": child-property-changed notification for %s(%p) is not frozen",
3589                G_OBJECT_TYPE_NAME (widget), widget);
3590   else
3591     g_object_notify_queue_thaw (G_OBJECT (widget), nqueue);
3592   g_object_unref (widget);
3593 }
3594
3595
3596 /**
3597  * gtk_widget_new:
3598  * @type: type ID of the widget to create
3599  * @first_property_name: name of first property to set
3600  * @Varargs: value of first property, followed by more properties,
3601  *           %NULL-terminated
3602  *
3603  * This is a convenience function for creating a widget and setting
3604  * its properties in one go. For example you might write:
3605  * <literal>gtk_widget_new (GTK_TYPE_LABEL, "label", "Hello World", "xalign",
3606  * 0.0, NULL)</literal> to create a left-aligned label. Equivalent to
3607  * g_object_new(), but returns a widget so you don't have to
3608  * cast the object yourself.
3609  *
3610  * Return value: a new #GtkWidget of type @widget_type
3611  **/
3612 GtkWidget*
3613 gtk_widget_new (GType        type,
3614                 const gchar *first_property_name,
3615                 ...)
3616 {
3617   GtkWidget *widget;
3618   va_list var_args;
3619
3620   g_return_val_if_fail (g_type_is_a (type, GTK_TYPE_WIDGET), NULL);
3621
3622   va_start (var_args, first_property_name);
3623   widget = (GtkWidget *)g_object_new_valist (type, first_property_name, var_args);
3624   va_end (var_args);
3625
3626   return widget;
3627 }
3628
3629 static inline void
3630 gtk_widget_queue_draw_child (GtkWidget *widget)
3631 {
3632   GtkWidgetPrivate *priv = widget->priv;
3633   GtkWidget *parent;
3634
3635   parent = priv->parent;
3636   if (parent && gtk_widget_is_drawable (parent))
3637     gtk_widget_queue_draw_area (parent,
3638                                 priv->allocation.x,
3639                                 priv->allocation.y,
3640                                 priv->allocation.width,
3641                                 priv->allocation.height);
3642 }
3643
3644 /**
3645  * gtk_widget_unparent:
3646  * @widget: a #GtkWidget
3647  *
3648  * This function is only for use in widget implementations.
3649  * Should be called by implementations of the remove method
3650  * on #GtkContainer, to dissociate a child from the container.
3651  **/
3652 void
3653 gtk_widget_unparent (GtkWidget *widget)
3654 {
3655   GtkWidgetPrivate *priv;
3656   GObjectNotifyQueue *nqueue;
3657   GtkWidget *toplevel;
3658   GtkWidget *old_parent;
3659
3660   g_return_if_fail (GTK_IS_WIDGET (widget));
3661
3662   priv = widget->priv;
3663
3664   if (priv->parent == NULL)
3665     return;
3666
3667   /* keep this function in sync with gtk_menu_detach()
3668    */
3669
3670   g_object_freeze_notify (G_OBJECT (widget));
3671   nqueue = g_object_notify_queue_freeze (G_OBJECT (widget), _gtk_widget_child_property_notify_context);
3672
3673   toplevel = gtk_widget_get_toplevel (widget);
3674   if (gtk_widget_is_toplevel (toplevel))
3675     _gtk_window_unset_focus_and_default (GTK_WINDOW (toplevel), widget);
3676
3677   if (gtk_container_get_focus_child (GTK_CONTAINER (priv->parent)) == widget)
3678     gtk_container_set_focus_child (GTK_CONTAINER (priv->parent), NULL);
3679
3680   /* If we are unanchoring the child, we save around the toplevel
3681    * to emit hierarchy changed
3682    */
3683   if (priv->parent->priv->anchored)
3684     g_object_ref (toplevel);
3685   else
3686     toplevel = NULL;
3687
3688   gtk_widget_queue_draw_child (widget);
3689
3690   /* Reset the width and height here, to force reallocation if we
3691    * get added back to a new parent. This won't work if our new
3692    * allocation is smaller than 1x1 and we actually want a size of 1x1...
3693    * (would 0x0 be OK here?)
3694    */
3695   priv->allocation.width = 1;
3696   priv->allocation.height = 1;
3697
3698   if (gtk_widget_get_realized (widget))
3699     {
3700       if (priv->in_reparent)
3701         gtk_widget_unmap (widget);
3702       else
3703         gtk_widget_unrealize (widget);
3704     }
3705
3706   /* Removing a widget from a container restores the child visible
3707    * flag to the default state, so it doesn't affect the child
3708    * in the next parent.
3709    */
3710   priv->child_visible = TRUE;
3711
3712   old_parent = priv->parent;
3713   priv->parent = NULL;
3714   gtk_widget_set_parent_window (widget, NULL);
3715
3716   /* parent may no longer expand if the removed
3717    * child was expand=TRUE and could therefore
3718    * be forcing it to.
3719    */
3720   if (gtk_widget_get_visible (widget) &&
3721       (priv->need_compute_expand ||
3722        priv->computed_hexpand ||
3723        priv->computed_vexpand))
3724     {
3725       gtk_widget_queue_compute_expand (old_parent);
3726     }
3727
3728   g_signal_emit (widget, widget_signals[PARENT_SET], 0, old_parent);
3729   if (toplevel)
3730     {
3731       _gtk_widget_propagate_hierarchy_changed (widget, toplevel);
3732       g_object_unref (toplevel);
3733     }
3734
3735   g_object_notify (G_OBJECT (widget), "parent");
3736   g_object_thaw_notify (G_OBJECT (widget));
3737   if (!priv->parent)
3738     g_object_notify_queue_clear (G_OBJECT (widget), nqueue);
3739   g_object_notify_queue_thaw (G_OBJECT (widget), nqueue);
3740   g_object_unref (widget);
3741 }
3742
3743 /**
3744  * gtk_widget_destroy:
3745  * @widget: a #GtkWidget
3746  *
3747  * Destroys a widget.
3748  *
3749  * When a widget is
3750  * destroyed, it will break any references it holds to other objects.
3751  * If the widget is inside a container, the widget will be removed
3752  * from the container. If the widget is a toplevel (derived from
3753  * #GtkWindow), it will be removed from the list of toplevels, and the
3754  * reference GTK+ holds to it will be removed. Removing a
3755  * widget from its container or the list of toplevels results in the
3756  * widget being finalized, unless you've added additional references
3757  * to the widget with g_object_ref().
3758  *
3759  * In most cases, only toplevel widgets (windows) require explicit
3760  * destruction, because when you destroy a toplevel its children will
3761  * be destroyed as well.
3762  **/
3763 void
3764 gtk_widget_destroy (GtkWidget *widget)
3765 {
3766   g_return_if_fail (GTK_IS_WIDGET (widget));
3767
3768   if (!widget->priv->in_destruction)
3769     g_object_run_dispose (G_OBJECT (widget));
3770 }
3771
3772 /**
3773  * gtk_widget_destroyed:
3774  * @widget: a #GtkWidget
3775  * @widget_pointer: (inout) (transfer none): address of a variable that contains @widget
3776  *
3777  * This function sets *@widget_pointer to %NULL if @widget_pointer !=
3778  * %NULL.  It's intended to be used as a callback connected to the
3779  * "destroy" signal of a widget. You connect gtk_widget_destroyed()
3780  * as a signal handler, and pass the address of your widget variable
3781  * as user data. Then when the widget is destroyed, the variable will
3782  * be set to %NULL. Useful for example to avoid multiple copies
3783  * of the same dialog.
3784  **/
3785 void
3786 gtk_widget_destroyed (GtkWidget      *widget,
3787                       GtkWidget      **widget_pointer)
3788 {
3789   /* Don't make any assumptions about the
3790    *  value of widget!
3791    *  Even check widget_pointer.
3792    */
3793   if (widget_pointer)
3794     *widget_pointer = NULL;
3795 }
3796
3797 /**
3798  * gtk_widget_show:
3799  * @widget: a #GtkWidget
3800  *
3801  * Flags a widget to be displayed. Any widget that isn't shown will
3802  * not appear on the screen. If you want to show all the widgets in a
3803  * container, it's easier to call gtk_widget_show_all() on the
3804  * container, instead of individually showing the widgets.
3805  *
3806  * Remember that you have to show the containers containing a widget,
3807  * in addition to the widget itself, before it will appear onscreen.
3808  *
3809  * When a toplevel container is shown, it is immediately realized and
3810  * mapped; other shown widgets are realized and mapped when their
3811  * toplevel container is realized and mapped.
3812  **/
3813 void
3814 gtk_widget_show (GtkWidget *widget)
3815 {
3816   g_return_if_fail (GTK_IS_WIDGET (widget));
3817
3818   if (!gtk_widget_get_visible (widget))
3819     {
3820       g_object_ref (widget);
3821       if (!gtk_widget_is_toplevel (widget))
3822         gtk_widget_queue_resize (widget);
3823
3824       /* see comment in set_parent() for why this should and can be
3825        * conditional
3826        */
3827       if (widget->priv->need_compute_expand ||
3828           widget->priv->computed_hexpand ||
3829           widget->priv->computed_vexpand)
3830         {
3831           if (widget->priv->parent != NULL)
3832             gtk_widget_queue_compute_expand (widget->priv->parent);
3833         }
3834
3835       g_signal_emit (widget, widget_signals[SHOW], 0);
3836       g_object_notify (G_OBJECT (widget), "visible");
3837       g_object_unref (widget);
3838     }
3839 }
3840
3841 static void
3842 gtk_widget_real_show (GtkWidget *widget)
3843 {
3844   GtkWidgetPrivate *priv = widget->priv;
3845
3846   if (!gtk_widget_get_visible (widget))
3847     {
3848       priv->visible = TRUE;
3849
3850       if (priv->parent &&
3851           gtk_widget_get_mapped (priv->parent) &&
3852           gtk_widget_get_child_visible (widget) &&
3853           !gtk_widget_get_mapped (widget))
3854         gtk_widget_map (widget);
3855     }
3856 }
3857
3858 static void
3859 gtk_widget_show_map_callback (GtkWidget *widget, GdkEvent *event, gint *flag)
3860 {
3861   *flag = TRUE;
3862   g_signal_handlers_disconnect_by_func (widget,
3863                                         gtk_widget_show_map_callback,
3864                                         flag);
3865 }
3866
3867 /**
3868  * gtk_widget_show_now:
3869  * @widget: a #GtkWidget
3870  *
3871  * Shows a widget. If the widget is an unmapped toplevel widget
3872  * (i.e. a #GtkWindow that has not yet been shown), enter the main
3873  * loop and wait for the window to actually be mapped. Be careful;
3874  * because the main loop is running, anything can happen during
3875  * this function.
3876  **/
3877 void
3878 gtk_widget_show_now (GtkWidget *widget)
3879 {
3880   gint flag = FALSE;
3881
3882   g_return_if_fail (GTK_IS_WIDGET (widget));
3883
3884   /* make sure we will get event */
3885   if (!gtk_widget_get_mapped (widget) &&
3886       gtk_widget_is_toplevel (widget))
3887     {
3888       gtk_widget_show (widget);
3889
3890       g_signal_connect (widget, "map-event",
3891                         G_CALLBACK (gtk_widget_show_map_callback),
3892                         &flag);
3893
3894       while (!flag)
3895         gtk_main_iteration ();
3896     }
3897   else
3898     gtk_widget_show (widget);
3899 }
3900
3901 /**
3902  * gtk_widget_hide:
3903  * @widget: a #GtkWidget
3904  *
3905  * Reverses the effects of gtk_widget_show(), causing the widget to be
3906  * hidden (invisible to the user).
3907  **/
3908 void
3909 gtk_widget_hide (GtkWidget *widget)
3910 {
3911   g_return_if_fail (GTK_IS_WIDGET (widget));
3912
3913   if (gtk_widget_get_visible (widget))
3914     {
3915       GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
3916
3917       g_object_ref (widget);
3918       if (toplevel != widget && gtk_widget_is_toplevel (toplevel))
3919         _gtk_window_unset_focus_and_default (GTK_WINDOW (toplevel), widget);
3920
3921       /* a parent may now be expand=FALSE since we're hidden. */
3922       if (widget->priv->need_compute_expand ||
3923           widget->priv->computed_hexpand ||
3924           widget->priv->computed_vexpand)
3925         {
3926           gtk_widget_queue_compute_expand (widget);
3927         }
3928
3929       g_signal_emit (widget, widget_signals[HIDE], 0);
3930       if (!gtk_widget_is_toplevel (widget))
3931         gtk_widget_queue_resize (widget);
3932       g_object_notify (G_OBJECT (widget), "visible");
3933       g_object_unref (widget);
3934     }
3935 }
3936
3937 static void
3938 gtk_widget_real_hide (GtkWidget *widget)
3939 {
3940   if (gtk_widget_get_visible (widget))
3941     {
3942       widget->priv->visible = FALSE;
3943
3944       if (gtk_widget_get_mapped (widget))
3945         gtk_widget_unmap (widget);
3946     }
3947 }
3948
3949 /**
3950  * gtk_widget_hide_on_delete:
3951  * @widget: a #GtkWidget
3952  *
3953  * Utility function; intended to be connected to the #GtkWidget::delete-event
3954  * signal on a #GtkWindow. The function calls gtk_widget_hide() on its
3955  * argument, then returns %TRUE. If connected to ::delete-event, the
3956  * result is that clicking the close button for a window (on the
3957  * window frame, top right corner usually) will hide but not destroy
3958  * the window. By default, GTK+ destroys windows when ::delete-event
3959  * is received.
3960  *
3961  * Return value: %TRUE
3962  **/
3963 gboolean
3964 gtk_widget_hide_on_delete (GtkWidget *widget)
3965 {
3966   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
3967
3968   gtk_widget_hide (widget);
3969
3970   return TRUE;
3971 }
3972
3973 /**
3974  * gtk_widget_show_all:
3975  * @widget: a #GtkWidget
3976  *
3977  * Recursively shows a widget, and any child widgets (if the widget is
3978  * a container).
3979  **/
3980 void
3981 gtk_widget_show_all (GtkWidget *widget)
3982 {
3983   GtkWidgetClass *class;
3984
3985   g_return_if_fail (GTK_IS_WIDGET (widget));
3986
3987   if (gtk_widget_get_no_show_all (widget))
3988     return;
3989
3990   class = GTK_WIDGET_GET_CLASS (widget);
3991
3992   if (class->show_all)
3993     class->show_all (widget);
3994 }
3995
3996 /**
3997  * gtk_widget_map:
3998  * @widget: a #GtkWidget
3999  *
4000  * This function is only for use in widget implementations. Causes
4001  * a widget to be mapped if it isn't already.
4002  **/
4003 void
4004 gtk_widget_map (GtkWidget *widget)
4005 {
4006   GtkWidgetPrivate *priv;
4007
4008   g_return_if_fail (GTK_IS_WIDGET (widget));
4009   g_return_if_fail (gtk_widget_get_visible (widget));
4010   g_return_if_fail (gtk_widget_get_child_visible (widget));
4011
4012   priv = widget->priv;
4013
4014   if (!gtk_widget_get_mapped (widget))
4015     {
4016       if (!gtk_widget_get_realized (widget))
4017         gtk_widget_realize (widget);
4018
4019       g_signal_emit (widget, widget_signals[MAP], 0);
4020
4021       if (!gtk_widget_get_has_window (widget))
4022         gdk_window_invalidate_rect (priv->window, &priv->allocation, FALSE);
4023     }
4024 }
4025
4026 /**
4027  * gtk_widget_unmap:
4028  * @widget: a #GtkWidget
4029  *
4030  * This function is only for use in widget implementations. Causes
4031  * a widget to be unmapped if it's currently mapped.
4032  **/
4033 void
4034 gtk_widget_unmap (GtkWidget *widget)
4035 {
4036   GtkWidgetPrivate *priv;
4037
4038   g_return_if_fail (GTK_IS_WIDGET (widget));
4039
4040   priv = widget->priv;
4041
4042   if (gtk_widget_get_mapped (widget))
4043     {
4044       if (!gtk_widget_get_has_window (widget))
4045         gdk_window_invalidate_rect (priv->window, &priv->allocation, FALSE);
4046       _gtk_tooltip_hide (widget);
4047       g_signal_emit (widget, widget_signals[UNMAP], 0);
4048     }
4049 }
4050
4051 static void
4052 gtk_widget_set_extension_events_internal (GtkWidget        *widget,
4053                                           GdkExtensionMode  mode,
4054                                           GList            *window_list)
4055 {
4056   GtkWidgetPrivate *priv = widget->priv;
4057   GList *free_list = NULL;
4058   GList *l;
4059
4060   if (window_list == NULL)
4061     {
4062       if (gtk_widget_get_has_window (widget))
4063         window_list = g_list_prepend (NULL, priv->window);
4064       else
4065         window_list = gdk_window_get_children (priv->window);
4066
4067       free_list = window_list;
4068     }
4069
4070   for (l = window_list; l != NULL; l = l->next)
4071     {
4072       GdkWindow *window = l->data;
4073       gpointer user_data;
4074
4075       gdk_window_get_user_data (window, &user_data);
4076       if (user_data == widget)
4077         {
4078           GList *children;
4079
4080           gdk_input_set_extension_events (window,
4081                                           gdk_window_get_events (window),
4082                                           mode);
4083
4084           children = gdk_window_get_children (window);
4085           if (children)
4086             {
4087               gtk_widget_set_extension_events_internal (widget, mode, children);
4088               g_list_free (children);
4089             }
4090         }
4091     }
4092
4093   if (free_list)
4094     g_list_free (free_list);
4095 }
4096
4097 static void
4098 _gtk_widget_enable_device_events (GtkWidget *widget)
4099 {
4100   GHashTable *device_events;
4101   GHashTableIter iter;
4102   gpointer key, value;
4103
4104   device_events = g_object_get_qdata (G_OBJECT (widget), quark_device_event_mask);
4105
4106   if (!device_events)
4107     return;
4108
4109   g_hash_table_iter_init (&iter, device_events);
4110
4111   while (g_hash_table_iter_next (&iter, &key, &value))
4112     {
4113       GdkDevice *device;
4114       GdkEventMask event_mask;
4115
4116       device = key;
4117       event_mask = GPOINTER_TO_UINT (value);
4118       gtk_widget_add_events_internal (widget, device, event_mask);
4119     }
4120 }
4121
4122 /**
4123  * gtk_widget_realize:
4124  * @widget: a #GtkWidget
4125  *
4126  * Creates the GDK (windowing system) resources associated with a
4127  * widget.  For example, @widget->window will be created when a widget
4128  * is realized.  Normally realization happens implicitly; if you show
4129  * a widget and all its parent containers, then the widget will be
4130  * realized and mapped automatically.
4131  *
4132  * Realizing a widget requires all
4133  * the widget's parent widgets to be realized; calling
4134  * gtk_widget_realize() realizes the widget's parents in addition to
4135  * @widget itself. If a widget is not yet inside a toplevel window
4136  * when you realize it, bad things will happen.
4137  *
4138  * This function is primarily used in widget implementations, and
4139  * isn't very useful otherwise. Many times when you think you might
4140  * need it, a better approach is to connect to a signal that will be
4141  * called after the widget is realized automatically, such as
4142  * #GtkWidget::expose-event. Or simply g_signal_connect () to the
4143  * #GtkWidget::realize signal.
4144  **/
4145 void
4146 gtk_widget_realize (GtkWidget *widget)
4147 {
4148   GtkWidgetPrivate *priv;
4149   GdkExtensionMode mode;
4150   cairo_region_t *region;
4151   GtkStyleContext *context;
4152
4153   g_return_if_fail (GTK_IS_WIDGET (widget));
4154   g_return_if_fail (widget->priv->anchored ||
4155                     GTK_IS_INVISIBLE (widget));
4156
4157   priv = widget->priv;
4158
4159   if (!gtk_widget_get_realized (widget))
4160     {
4161       /*
4162         if (GTK_IS_CONTAINER (widget) && gtk_widget_get_has_window (widget))
4163           g_message ("gtk_widget_realize(%s)", G_OBJECT_TYPE_NAME (widget));
4164       */
4165
4166       if (priv->parent == NULL &&
4167           !gtk_widget_is_toplevel (widget))
4168         g_warning ("Calling gtk_widget_realize() on a widget that isn't "
4169                    "inside a toplevel window is not going to work very well. "
4170                    "Widgets must be inside a toplevel container before realizing them.");
4171
4172       if (priv->parent && !gtk_widget_get_realized (priv->parent))
4173         gtk_widget_realize (priv->parent);
4174
4175       gtk_widget_ensure_style (widget);
4176
4177       g_signal_emit (widget, widget_signals[REALIZE], 0);
4178
4179       gtk_widget_real_set_has_tooltip (widget,
4180                                        GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (widget), quark_has_tooltip)),
4181                                        TRUE);
4182
4183       if (priv->has_shape_mask)
4184         {
4185           region = g_object_get_qdata (G_OBJECT (widget), quark_shape_info);
4186           gdk_window_shape_combine_region (priv->window, region, 0, 0);
4187         }
4188
4189       region = g_object_get_qdata (G_OBJECT (widget), quark_input_shape_info);
4190       if (region)
4191         gdk_window_input_shape_combine_region (priv->window, region, 0, 0);
4192
4193       mode = gtk_widget_get_extension_events (widget);
4194       if (mode != GDK_EXTENSION_EVENTS_NONE)
4195         gtk_widget_set_extension_events_internal (widget, mode, NULL);
4196
4197       if (priv->multidevice)
4198         gdk_window_set_support_multidevice (priv->window, TRUE);
4199
4200       _gtk_widget_enable_device_events (widget);
4201     }
4202 }
4203
4204 /**
4205  * gtk_widget_unrealize:
4206  * @widget: a #GtkWidget
4207  *
4208  * This function is only useful in widget implementations.
4209  * Causes a widget to be unrealized (frees all GDK resources
4210  * associated with the widget, such as @widget->window).
4211  **/
4212 void
4213 gtk_widget_unrealize (GtkWidget *widget)
4214 {
4215   g_return_if_fail (GTK_IS_WIDGET (widget));
4216
4217   if (widget->priv->has_shape_mask)
4218     gtk_widget_shape_combine_region (widget, NULL);
4219
4220   if (g_object_get_qdata (G_OBJECT (widget), quark_input_shape_info))
4221     gtk_widget_input_shape_combine_region (widget, NULL);
4222
4223   if (gtk_widget_get_realized (widget))
4224     {
4225       g_object_ref (widget);
4226       _gtk_tooltip_hide (widget);
4227       g_signal_emit (widget, widget_signals[UNREALIZE], 0);
4228       gtk_widget_set_realized (widget, FALSE);
4229       gtk_widget_set_mapped (widget, FALSE);
4230       g_object_unref (widget);
4231     }
4232 }
4233
4234 /*****************************************
4235  * Draw queueing.
4236  *****************************************/
4237
4238 /**
4239  * gtk_widget_queue_draw_region:
4240  * @widget: a #GtkWidget
4241  * @region: region to draw
4242  *
4243  * Invalidates the rectangular area of @widget defined by @region by
4244  * calling gdk_window_invalidate_region() on the widget's window and
4245  * all its child windows. Once the main loop becomes idle (after the
4246  * current batch of events has been processed, roughly), the window
4247  * will receive expose events for the union of all regions that have
4248  * been invalidated.
4249  *
4250  * Normally you would only use this function in widget
4251  * implementations. You might also use it to schedule a redraw of a
4252  * #GtkDrawingArea or some portion thereof.
4253  **/
4254 void
4255 gtk_widget_queue_draw_region (GtkWidget      *widget,
4256                               cairo_region_t *region)
4257 {
4258   GtkWidgetPrivate *priv;
4259   GtkWidget *w;
4260
4261   g_return_if_fail (GTK_IS_WIDGET (widget));
4262
4263   priv = widget->priv;
4264
4265   if (!gtk_widget_get_realized (widget))
4266     return;
4267
4268   /* Just return if the widget or one of its ancestors isn't mapped */
4269   for (w = widget; w != NULL; w = w->priv->parent)
4270     if (!gtk_widget_get_mapped (w))
4271       return;
4272
4273   gdk_window_invalidate_region (priv->window, region, TRUE);
4274 }
4275
4276 /**
4277  * gtk_widget_queue_draw_area:
4278  * @widget: a #GtkWidget
4279  * @x: x coordinate of upper-left corner of rectangle to redraw
4280  * @y: y coordinate of upper-left corner of rectangle to redraw
4281  * @width: width of region to draw
4282  * @height: height of region to draw
4283  *
4284  * Convenience function that calls gtk_widget_queue_draw_region() on
4285  * the region created from the given coordinates.
4286  **/
4287 void
4288 gtk_widget_queue_draw_area (GtkWidget *widget,
4289                             gint       x,
4290                             gint       y,
4291                             gint       width,
4292                             gint       height)
4293 {
4294   GdkRectangle rect;
4295   cairo_region_t *region;
4296
4297   g_return_if_fail (GTK_IS_WIDGET (widget));
4298
4299   rect.x = x;
4300   rect.y = y;
4301   rect.width = width;
4302   rect.height = height;
4303
4304   region = cairo_region_create_rectangle (&rect);
4305   gtk_widget_queue_draw_region (widget, region);
4306   cairo_region_destroy (region);
4307 }
4308
4309 /**
4310  * gtk_widget_queue_draw:
4311  * @widget: a #GtkWidget
4312  *
4313  * Equivalent to calling gtk_widget_queue_draw_area() for the
4314  * entire area of a widget.
4315  **/
4316 void
4317 gtk_widget_queue_draw (GtkWidget *widget)
4318 {
4319   GdkRectangle rect;
4320
4321   g_return_if_fail (GTK_IS_WIDGET (widget));
4322
4323   gtk_widget_get_allocation (widget, &rect);
4324
4325   if (!gtk_widget_get_has_window (widget))
4326     gtk_widget_queue_draw_area (widget,
4327                                 rect.x, rect.y, rect.width, rect.height);
4328   else
4329     gtk_widget_queue_draw_area (widget,
4330                                 0, 0, rect.width, rect.height);
4331 }
4332
4333 /**
4334  * gtk_widget_queue_resize:
4335  * @widget: a #GtkWidget
4336  *
4337  * This function is only for use in widget implementations.
4338  * Flags a widget to have its size renegotiated; should
4339  * be called when a widget for some reason has a new size request.
4340  * For example, when you change the text in a #GtkLabel, #GtkLabel
4341  * queues a resize to ensure there's enough space for the new text.
4342  *
4343  * <note><para>You cannot call gtk_widget_queue_resize() on a widget
4344  * from inside it's implementation of the GtkWidgetClass::size_allocate 
4345  * virtual method. Calls to gtk_widget_queue_resize() from inside
4346  * GtkWidgetClass::size_allocate will be silently ignored.</para></note>
4347  **/
4348 void
4349 gtk_widget_queue_resize (GtkWidget *widget)
4350 {
4351   g_return_if_fail (GTK_IS_WIDGET (widget));
4352
4353   if (gtk_widget_get_realized (widget))
4354     gtk_widget_queue_shallow_draw (widget);
4355
4356   _gtk_size_group_queue_resize (widget, 0);
4357 }
4358
4359 /**
4360  * gtk_widget_queue_resize_no_redraw:
4361  * @widget: a #GtkWidget
4362  *
4363  * This function works like gtk_widget_queue_resize(),
4364  * except that the widget is not invalidated.
4365  *
4366  * Since: 2.4
4367  **/
4368 void
4369 gtk_widget_queue_resize_no_redraw (GtkWidget *widget)
4370 {
4371   g_return_if_fail (GTK_IS_WIDGET (widget));
4372
4373   _gtk_size_group_queue_resize (widget, 0);
4374 }
4375
4376 /**
4377  * gtk_widget_size_request:
4378  * @widget: a #GtkWidget
4379  * @requisition: (out): a #GtkRequisition to be filled in
4380  *
4381  * This function is typically used when implementing a #GtkContainer
4382  * subclass.  Obtains the preferred size of a widget. The container
4383  * uses this information to arrange its child widgets and decide what
4384  * size allocations to give them with gtk_widget_size_allocate().
4385  *
4386  * You can also call this function from an application, with some
4387  * caveats. Most notably, getting a size request requires the widget
4388  * to be associated with a screen, because font information may be
4389  * needed. Multihead-aware applications should keep this in mind.
4390  *
4391  * Also remember that the size request is not necessarily the size
4392  * a widget will actually be allocated.
4393  *
4394  * Deprecated: 3.0: Use gtk_widget_get_preferred_size() instead.
4395  **/
4396 void
4397 gtk_widget_size_request (GtkWidget      *widget,
4398                          GtkRequisition *requisition)
4399 {
4400   g_return_if_fail (GTK_IS_WIDGET (widget));
4401
4402   gtk_widget_get_preferred_size (widget, requisition, NULL);
4403 }
4404
4405 /**
4406  * gtk_widget_get_child_requisition:
4407  * @widget: a #GtkWidget
4408  * @requisition: (out): a #GtkRequisition to be filled in
4409  *
4410  * This function is only for use in widget implementations. Obtains
4411  * @widget->requisition, unless someone has forced a particular
4412  * geometry on the widget (e.g. with gtk_widget_set_size_request()),
4413  * in which case it returns that geometry instead of the widget's
4414  * requisition.
4415  *
4416  * This function differs from gtk_widget_size_request() in that
4417  * it retrieves the last size request value from @widget->requisition,
4418  * while gtk_widget_size_request() actually calls the "size_request" method
4419  * on @widget to compute the size request and fill in @widget->requisition,
4420  * and only then returns @widget->requisition.
4421  *
4422  * Because this function does not call the "size_request" method, it
4423  * can only be used when you know that @widget->requisition is
4424  * up-to-date, that is, gtk_widget_size_request() has been called
4425  * since the last time a resize was queued. In general, only container
4426  * implementations have this information; applications should use
4427  * gtk_widget_size_request().
4428  *
4429  *
4430  * Deprecated: 3.0: Use gtk_widget_get_preferred_size() instead.
4431  **/
4432 void
4433 gtk_widget_get_child_requisition (GtkWidget      *widget,
4434                                   GtkRequisition *requisition)
4435 {
4436   gtk_widget_get_preferred_size (widget, requisition, NULL);
4437 }
4438
4439 static gboolean
4440 invalidate_predicate (GdkWindow *window,
4441                       gpointer   data)
4442 {
4443   gpointer user_data;
4444
4445   gdk_window_get_user_data (window, &user_data);
4446
4447   return (user_data == data);
4448 }
4449
4450 /* Invalidate @region in widget->window and all children
4451  * of widget->window owned by widget. @region is in the
4452  * same coordinates as widget->allocation and will be
4453  * modified by this call.
4454  */
4455 static void
4456 gtk_widget_invalidate_widget_windows (GtkWidget *widget,
4457                                       cairo_region_t *region)
4458 {
4459   GtkWidgetPrivate *priv = widget->priv;
4460
4461   if (!gtk_widget_get_realized (widget))
4462     return;
4463
4464   if (gtk_widget_get_has_window (widget) && priv->parent)
4465     {
4466       int x, y;
4467
4468       gdk_window_get_position (priv->window, &x, &y);
4469       cairo_region_translate (region, -x, -y);
4470     }
4471
4472   gdk_window_invalidate_maybe_recurse (priv->window, region,
4473                                        invalidate_predicate, widget);
4474 }
4475
4476 /**
4477  * gtk_widget_queue_shallow_draw:
4478  * @widget: a #GtkWidget
4479  *
4480  * Like gtk_widget_queue_draw(), but only windows owned
4481  * by @widget are invalidated.
4482  **/
4483 static void
4484 gtk_widget_queue_shallow_draw (GtkWidget *widget)
4485 {
4486   GdkRectangle rect;
4487   cairo_region_t *region;
4488
4489   if (!gtk_widget_get_realized (widget))
4490     return;
4491
4492   gtk_widget_get_allocation (widget, &rect);
4493
4494   region = cairo_region_create_rectangle (&rect);
4495   gtk_widget_invalidate_widget_windows (widget, region);
4496   cairo_region_destroy (region);
4497 }
4498
4499 /**
4500  * gtk_widget_size_allocate:
4501  * @widget: a #GtkWidget
4502  * @allocation: (inout): position and size to be allocated to @widget
4503  *
4504  * This function is only used by #GtkContainer subclasses, to assign a size
4505  * and position to their child widgets.
4506  *
4507  * In this function, the allocation may be adjusted. It will be forced
4508  * to a 1x1 minimum size, and the adjust_size_allocation virtual
4509  * method on the child will be used to adjust the allocation. Standard
4510  * adjustments include removing the widget's margins, and applying the
4511  * widget's #GtkWidget:halign and #GtkWidget:valign properties.
4512  **/
4513 void
4514 gtk_widget_size_allocate (GtkWidget     *widget,
4515                           GtkAllocation *allocation)
4516 {
4517   GtkWidgetPrivate *priv;
4518   GdkRectangle real_allocation;
4519   GdkRectangle old_allocation;
4520   GdkRectangle adjusted_allocation;
4521   gboolean alloc_needed;
4522   gboolean size_changed;
4523   gboolean position_changed;
4524   gint natural_width, natural_height;
4525   gint min_width, min_height;
4526
4527   priv = widget->priv;
4528
4529   g_return_if_fail (GTK_IS_WIDGET (widget));
4530
4531 #ifdef G_ENABLE_DEBUG
4532   if (gtk_get_debug_flags () & GTK_DEBUG_GEOMETRY)
4533     {
4534       gint depth;
4535       GtkWidget *parent;
4536       const gchar *name;
4537
4538       depth = 0;
4539       parent = widget;
4540       while (parent)
4541         {
4542           depth++;
4543           parent = gtk_widget_get_parent (parent);
4544         }
4545
4546       name = g_type_name (G_OBJECT_TYPE (G_OBJECT (widget)));
4547       g_print ("gtk_widget_size_allocate: %*s%s %d %d\n",
4548                2 * depth, " ", name,
4549                allocation->width, allocation->height);
4550     }
4551 #endif /* G_ENABLE_DEBUG */
4552
4553   alloc_needed = priv->alloc_needed;
4554   if (!priv->width_request_needed && !priv->height_request_needed)
4555     /* Preserve request/allocate ordering */
4556     priv->alloc_needed = FALSE;
4557
4558   old_allocation = priv->allocation;
4559   real_allocation = *allocation;
4560
4561   adjusted_allocation = real_allocation;
4562   if (gtk_widget_get_request_mode (widget) == GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH)
4563     {
4564       /* Go ahead and request the height for allocated width, note that the internals
4565        * of get_height_for_width will internally limit the for_size to natural size
4566        * when aligning implicitly.
4567        */
4568       gtk_widget_get_preferred_width (widget, &min_width, &natural_width);
4569       gtk_widget_get_preferred_height_for_width (widget, real_allocation.width, NULL, &natural_height);
4570     }
4571   else
4572     {
4573       /* Go ahead and request the width for allocated height, note that the internals
4574        * of get_width_for_height will internally limit the for_size to natural size
4575        * when aligning implicitly.
4576        */
4577       gtk_widget_get_preferred_height (widget, &min_height, &natural_height);
4578       gtk_widget_get_preferred_width_for_height (widget, real_allocation.height, NULL, &natural_width);
4579     }
4580
4581   /* Now that we have the right natural height and width, go ahead and remove any margins from the
4582    * allocated sizes and possibly limit them to the natural sizes */
4583   GTK_WIDGET_GET_CLASS (widget)->adjust_size_allocation (widget,
4584                                                          GTK_ORIENTATION_HORIZONTAL,
4585                                                          &natural_width,
4586                                                          &adjusted_allocation.x,
4587                                                          &adjusted_allocation.width);
4588   GTK_WIDGET_GET_CLASS (widget)->adjust_size_allocation (widget,
4589                                                          GTK_ORIENTATION_VERTICAL,
4590                                                          &natural_height,
4591                                                          &adjusted_allocation.y,
4592                                                          &adjusted_allocation.height);
4593
4594   if (adjusted_allocation.x < real_allocation.x ||
4595       adjusted_allocation.y < real_allocation.y ||
4596       (adjusted_allocation.x + adjusted_allocation.width) >
4597       (real_allocation.x + real_allocation.width) ||
4598       (adjusted_allocation.y + adjusted_allocation.height >
4599        real_allocation.y + real_allocation.height))
4600     {
4601       g_warning ("%s %p attempted to adjust its size allocation from %d,%d %dx%d to %d,%d %dx%d. adjust_size_allocation must keep allocation inside original bounds",
4602                  G_OBJECT_TYPE_NAME (widget), widget,
4603                  real_allocation.x, real_allocation.y, real_allocation.width, real_allocation.height,
4604                  adjusted_allocation.x, adjusted_allocation.y, adjusted_allocation.width, adjusted_allocation.height);
4605       adjusted_allocation = real_allocation; /* veto it */
4606     }
4607   else
4608     {
4609       real_allocation = adjusted_allocation;
4610     }
4611
4612   if (real_allocation.width < 0 || real_allocation.height < 0)
4613     {
4614       g_warning ("gtk_widget_size_allocate(): attempt to allocate widget with width %d and height %d",
4615                  real_allocation.width,
4616                  real_allocation.height);
4617     }
4618
4619   real_allocation.width = MAX (real_allocation.width, 1);
4620   real_allocation.height = MAX (real_allocation.height, 1);
4621
4622   size_changed = (old_allocation.width != real_allocation.width ||
4623                   old_allocation.height != real_allocation.height);
4624   position_changed = (old_allocation.x != real_allocation.x ||
4625                       old_allocation.y != real_allocation.y);
4626
4627   if (!alloc_needed && !size_changed && !position_changed)
4628     return;
4629
4630   g_signal_emit (widget, widget_signals[SIZE_ALLOCATE], 0, &real_allocation);
4631
4632   /* Size allocation is god... after consulting god, no further requests or allocations are needed */
4633   priv->width_request_needed  = FALSE;
4634   priv->height_request_needed = FALSE;
4635   priv->alloc_needed          = FALSE;
4636
4637   if (gtk_widget_get_mapped (widget))
4638     {
4639       if (!gtk_widget_get_has_window (widget) && priv->redraw_on_alloc && position_changed)
4640         {
4641           /* Invalidate union(old_allaction,priv->allocation) in priv->window
4642            */
4643           cairo_region_t *invalidate = cairo_region_create_rectangle (&priv->allocation);
4644           cairo_region_union_rectangle (invalidate, &old_allocation);
4645
4646           gdk_window_invalidate_region (priv->window, invalidate, FALSE);
4647           cairo_region_destroy (invalidate);
4648         }
4649
4650       if (size_changed)
4651         {
4652           if (priv->redraw_on_alloc)
4653             {
4654               /* Invalidate union(old_allaction,priv->allocation) in priv->window and descendents owned by widget
4655                */
4656               cairo_region_t *invalidate = cairo_region_create_rectangle (&priv->allocation);
4657               cairo_region_union_rectangle (invalidate, &old_allocation);
4658
4659               gtk_widget_invalidate_widget_windows (widget, invalidate);
4660               cairo_region_destroy (invalidate);
4661             }
4662         }
4663     }
4664
4665   if ((size_changed || position_changed) && priv->parent &&
4666       gtk_widget_get_realized (priv->parent) && _gtk_container_get_reallocate_redraws (GTK_CONTAINER (priv->parent)))
4667     {
4668       cairo_region_t *invalidate = cairo_region_create_rectangle (&priv->parent->priv->allocation);
4669       gtk_widget_invalidate_widget_windows (priv->parent, invalidate);
4670       cairo_region_destroy (invalidate);
4671     }
4672 }
4673
4674 /**
4675  * gtk_widget_common_ancestor:
4676  * @widget_a: a #GtkWidget
4677  * @widget_b: a #GtkWidget
4678  *
4679  * Find the common ancestor of @widget_a and @widget_b that
4680  * is closest to the two widgets.
4681  *
4682  * Return value: the closest common ancestor of @widget_a and
4683  *   @widget_b or %NULL if @widget_a and @widget_b do not
4684  *   share a common ancestor.
4685  **/
4686 static GtkWidget *
4687 gtk_widget_common_ancestor (GtkWidget *widget_a,
4688                             GtkWidget *widget_b)
4689 {
4690   GtkWidget *parent_a;
4691   GtkWidget *parent_b;
4692   gint depth_a = 0;
4693   gint depth_b = 0;
4694
4695   parent_a = widget_a;
4696   while (parent_a->priv->parent)
4697     {
4698       parent_a = parent_a->priv->parent;
4699       depth_a++;
4700     }
4701
4702   parent_b = widget_b;
4703   while (parent_b->priv->parent)
4704     {
4705       parent_b = parent_b->priv->parent;
4706       depth_b++;
4707     }
4708
4709   if (parent_a != parent_b)
4710     return NULL;
4711
4712   while (depth_a > depth_b)
4713     {
4714       widget_a = widget_a->priv->parent;
4715       depth_a--;
4716     }
4717
4718   while (depth_b > depth_a)
4719     {
4720       widget_b = widget_b->priv->parent;
4721       depth_b--;
4722     }
4723
4724   while (widget_a != widget_b)
4725     {
4726       widget_a = widget_a->priv->parent;
4727       widget_b = widget_b->priv->parent;
4728     }
4729
4730   return widget_a;
4731 }
4732
4733 /**
4734  * gtk_widget_translate_coordinates:
4735  * @src_widget:  a #GtkWidget
4736  * @dest_widget: a #GtkWidget
4737  * @src_x: X position relative to @src_widget
4738  * @src_y: Y position relative to @src_widget
4739  * @dest_x: (out): location to store X position relative to @dest_widget
4740  * @dest_y: (out): location to store Y position relative to @dest_widget
4741  *
4742  * Translate coordinates relative to @src_widget's allocation to coordinates
4743  * relative to @dest_widget's allocations. In order to perform this
4744  * operation, both widgets must be realized, and must share a common
4745  * toplevel.
4746  *
4747  * Return value: %FALSE if either widget was not realized, or there
4748  *   was no common ancestor. In this case, nothing is stored in
4749  *   *@dest_x and *@dest_y. Otherwise %TRUE.
4750  **/
4751 gboolean
4752 gtk_widget_translate_coordinates (GtkWidget  *src_widget,
4753                                   GtkWidget  *dest_widget,
4754                                   gint        src_x,
4755                                   gint        src_y,
4756                                   gint       *dest_x,
4757                                   gint       *dest_y)
4758 {
4759   GtkWidgetPrivate *src_priv = src_widget->priv;
4760   GtkWidgetPrivate *dest_priv = dest_widget->priv;
4761   GtkWidget *ancestor;
4762   GdkWindow *window;
4763   GList *dest_list = NULL;
4764
4765   g_return_val_if_fail (GTK_IS_WIDGET (src_widget), FALSE);
4766   g_return_val_if_fail (GTK_IS_WIDGET (dest_widget), FALSE);
4767
4768   ancestor = gtk_widget_common_ancestor (src_widget, dest_widget);
4769   if (!ancestor || !gtk_widget_get_realized (src_widget) || !gtk_widget_get_realized (dest_widget))
4770     return FALSE;
4771
4772   /* Translate from allocation relative to window relative */
4773   if (gtk_widget_get_has_window (src_widget) && src_priv->parent)
4774     {
4775       gint wx, wy;
4776       gdk_window_get_position (src_priv->window, &wx, &wy);
4777
4778       src_x -= wx - src_priv->allocation.x;
4779       src_y -= wy - src_priv->allocation.y;
4780     }
4781   else
4782     {
4783       src_x += src_priv->allocation.x;
4784       src_y += src_priv->allocation.y;
4785     }
4786
4787   /* Translate to the common ancestor */
4788   window = src_priv->window;
4789   while (window != ancestor->priv->window)
4790     {
4791       gdouble dx, dy;
4792
4793       gdk_window_coords_to_parent (window, src_x, src_y, &dx, &dy);
4794
4795       src_x = dx;
4796       src_y = dy;
4797
4798       window = gdk_window_get_effective_parent (window);
4799
4800       if (!window)              /* Handle GtkHandleBox */
4801         return FALSE;
4802     }
4803
4804   /* And back */
4805   window = dest_priv->window;
4806   while (window != ancestor->priv->window)
4807     {
4808       dest_list = g_list_prepend (dest_list, window);
4809
4810       window = gdk_window_get_effective_parent (window);
4811
4812       if (!window)              /* Handle GtkHandleBox */
4813         {
4814           g_list_free (dest_list);
4815           return FALSE;
4816         }
4817     }
4818
4819   while (dest_list)
4820     {
4821       gdouble dx, dy;
4822
4823       gdk_window_coords_from_parent (dest_list->data, src_x, src_y, &dx, &dy);
4824
4825       src_x = dx;
4826       src_y = dy;
4827
4828       dest_list = g_list_remove (dest_list, dest_list->data);
4829     }
4830
4831   /* Translate from window relative to allocation relative */
4832   if (gtk_widget_get_has_window (dest_widget) && dest_priv->parent)
4833     {
4834       gint wx, wy;
4835       gdk_window_get_position (dest_priv->window, &wx, &wy);
4836
4837       src_x += wx - dest_priv->allocation.x;
4838       src_y += wy - dest_priv->allocation.y;
4839     }
4840   else
4841     {
4842       src_x -= dest_priv->allocation.x;
4843       src_y -= dest_priv->allocation.y;
4844     }
4845
4846   if (dest_x)
4847     *dest_x = src_x;
4848   if (dest_y)
4849     *dest_y = src_y;
4850
4851   return TRUE;
4852 }
4853
4854 static void
4855 gtk_widget_real_size_allocate (GtkWidget     *widget,
4856                                GtkAllocation *allocation)
4857 {
4858   GtkWidgetPrivate *priv = widget->priv;
4859
4860   priv->allocation = *allocation;
4861
4862   if (gtk_widget_get_realized (widget) &&
4863       gtk_widget_get_has_window (widget))
4864      {
4865         gdk_window_move_resize (priv->window,
4866                                 allocation->x, allocation->y,
4867                                 allocation->width, allocation->height);
4868      }
4869 }
4870
4871 static void
4872 adjust_for_align(GtkAlign           align,
4873                  gint              *natural_size,
4874                  gint              *allocated_pos,
4875                  gint              *allocated_size)
4876 {
4877   switch (align)
4878     {
4879     case GTK_ALIGN_FILL:
4880       /* change nothing */
4881       break;
4882     case GTK_ALIGN_START:
4883       /* keep *allocated_pos where it is */
4884       *allocated_size = MIN (*allocated_size, *natural_size);
4885       break;
4886     case GTK_ALIGN_END:
4887       if (*allocated_size > *natural_size)
4888         {
4889           *allocated_pos += (*allocated_size - *natural_size);
4890           *allocated_size = *natural_size;
4891         }
4892       break;
4893     case GTK_ALIGN_CENTER:
4894       if (*allocated_size > *natural_size)
4895         {
4896           *allocated_pos += (*allocated_size - *natural_size) / 2;
4897           *allocated_size = MIN (*allocated_size, *natural_size);
4898         }
4899       break;
4900     }
4901 }
4902
4903 static void
4904 adjust_for_margin(gint               start_margin,
4905                   gint               end_margin,
4906                   gint              *natural_size,
4907                   gint              *allocated_pos,
4908                   gint              *allocated_size)
4909 {
4910   *natural_size -= (start_margin + end_margin);
4911   *allocated_pos += start_margin;
4912   *allocated_size -= (start_margin + end_margin);
4913 }
4914
4915 static void
4916 gtk_widget_real_adjust_size_allocation (GtkWidget         *widget,
4917                                         GtkOrientation     orientation,
4918                                         gint              *natural_size,
4919                                         gint              *allocated_pos,
4920                                         gint              *allocated_size)
4921 {
4922   const GtkWidgetAuxInfo *aux_info;
4923
4924   aux_info = _gtk_widget_get_aux_info_or_defaults (widget);
4925
4926   if (orientation == GTK_ORIENTATION_HORIZONTAL)
4927     {
4928       adjust_for_margin (aux_info->margin.left,
4929                          aux_info->margin.right,
4930                          natural_size, allocated_pos, allocated_size);
4931       adjust_for_align (aux_info->halign,
4932                         natural_size, allocated_pos, allocated_size);
4933     }
4934   else
4935     {
4936       adjust_for_margin (aux_info->margin.top,
4937                          aux_info->margin.bottom,
4938                          natural_size, allocated_pos, allocated_size);
4939       adjust_for_align (aux_info->valign,
4940                         natural_size, allocated_pos, allocated_size);
4941     }
4942 }
4943
4944 static gboolean
4945 gtk_widget_real_can_activate_accel (GtkWidget *widget,
4946                                     guint      signal_id)
4947 {
4948   GtkWidgetPrivate *priv = widget->priv;
4949
4950   /* widgets must be onscreen for accels to take effect */
4951   return gtk_widget_is_sensitive (widget) &&
4952          gtk_widget_is_drawable (widget) &&
4953          gdk_window_is_viewable (priv->window);
4954 }
4955
4956 /**
4957  * gtk_widget_can_activate_accel:
4958  * @widget: a #GtkWidget
4959  * @signal_id: the ID of a signal installed on @widget
4960  *
4961  * Determines whether an accelerator that activates the signal
4962  * identified by @signal_id can currently be activated.
4963  * This is done by emitting the #GtkWidget::can-activate-accel
4964  * signal on @widget; if the signal isn't overridden by a
4965  * handler or in a derived widget, then the default check is
4966  * that the widget must be sensitive, and the widget and all
4967  * its ancestors mapped.
4968  *
4969  * Return value: %TRUE if the accelerator can be activated.
4970  *
4971  * Since: 2.4
4972  **/
4973 gboolean
4974 gtk_widget_can_activate_accel (GtkWidget *widget,
4975                                guint      signal_id)
4976 {
4977   gboolean can_activate = FALSE;
4978   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
4979   g_signal_emit (widget, widget_signals[CAN_ACTIVATE_ACCEL], 0, signal_id, &can_activate);
4980   return can_activate;
4981 }
4982
4983 typedef struct {
4984   GClosure   closure;
4985   guint      signal_id;
4986 } AccelClosure;
4987
4988 static void
4989 closure_accel_activate (GClosure     *closure,
4990                         GValue       *return_value,
4991                         guint         n_param_values,
4992                         const GValue *param_values,
4993                         gpointer      invocation_hint,
4994                         gpointer      marshal_data)
4995 {
4996   AccelClosure *aclosure = (AccelClosure*) closure;
4997   gboolean can_activate = gtk_widget_can_activate_accel (closure->data, aclosure->signal_id);
4998
4999   if (can_activate)
5000     g_signal_emit (closure->data, aclosure->signal_id, 0);
5001
5002   /* whether accelerator was handled */
5003   g_value_set_boolean (return_value, can_activate);
5004 }
5005
5006 static void
5007 closures_destroy (gpointer data)
5008 {
5009   GSList *slist, *closures = data;
5010
5011   for (slist = closures; slist; slist = slist->next)
5012     {
5013       g_closure_invalidate (slist->data);
5014       g_closure_unref (slist->data);
5015     }
5016   g_slist_free (closures);
5017 }
5018
5019 static GClosure*
5020 widget_new_accel_closure (GtkWidget *widget,
5021                           guint      signal_id)
5022 {
5023   AccelClosure *aclosure;
5024   GClosure *closure = NULL;
5025   GSList *slist, *closures;
5026
5027   closures = g_object_steal_qdata (G_OBJECT (widget), quark_accel_closures);
5028   for (slist = closures; slist; slist = slist->next)
5029     if (!gtk_accel_group_from_accel_closure (slist->data))
5030       {
5031         /* reuse this closure */
5032         closure = slist->data;
5033         break;
5034       }
5035   if (!closure)
5036     {
5037       closure = g_closure_new_object (sizeof (AccelClosure), G_OBJECT (widget));
5038       closures = g_slist_prepend (closures, g_closure_ref (closure));
5039       g_closure_sink (closure);
5040       g_closure_set_marshal (closure, closure_accel_activate);
5041     }
5042   g_object_set_qdata_full (G_OBJECT (widget), quark_accel_closures, closures, closures_destroy);
5043
5044   aclosure = (AccelClosure*) closure;
5045   g_assert (closure->data == widget);
5046   g_assert (closure->marshal == closure_accel_activate);
5047   aclosure->signal_id = signal_id;
5048
5049   return closure;
5050 }
5051
5052 /**
5053  * gtk_widget_add_accelerator
5054  * @widget:       widget to install an accelerator on
5055  * @accel_signal: widget signal to emit on accelerator activation
5056  * @accel_group:  accel group for this widget, added to its toplevel
5057  * @accel_key:    GDK keyval of the accelerator
5058  * @accel_mods:   modifier key combination of the accelerator
5059  * @accel_flags:  flag accelerators, e.g. %GTK_ACCEL_VISIBLE
5060  *
5061  * Installs an accelerator for this @widget in @accel_group that causes
5062  * @accel_signal to be emitted if the accelerator is activated.
5063  * The @accel_group needs to be added to the widget's toplevel via
5064  * gtk_window_add_accel_group(), and the signal must be of type %G_RUN_ACTION.
5065  * Accelerators added through this function are not user changeable during
5066  * runtime. If you want to support accelerators that can be changed by the
5067  * user, use gtk_accel_map_add_entry() and gtk_widget_set_accel_path() or
5068  * gtk_menu_item_set_accel_path() instead.
5069  */
5070 void
5071 gtk_widget_add_accelerator (GtkWidget      *widget,
5072                             const gchar    *accel_signal,
5073                             GtkAccelGroup  *accel_group,
5074                             guint           accel_key,
5075                             GdkModifierType accel_mods,
5076                             GtkAccelFlags   accel_flags)
5077 {
5078   GClosure *closure;
5079   GSignalQuery query;
5080
5081   g_return_if_fail (GTK_IS_WIDGET (widget));
5082   g_return_if_fail (accel_signal != NULL);
5083   g_return_if_fail (GTK_IS_ACCEL_GROUP (accel_group));
5084
5085   g_signal_query (g_signal_lookup (accel_signal, G_OBJECT_TYPE (widget)), &query);
5086   if (!query.signal_id ||
5087       !(query.signal_flags & G_SIGNAL_ACTION) ||
5088       query.return_type != G_TYPE_NONE ||
5089       query.n_params)
5090     {
5091       /* hmm, should be elaborate enough */
5092       g_warning (G_STRLOC ": widget `%s' has no activatable signal \"%s\" without arguments",
5093                  G_OBJECT_TYPE_NAME (widget), accel_signal);
5094       return;
5095     }
5096
5097   closure = widget_new_accel_closure (widget, query.signal_id);
5098
5099   g_object_ref (widget);
5100
5101   /* install the accelerator. since we don't map this onto an accel_path,
5102    * the accelerator will automatically be locked.
5103    */
5104   gtk_accel_group_connect (accel_group,
5105                            accel_key,
5106                            accel_mods,
5107                            accel_flags | GTK_ACCEL_LOCKED,
5108                            closure);
5109
5110   g_signal_emit (widget, widget_signals[ACCEL_CLOSURES_CHANGED], 0);
5111
5112   g_object_unref (widget);
5113 }
5114
5115 /**
5116  * gtk_widget_remove_accelerator:
5117  * @widget:       widget to install an accelerator on
5118  * @accel_group:  accel group for this widget
5119  * @accel_key:    GDK keyval of the accelerator
5120  * @accel_mods:   modifier key combination of the accelerator
5121  * @returns:      whether an accelerator was installed and could be removed
5122  *
5123  * Removes an accelerator from @widget, previously installed with
5124  * gtk_widget_add_accelerator().
5125  */
5126 gboolean
5127 gtk_widget_remove_accelerator (GtkWidget      *widget,
5128                                GtkAccelGroup  *accel_group,
5129                                guint           accel_key,
5130                                GdkModifierType accel_mods)
5131 {
5132   GtkAccelGroupEntry *ag_entry;
5133   GList *slist, *clist;
5134   guint n;
5135
5136   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
5137   g_return_val_if_fail (GTK_IS_ACCEL_GROUP (accel_group), FALSE);
5138
5139   ag_entry = gtk_accel_group_query (accel_group, accel_key, accel_mods, &n);
5140   clist = gtk_widget_list_accel_closures (widget);
5141   for (slist = clist; slist; slist = slist->next)
5142     {
5143       guint i;
5144
5145       for (i = 0; i < n; i++)
5146         if (slist->data == (gpointer) ag_entry[i].closure)
5147           {
5148             gboolean is_removed = gtk_accel_group_disconnect (accel_group, slist->data);
5149
5150             g_signal_emit (widget, widget_signals[ACCEL_CLOSURES_CHANGED], 0);
5151
5152             g_list_free (clist);
5153
5154             return is_removed;
5155           }
5156     }
5157   g_list_free (clist);
5158
5159   g_warning (G_STRLOC ": no accelerator (%u,%u) installed in accel group (%p) for %s (%p)",
5160              accel_key, accel_mods, accel_group,
5161              G_OBJECT_TYPE_NAME (widget), widget);
5162
5163   return FALSE;
5164 }
5165
5166 /**
5167  * gtk_widget_list_accel_closures:
5168  * @widget:  widget to list accelerator closures for
5169  *
5170  * Lists the closures used by @widget for accelerator group connections
5171  * with gtk_accel_group_connect_by_path() or gtk_accel_group_connect().
5172  * The closures can be used to monitor accelerator changes on @widget,
5173  * by connecting to the @GtkAccelGroup::accel-changed signal of the
5174  * #GtkAccelGroup of a closure which can be found out with
5175  * gtk_accel_group_from_accel_closure().
5176  *
5177  * Return value: (transfer container) (element-type GClosure):
5178  *     a newly allocated #GList of closures
5179  */
5180 GList*
5181 gtk_widget_list_accel_closures (GtkWidget *widget)
5182 {
5183   GSList *slist;
5184   GList *clist = NULL;
5185
5186   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
5187
5188   for (slist = g_object_get_qdata (G_OBJECT (widget), quark_accel_closures); slist; slist = slist->next)
5189     if (gtk_accel_group_from_accel_closure (slist->data))
5190       clist = g_list_prepend (clist, slist->data);
5191   return clist;
5192 }
5193
5194 typedef struct {
5195   GQuark         path_quark;
5196   GtkAccelGroup *accel_group;
5197   GClosure      *closure;
5198 } AccelPath;
5199
5200 static void
5201 destroy_accel_path (gpointer data)
5202 {
5203   AccelPath *apath = data;
5204
5205   gtk_accel_group_disconnect (apath->accel_group, apath->closure);
5206
5207   /* closures_destroy takes care of unrefing the closure */
5208   g_object_unref (apath->accel_group);
5209
5210   g_slice_free (AccelPath, apath);
5211 }
5212
5213
5214 /**
5215  * gtk_widget_set_accel_path:
5216  * @widget: a #GtkWidget
5217  * @accel_path: (allow-none): path used to look up the accelerator
5218  * @accel_group: (allow-none): a #GtkAccelGroup.
5219  *
5220  * Given an accelerator group, @accel_group, and an accelerator path,
5221  * @accel_path, sets up an accelerator in @accel_group so whenever the
5222  * key binding that is defined for @accel_path is pressed, @widget
5223  * will be activated.  This removes any accelerators (for any
5224  * accelerator group) installed by previous calls to
5225  * gtk_widget_set_accel_path(). Associating accelerators with
5226  * paths allows them to be modified by the user and the modifications
5227  * to be saved for future use. (See gtk_accel_map_save().)
5228  *
5229  * This function is a low level function that would most likely
5230  * be used by a menu creation system like #GtkUIManager. If you
5231  * use #GtkUIManager, setting up accelerator paths will be done
5232  * automatically.
5233  *
5234  * Even when you you aren't using #GtkUIManager, if you only want to
5235  * set up accelerators on menu items gtk_menu_item_set_accel_path()
5236  * provides a somewhat more convenient interface.
5237  *
5238  * Note that @accel_path string will be stored in a #GQuark. Therefore, if you
5239  * pass a static string, you can save some memory by interning it first with
5240  * g_intern_static_string().
5241  **/
5242 void
5243 gtk_widget_set_accel_path (GtkWidget     *widget,
5244                            const gchar   *accel_path,
5245                            GtkAccelGroup *accel_group)
5246 {
5247   AccelPath *apath;
5248
5249   g_return_if_fail (GTK_IS_WIDGET (widget));
5250   g_return_if_fail (GTK_WIDGET_GET_CLASS (widget)->activate_signal != 0);
5251
5252   if (accel_path)
5253     {
5254       g_return_if_fail (GTK_IS_ACCEL_GROUP (accel_group));
5255       g_return_if_fail (_gtk_accel_path_is_valid (accel_path));
5256
5257       gtk_accel_map_add_entry (accel_path, 0, 0);
5258       apath = g_slice_new (AccelPath);
5259       apath->accel_group = g_object_ref (accel_group);
5260       apath->path_quark = g_quark_from_string (accel_path);
5261       apath->closure = widget_new_accel_closure (widget, GTK_WIDGET_GET_CLASS (widget)->activate_signal);
5262     }
5263   else
5264     apath = NULL;
5265
5266   /* also removes possible old settings */
5267   g_object_set_qdata_full (G_OBJECT (widget), quark_accel_path, apath, destroy_accel_path);
5268
5269   if (apath)
5270     gtk_accel_group_connect_by_path (apath->accel_group, g_quark_to_string (apath->path_quark), apath->closure);
5271
5272   g_signal_emit (widget, widget_signals[ACCEL_CLOSURES_CHANGED], 0);
5273 }
5274
5275 const gchar*
5276 _gtk_widget_get_accel_path (GtkWidget *widget,
5277                             gboolean  *locked)
5278 {
5279   AccelPath *apath;
5280
5281   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
5282
5283   apath = g_object_get_qdata (G_OBJECT (widget), quark_accel_path);
5284   if (locked)
5285     *locked = apath ? gtk_accel_group_get_is_locked (apath->accel_group) : TRUE;
5286   return apath ? g_quark_to_string (apath->path_quark) : NULL;
5287 }
5288
5289 /**
5290  * gtk_widget_mnemonic_activate:
5291  * @widget: a #GtkWidget
5292  * @group_cycling:  %TRUE if there are other widgets with the same mnemonic
5293  *
5294  * Emits the #GtkWidget::mnemonic-activate signal.
5295  *
5296  * The default handler for this signal activates the @widget if
5297  * @group_cycling is %FALSE, and just grabs the focus if @group_cycling
5298  * is %TRUE.
5299  *
5300  * Returns: %TRUE if the signal has been handled
5301  */
5302 gboolean
5303 gtk_widget_mnemonic_activate (GtkWidget *widget,
5304                               gboolean   group_cycling)
5305 {
5306   gboolean handled;
5307
5308   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
5309
5310   group_cycling = group_cycling != FALSE;
5311   if (!gtk_widget_is_sensitive (widget))
5312     handled = TRUE;
5313   else
5314     g_signal_emit (widget,
5315                    widget_signals[MNEMONIC_ACTIVATE],
5316                    0,
5317                    group_cycling,
5318                    &handled);
5319   return handled;
5320 }
5321
5322 static gboolean
5323 gtk_widget_real_mnemonic_activate (GtkWidget *widget,
5324                                    gboolean   group_cycling)
5325 {
5326   if (!group_cycling && GTK_WIDGET_GET_CLASS (widget)->activate_signal)
5327     gtk_widget_activate (widget);
5328   else if (gtk_widget_get_can_focus (widget))
5329     gtk_widget_grab_focus (widget);
5330   else
5331     {
5332       g_warning ("widget `%s' isn't suitable for mnemonic activation",
5333                  G_OBJECT_TYPE_NAME (widget));
5334       gtk_widget_error_bell (widget);
5335     }
5336   return TRUE;
5337 }
5338
5339 static const cairo_user_data_key_t event_key;
5340
5341 GdkEventExpose *
5342 _gtk_cairo_get_event (cairo_t *cr)
5343 {
5344   g_return_val_if_fail (cr != NULL, NULL);
5345
5346   return cairo_get_user_data (cr, &event_key);
5347 }
5348
5349 static void
5350 gtk_cairo_set_event (cairo_t        *cr,
5351                      GdkEventExpose *event)
5352 {
5353   cairo_set_user_data (cr, &event_key, event, NULL);
5354 }
5355
5356 /**
5357  * gtk_cairo_should_draw_window:
5358  * @cr: a cairo context
5359  * @window: the window to check
5360  *
5361  * This function is supposed to be called in #GtkWidget::draw
5362  * implementations for widgets that support multiple windows.
5363  * @cr must be untransformed from invoking of the draw function.
5364  * This function will return %TRUE if the contents of the given
5365  * @window are supposed to be drawn and %FALSE otherwise. Note
5366  * that when the drawing was not initiated by the windowing
5367  * system this function will return %TRUE for all windows, so
5368  * you need to draw the bottommost window first. Also, do not
5369  * use "else if" statements to check which window should be drawn.
5370  *
5371  * Returns: %TRUE if @window should be drawn
5372  **/
5373 gboolean
5374 gtk_cairo_should_draw_window (cairo_t *cr,
5375                               GdkWindow *window)
5376 {
5377   GdkEventExpose *event;
5378
5379   g_return_val_if_fail (cr != NULL, FALSE);
5380   g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
5381
5382   event = _gtk_cairo_get_event (cr);
5383
5384   return event == NULL ||
5385          event->window == window;
5386 }
5387
5388 /* code shared by gtk_container_propagate_draw() and
5389  * gtk_widget_draw()
5390  */
5391 void
5392 _gtk_widget_draw_internal (GtkWidget *widget,
5393                            cairo_t   *cr,
5394                            gboolean   clip_to_size)
5395 {
5396   if (!gtk_widget_is_drawable (widget))
5397     return;
5398
5399   if (clip_to_size)
5400     {
5401       cairo_rectangle (cr,
5402                        0, 0,
5403                        widget->priv->allocation.width,
5404                        widget->priv->allocation.height);
5405       cairo_clip (cr);
5406     }
5407
5408   if (gdk_cairo_get_clip_rectangle (cr, NULL))
5409     {
5410       gboolean result;
5411
5412       g_signal_emit (widget, widget_signals[DRAW],
5413                      0, cr,
5414                      &result);
5415     }
5416 }
5417
5418 /**
5419  * gtk_widget_draw:
5420  * @widget: the widget to draw. It must be drawable (see
5421  *   gtk_widget_is_drawable()) and a size must have been allocated.
5422  * @cr: a cairo context to draw to
5423  *
5424  * Draws @widget to @cr. The top left corner of the widget will be
5425  * drawn to the currently set origin point of @cr.
5426  *
5427  * You should pass a cairo context as @cr argument that is in an
5428  * original state. Otherwise the resulting drawing is undefined. For
5429  * example changing the operator using cairo_set_operator() or the
5430  * line width using cairo_set_line_width() might have unwanted side
5431  * effects.
5432  * You may however change the context's transform matrix - like with
5433  * cairo_scale(), cairo_translate() or cairo_set_matrix() and clip
5434  * region with cairo_clip() prior to calling this function. Also, it
5435  * is fine to modify the context with cairo_save() and
5436  * cairo_push_group() prior to calling this function.
5437  *
5438  * <note><para>Special purpose widgets may contain special code for
5439  * rendering to the screen and might appear differently on screen
5440  * and when rendered using gtk_widget_draw().</para></note>
5441  **/
5442 void
5443 gtk_widget_draw (GtkWidget *widget,
5444                  cairo_t   *cr)
5445 {
5446   GdkEventExpose *tmp_event;
5447
5448   g_return_if_fail (GTK_IS_WIDGET (widget));
5449   g_return_if_fail (!widget->priv->alloc_needed);
5450   g_return_if_fail (cr != NULL);
5451
5452   cairo_save (cr);
5453   /* We have to reset the event here so that draw functions can call
5454    * gtk_widget_draw() on random other widgets and get the desired
5455    * effect: Drawing all contents, not just the current window.
5456    */
5457   tmp_event = _gtk_cairo_get_event (cr);
5458   gtk_cairo_set_event (cr, NULL);
5459
5460   _gtk_widget_draw_internal (widget, cr, TRUE);
5461
5462   gtk_cairo_set_event (cr, tmp_event);
5463   cairo_restore (cr);
5464 }
5465
5466 static gboolean
5467 gtk_widget_real_key_press_event (GtkWidget         *widget,
5468                                  GdkEventKey       *event)
5469 {
5470   return gtk_bindings_activate_event (G_OBJECT (widget), event);
5471 }
5472
5473 static gboolean
5474 gtk_widget_real_key_release_event (GtkWidget         *widget,
5475                                    GdkEventKey       *event)
5476 {
5477   return gtk_bindings_activate_event (G_OBJECT (widget), event);
5478 }
5479
5480 static gboolean
5481 gtk_widget_real_focus_in_event (GtkWidget     *widget,
5482                                 GdkEventFocus *event)
5483 {
5484   gtk_widget_queue_shallow_draw (widget);
5485
5486   return FALSE;
5487 }
5488
5489 static gboolean
5490 gtk_widget_real_focus_out_event (GtkWidget     *widget,
5491                                  GdkEventFocus *event)
5492 {
5493   gtk_widget_queue_shallow_draw (widget);
5494
5495   return FALSE;
5496 }
5497
5498 #define WIDGET_REALIZED_FOR_EVENT(widget, event) \
5499      (event->type == GDK_FOCUS_CHANGE || gtk_widget_get_realized(widget))
5500
5501 /**
5502  * gtk_widget_event:
5503  * @widget: a #GtkWidget
5504  * @event: a #GdkEvent
5505  *
5506  * Rarely-used function. This function is used to emit
5507  * the event signals on a widget (those signals should never
5508  * be emitted without using this function to do so).
5509  * If you want to synthesize an event though, don't use this function;
5510  * instead, use gtk_main_do_event() so the event will behave as if
5511  * it were in the event queue. Don't synthesize expose events; instead,
5512  * use gdk_window_invalidate_rect() to invalidate a region of the
5513  * window.
5514  *
5515  * Return value: return from the event signal emission (%TRUE if
5516  *               the event was handled)
5517  **/
5518 gboolean
5519 gtk_widget_event (GtkWidget *widget,
5520                   GdkEvent  *event)
5521 {
5522   g_return_val_if_fail (GTK_IS_WIDGET (widget), TRUE);
5523   g_return_val_if_fail (WIDGET_REALIZED_FOR_EVENT (widget, event), TRUE);
5524
5525   if (event->type == GDK_EXPOSE)
5526     {
5527       g_warning ("Events of type GDK_EXPOSE cannot be synthesized. To get "
5528                  "the same effect, call gdk_window_invalidate_rect/region(), "
5529                  "followed by gdk_window_process_updates().");
5530       return TRUE;
5531     }
5532
5533   return gtk_widget_event_internal (widget, event);
5534 }
5535
5536 /* Returns TRUE if a translation should be done */
5537 static gboolean
5538 gtk_widget_get_translation_to_window (GtkWidget      *widget,
5539                                       GdkWindow      *window,
5540                                       int            *x,
5541                                       int            *y)
5542 {
5543   GdkWindow *w, *widget_window;
5544
5545   if (!gtk_widget_get_has_window (widget))
5546     {
5547       *x = -widget->priv->allocation.x;
5548       *y = -widget->priv->allocation.y;
5549     }
5550   else
5551     {
5552       *x = 0;
5553       *y = 0;
5554     }
5555
5556   widget_window = gtk_widget_get_window (widget);
5557
5558   for (w = window; w && w != widget_window; w = gdk_window_get_parent (w))
5559     {
5560       int wx, wy;
5561       gdk_window_get_position (w, &wx, &wy);
5562       *x += wx;
5563       *y += wy;
5564     }
5565
5566   if (w == NULL)
5567     {
5568       *x = 0;
5569       *y = 0;
5570       return FALSE;
5571     }
5572
5573   return TRUE;
5574 }
5575
5576
5577 /**
5578  * gtk_cairo_transform_to_window:
5579  * @cr: the cairo context to transform
5580  * @widget: the widget the context is currently centered for
5581  * @window: the window to transform the context to
5582  *
5583  * Transforms the given cairo context @cr that from @widget-relative
5584  * coordinates to @window-relative coordinates.
5585  * If the @widget's window is not an ancestor of @window, no
5586  * modification will be applied.
5587  *
5588  * This is the inverse to the transformation GTK applies when
5589  * preparing an expose event to be emitted with the #GtkWidget::draw
5590  * signal. It is intended to help porting multiwindow widgets from
5591  * GTK+ 2 to the rendering architecture of GTK+ 3.
5592  **/
5593 void
5594 gtk_cairo_transform_to_window (cairo_t   *cr,
5595                                GtkWidget *widget,
5596                                GdkWindow *window)
5597 {
5598   int x, y;
5599
5600   g_return_if_fail (cr != NULL);
5601   g_return_if_fail (GTK_IS_WIDGET (widget));
5602   g_return_if_fail (GDK_IS_WINDOW (window));
5603
5604   if (gtk_widget_get_translation_to_window (widget, window, &x, &y))
5605     cairo_translate (cr, x, y);
5606 }
5607
5608 /**
5609  * gtk_widget_send_expose:
5610  * @widget: a #GtkWidget
5611  * @event: a expose #GdkEvent
5612  *
5613  * Very rarely-used function. This function is used to emit
5614  * an expose event on a widget. This function is not normally used
5615  * directly. The only time it is used is when propagating an expose
5616  * event to a child %NO_WINDOW widget, and that is normally done
5617  * using gtk_container_propagate_draw().
5618  *
5619  * If you want to force an area of a window to be redrawn,
5620  * use gdk_window_invalidate_rect() or gdk_window_invalidate_region().
5621  * To cause the redraw to be done immediately, follow that call
5622  * with a call to gdk_window_process_updates().
5623  *
5624  * Return value: return from the event signal emission (%TRUE if
5625  *               the event was handled)
5626  **/
5627 gint
5628 gtk_widget_send_expose (GtkWidget *widget,
5629                         GdkEvent  *event)
5630 {
5631   gboolean result = FALSE;
5632   cairo_t *cr;
5633   int x, y;
5634   gboolean do_clip;
5635
5636   g_return_val_if_fail (GTK_IS_WIDGET (widget), TRUE);
5637   g_return_val_if_fail (gtk_widget_get_realized (widget), TRUE);
5638   g_return_val_if_fail (event != NULL, TRUE);
5639   g_return_val_if_fail (event->type == GDK_EXPOSE, TRUE);
5640
5641   cr = gdk_cairo_create (event->expose.window);
5642   gtk_cairo_set_event (cr, &event->expose);
5643
5644   gdk_cairo_region (cr, event->expose.region);
5645   cairo_clip (cr);
5646
5647   do_clip = gtk_widget_get_translation_to_window (widget,
5648                                                   event->expose.window,
5649                                                   &x, &y);
5650   cairo_translate (cr, -x, -y);
5651
5652   _gtk_widget_draw_internal (widget, cr, do_clip);
5653
5654   /* unset here, so if someone keeps a reference to cr we
5655    * don't leak the window. */
5656   gtk_cairo_set_event (cr, NULL);
5657   cairo_destroy (cr);
5658
5659   return result;
5660 }
5661
5662 static gboolean
5663 event_window_is_still_viewable (GdkEvent *event)
5664 {
5665   /* Check that we think the event's window is viewable before
5666    * delivering the event, to prevent suprises. We do this here
5667    * at the last moment, since the event may have been queued
5668    * up behind other events, held over a recursive main loop, etc.
5669    */
5670   switch (event->type)
5671     {
5672     case GDK_EXPOSE:
5673     case GDK_MOTION_NOTIFY:
5674     case GDK_BUTTON_PRESS:
5675     case GDK_2BUTTON_PRESS:
5676     case GDK_3BUTTON_PRESS:
5677     case GDK_KEY_PRESS:
5678     case GDK_ENTER_NOTIFY:
5679     case GDK_PROXIMITY_IN:
5680     case GDK_SCROLL:
5681       return event->any.window && gdk_window_is_viewable (event->any.window);
5682
5683 #if 0
5684     /* The following events are the second half of paired events;
5685      * we always deliver them to deal with widgets that clean up
5686      * on the second half.
5687      */
5688     case GDK_BUTTON_RELEASE:
5689     case GDK_KEY_RELEASE:
5690     case GDK_LEAVE_NOTIFY:
5691     case GDK_PROXIMITY_OUT:
5692 #endif
5693
5694     default:
5695       /* Remaining events would make sense on an not-viewable window,
5696        * or don't have an associated window.
5697        */
5698       return TRUE;
5699     }
5700 }
5701
5702 static gint
5703 gtk_widget_event_internal (GtkWidget *widget,
5704                            GdkEvent  *event)
5705 {
5706   gboolean return_val = FALSE;
5707
5708   /* We check only once for is-still-visible; if someone
5709    * hides the window in on of the signals on the widget,
5710    * they are responsible for returning TRUE to terminate
5711    * handling.
5712    */
5713   if (!event_window_is_still_viewable (event))
5714     return TRUE;
5715
5716   g_object_ref (widget);
5717
5718   g_signal_emit (widget, widget_signals[EVENT], 0, event, &return_val);
5719   return_val |= !WIDGET_REALIZED_FOR_EVENT (widget, event);
5720   if (!return_val)
5721     {
5722       gint signal_num;
5723
5724       switch (event->type)
5725         {
5726         case GDK_NOTHING:
5727           signal_num = -1;
5728           break;
5729         case GDK_BUTTON_PRESS:
5730         case GDK_2BUTTON_PRESS:
5731         case GDK_3BUTTON_PRESS:
5732           signal_num = BUTTON_PRESS_EVENT;
5733           break;
5734         case GDK_SCROLL:
5735           signal_num = SCROLL_EVENT;
5736           break;
5737         case GDK_BUTTON_RELEASE:
5738           signal_num = BUTTON_RELEASE_EVENT;
5739           break;
5740         case GDK_MOTION_NOTIFY:
5741           signal_num = MOTION_NOTIFY_EVENT;
5742           break;
5743         case GDK_DELETE:
5744           signal_num = DELETE_EVENT;
5745           break;
5746         case GDK_DESTROY:
5747           signal_num = DESTROY_EVENT;
5748           _gtk_tooltip_hide (widget);
5749           break;
5750         case GDK_KEY_PRESS:
5751           signal_num = KEY_PRESS_EVENT;
5752           break;
5753         case GDK_KEY_RELEASE:
5754           signal_num = KEY_RELEASE_EVENT;
5755           break;
5756         case GDK_ENTER_NOTIFY:
5757           signal_num = ENTER_NOTIFY_EVENT;
5758           break;
5759         case GDK_LEAVE_NOTIFY:
5760           signal_num = LEAVE_NOTIFY_EVENT;
5761           break;
5762         case GDK_FOCUS_CHANGE:
5763           signal_num = event->focus_change.in ? FOCUS_IN_EVENT : FOCUS_OUT_EVENT;
5764           if (event->focus_change.in)
5765             _gtk_tooltip_focus_in (widget);
5766           else
5767             _gtk_tooltip_focus_out (widget);
5768           break;
5769         case GDK_CONFIGURE:
5770           signal_num = CONFIGURE_EVENT;
5771           break;
5772         case GDK_MAP:
5773           signal_num = MAP_EVENT;
5774           break;
5775         case GDK_UNMAP:
5776           signal_num = UNMAP_EVENT;
5777           break;
5778         case GDK_WINDOW_STATE:
5779           signal_num = WINDOW_STATE_EVENT;
5780           break;
5781         case GDK_PROPERTY_NOTIFY:
5782           signal_num = PROPERTY_NOTIFY_EVENT;
5783           break;
5784         case GDK_SELECTION_CLEAR:
5785           signal_num = SELECTION_CLEAR_EVENT;
5786           break;
5787         case GDK_SELECTION_REQUEST:
5788           signal_num = SELECTION_REQUEST_EVENT;
5789           break;
5790         case GDK_SELECTION_NOTIFY:
5791           signal_num = SELECTION_NOTIFY_EVENT;
5792           break;
5793         case GDK_PROXIMITY_IN:
5794           signal_num = PROXIMITY_IN_EVENT;
5795           break;
5796         case GDK_PROXIMITY_OUT:
5797           signal_num = PROXIMITY_OUT_EVENT;
5798           break;
5799         case GDK_CLIENT_EVENT:
5800           signal_num = CLIENT_EVENT;
5801           break;
5802         case GDK_EXPOSE:
5803           signal_num = EXPOSE_EVENT;
5804           break;
5805         case GDK_VISIBILITY_NOTIFY:
5806           signal_num = VISIBILITY_NOTIFY_EVENT;
5807           break;
5808         case GDK_GRAB_BROKEN:
5809           signal_num = GRAB_BROKEN_EVENT;
5810           break;
5811         case GDK_DAMAGE:
5812           signal_num = DAMAGE_EVENT;
5813           break;
5814         default:
5815           g_warning ("gtk_widget_event(): unhandled event type: %d", event->type);
5816           signal_num = -1;
5817           break;
5818         }
5819       if (signal_num != -1)
5820         g_signal_emit (widget, widget_signals[signal_num], 0, event, &return_val);
5821     }
5822   if (WIDGET_REALIZED_FOR_EVENT (widget, event))
5823     g_signal_emit (widget, widget_signals[EVENT_AFTER], 0, event);
5824   else
5825     return_val = TRUE;
5826
5827   g_object_unref (widget);
5828
5829   return return_val;
5830 }
5831
5832 /**
5833  * gtk_widget_activate:
5834  * @widget: a #GtkWidget that's activatable
5835  *
5836  * For widgets that can be "activated" (buttons, menu items, etc.)
5837  * this function activates them. Activation is what happens when you
5838  * press Enter on a widget during key navigation. If @widget isn't
5839  * activatable, the function returns %FALSE.
5840  *
5841  * Return value: %TRUE if the widget was activatable
5842  **/
5843 gboolean
5844 gtk_widget_activate (GtkWidget *widget)
5845 {
5846   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
5847
5848   if (WIDGET_CLASS (widget)->activate_signal)
5849     {
5850       /* FIXME: we should eventually check the signals signature here */
5851       g_signal_emit (widget, WIDGET_CLASS (widget)->activate_signal, 0);
5852
5853       return TRUE;
5854     }
5855   else
5856     return FALSE;
5857 }
5858
5859 static void
5860 gtk_widget_reparent_subwindows (GtkWidget *widget,
5861                                 GdkWindow *new_window)
5862 {
5863   GtkWidgetPrivate *priv = widget->priv;
5864
5865   if (!gtk_widget_get_has_window (widget))
5866     {
5867       GList *children = gdk_window_get_children (priv->window);
5868       GList *tmp_list;
5869
5870       for (tmp_list = children; tmp_list; tmp_list = tmp_list->next)
5871         {
5872           GdkWindow *window = tmp_list->data;
5873           gpointer child;
5874
5875           gdk_window_get_user_data (window, &child);
5876           while (child && child != widget)
5877             child = ((GtkWidget*) child)->priv->parent;
5878
5879           if (child)
5880             gdk_window_reparent (window, new_window, 0, 0);
5881         }
5882
5883       g_list_free (children);
5884     }
5885   else
5886    {
5887      GdkWindow *parent;
5888      GList *tmp_list, *children;
5889
5890      parent = gdk_window_get_parent (priv->window);
5891
5892      if (parent == NULL)
5893        gdk_window_reparent (priv->window, new_window, 0, 0);
5894      else
5895        {
5896          children = gdk_window_get_children (parent);
5897
5898          for (tmp_list = children; tmp_list; tmp_list = tmp_list->next)
5899            {
5900              GdkWindow *window = tmp_list->data;
5901              gpointer child;
5902
5903              gdk_window_get_user_data (window, &child);
5904
5905              if (child == widget)
5906                gdk_window_reparent (window, new_window, 0, 0);
5907            }
5908
5909          g_list_free (children);
5910        }
5911    }
5912 }
5913
5914 static void
5915 gtk_widget_reparent_fixup_child (GtkWidget *widget,
5916                                  gpointer   client_data)
5917 {
5918   GtkWidgetPrivate *priv = widget->priv;
5919
5920   g_assert (client_data != NULL);
5921
5922   if (!gtk_widget_get_has_window (widget))
5923     {
5924       if (priv->window)
5925         g_object_unref (priv->window);
5926       priv->window = (GdkWindow*) client_data;
5927       if (priv->window)
5928         g_object_ref (priv->window);
5929
5930       if (GTK_IS_CONTAINER (widget))
5931         gtk_container_forall (GTK_CONTAINER (widget),
5932                               gtk_widget_reparent_fixup_child,
5933                               client_data);
5934     }
5935 }
5936
5937 /**
5938  * gtk_widget_reparent:
5939  * @widget: a #GtkWidget
5940  * @new_parent: a #GtkContainer to move the widget into
5941  *
5942  * Moves a widget from one #GtkContainer to another, handling reference
5943  * count issues to avoid destroying the widget.
5944  **/
5945 void
5946 gtk_widget_reparent (GtkWidget *widget,
5947                      GtkWidget *new_parent)
5948 {
5949   GtkWidgetPrivate *priv;
5950
5951   g_return_if_fail (GTK_IS_WIDGET (widget));
5952   g_return_if_fail (GTK_IS_CONTAINER (new_parent));
5953   priv = widget->priv;
5954   g_return_if_fail (priv->parent != NULL);
5955
5956   if (priv->parent != new_parent)
5957     {
5958       /* First try to see if we can get away without unrealizing
5959        * the widget as we reparent it. if so we set a flag so
5960        * that gtk_widget_unparent doesn't unrealize widget
5961        */
5962       if (gtk_widget_get_realized (widget) && gtk_widget_get_realized (new_parent))
5963         priv->in_reparent = TRUE;
5964
5965       g_object_ref (widget);
5966       gtk_container_remove (GTK_CONTAINER (priv->parent), widget);
5967       gtk_container_add (GTK_CONTAINER (new_parent), widget);
5968       g_object_unref (widget);
5969
5970       if (priv->in_reparent)
5971         {
5972           priv->in_reparent = FALSE;
5973
5974           gtk_widget_reparent_subwindows (widget, gtk_widget_get_parent_window (widget));
5975           gtk_widget_reparent_fixup_child (widget,
5976                                            gtk_widget_get_parent_window (widget));
5977         }
5978
5979       g_object_notify (G_OBJECT (widget), "parent");
5980     }
5981 }
5982
5983 /**
5984  * gtk_widget_intersect:
5985  * @widget: a #GtkWidget
5986  * @area: a rectangle
5987  * @intersection: rectangle to store intersection of @widget and @area
5988  *
5989  * Computes the intersection of a @widget's area and @area, storing
5990  * the intersection in @intersection, and returns %TRUE if there was
5991  * an intersection.  @intersection may be %NULL if you're only
5992  * interested in whether there was an intersection.
5993  *
5994  * Return value: %TRUE if there was an intersection
5995  **/
5996 gboolean
5997 gtk_widget_intersect (GtkWidget          *widget,
5998                       const GdkRectangle *area,
5999                       GdkRectangle       *intersection)
6000 {
6001   GtkWidgetPrivate *priv;
6002   GdkRectangle *dest;
6003   GdkRectangle tmp;
6004   gint return_val;
6005
6006   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6007   g_return_val_if_fail (area != NULL, FALSE);
6008
6009   priv = widget->priv;
6010
6011   if (intersection)
6012     dest = intersection;
6013   else
6014     dest = &tmp;
6015
6016   return_val = gdk_rectangle_intersect (&priv->allocation, area, dest);
6017
6018   if (return_val && intersection && gtk_widget_get_has_window (widget))
6019     {
6020       intersection->x -= priv->allocation.x;
6021       intersection->y -= priv->allocation.y;
6022     }
6023
6024   return return_val;
6025 }
6026
6027 /**
6028  * gtk_widget_region_intersect:
6029  * @widget: a #GtkWidget
6030  * @region: a #cairo_region_t, in the same coordinate system as
6031  *          @widget->allocation. That is, relative to @widget->window
6032  *          for %NO_WINDOW widgets; relative to the parent window
6033  *          of @widget->window for widgets with their own window.
6034  * @returns: A newly allocated region holding the intersection of @widget
6035  *           and @region. The coordinates of the return value are
6036  *           relative to @widget->window for %NO_WINDOW widgets, and
6037  *           relative to the parent window of @widget->window for
6038  *           widgets with their own window.
6039  *
6040  * Computes the intersection of a @widget's area and @region, returning
6041  * the intersection. The result may be empty, use cairo_region_is_empty() to
6042  * check.
6043  **/
6044 cairo_region_t *
6045 gtk_widget_region_intersect (GtkWidget       *widget,
6046                              const cairo_region_t *region)
6047 {
6048   GdkRectangle rect;
6049   cairo_region_t *dest;
6050
6051   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
6052   g_return_val_if_fail (region != NULL, NULL);
6053
6054   gtk_widget_get_allocation (widget, &rect);
6055
6056   dest = cairo_region_create_rectangle (&rect);
6057
6058   cairo_region_intersect (dest, region);
6059
6060   return dest;
6061 }
6062
6063 /**
6064  * _gtk_widget_grab_notify:
6065  * @widget: a #GtkWidget
6066  * @was_grabbed: whether a grab is now in effect
6067  *
6068  * Emits the #GtkWidget::grab-notify signal on @widget.
6069  *
6070  * Since: 2.6
6071  **/
6072 void
6073 _gtk_widget_grab_notify (GtkWidget *widget,
6074                          gboolean   was_grabbed)
6075 {
6076   g_signal_emit (widget, widget_signals[GRAB_NOTIFY], 0, was_grabbed);
6077 }
6078
6079 /**
6080  * gtk_widget_grab_focus:
6081  * @widget: a #GtkWidget
6082  *
6083  * Causes @widget to have the keyboard focus for the #GtkWindow it's
6084  * inside. @widget must be a focusable widget, such as a #GtkEntry;
6085  * something like #GtkFrame won't work.
6086  *
6087  * More precisely, it must have the %GTK_CAN_FOCUS flag set. Use
6088  * gtk_widget_set_can_focus() to modify that flag.
6089  *
6090  * The widget also needs to be realized and mapped. This is indicated by the
6091  * related signals. Grabbing the focus immediately after creating the widget
6092  * will likely fail and cause critical warnings.
6093  **/
6094 void
6095 gtk_widget_grab_focus (GtkWidget *widget)
6096 {
6097   g_return_if_fail (GTK_IS_WIDGET (widget));
6098
6099   if (!gtk_widget_is_sensitive (widget))
6100     return;
6101
6102   g_object_ref (widget);
6103   g_signal_emit (widget, widget_signals[GRAB_FOCUS], 0);
6104   g_object_notify (G_OBJECT (widget), "has-focus");
6105   g_object_unref (widget);
6106 }
6107
6108 static void
6109 reset_focus_recurse (GtkWidget *widget,
6110                      gpointer   data)
6111 {
6112   if (GTK_IS_CONTAINER (widget))
6113     {
6114       GtkContainer *container;
6115
6116       container = GTK_CONTAINER (widget);
6117       gtk_container_set_focus_child (container, NULL);
6118
6119       gtk_container_foreach (container,
6120                              reset_focus_recurse,
6121                              NULL);
6122     }
6123 }
6124
6125 static void
6126 gtk_widget_real_grab_focus (GtkWidget *focus_widget)
6127 {
6128   if (gtk_widget_get_can_focus (focus_widget))
6129     {
6130       GtkWidget *toplevel;
6131       GtkWidget *widget;
6132
6133       /* clear the current focus setting, break if the current widget
6134        * is the focus widget's parent, since containers above that will
6135        * be set by the next loop.
6136        */
6137       toplevel = gtk_widget_get_toplevel (focus_widget);
6138       if (gtk_widget_is_toplevel (toplevel) && GTK_IS_WINDOW (toplevel))
6139         {
6140           widget = gtk_window_get_focus (GTK_WINDOW (toplevel));
6141
6142           if (widget == focus_widget)
6143             {
6144               /* We call _gtk_window_internal_set_focus() here so that the
6145                * toplevel window can request the focus if necessary.
6146                * This is needed when the toplevel is a GtkPlug
6147                */
6148               if (!gtk_widget_has_focus (widget))
6149                 _gtk_window_internal_set_focus (GTK_WINDOW (toplevel), focus_widget);
6150
6151               return;
6152             }
6153
6154           if (widget)
6155             {
6156               while (widget->priv->parent && widget->priv->parent != focus_widget->priv->parent)
6157                 {
6158                   widget = widget->priv->parent;
6159                   gtk_container_set_focus_child (GTK_CONTAINER (widget), NULL);
6160                 }
6161             }
6162         }
6163       else if (toplevel != focus_widget)
6164         {
6165           /* gtk_widget_grab_focus() operates on a tree without window...
6166            * actually, this is very questionable behaviour.
6167            */
6168
6169           gtk_container_foreach (GTK_CONTAINER (toplevel),
6170                                  reset_focus_recurse,
6171                                  NULL);
6172         }
6173
6174       /* now propagate the new focus up the widget tree and finally
6175        * set it on the window
6176        */
6177       widget = focus_widget;
6178       while (widget->priv->parent)
6179         {
6180           gtk_container_set_focus_child (GTK_CONTAINER (widget->priv->parent), widget);
6181           widget = widget->priv->parent;
6182         }
6183       if (GTK_IS_WINDOW (widget))
6184         _gtk_window_internal_set_focus (GTK_WINDOW (widget), focus_widget);
6185     }
6186 }
6187
6188 static gboolean
6189 gtk_widget_real_query_tooltip (GtkWidget  *widget,
6190                                gint        x,
6191                                gint        y,
6192                                gboolean    keyboard_tip,
6193                                GtkTooltip *tooltip)
6194 {
6195   gchar *tooltip_markup;
6196   gboolean has_tooltip;
6197
6198   tooltip_markup = g_object_get_qdata (G_OBJECT (widget), quark_tooltip_markup);
6199   has_tooltip = GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (widget), quark_has_tooltip));
6200
6201   if (has_tooltip && tooltip_markup)
6202     {
6203       gtk_tooltip_set_markup (tooltip, tooltip_markup);
6204       return TRUE;
6205     }
6206
6207   return FALSE;
6208 }
6209
6210 static gboolean
6211 gtk_widget_real_show_help (GtkWidget        *widget,
6212                            GtkWidgetHelpType help_type)
6213 {
6214   if (help_type == GTK_WIDGET_HELP_TOOLTIP)
6215     {
6216       _gtk_tooltip_toggle_keyboard_mode (widget);
6217
6218       return TRUE;
6219     }
6220   else
6221     return FALSE;
6222 }
6223
6224 static gboolean
6225 gtk_widget_real_focus (GtkWidget         *widget,
6226                        GtkDirectionType   direction)
6227 {
6228   if (!gtk_widget_get_can_focus (widget))
6229     return FALSE;
6230
6231   if (!gtk_widget_is_focus (widget))
6232     {
6233       gtk_widget_grab_focus (widget);
6234       return TRUE;
6235     }
6236   else
6237     return FALSE;
6238 }
6239
6240 static void
6241 gtk_widget_real_move_focus (GtkWidget         *widget,
6242                             GtkDirectionType   direction)
6243 {
6244   GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
6245
6246   if (widget != toplevel && GTK_IS_WINDOW (toplevel))
6247     {
6248       g_signal_emit (toplevel, widget_signals[MOVE_FOCUS], 0,
6249                      direction);
6250     }
6251 }
6252
6253 static gboolean
6254 gtk_widget_real_keynav_failed (GtkWidget        *widget,
6255                                GtkDirectionType  direction)
6256 {
6257   gboolean cursor_only;
6258
6259   switch (direction)
6260     {
6261     case GTK_DIR_TAB_FORWARD:
6262     case GTK_DIR_TAB_BACKWARD:
6263       return FALSE;
6264
6265     case GTK_DIR_UP:
6266     case GTK_DIR_DOWN:
6267     case GTK_DIR_LEFT:
6268     case GTK_DIR_RIGHT:
6269       g_object_get (gtk_widget_get_settings (widget),
6270                     "gtk-keynav-cursor-only", &cursor_only,
6271                     NULL);
6272       if (cursor_only)
6273         return FALSE;
6274       break;
6275     }
6276
6277   gtk_widget_error_bell (widget);
6278
6279   return TRUE;
6280 }
6281
6282 /**
6283  * gtk_widget_set_can_focus:
6284  * @widget: a #GtkWidget
6285  * @can_focus: whether or not @widget can own the input focus.
6286  *
6287  * Specifies whether @widget can own the input focus. See
6288  * gtk_widget_grab_focus() for actually setting the input focus on a
6289  * widget.
6290  *
6291  * Since: 2.18
6292  **/
6293 void
6294 gtk_widget_set_can_focus (GtkWidget *widget,
6295                           gboolean   can_focus)
6296 {
6297   g_return_if_fail (GTK_IS_WIDGET (widget));
6298
6299   if (widget->priv->can_focus != can_focus)
6300     {
6301       widget->priv->can_focus = can_focus;
6302
6303       gtk_widget_queue_resize (widget);
6304       g_object_notify (G_OBJECT (widget), "can-focus");
6305     }
6306 }
6307
6308 /**
6309  * gtk_widget_get_can_focus:
6310  * @widget: a #GtkWidget
6311  *
6312  * Determines whether @widget can own the input focus. See
6313  * gtk_widget_set_can_focus().
6314  *
6315  * Return value: %TRUE if @widget can own the input focus, %FALSE otherwise
6316  *
6317  * Since: 2.18
6318  **/
6319 gboolean
6320 gtk_widget_get_can_focus (GtkWidget *widget)
6321 {
6322   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6323
6324   return widget->priv->can_focus;
6325 }
6326
6327 /**
6328  * gtk_widget_has_focus:
6329  * @widget: a #GtkWidget
6330  *
6331  * Determines if the widget has the global input focus. See
6332  * gtk_widget_is_focus() for the difference between having the global
6333  * input focus, and only having the focus within a toplevel.
6334  *
6335  * Return value: %TRUE if the widget has the global input focus.
6336  *
6337  * Since: 2.18
6338  **/
6339 gboolean
6340 gtk_widget_has_focus (GtkWidget *widget)
6341 {
6342   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6343
6344   return widget->priv->has_focus;
6345 }
6346
6347 /**
6348  * gtk_widget_is_focus:
6349  * @widget: a #GtkWidget
6350  *
6351  * Determines if the widget is the focus widget within its
6352  * toplevel. (This does not mean that the %HAS_FOCUS flag is
6353  * necessarily set; %HAS_FOCUS will only be set if the
6354  * toplevel widget additionally has the global input focus.)
6355  *
6356  * Return value: %TRUE if the widget is the focus widget.
6357  **/
6358 gboolean
6359 gtk_widget_is_focus (GtkWidget *widget)
6360 {
6361   GtkWidget *toplevel;
6362
6363   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6364
6365   toplevel = gtk_widget_get_toplevel (widget);
6366
6367   if (GTK_IS_WINDOW (toplevel))
6368     return widget == gtk_window_get_focus (GTK_WINDOW (toplevel));
6369   else
6370     return FALSE;
6371 }
6372
6373 /**
6374  * gtk_widget_set_can_default:
6375  * @widget: a #GtkWidget
6376  * @can_default: whether or not @widget can be a default widget.
6377  *
6378  * Specifies whether @widget can be a default widget. See
6379  * gtk_widget_grab_default() for details about the meaning of
6380  * "default".
6381  *
6382  * Since: 2.18
6383  **/
6384 void
6385 gtk_widget_set_can_default (GtkWidget *widget,
6386                             gboolean   can_default)
6387 {
6388   g_return_if_fail (GTK_IS_WIDGET (widget));
6389
6390   if (widget->priv->can_default != can_default)
6391     {
6392       widget->priv->can_default = can_default;
6393
6394       gtk_widget_queue_resize (widget);
6395       g_object_notify (G_OBJECT (widget), "can-default");
6396     }
6397 }
6398
6399 /**
6400  * gtk_widget_get_can_default:
6401  * @widget: a #GtkWidget
6402  *
6403  * Determines whether @widget can be a default widget. See
6404  * gtk_widget_set_can_default().
6405  *
6406  * Return value: %TRUE if @widget can be a default widget, %FALSE otherwise
6407  *
6408  * Since: 2.18
6409  **/
6410 gboolean
6411 gtk_widget_get_can_default (GtkWidget *widget)
6412 {
6413   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6414
6415   return widget->priv->can_default;
6416 }
6417
6418 /**
6419  * gtk_widget_has_default:
6420  * @widget: a #GtkWidget
6421  *
6422  * Determines whether @widget is the current default widget within its
6423  * toplevel. See gtk_widget_set_can_default().
6424  *
6425  * Return value: %TRUE if @widget is the current default widget within
6426  *     its toplevel, %FALSE otherwise
6427  *
6428  * Since: 2.18
6429  */
6430 gboolean
6431 gtk_widget_has_default (GtkWidget *widget)
6432 {
6433   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6434
6435   return widget->priv->has_default;
6436 }
6437
6438 void
6439 _gtk_widget_set_has_default (GtkWidget *widget,
6440                              gboolean   has_default)
6441 {
6442   widget->priv->has_default = has_default;
6443 }
6444
6445 /**
6446  * gtk_widget_grab_default:
6447  * @widget: a #GtkWidget
6448  *
6449  * Causes @widget to become the default widget. @widget must have the
6450  * %GTK_CAN_DEFAULT flag set; typically you have to set this flag
6451  * yourself by calling <literal>gtk_widget_set_can_default (@widget,
6452  * %TRUE)</literal>. The default widget is activated when
6453  * the user presses Enter in a window. Default widgets must be
6454  * activatable, that is, gtk_widget_activate() should affect them. Note
6455  * that #GtkEntry widgets require the "activates-default" property
6456  * set to %TRUE before they activate the default widget when Enter
6457  * is pressed and the #GtkEntry is focused.
6458  **/
6459 void
6460 gtk_widget_grab_default (GtkWidget *widget)
6461 {
6462   GtkWidget *window;
6463
6464   g_return_if_fail (GTK_IS_WIDGET (widget));
6465   g_return_if_fail (gtk_widget_get_can_default (widget));
6466
6467   window = gtk_widget_get_toplevel (widget);
6468
6469   if (window && gtk_widget_is_toplevel (window))
6470     gtk_window_set_default (GTK_WINDOW (window), widget);
6471   else
6472     g_warning (G_STRLOC ": widget not within a GtkWindow");
6473 }
6474
6475 /**
6476  * gtk_widget_set_receives_default:
6477  * @widget: a #GtkWidget
6478  * @receives_default: whether or not @widget can be a default widget.
6479  *
6480  * Specifies whether @widget will be treated as the default widget
6481  * within its toplevel when it has the focus, even if another widget
6482  * is the default.
6483  *
6484  * See gtk_widget_grab_default() for details about the meaning of
6485  * "default".
6486  *
6487  * Since: 2.18
6488  **/
6489 void
6490 gtk_widget_set_receives_default (GtkWidget *widget,
6491                                  gboolean   receives_default)
6492 {
6493   g_return_if_fail (GTK_IS_WIDGET (widget));
6494
6495   if (widget->priv->receives_default != receives_default)
6496     {
6497       widget->priv->receives_default = receives_default;
6498
6499       g_object_notify (G_OBJECT (widget), "receives-default");
6500     }
6501 }
6502
6503 /**
6504  * gtk_widget_get_receives_default:
6505  * @widget: a #GtkWidget
6506  *
6507  * Determines whether @widget is alyways treated as default widget
6508  * withing its toplevel when it has the focus, even if another widget
6509  * is the default.
6510  *
6511  * See gtk_widget_set_receives_default().
6512  *
6513  * Return value: %TRUE if @widget acts as default widget when focussed,
6514  *               %FALSE otherwise
6515  *
6516  * Since: 2.18
6517  **/
6518 gboolean
6519 gtk_widget_get_receives_default (GtkWidget *widget)
6520 {
6521   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6522
6523   return widget->priv->receives_default;
6524 }
6525
6526 /**
6527  * gtk_widget_has_grab:
6528  * @widget: a #GtkWidget
6529  *
6530  * Determines whether the widget is currently grabbing events, so it
6531  * is the only widget receiving input events (keyboard and mouse).
6532  *
6533  * See also gtk_grab_add().
6534  *
6535  * Return value: %TRUE if the widget is in the grab_widgets stack
6536  *
6537  * Since: 2.18
6538  **/
6539 gboolean
6540 gtk_widget_has_grab (GtkWidget *widget)
6541 {
6542   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6543
6544   return widget->priv->has_grab;
6545 }
6546
6547 void
6548 _gtk_widget_set_has_grab (GtkWidget *widget,
6549                           gboolean   has_grab)
6550 {
6551   widget->priv->has_grab = has_grab;
6552 }
6553
6554 /**
6555  * gtk_widget_device_is_shadowed:
6556  * @widget: a #GtkWidget
6557  * @device: a #GdkDevice
6558  *
6559  * Returns %TRUE if @device has been shadowed by a GTK+
6560  * device grab on another widget, so it would stop sending
6561  * events to @widget. This may be used in the
6562  * #GtkWidget::grab-notify signal to check for specific
6563  * devices. See gtk_device_grab_add().
6564  *
6565  * Returns: %TRUE if there is an ongoing grab on @device
6566  *          by another #GtkWidget than @widget.
6567  *
6568  * Since: 3.0
6569  **/
6570 gboolean
6571 gtk_widget_device_is_shadowed (GtkWidget *widget,
6572                                GdkDevice *device)
6573 {
6574   GtkWindowGroup *group;
6575   GtkWidget *grab_widget, *toplevel;
6576
6577   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6578   g_return_val_if_fail (GDK_IS_DEVICE (device), FALSE);
6579
6580   if (!gtk_widget_get_realized (widget))
6581     return TRUE;
6582
6583   toplevel = gtk_widget_get_toplevel (widget);
6584
6585   if (GTK_IS_WINDOW (toplevel))
6586     group = gtk_window_get_group (GTK_WINDOW (toplevel));
6587   else
6588     group = gtk_window_get_group (NULL);
6589
6590   grab_widget = gtk_window_group_get_current_device_grab (group, device);
6591
6592   /* Widget not inside the hierarchy of grab_widget */
6593   if (grab_widget &&
6594       widget != grab_widget &&
6595       !gtk_widget_is_ancestor (widget, grab_widget))
6596     return TRUE;
6597
6598   grab_widget = gtk_window_group_get_current_grab (group);
6599   if (grab_widget && widget != grab_widget &&
6600       !gtk_widget_is_ancestor (widget, grab_widget))
6601     return TRUE;
6602
6603   return FALSE;
6604 }
6605
6606 /**
6607  * gtk_widget_set_name:
6608  * @widget: a #GtkWidget
6609  * @name: name for the widget
6610  *
6611  * Widgets can be named, which allows you to refer to them from a
6612  * gtkrc file. You can apply a style to widgets with a particular name
6613  * in the gtkrc file. See the documentation for gtkrc files (on the
6614  * same page as the docs for #GtkRcStyle).
6615  *
6616  * Note that widget names are separated by periods in paths (see
6617  * gtk_widget_path()), so names with embedded periods may cause confusion.
6618  **/
6619 void
6620 gtk_widget_set_name (GtkWidget   *widget,
6621                      const gchar *name)
6622 {
6623   GtkWidgetPrivate *priv;
6624   gchar *new_name;
6625
6626   g_return_if_fail (GTK_IS_WIDGET (widget));
6627
6628   priv = widget->priv;
6629
6630   new_name = g_strdup (name);
6631   g_free (priv->name);
6632   priv->name = new_name;
6633
6634   if (priv->rc_style)
6635     gtk_widget_reset_rc_style (widget);
6636
6637   g_object_notify (G_OBJECT (widget), "name");
6638 }
6639
6640 /**
6641  * gtk_widget_get_name:
6642  * @widget: a #GtkWidget
6643  *
6644  * Retrieves the name of a widget. See gtk_widget_set_name() for the
6645  * significance of widget names.
6646  *
6647  * Return value: name of the widget. This string is owned by GTK+ and
6648  * should not be modified or freed
6649  **/
6650 G_CONST_RETURN gchar*
6651 gtk_widget_get_name (GtkWidget *widget)
6652 {
6653   GtkWidgetPrivate *priv;
6654
6655   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
6656
6657   priv = widget->priv;
6658
6659   if (priv->name)
6660     return priv->name;
6661   return G_OBJECT_TYPE_NAME (widget);
6662 }
6663
6664 /**
6665  * gtk_widget_set_state:
6666  * @widget: a #GtkWidget
6667  * @state: new state for @widget
6668  *
6669  * This function is for use in widget implementations. Sets the state
6670  * of a widget (insensitive, prelighted, etc.) Usually you should set
6671  * the state using wrapper functions such as gtk_widget_set_sensitive().
6672  **/
6673 void
6674 gtk_widget_set_state (GtkWidget           *widget,
6675                       GtkStateType         state)
6676 {
6677   GtkWidgetPrivate *priv;
6678
6679   g_return_if_fail (GTK_IS_WIDGET (widget));
6680
6681   priv = widget->priv;
6682
6683   if (state == gtk_widget_get_state (widget))
6684     return;
6685
6686   if (state == GTK_STATE_INSENSITIVE)
6687     gtk_widget_set_sensitive (widget, FALSE);
6688   else
6689     {
6690       GtkStateData data;
6691
6692       data.state = state;
6693       data.state_restoration = FALSE;
6694       data.use_forall = FALSE;
6695       if (priv->parent)
6696         data.parent_sensitive = (gtk_widget_is_sensitive (priv->parent) != FALSE);
6697       else
6698         data.parent_sensitive = TRUE;
6699
6700       gtk_widget_propagate_state (widget, &data);
6701
6702       if (gtk_widget_is_drawable (widget))
6703         gtk_widget_queue_draw (widget);
6704     }
6705 }
6706
6707 /**
6708  * gtk_widget_get_state:
6709  * @widget: a #GtkWidget
6710  *
6711  * Returns the widget's state. See gtk_widget_set_state().
6712  *
6713  * Returns: the state of @widget.
6714  *
6715  * Since: 2.18
6716  */
6717 GtkStateType
6718 gtk_widget_get_state (GtkWidget *widget)
6719 {
6720   g_return_val_if_fail (GTK_IS_WIDGET (widget), GTK_STATE_NORMAL);
6721
6722   return widget->priv->state;
6723 }
6724
6725 /**
6726  * gtk_widget_set_visible:
6727  * @widget: a #GtkWidget
6728  * @visible: whether the widget should be shown or not
6729  *
6730  * Sets the visibility state of @widget. Note that setting this to
6731  * %TRUE doesn't mean the widget is actually viewable, see
6732  * gtk_widget_get_visible().
6733  *
6734  * This function simply calls gtk_widget_show() or gtk_widget_hide()
6735  * but is nicer to use when the visibility of the widget depends on
6736  * some condition.
6737  *
6738  * Since: 2.18
6739  **/
6740 void
6741 gtk_widget_set_visible (GtkWidget *widget,
6742                         gboolean   visible)
6743 {
6744   g_return_if_fail (GTK_IS_WIDGET (widget));
6745
6746   if (visible != gtk_widget_get_visible (widget))
6747     {
6748       if (visible)
6749         gtk_widget_show (widget);
6750       else
6751         gtk_widget_hide (widget);
6752     }
6753 }
6754
6755 void
6756 _gtk_widget_set_visible_flag (GtkWidget *widget,
6757                               gboolean   visible)
6758 {
6759   widget->priv->visible = visible;
6760 }
6761
6762 /**
6763  * gtk_widget_get_visible:
6764  * @widget: a #GtkWidget
6765  *
6766  * Determines whether the widget is visible. Note that this doesn't
6767  * take into account whether the widget's parent is also visible
6768  * or the widget is obscured in any way.
6769  *
6770  * See gtk_widget_set_visible().
6771  *
6772  * Return value: %TRUE if the widget is visible
6773  *
6774  * Since: 2.18
6775  **/
6776 gboolean
6777 gtk_widget_get_visible (GtkWidget *widget)
6778 {
6779   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6780
6781   return widget->priv->visible;
6782 }
6783
6784 /**
6785  * gtk_widget_set_has_window:
6786  * @widget: a #GtkWidget
6787  * @has_window: whether or not @widget has a window.
6788  *
6789  * Specifies whether @widget has a #GdkWindow of its own. Note that
6790  * all realized widgets have a non-%NULL "window" pointer
6791  * (gtk_widget_get_window() never returns a %NULL window when a widget
6792  * is realized), but for many of them it's actually the #GdkWindow of
6793  * one of its parent widgets. Widgets that do not create a %window for
6794  * themselves in #GtkWidget::realize must announce this by
6795  * calling this function with @has_window = %FALSE.
6796  *
6797  * This function should only be called by widget implementations,
6798  * and they should call it in their init() function.
6799  *
6800  * Since: 2.18
6801  **/
6802 void
6803 gtk_widget_set_has_window (GtkWidget *widget,
6804                            gboolean   has_window)
6805 {
6806   g_return_if_fail (GTK_IS_WIDGET (widget));
6807
6808   widget->priv->no_window = !has_window;
6809 }
6810
6811 /**
6812  * gtk_widget_get_has_window:
6813  * @widget: a #GtkWidget
6814  *
6815  * Determines whether @widget has a #GdkWindow of its own. See
6816  * gtk_widget_set_has_window().
6817  *
6818  * Return value: %TRUE if @widget has a window, %FALSE otherwise
6819  *
6820  * Since: 2.18
6821  **/
6822 gboolean
6823 gtk_widget_get_has_window (GtkWidget *widget)
6824 {
6825   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6826
6827   return ! widget->priv->no_window;
6828 }
6829
6830 /**
6831  * gtk_widget_is_toplevel:
6832  * @widget: a #GtkWidget
6833  *
6834  * Determines whether @widget is a toplevel widget. Currently only
6835  * #GtkWindow and #GtkInvisible are toplevel widgets. Toplevel
6836  * widgets have no parent widget.
6837  *
6838  * Return value: %TRUE if @widget is a toplevel, %FALSE otherwise
6839  *
6840  * Since: 2.18
6841  **/
6842 gboolean
6843 gtk_widget_is_toplevel (GtkWidget *widget)
6844 {
6845   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6846
6847   return widget->priv->toplevel;
6848 }
6849
6850 void
6851 _gtk_widget_set_is_toplevel (GtkWidget *widget,
6852                              gboolean   is_toplevel)
6853 {
6854   widget->priv->toplevel = is_toplevel;
6855 }
6856
6857 /**
6858  * gtk_widget_is_drawable:
6859  * @widget: a #GtkWidget
6860  *
6861  * Determines whether @widget can be drawn to. A widget can be drawn
6862  * to if it is mapped and visible.
6863  *
6864  * Return value: %TRUE if @widget is drawable, %FALSE otherwise
6865  *
6866  * Since: 2.18
6867  **/
6868 gboolean
6869 gtk_widget_is_drawable (GtkWidget *widget)
6870 {
6871   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6872
6873   return (gtk_widget_get_visible (widget) &&
6874           gtk_widget_get_mapped (widget));
6875 }
6876
6877 /**
6878  * gtk_widget_get_realized:
6879  * @widget: a #GtkWidget
6880  *
6881  * Determines whether @widget is realized.
6882  *
6883  * Return value: %TRUE if @widget is realized, %FALSE otherwise
6884  *
6885  * Since: 2.20
6886  **/
6887 gboolean
6888 gtk_widget_get_realized (GtkWidget *widget)
6889 {
6890   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6891
6892   return widget->priv->realized;
6893 }
6894
6895 /**
6896  * gtk_widget_set_realized:
6897  * @widget: a #GtkWidget
6898  * @realized: %TRUE to mark the widget as realized
6899  *
6900  * Marks the widget as being realized.
6901  *
6902  * This function should only ever be called in a derived widget's
6903  * "realize" or "unrealize" implementation.
6904  *
6905  * Since: 2.20
6906  */
6907 void
6908 gtk_widget_set_realized (GtkWidget *widget,
6909                          gboolean   realized)
6910 {
6911   g_return_if_fail (GTK_IS_WIDGET (widget));
6912
6913   widget->priv->realized = realized;
6914 }
6915
6916 /**
6917  * gtk_widget_get_mapped:
6918  * @widget: a #GtkWidget
6919  *
6920  * Whether the widget is mapped.
6921  *
6922  * Return value: %TRUE if the widget is mapped, %FALSE otherwise.
6923  *
6924  * Since: 2.20
6925  */
6926 gboolean
6927 gtk_widget_get_mapped (GtkWidget *widget)
6928 {
6929   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
6930
6931   return widget->priv->mapped;
6932 }
6933
6934 /**
6935  * gtk_widget_set_mapped:
6936  * @widget: a #GtkWidget
6937  * @mapped: %TRUE to mark the widget as mapped
6938  *
6939  * Marks the widget as being realized.
6940  *
6941  * This function should only ever be called in a derived widget's
6942  * "map" or "unmap" implementation.
6943  *
6944  * Since: 2.20
6945  */
6946 void
6947 gtk_widget_set_mapped (GtkWidget *widget,
6948                        gboolean   mapped)
6949 {
6950   g_return_if_fail (GTK_IS_WIDGET (widget));
6951
6952   widget->priv->mapped = mapped;
6953 }
6954
6955 /**
6956  * gtk_widget_set_app_paintable:
6957  * @widget: a #GtkWidget
6958  * @app_paintable: %TRUE if the application will paint on the widget
6959  *
6960  * Sets whether the application intends to draw on the widget in
6961  * an #GtkWidget::draw handler.
6962  *
6963  * This is a hint to the widget and does not affect the behavior of
6964  * the GTK+ core; many widgets ignore this flag entirely. For widgets
6965  * that do pay attention to the flag, such as #GtkEventBox and #GtkWindow,
6966  * the effect is to suppress default themed drawing of the widget's
6967  * background. (Children of the widget will still be drawn.) The application
6968  * is then entirely responsible for drawing the widget background.
6969  *
6970  * Note that the background is still drawn when the widget is mapped.
6971  **/
6972 void
6973 gtk_widget_set_app_paintable (GtkWidget *widget,
6974                               gboolean   app_paintable)
6975 {
6976   g_return_if_fail (GTK_IS_WIDGET (widget));
6977
6978   app_paintable = (app_paintable != FALSE);
6979
6980   if (widget->priv->app_paintable != app_paintable)
6981     {
6982       widget->priv->app_paintable = app_paintable;
6983
6984       if (gtk_widget_is_drawable (widget))
6985         gtk_widget_queue_draw (widget);
6986
6987       g_object_notify (G_OBJECT (widget), "app-paintable");
6988     }
6989 }
6990
6991 /**
6992  * gtk_widget_get_app_paintable:
6993  * @widget: a #GtkWidget
6994  *
6995  * Determines whether the application intends to draw on the widget in
6996  * an #GtkWidget::draw handler.
6997  *
6998  * See gtk_widget_set_app_paintable()
6999  *
7000  * Return value: %TRUE if the widget is app paintable
7001  *
7002  * Since: 2.18
7003  **/
7004 gboolean
7005 gtk_widget_get_app_paintable (GtkWidget *widget)
7006 {
7007   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
7008
7009   return widget->priv->app_paintable;
7010 }
7011
7012 /**
7013  * gtk_widget_set_double_buffered:
7014  * @widget: a #GtkWidget
7015  * @double_buffered: %TRUE to double-buffer a widget
7016  *
7017  * Widgets are double buffered by default; you can use this function
7018  * to turn off the buffering. "Double buffered" simply means that
7019  * gdk_window_begin_paint_region() and gdk_window_end_paint() are called
7020  * automatically around expose events sent to the
7021  * widget. gdk_window_begin_paint() diverts all drawing to a widget's
7022  * window to an offscreen buffer, and gdk_window_end_paint() draws the
7023  * buffer to the screen. The result is that users see the window
7024  * update in one smooth step, and don't see individual graphics
7025  * primitives being rendered.
7026  *
7027  * In very simple terms, double buffered widgets don't flicker,
7028  * so you would only use this function to turn off double buffering
7029  * if you had special needs and really knew what you were doing.
7030  *
7031  * Note: if you turn off double-buffering, you have to handle
7032  * expose events, since even the clearing to the background color or
7033  * pixmap will not happen automatically (as it is done in
7034  * gdk_window_begin_paint()).
7035  **/
7036 void
7037 gtk_widget_set_double_buffered (GtkWidget *widget,
7038                                 gboolean   double_buffered)
7039 {
7040   g_return_if_fail (GTK_IS_WIDGET (widget));
7041
7042   double_buffered = (double_buffered != FALSE);
7043
7044   if (widget->priv->double_buffered != double_buffered)
7045     {
7046       widget->priv->double_buffered = double_buffered;
7047
7048       g_object_notify (G_OBJECT (widget), "double-buffered");
7049     }
7050 }
7051
7052 /**
7053  * gtk_widget_get_double_buffered:
7054  * @widget: a #GtkWidget
7055  *
7056  * Determines whether the widget is double buffered.
7057  *
7058  * See gtk_widget_set_double_buffered()
7059  *
7060  * Return value: %TRUE if the widget is double buffered
7061  *
7062  * Since: 2.18
7063  **/
7064 gboolean
7065 gtk_widget_get_double_buffered (GtkWidget *widget)
7066 {
7067   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
7068
7069   return widget->priv->double_buffered;
7070 }
7071
7072 /**
7073  * gtk_widget_set_redraw_on_allocate:
7074  * @widget: a #GtkWidget
7075  * @redraw_on_allocate: if %TRUE, the entire widget will be redrawn
7076  *   when it is allocated to a new size. Otherwise, only the
7077  *   new portion of the widget will be redrawn.
7078  *
7079  * Sets whether the entire widget is queued for drawing when its size
7080  * allocation changes. By default, this setting is %TRUE and
7081  * the entire widget is redrawn on every size change. If your widget
7082  * leaves the upper left unchanged when made bigger, turning this
7083  * setting off will improve performance.
7084
7085  * Note that for %NO_WINDOW widgets setting this flag to %FALSE turns
7086  * off all allocation on resizing: the widget will not even redraw if
7087  * its position changes; this is to allow containers that don't draw
7088  * anything to avoid excess invalidations. If you set this flag on a
7089  * %NO_WINDOW widget that <emphasis>does</emphasis> draw on @widget->window,
7090  * you are responsible for invalidating both the old and new allocation
7091  * of the widget when the widget is moved and responsible for invalidating
7092  * regions newly when the widget increases size.
7093  **/
7094 void
7095 gtk_widget_set_redraw_on_allocate (GtkWidget *widget,
7096                                    gboolean   redraw_on_allocate)
7097 {
7098   g_return_if_fail (GTK_IS_WIDGET (widget));
7099
7100   widget->priv->redraw_on_alloc = redraw_on_allocate;
7101 }
7102
7103 /**
7104  * gtk_widget_set_sensitive:
7105  * @widget: a #GtkWidget
7106  * @sensitive: %TRUE to make the widget sensitive
7107  *
7108  * Sets the sensitivity of a widget. A widget is sensitive if the user
7109  * can interact with it. Insensitive widgets are "grayed out" and the
7110  * user can't interact with them. Insensitive widgets are known as
7111  * "inactive", "disabled", or "ghosted" in some other toolkits.
7112  **/
7113 void
7114 gtk_widget_set_sensitive (GtkWidget *widget,
7115                           gboolean   sensitive)
7116 {
7117   GtkWidgetPrivate *priv;
7118   GtkStateData data;
7119
7120   g_return_if_fail (GTK_IS_WIDGET (widget));
7121
7122   priv = widget->priv;
7123
7124   sensitive = (sensitive != FALSE);
7125
7126   if (widget->priv->sensitive == sensitive)
7127     return;
7128
7129   if (sensitive)
7130     {
7131       widget->priv->sensitive = TRUE;
7132       data.state = priv->saved_state;
7133     }
7134   else
7135     {
7136       widget->priv->sensitive = FALSE;
7137       data.state = gtk_widget_get_state (widget);
7138     }
7139   data.state_restoration = TRUE;
7140   data.use_forall = TRUE;
7141
7142   if (priv->parent)
7143     data.parent_sensitive = gtk_widget_is_sensitive (priv->parent);
7144   else
7145     data.parent_sensitive = TRUE;
7146
7147   gtk_widget_propagate_state (widget, &data);
7148   if (gtk_widget_is_drawable (widget))
7149     gtk_widget_queue_draw (widget);
7150
7151   g_object_notify (G_OBJECT (widget), "sensitive");
7152 }
7153
7154 /**
7155  * gtk_widget_get_sensitive:
7156  * @widget: a #GtkWidget
7157  *
7158  * Returns the widget's sensitivity (in the sense of returning
7159  * the value that has been set using gtk_widget_set_sensitive()).
7160  *
7161  * The effective sensitivity of a widget is however determined by both its
7162  * own and its parent widget's sensitivity. See gtk_widget_is_sensitive().
7163  *
7164  * Returns: %TRUE if the widget is sensitive
7165  *
7166  * Since: 2.18
7167  */
7168 gboolean
7169 gtk_widget_get_sensitive (GtkWidget *widget)
7170 {
7171   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
7172
7173   return widget->priv->sensitive;
7174 }
7175
7176 /**
7177  * gtk_widget_is_sensitive:
7178  * @widget: a #GtkWidget
7179  *
7180  * Returns the widget's effective sensitivity, which means
7181  * it is sensitive itself and also its parent widget is sensntive
7182  *
7183  * Returns: %TRUE if the widget is effectively sensitive
7184  *
7185  * Since: 2.18
7186  */
7187 gboolean
7188 gtk_widget_is_sensitive (GtkWidget *widget)
7189 {
7190   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
7191
7192   return widget->priv->sensitive && widget->priv->parent_sensitive;
7193 }
7194
7195 /**
7196  * gtk_widget_set_parent:
7197  * @widget: a #GtkWidget
7198  * @parent: parent container
7199  *
7200  * This function is useful only when implementing subclasses of
7201  * #GtkContainer.
7202  * Sets the container as the parent of @widget, and takes care of
7203  * some details such as updating the state and style of the child
7204  * to reflect its new location. The opposite function is
7205  * gtk_widget_unparent().
7206  **/
7207 void
7208 gtk_widget_set_parent (GtkWidget *widget,
7209                        GtkWidget *parent)
7210 {
7211   GtkWidgetPrivate *priv;
7212   GtkStateData data;
7213   GtkStyleContext *context;
7214
7215   g_return_if_fail (GTK_IS_WIDGET (widget));
7216   g_return_if_fail (GTK_IS_WIDGET (parent));
7217   g_return_if_fail (widget != parent);
7218
7219   priv = widget->priv;
7220
7221   if (priv->parent != NULL)
7222     {
7223       g_warning ("Can't set a parent on widget which has a parent\n");
7224       return;
7225     }
7226   if (gtk_widget_is_toplevel (widget))
7227     {
7228       g_warning ("Can't set a parent on a toplevel widget\n");
7229       return;
7230     }
7231
7232   /* keep this function in sync with gtk_menu_attach_to_widget()
7233    */
7234
7235   g_object_ref_sink (widget);
7236   priv->parent = parent;
7237
7238   if (gtk_widget_get_state (parent) != GTK_STATE_NORMAL)
7239     data.state = gtk_widget_get_state (parent);
7240   else
7241     data.state = gtk_widget_get_state (widget);
7242   data.state_restoration = FALSE;
7243   data.parent_sensitive = (gtk_widget_is_sensitive (parent) != FALSE);
7244   data.use_forall = gtk_widget_is_sensitive (parent) != gtk_widget_is_sensitive (widget);
7245
7246   gtk_widget_propagate_state (widget, &data);
7247
7248   gtk_widget_reset_rc_styles (widget);
7249
7250   g_signal_emit (widget, widget_signals[PARENT_SET], 0, NULL);
7251   if (priv->parent->priv->anchored)
7252     _gtk_widget_propagate_hierarchy_changed (widget, NULL);
7253   g_object_notify (G_OBJECT (widget), "parent");
7254
7255   /* Enforce realized/mapped invariants
7256    */
7257   if (gtk_widget_get_realized (priv->parent))
7258     gtk_widget_realize (widget);
7259
7260   if (gtk_widget_get_visible (priv->parent) &&
7261       gtk_widget_get_visible (widget))
7262     {
7263       if (gtk_widget_get_child_visible (widget) &&
7264           gtk_widget_get_mapped (priv->parent))
7265         gtk_widget_map (widget);
7266
7267       gtk_widget_queue_resize (widget);
7268     }
7269
7270   /* child may cause parent's expand to change, if the child is
7271    * expanded. If child is not expanded, then it can't modify the
7272    * parent's expand. If the child becomes expanded later then it will
7273    * queue compute_expand then. This optimization plus defaulting
7274    * newly-constructed widgets to need_compute_expand=FALSE should
7275    * mean that initially building a widget tree doesn't have to keep
7276    * walking up setting need_compute_expand on parents over and over.
7277    *
7278    * We can't change a parent to need to expand unless we're visible.
7279    */
7280   if (gtk_widget_get_visible (widget) &&
7281       (priv->need_compute_expand ||
7282        priv->computed_hexpand ||
7283        priv->computed_vexpand))
7284     {
7285       gtk_widget_queue_compute_expand (parent);
7286     }
7287
7288   context = g_object_get_qdata (G_OBJECT (widget),
7289                                 quark_style_context);
7290   if (context)
7291     {
7292       GtkWidgetPath *path;
7293
7294       path = gtk_widget_get_path (widget);
7295       gtk_style_context_set_path (context, path);
7296       gtk_widget_path_free (path);
7297
7298       gtk_style_context_set_screen (context,
7299                                     gtk_widget_get_screen (widget));
7300     }
7301 }
7302
7303 /**
7304  * gtk_widget_get_parent:
7305  * @widget: a #GtkWidget
7306  *
7307  * Returns the parent container of @widget.
7308  *
7309  * Return value: (transfer none): the parent container of @widget, or %NULL
7310  **/
7311 GtkWidget *
7312 gtk_widget_get_parent (GtkWidget *widget)
7313 {
7314   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
7315
7316   return widget->priv->parent;
7317 }
7318
7319 /*****************************************
7320  * Widget styles
7321  * see docs/styles.txt
7322  *****************************************/
7323
7324 /**
7325  * gtk_widget_style_attach:
7326  * @widget: a #GtkWidget
7327  *
7328  * This function attaches the widget's #GtkStyle to the widget's
7329  * #GdkWindow. It is a replacement for
7330  *
7331  * <programlisting>
7332  * widget->style = gtk_style_attach (widget->style, widget->window);
7333  * </programlisting>
7334  *
7335  * and should only ever be called in a derived widget's "realize"
7336  * implementation which does not chain up to its parent class'
7337  * "realize" implementation, because one of the parent classes
7338  * (finally #GtkWidget) would attach the style itself.
7339  *
7340  * Since: 2.20
7341  **/
7342 void
7343 gtk_widget_style_attach (GtkWidget *widget)
7344 {
7345   GtkWidgetPrivate *priv;
7346
7347   g_return_if_fail (GTK_IS_WIDGET (widget));
7348   g_return_if_fail (gtk_widget_get_realized (widget));
7349
7350   priv = widget->priv;
7351
7352   priv->style = gtk_style_attach (priv->style, priv->window);
7353 }
7354
7355 /**
7356  * gtk_widget_has_rc_style:
7357  * @widget: a #GtkWidget
7358  *
7359  * Determines if the widget style has been looked up through the rc mechanism.
7360  *
7361  * Returns: %TRUE if the widget has been looked up through the rc
7362  *   mechanism, %FALSE otherwise.
7363  *
7364  * Since: 2.20
7365  **/
7366 gboolean
7367 gtk_widget_has_rc_style (GtkWidget *widget)
7368 {
7369   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
7370
7371   return widget->priv->rc_style;
7372 }
7373
7374 /**
7375  * gtk_widget_set_style:
7376  * @widget: a #GtkWidget
7377  * @style: (allow-none): a #GtkStyle, or %NULL to remove the effect of a previous
7378  *         gtk_widget_set_style() and go back to the default style
7379  *
7380  * Sets the #GtkStyle for a widget (@widget->style). You probably don't
7381  * want to use this function; it interacts badly with themes, because
7382  * themes work by replacing the #GtkStyle. Instead, use
7383  * gtk_widget_modify_style().
7384  **/
7385 void
7386 gtk_widget_set_style (GtkWidget *widget,
7387                       GtkStyle  *style)
7388 {
7389   g_return_if_fail (GTK_IS_WIDGET (widget));
7390
7391   if (style)
7392     {
7393       gboolean initial_emission;
7394
7395       initial_emission = !widget->priv->rc_style && !widget->priv->user_style;
7396
7397       widget->priv->rc_style = FALSE;
7398       widget->priv->user_style = TRUE;
7399
7400       gtk_widget_set_style_internal (widget, style, initial_emission);
7401     }
7402   else
7403     {
7404       if (widget->priv->user_style)
7405         gtk_widget_reset_rc_style (widget);
7406     }
7407 }
7408
7409 /**
7410  * gtk_widget_ensure_style:
7411  * @widget: a #GtkWidget
7412  *
7413  * Ensures that @widget has a style (@widget->style). Not a very useful
7414  * function; most of the time, if you want the style, the widget is
7415  * realized, and realized widgets are guaranteed to have a style
7416  * already.
7417  **/
7418 void
7419 gtk_widget_ensure_style (GtkWidget *widget)
7420 {
7421   g_return_if_fail (GTK_IS_WIDGET (widget));
7422
7423   if (!widget->priv->style ||
7424       !gtk_style_has_context (widget->priv->style))
7425     {
7426       GtkStyle *style;
7427
7428       style = g_object_new (GTK_TYPE_STYLE,
7429                             "context", gtk_widget_get_style_context (widget),
7430                             NULL);
7431
7432       gtk_widget_set_style_internal (widget, style, TRUE);
7433     }
7434
7435 #if 0
7436   if (!widget->priv->rc_style && !widget->priv->user_style)
7437     gtk_widget_reset_rc_style (widget);
7438 #endif
7439 }
7440
7441 /* Look up the RC style for this widget, unsetting any user style that
7442  * may be in effect currently
7443  **/
7444 static void
7445 gtk_widget_reset_rc_style (GtkWidget *widget)
7446 {
7447   GtkWidgetPrivate *priv = widget->priv;
7448   GtkStyle *new_style = NULL;
7449   gboolean initial_emission;
7450
7451   initial_emission = !priv->rc_style && !priv->user_style;
7452
7453   priv->user_style = FALSE;
7454   priv->rc_style = TRUE;
7455
7456   if (gtk_widget_has_screen (widget))
7457     new_style = gtk_rc_get_style (widget);
7458   if (!new_style)
7459     new_style = gtk_widget_get_default_style ();
7460
7461   if (initial_emission || new_style != priv->style)
7462     gtk_widget_set_style_internal (widget, new_style, initial_emission);
7463 }
7464
7465 /**
7466  * gtk_widget_get_style:
7467  * @widget: a #GtkWidget
7468  *
7469  * Simply an accessor function that returns @widget->style.
7470  *
7471  * Return value: (transfer none): the widget's #GtkStyle
7472  **/
7473 GtkStyle*
7474 gtk_widget_get_style (GtkWidget *widget)
7475 {
7476   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
7477
7478   return widget->priv->style;
7479 }
7480
7481 /**
7482  * gtk_widget_modify_style:
7483  * @widget: a #GtkWidget
7484  * @style: the #GtkRcStyle holding the style modifications
7485  *
7486  * Modifies style values on the widget. Modifications made using this
7487  * technique take precedence over style values set via an RC file,
7488  * however, they will be overriden if a style is explicitely set on
7489  * the widget using gtk_widget_set_style(). The #GtkRcStyle structure
7490  * is designed so each field can either be set or unset, so it is
7491  * possible, using this function, to modify some style values and
7492  * leave the others unchanged.
7493  *
7494  * Note that modifications made with this function are not cumulative
7495  * with previous calls to gtk_widget_modify_style() or with such
7496  * functions as gtk_widget_modify_fg(). If you wish to retain
7497  * previous values, you must first call gtk_widget_get_modifier_style(),
7498  * make your modifications to the returned style, then call
7499  * gtk_widget_modify_style() with that style. On the other hand,
7500  * if you first call gtk_widget_modify_style(), subsequent calls
7501  * to such functions gtk_widget_modify_fg() will have a cumulative
7502  * effect with the initial modifications.
7503  **/
7504 void
7505 gtk_widget_modify_style (GtkWidget      *widget,
7506                          GtkRcStyle     *style)
7507 {
7508   g_return_if_fail (GTK_IS_WIDGET (widget));
7509   g_return_if_fail (GTK_IS_RC_STYLE (style));
7510
7511   g_object_set_qdata_full (G_OBJECT (widget),
7512                            quark_rc_style,
7513                            gtk_rc_style_copy (style),
7514                            (GDestroyNotify) g_object_unref);
7515
7516   /* note that "style" may be invalid here if it was the old
7517    * modifier style and the only reference was our own.
7518    */
7519
7520   if (widget->priv->rc_style)
7521     gtk_widget_reset_rc_style (widget);
7522 }
7523
7524 /**
7525  * gtk_widget_get_modifier_style:
7526  * @widget: a #GtkWidget
7527  *
7528  * Returns the current modifier style for the widget. (As set by
7529  * gtk_widget_modify_style().) If no style has previously set, a new
7530  * #GtkRcStyle will be created with all values unset, and set as the
7531  * modifier style for the widget. If you make changes to this rc
7532  * style, you must call gtk_widget_modify_style(), passing in the
7533  * returned rc style, to make sure that your changes take effect.
7534  *
7535  * Caution: passing the style back to gtk_widget_modify_style() will
7536  * normally end up destroying it, because gtk_widget_modify_style() copies
7537  * the passed-in style and sets the copy as the new modifier style,
7538  * thus dropping any reference to the old modifier style. Add a reference
7539  * to the modifier style if you want to keep it alive.
7540  *
7541  * Return value: (transfer none): the modifier style for the widget. This rc style is
7542  *   owned by the widget. If you want to keep a pointer to value this
7543  *   around, you must add a refcount using g_object_ref().
7544  **/
7545 GtkRcStyle *
7546 gtk_widget_get_modifier_style (GtkWidget      *widget)
7547 {
7548   GtkRcStyle *rc_style;
7549
7550   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
7551
7552   rc_style = g_object_get_qdata (G_OBJECT (widget), quark_rc_style);
7553
7554   if (!rc_style)
7555     {
7556       rc_style = gtk_rc_style_new ();
7557       g_object_set_qdata_full (G_OBJECT (widget),
7558                                quark_rc_style,
7559                                rc_style,
7560                                (GDestroyNotify) g_object_unref);
7561     }
7562
7563   return rc_style;
7564 }
7565
7566 static void
7567 gtk_widget_modify_color_component (GtkWidget      *widget,
7568                                    GtkRcFlags      component,
7569                                    GtkStateType    state,
7570                                    const GdkColor *color)
7571 {
7572   GtkRcStyle *rc_style = gtk_widget_get_modifier_style (widget);
7573
7574   if (color)
7575     {
7576       switch (component)
7577         {
7578         case GTK_RC_FG:
7579           rc_style->fg[state] = *color;
7580           break;
7581         case GTK_RC_BG:
7582           rc_style->bg[state] = *color;
7583           break;
7584         case GTK_RC_TEXT:
7585           rc_style->text[state] = *color;
7586           break;
7587         case GTK_RC_BASE:
7588           rc_style->base[state] = *color;
7589           break;
7590         default:
7591           g_assert_not_reached();
7592         }
7593
7594       rc_style->color_flags[state] |= component;
7595     }
7596   else
7597     rc_style->color_flags[state] &= ~component;
7598
7599   gtk_widget_modify_style (widget, rc_style);
7600 }
7601
7602 /**
7603  * gtk_widget_modify_symbolic_color:
7604  * @widget: a #GtkWidget
7605  * @name: the name of the symbolic color to modify
7606  * @color: (allow-none): the color to assign (does not need to be allocated),
7607  *         or %NULL to undo the effect of previous calls to
7608  *         of gtk_widget_modify_symbolic_color().
7609  *
7610  * Sets a symbolic color for a widget.
7611  * All other style values are left untouched. See also
7612  * gtk_widget_modify_style().
7613  *
7614  * Since: 3.0
7615  **/
7616 void
7617 gtk_widget_modify_symbolic_color (GtkWidget      *widget,
7618                                   const gchar    *name,
7619                                   const GdkColor *color)
7620 {
7621   GtkRcStyle *rc_style = gtk_widget_get_modifier_style (widget);
7622
7623   _gtk_rc_style_set_symbolic_color (rc_style, name, color);
7624
7625   gtk_widget_modify_style (widget, rc_style);
7626 }
7627
7628 /**
7629  * gtk_widget_modify_fg:
7630  * @widget: a #GtkWidget
7631  * @state: the state for which to set the foreground color
7632  * @color: (allow-none): the color to assign (does not need to be allocated),
7633  *         or %NULL to undo the effect of previous calls to
7634  *         of gtk_widget_modify_fg().
7635  *
7636  * Sets the foreground color for a widget in a particular state.
7637  * All other style values are left untouched. See also
7638  * gtk_widget_modify_style().
7639  **/
7640 void
7641 gtk_widget_modify_fg (GtkWidget      *widget,
7642                       GtkStateType    state,
7643                       const GdkColor *color)
7644 {
7645   g_return_if_fail (GTK_IS_WIDGET (widget));
7646   g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
7647
7648   gtk_widget_modify_color_component (widget, GTK_RC_FG, state, color);
7649 }
7650
7651 /**
7652  * gtk_widget_modify_bg:
7653  * @widget: a #GtkWidget
7654  * @state: the state for which to set the background color
7655  * @color: (allow-none): the color to assign (does not need to be allocated),
7656  *         or %NULL to undo the effect of previous calls to
7657  *         of gtk_widget_modify_bg().
7658  *
7659  * Sets the background color for a widget in a particular state.
7660  * All other style values are left untouched. See also
7661  * gtk_widget_modify_style().
7662  *
7663  * Note that "no window" widgets (which have the %GTK_NO_WINDOW flag set)
7664  * draw on their parent container's window and thus may not draw any
7665  * background themselves. This is the case for e.g. #GtkLabel. To modify
7666  * the background of such widgets, you have to set the background color
7667  * on their parent; if you want to set the background of a rectangular
7668  * area around a label, try placing the label in a #GtkEventBox widget
7669  * and setting the background color on that.
7670  **/
7671 void
7672 gtk_widget_modify_bg (GtkWidget      *widget,
7673                       GtkStateType    state,
7674                       const GdkColor *color)
7675 {
7676   g_return_if_fail (GTK_IS_WIDGET (widget));
7677   g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
7678
7679   gtk_widget_modify_color_component (widget, GTK_RC_BG, state, color);
7680 }
7681
7682 /**
7683  * gtk_widget_modify_text:
7684  * @widget: a #GtkWidget
7685  * @state: the state for which to set the text color
7686  * @color: (allow-none): the color to assign (does not need to be allocated),
7687  *         or %NULL to undo the effect of previous calls to
7688  *         of gtk_widget_modify_text().
7689  *
7690  * Sets the text color for a widget in a particular state.  All other
7691  * style values are left untouched. The text color is the foreground
7692  * color used along with the base color (see gtk_widget_modify_base())
7693  * for widgets such as #GtkEntry and #GtkTextView. See also
7694  * gtk_widget_modify_style().
7695  **/
7696 void
7697 gtk_widget_modify_text (GtkWidget      *widget,
7698                         GtkStateType    state,
7699                         const GdkColor *color)
7700 {
7701   g_return_if_fail (GTK_IS_WIDGET (widget));
7702   g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
7703
7704   gtk_widget_modify_color_component (widget, GTK_RC_TEXT, state, color);
7705 }
7706
7707 /**
7708  * gtk_widget_modify_base:
7709  * @widget: a #GtkWidget
7710  * @state: the state for which to set the base color
7711  * @color: (allow-none): the color to assign (does not need to be allocated),
7712  *         or %NULL to undo the effect of previous calls to
7713  *         of gtk_widget_modify_base().
7714  *
7715  * Sets the base color for a widget in a particular state.
7716  * All other style values are left untouched. The base color
7717  * is the background color used along with the text color
7718  * (see gtk_widget_modify_text()) for widgets such as #GtkEntry
7719  * and #GtkTextView. See also gtk_widget_modify_style().
7720  *
7721  * Note that "no window" widgets (which have the %GTK_NO_WINDOW flag set)
7722  * draw on their parent container's window and thus may not draw any
7723  * background themselves. This is the case for e.g. #GtkLabel. To modify
7724  * the background of such widgets, you have to set the base color on their
7725  * parent; if you want to set the background of a rectangular area around
7726  * a label, try placing the label in a #GtkEventBox widget and setting
7727  * the base color on that.
7728  **/
7729 void
7730 gtk_widget_modify_base (GtkWidget      *widget,
7731                         GtkStateType    state,
7732                         const GdkColor *color)
7733 {
7734   g_return_if_fail (GTK_IS_WIDGET (widget));
7735   g_return_if_fail (state >= GTK_STATE_NORMAL && state <= GTK_STATE_INSENSITIVE);
7736
7737   gtk_widget_modify_color_component (widget, GTK_RC_BASE, state, color);
7738 }
7739
7740 static void
7741 modify_color_property (GtkWidget      *widget,
7742                        GtkRcStyle     *rc_style,
7743                        const char     *name,
7744                        const GdkColor *color)
7745 {
7746   GQuark type_name = g_type_qname (G_OBJECT_TYPE (widget));
7747   GQuark property_name = g_quark_from_string (name);
7748
7749   if (color)
7750     {
7751       GtkRcProperty rc_property = {0};
7752       char *color_name;
7753
7754       rc_property.type_name = type_name;
7755       rc_property.property_name = property_name;
7756       rc_property.origin = NULL;
7757
7758       color_name = gdk_color_to_string (color);
7759       g_value_init (&rc_property.value, G_TYPE_STRING);
7760       g_value_take_string (&rc_property.value, color_name);
7761
7762       _gtk_rc_style_set_rc_property (rc_style, &rc_property);
7763
7764       g_value_unset (&rc_property.value);
7765     }
7766   else
7767     _gtk_rc_style_unset_rc_property (rc_style, type_name, property_name);
7768 }
7769
7770 /**
7771  * gtk_widget_modify_cursor:
7772  * @widget: a #GtkWidget
7773  * @primary: the color to use for primary cursor (does not need to be
7774  *           allocated), or %NULL to undo the effect of previous calls to
7775  *           of gtk_widget_modify_cursor().
7776  * @secondary: the color to use for secondary cursor (does not need to be
7777  *             allocated), or %NULL to undo the effect of previous calls to
7778  *             of gtk_widget_modify_cursor().
7779  *
7780  * Sets the cursor color to use in a widget, overriding the
7781  * #GtkWidget:cursor-color and #GtkWidget:secondary-cursor-color
7782  * style properties. All other style values are left untouched.
7783  * See also gtk_widget_modify_style().
7784  *
7785  * Since: 2.12
7786  **/
7787 void
7788 gtk_widget_modify_cursor (GtkWidget      *widget,
7789                           const GdkColor *primary,
7790                           const GdkColor *secondary)
7791 {
7792   GtkRcStyle *rc_style;
7793
7794   g_return_if_fail (GTK_IS_WIDGET (widget));
7795
7796   rc_style = gtk_widget_get_modifier_style (widget);
7797
7798   modify_color_property (widget, rc_style, "cursor-color", primary);
7799   modify_color_property (widget, rc_style, "secondary-cursor-color", secondary);
7800
7801   gtk_widget_modify_style (widget, rc_style);
7802 }
7803
7804 /**
7805  * gtk_widget_modify_font:
7806  * @widget: a #GtkWidget
7807  * @font_desc: (allow-none): the font description to use, or %NULL to undo
7808  *   the effect of previous calls to gtk_widget_modify_font().
7809  *
7810  * Sets the font to use for a widget.  All other style values are left
7811  * untouched. See also gtk_widget_modify_style().
7812  **/
7813 void
7814 gtk_widget_modify_font (GtkWidget            *widget,
7815                         PangoFontDescription *font_desc)
7816 {
7817   GtkRcStyle *rc_style;
7818
7819   g_return_if_fail (GTK_IS_WIDGET (widget));
7820
7821   rc_style = gtk_widget_get_modifier_style (widget);
7822
7823   if (rc_style->font_desc)
7824     pango_font_description_free (rc_style->font_desc);
7825
7826   if (font_desc)
7827     rc_style->font_desc = pango_font_description_copy (font_desc);
7828   else
7829     rc_style->font_desc = NULL;
7830
7831   gtk_widget_modify_style (widget, rc_style);
7832 }
7833
7834 static void
7835 gtk_widget_real_direction_changed (GtkWidget        *widget,
7836                                    GtkTextDirection  previous_direction)
7837 {
7838   gtk_widget_queue_resize (widget);
7839 }
7840
7841 static void
7842 gtk_widget_real_style_set (GtkWidget *widget,
7843                            GtkStyle  *previous_style)
7844 {
7845   GtkWidgetPrivate *priv = widget->priv;
7846
7847   if (gtk_widget_get_realized (widget) &&
7848       gtk_widget_get_has_window (widget))
7849     gtk_style_set_background (priv->style, priv->window, priv->state);
7850 }
7851
7852 static void
7853 gtk_widget_set_style_internal (GtkWidget *widget,
7854                                GtkStyle  *style,
7855                                gboolean   initial_emission)
7856 {
7857   GtkWidgetPrivate *priv = widget->priv;
7858
7859   g_object_ref (widget);
7860   g_object_freeze_notify (G_OBJECT (widget));
7861
7862   if (priv->style != style)
7863     {
7864       GtkStyle *previous_style;
7865
7866       if (gtk_widget_get_realized (widget))
7867         {
7868           gtk_widget_reset_shapes (widget);
7869           gtk_style_detach (priv->style);
7870         }
7871
7872       previous_style = priv->style;
7873       priv->style = style;
7874       g_object_ref (priv->style);
7875
7876       if (gtk_widget_get_realized (widget))
7877         priv->style = gtk_style_attach (priv->style, priv->window);
7878
7879       gtk_widget_update_pango_context (widget);
7880       g_signal_emit (widget,
7881                      widget_signals[STYLE_SET],
7882                      0,
7883                      initial_emission ? NULL : previous_style);
7884       g_object_unref (previous_style);
7885
7886       if (priv->anchored && !initial_emission)
7887         gtk_widget_queue_resize (widget);
7888     }
7889   else if (initial_emission)
7890     {
7891       gtk_widget_update_pango_context (widget);
7892       g_signal_emit (widget,
7893                      widget_signals[STYLE_SET],
7894                      0,
7895                      NULL);
7896     }
7897   g_object_notify (G_OBJECT (widget), "style");
7898   g_object_thaw_notify (G_OBJECT (widget));
7899   g_object_unref (widget);
7900 }
7901
7902 typedef struct {
7903   GtkWidget *previous_toplevel;
7904   GdkScreen *previous_screen;
7905   GdkScreen *new_screen;
7906 } HierarchyChangedInfo;
7907
7908 static void
7909 do_screen_change (GtkWidget *widget,
7910                   GdkScreen *old_screen,
7911                   GdkScreen *new_screen)
7912 {
7913   if (old_screen != new_screen)
7914     {
7915       GtkStyleContext *context;
7916
7917       if (old_screen)
7918         {
7919           PangoContext *context = g_object_get_qdata (G_OBJECT (widget), quark_pango_context);
7920           if (context)
7921             g_object_set_qdata (G_OBJECT (widget), quark_pango_context, NULL);
7922         }
7923
7924       _gtk_tooltip_hide (widget);
7925
7926       context = gtk_widget_get_style_context (widget);
7927       gtk_style_context_set_screen (context, new_screen);
7928
7929       g_signal_emit (widget, widget_signals[SCREEN_CHANGED], 0, old_screen);
7930     }
7931 }
7932
7933 static void
7934 gtk_widget_propagate_hierarchy_changed_recurse (GtkWidget *widget,
7935                                                 gpointer   client_data)
7936 {
7937   GtkWidgetPrivate *priv = widget->priv;
7938   HierarchyChangedInfo *info = client_data;
7939   gboolean new_anchored = gtk_widget_is_toplevel (widget) ||
7940                  (priv->parent && priv->parent->priv->anchored);
7941
7942   if (priv->anchored != new_anchored)
7943     {
7944       g_object_ref (widget);
7945
7946       priv->anchored = new_anchored;
7947
7948       g_signal_emit (widget, widget_signals[HIERARCHY_CHANGED], 0, info->previous_toplevel);
7949       do_screen_change (widget, info->previous_screen, info->new_screen);
7950
7951       if (GTK_IS_CONTAINER (widget))
7952         gtk_container_forall (GTK_CONTAINER (widget),
7953                               gtk_widget_propagate_hierarchy_changed_recurse,
7954                               client_data);
7955
7956       g_object_unref (widget);
7957     }
7958 }
7959
7960 /**
7961  * _gtk_widget_propagate_hierarchy_changed:
7962  * @widget: a #GtkWidget
7963  * @previous_toplevel: Previous toplevel
7964  *
7965  * Propagates changes in the anchored state to a widget and all
7966  * children, unsetting or setting the %ANCHORED flag, and
7967  * emitting #GtkWidget::hierarchy-changed.
7968  **/
7969 void
7970 _gtk_widget_propagate_hierarchy_changed (GtkWidget *widget,
7971                                          GtkWidget *previous_toplevel)
7972 {
7973   GtkWidgetPrivate *priv = widget->priv;
7974   HierarchyChangedInfo info;
7975
7976   info.previous_toplevel = previous_toplevel;
7977   info.previous_screen = previous_toplevel ? gtk_widget_get_screen (previous_toplevel) : NULL;
7978
7979   if (gtk_widget_is_toplevel (widget) ||
7980       (priv->parent && priv->parent->priv->anchored))
7981     info.new_screen = gtk_widget_get_screen (widget);
7982   else
7983     info.new_screen = NULL;
7984
7985   if (info.previous_screen)
7986     g_object_ref (info.previous_screen);
7987   if (previous_toplevel)
7988     g_object_ref (previous_toplevel);
7989
7990   gtk_widget_propagate_hierarchy_changed_recurse (widget, &info);
7991
7992   if (previous_toplevel)
7993     g_object_unref (previous_toplevel);
7994   if (info.previous_screen)
7995     g_object_unref (info.previous_screen);
7996 }
7997
7998 static void
7999 gtk_widget_propagate_screen_changed_recurse (GtkWidget *widget,
8000                                              gpointer   client_data)
8001 {
8002   HierarchyChangedInfo *info = client_data;
8003
8004   g_object_ref (widget);
8005
8006   do_screen_change (widget, info->previous_screen, info->new_screen);
8007
8008   if (GTK_IS_CONTAINER (widget))
8009     gtk_container_forall (GTK_CONTAINER (widget),
8010                           gtk_widget_propagate_screen_changed_recurse,
8011                           client_data);
8012
8013   g_object_unref (widget);
8014 }
8015
8016 /**
8017  * gtk_widget_is_composited:
8018  * @widget: a #GtkWidget
8019  *
8020  * Whether @widget can rely on having its alpha channel
8021  * drawn correctly. On X11 this function returns whether a
8022  * compositing manager is running for @widget's screen.
8023  *
8024  * Please note that the semantics of this call will change
8025  * in the future if used on a widget that has a composited
8026  * window in its hierarchy (as set by gdk_window_set_composited()).
8027  *
8028  * Return value: %TRUE if the widget can rely on its alpha
8029  * channel being drawn correctly.
8030  *
8031  * Since: 2.10
8032  */
8033 gboolean
8034 gtk_widget_is_composited (GtkWidget *widget)
8035 {
8036   GdkScreen *screen;
8037
8038   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
8039
8040   screen = gtk_widget_get_screen (widget);
8041
8042   return gdk_screen_is_composited (screen);
8043 }
8044
8045 static void
8046 propagate_composited_changed (GtkWidget *widget,
8047                               gpointer dummy)
8048 {
8049   if (GTK_IS_CONTAINER (widget))
8050     {
8051       gtk_container_forall (GTK_CONTAINER (widget),
8052                             propagate_composited_changed,
8053                             NULL);
8054     }
8055
8056   g_signal_emit (widget, widget_signals[COMPOSITED_CHANGED], 0);
8057 }
8058
8059 void
8060 _gtk_widget_propagate_composited_changed (GtkWidget *widget)
8061 {
8062   propagate_composited_changed (widget, NULL);
8063 }
8064
8065 /**
8066  * _gtk_widget_propagate_screen_changed:
8067  * @widget: a #GtkWidget
8068  * @previous_screen: Previous screen
8069  *
8070  * Propagates changes in the screen for a widget to all
8071  * children, emitting #GtkWidget::screen-changed.
8072  **/
8073 void
8074 _gtk_widget_propagate_screen_changed (GtkWidget    *widget,
8075                                       GdkScreen    *previous_screen)
8076 {
8077   HierarchyChangedInfo info;
8078
8079   info.previous_screen = previous_screen;
8080   info.new_screen = gtk_widget_get_screen (widget);
8081
8082   if (previous_screen)
8083     g_object_ref (previous_screen);
8084
8085   gtk_widget_propagate_screen_changed_recurse (widget, &info);
8086
8087   if (previous_screen)
8088     g_object_unref (previous_screen);
8089 }
8090
8091 static void
8092 reset_rc_styles_recurse (GtkWidget *widget, gpointer data)
8093 {
8094   if (widget->priv->rc_style)
8095     gtk_widget_reset_rc_style (widget);
8096
8097   if (GTK_IS_CONTAINER (widget))
8098     gtk_container_forall (GTK_CONTAINER (widget),
8099                           reset_rc_styles_recurse,
8100                           NULL);
8101 }
8102
8103
8104 /**
8105  * gtk_widget_reset_rc_styles:
8106  * @widget: a #GtkWidget.
8107  *
8108  * Reset the styles of @widget and all descendents, so when
8109  * they are looked up again, they get the correct values
8110  * for the currently loaded RC file settings.
8111  *
8112  * This function is not useful for applications.
8113  */
8114 void
8115 gtk_widget_reset_rc_styles (GtkWidget *widget)
8116 {
8117   g_return_if_fail (GTK_IS_WIDGET (widget));
8118
8119   reset_rc_styles_recurse (widget, NULL);
8120 }
8121
8122 /**
8123  * gtk_widget_get_default_style:
8124  *
8125  * Returns the default style used by all widgets initially.
8126  *
8127  * Returns: (transfer none): the default style. This #GtkStyle object is owned
8128  *          by GTK+ and should not be modified or freed.
8129  */
8130 GtkStyle*
8131 gtk_widget_get_default_style (void)
8132 {
8133   if (!gtk_default_style)
8134     {
8135       gtk_default_style = gtk_style_new ();
8136       g_object_ref (gtk_default_style);
8137     }
8138
8139   return gtk_default_style;
8140 }
8141
8142 static PangoContext *
8143 gtk_widget_peek_pango_context (GtkWidget *widget)
8144 {
8145   return g_object_get_qdata (G_OBJECT (widget), quark_pango_context);
8146 }
8147
8148 /**
8149  * gtk_widget_get_pango_context:
8150  * @widget: a #GtkWidget
8151  *
8152  * Gets a #PangoContext with the appropriate font map, font description,
8153  * and base direction for this widget. Unlike the context returned
8154  * by gtk_widget_create_pango_context(), this context is owned by
8155  * the widget (it can be used until the screen for the widget changes
8156  * or the widget is removed from its toplevel), and will be updated to
8157  * match any changes to the widget's attributes.
8158  *
8159  * If you create and keep a #PangoLayout using this context, you must
8160  * deal with changes to the context by calling pango_layout_context_changed()
8161  * on the layout in response to the #GtkWidget::style-set and
8162  * #GtkWidget::direction-changed signals for the widget.
8163  *
8164  * Return value: (transfer none): the #PangoContext for the widget.
8165  **/
8166 PangoContext *
8167 gtk_widget_get_pango_context (GtkWidget *widget)
8168 {
8169   PangoContext *context;
8170
8171   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8172
8173   context = g_object_get_qdata (G_OBJECT (widget), quark_pango_context);
8174   if (!context)
8175     {
8176       context = gtk_widget_create_pango_context (GTK_WIDGET (widget));
8177       g_object_set_qdata_full (G_OBJECT (widget),
8178                                quark_pango_context,
8179                                context,
8180                                g_object_unref);
8181     }
8182
8183   return context;
8184 }
8185
8186 static void
8187 update_pango_context (GtkWidget    *widget,
8188                       PangoContext *context)
8189 {
8190   GtkWidgetPrivate *priv = widget->priv;
8191
8192   pango_context_set_font_description (context, priv->style->font_desc);
8193   pango_context_set_base_dir (context,
8194                               gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR ?
8195                               PANGO_DIRECTION_LTR : PANGO_DIRECTION_RTL);
8196 }
8197
8198 static void
8199 gtk_widget_update_pango_context (GtkWidget *widget)
8200 {
8201   PangoContext *context = gtk_widget_peek_pango_context (widget);
8202
8203   if (context)
8204     {
8205       GdkScreen *screen;
8206
8207       update_pango_context (widget, context);
8208
8209       screen = gtk_widget_get_screen_unchecked (widget);
8210       if (screen)
8211         {
8212           pango_cairo_context_set_resolution (context,
8213                                               gdk_screen_get_resolution (screen));
8214           pango_cairo_context_set_font_options (context,
8215                                                 gdk_screen_get_font_options (screen));
8216         }
8217     }
8218 }
8219
8220 /**
8221  * gtk_widget_create_pango_context:
8222  * @widget: a #GtkWidget
8223  *
8224  * Creates a new #PangoContext with the appropriate font map,
8225  * font description, and base direction for drawing text for
8226  * this widget. See also gtk_widget_get_pango_context().
8227  *
8228  * Return value: (transfer full): the new #PangoContext
8229  **/
8230 PangoContext *
8231 gtk_widget_create_pango_context (GtkWidget *widget)
8232 {
8233   GdkScreen *screen;
8234   PangoContext *context;
8235
8236   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8237
8238   screen = gtk_widget_get_screen_unchecked (widget);
8239   if (!screen)
8240     {
8241       GTK_NOTE (MULTIHEAD,
8242                 g_warning ("gtk_widget_create_pango_context ()) called without screen"));
8243
8244       screen = gdk_screen_get_default ();
8245     }
8246
8247   context = gdk_pango_context_get_for_screen (screen);
8248
8249   update_pango_context (widget, context);
8250   pango_context_set_language (context, gtk_get_default_language ());
8251
8252   return context;
8253 }
8254
8255 /**
8256  * gtk_widget_create_pango_layout:
8257  * @widget: a #GtkWidget
8258  * @text: text to set on the layout (can be %NULL)
8259  *
8260  * Creates a new #PangoLayout with the appropriate font map,
8261  * font description, and base direction for drawing text for
8262  * this widget.
8263  *
8264  * If you keep a #PangoLayout created in this way around, in order to
8265  * notify the layout of changes to the base direction or font of this
8266  * widget, you must call pango_layout_context_changed() in response to
8267  * the #GtkWidget::style-set and #GtkWidget::direction-changed signals
8268  * for the widget.
8269  *
8270  * Return value: (transfer full): the new #PangoLayout
8271  **/
8272 PangoLayout *
8273 gtk_widget_create_pango_layout (GtkWidget   *widget,
8274                                 const gchar *text)
8275 {
8276   PangoLayout *layout;
8277   PangoContext *context;
8278
8279   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8280
8281   context = gtk_widget_get_pango_context (widget);
8282   layout = pango_layout_new (context);
8283
8284   if (text)
8285     pango_layout_set_text (layout, text, -1);
8286
8287   return layout;
8288 }
8289
8290 /**
8291  * gtk_widget_render_icon:
8292  * @widget: a #GtkWidget
8293  * @stock_id: a stock ID
8294  * @size: (type int): a stock size. A size of (GtkIconSize)-1 means
8295  *     render at the size of the source and don't scale (if there are
8296  *     multiple source sizes, GTK+ picks one of the available sizes).
8297  * @detail: (allow-none): render detail to pass to theme engine
8298  *
8299  * A convenience function that uses the theme engine and RC file
8300  * settings for @widget to look up @stock_id and render it to
8301  * a pixbuf. @stock_id should be a stock icon ID such as
8302  * #GTK_STOCK_OPEN or #GTK_STOCK_OK. @size should be a size
8303  * such as #GTK_ICON_SIZE_MENU. @detail should be a string that
8304  * identifies the widget or code doing the rendering, so that
8305  * theme engines can special-case rendering for that widget or code.
8306  *
8307  * The pixels in the returned #GdkPixbuf are shared with the rest of
8308  * the application and should not be modified. The pixbuf should be freed
8309  * after use with g_object_unref().
8310  *
8311  * Return value: (transfer full): a new pixbuf, or %NULL if the
8312  *     stock ID wasn't known
8313  **/
8314 GdkPixbuf*
8315 gtk_widget_render_icon (GtkWidget      *widget,
8316                         const gchar    *stock_id,
8317                         GtkIconSize     size,
8318                         const gchar    *detail)
8319 {
8320   GtkWidgetPrivate *priv;
8321   GtkIconSet *icon_set;
8322   GdkPixbuf *retval;
8323
8324   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8325   g_return_val_if_fail (stock_id != NULL, NULL);
8326   g_return_val_if_fail (size > GTK_ICON_SIZE_INVALID || size == -1, NULL);
8327
8328   priv = widget->priv;
8329
8330   gtk_widget_ensure_style (widget);
8331
8332   icon_set = gtk_style_lookup_icon_set (priv->style, stock_id);
8333
8334   if (icon_set == NULL)
8335     return NULL;
8336
8337   retval = gtk_icon_set_render_icon (icon_set,
8338                                      priv->style,
8339                                      gtk_widget_get_direction (widget),
8340                                      gtk_widget_get_state (widget),
8341                                      size,
8342                                      widget,
8343                                      detail);
8344
8345   return retval;
8346 }
8347
8348 /**
8349  * gtk_widget_set_parent_window:
8350  * @widget: a #GtkWidget.
8351  * @parent_window: the new parent window.
8352  *
8353  * Sets a non default parent window for @widget.
8354  **/
8355 void
8356 gtk_widget_set_parent_window   (GtkWidget           *widget,
8357                                 GdkWindow           *parent_window)
8358 {
8359   GdkWindow *old_parent_window;
8360
8361   g_return_if_fail (GTK_IS_WIDGET (widget));
8362
8363   old_parent_window = g_object_get_qdata (G_OBJECT (widget),
8364                                           quark_parent_window);
8365
8366   if (parent_window != old_parent_window)
8367     {
8368       g_object_set_qdata (G_OBJECT (widget), quark_parent_window,
8369                           parent_window);
8370       if (old_parent_window)
8371         g_object_unref (old_parent_window);
8372       if (parent_window)
8373         g_object_ref (parent_window);
8374     }
8375 }
8376
8377 /**
8378  * gtk_widget_get_parent_window:
8379  * @widget: a #GtkWidget.
8380  *
8381  * Gets @widget's parent window.
8382  *
8383  * Returns: (transfer none): the parent window of @widget.
8384  **/
8385 GdkWindow *
8386 gtk_widget_get_parent_window (GtkWidget *widget)
8387 {
8388   GtkWidgetPrivate *priv;
8389   GdkWindow *parent_window;
8390
8391   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8392
8393   priv = widget->priv;
8394
8395   parent_window = g_object_get_qdata (G_OBJECT (widget), quark_parent_window);
8396
8397   return (parent_window != NULL) ? parent_window :
8398          (priv->parent != NULL) ? priv->parent->priv->window : NULL;
8399 }
8400
8401
8402 /**
8403  * gtk_widget_set_child_visible:
8404  * @widget: a #GtkWidget
8405  * @is_visible: if %TRUE, @widget should be mapped along with its parent.
8406  *
8407  * Sets whether @widget should be mapped along with its when its parent
8408  * is mapped and @widget has been shown with gtk_widget_show().
8409  *
8410  * The child visibility can be set for widget before it is added to
8411  * a container with gtk_widget_set_parent(), to avoid mapping
8412  * children unnecessary before immediately unmapping them. However
8413  * it will be reset to its default state of %TRUE when the widget
8414  * is removed from a container.
8415  *
8416  * Note that changing the child visibility of a widget does not
8417  * queue a resize on the widget. Most of the time, the size of
8418  * a widget is computed from all visible children, whether or
8419  * not they are mapped. If this is not the case, the container
8420  * can queue a resize itself.
8421  *
8422  * This function is only useful for container implementations and
8423  * never should be called by an application.
8424  **/
8425 void
8426 gtk_widget_set_child_visible (GtkWidget *widget,
8427                               gboolean   is_visible)
8428 {
8429   GtkWidgetPrivate *priv;
8430
8431   g_return_if_fail (GTK_IS_WIDGET (widget));
8432   g_return_if_fail (!gtk_widget_is_toplevel (widget));
8433
8434   priv = widget->priv;
8435
8436   g_object_ref (widget);
8437
8438   if (is_visible)
8439     priv->child_visible = TRUE;
8440   else
8441     {
8442       GtkWidget *toplevel;
8443
8444       priv->child_visible = FALSE;
8445
8446       toplevel = gtk_widget_get_toplevel (widget);
8447       if (toplevel != widget && gtk_widget_is_toplevel (toplevel))
8448         _gtk_window_unset_focus_and_default (GTK_WINDOW (toplevel), widget);
8449     }
8450
8451   if (priv->parent && gtk_widget_get_realized (priv->parent))
8452     {
8453       if (gtk_widget_get_mapped (priv->parent) &&
8454           priv->child_visible &&
8455           gtk_widget_get_visible (widget))
8456         gtk_widget_map (widget);
8457       else
8458         gtk_widget_unmap (widget);
8459     }
8460
8461   g_object_unref (widget);
8462 }
8463
8464 /**
8465  * gtk_widget_get_child_visible:
8466  * @widget: a #GtkWidget
8467  *
8468  * Gets the value set with gtk_widget_set_child_visible().
8469  * If you feel a need to use this function, your code probably
8470  * needs reorganization.
8471  *
8472  * This function is only useful for container implementations and
8473  * never should be called by an application.
8474  *
8475  * Return value: %TRUE if the widget is mapped with the parent.
8476  **/
8477 gboolean
8478 gtk_widget_get_child_visible (GtkWidget *widget)
8479 {
8480   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
8481
8482   return widget->priv->child_visible;
8483 }
8484
8485 static GdkScreen *
8486 gtk_widget_get_screen_unchecked (GtkWidget *widget)
8487 {
8488   GtkWidget *toplevel;
8489
8490   toplevel = gtk_widget_get_toplevel (widget);
8491
8492   if (gtk_widget_is_toplevel (toplevel))
8493     {
8494       if (GTK_IS_WINDOW (toplevel))
8495         return gtk_window_get_screen (GTK_WINDOW (toplevel));
8496       else if (GTK_IS_INVISIBLE (toplevel))
8497         return gtk_invisible_get_screen (GTK_INVISIBLE (widget));
8498     }
8499
8500   return NULL;
8501 }
8502
8503 /**
8504  * gtk_widget_get_screen:
8505  * @widget: a #GtkWidget
8506  *
8507  * Get the #GdkScreen from the toplevel window associated with
8508  * this widget. This function can only be called after the widget
8509  * has been added to a widget hierarchy with a #GtkWindow
8510  * at the top.
8511  *
8512  * In general, you should only create screen specific
8513  * resources when a widget has been realized, and you should
8514  * free those resources when the widget is unrealized.
8515  *
8516  * Return value: (transfer none): the #GdkScreen for the toplevel for this widget.
8517  *
8518  * Since: 2.2
8519  **/
8520 GdkScreen*
8521 gtk_widget_get_screen (GtkWidget *widget)
8522 {
8523   GdkScreen *screen;
8524
8525   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8526
8527   screen = gtk_widget_get_screen_unchecked (widget);
8528
8529   if (screen)
8530     return screen;
8531   else
8532     {
8533 #if 0
8534       g_warning (G_STRLOC ": Can't get associated screen"
8535                  " for a widget unless it is inside a toplevel GtkWindow\n"
8536                  " widget type is %s associated top level type is %s",
8537                  g_type_name (G_OBJECT_TYPE(G_OBJECT (widget))),
8538                  g_type_name (G_OBJECT_TYPE(G_OBJECT (toplevel))));
8539 #endif
8540       return gdk_screen_get_default ();
8541     }
8542 }
8543
8544 /**
8545  * gtk_widget_has_screen:
8546  * @widget: a #GtkWidget
8547  *
8548  * Checks whether there is a #GdkScreen is associated with
8549  * this widget. All toplevel widgets have an associated
8550  * screen, and all widgets added into a hierarchy with a toplevel
8551  * window at the top.
8552  *
8553  * Return value: %TRUE if there is a #GdkScreen associcated
8554  *   with the widget.
8555  *
8556  * Since: 2.2
8557  **/
8558 gboolean
8559 gtk_widget_has_screen (GtkWidget *widget)
8560 {
8561   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
8562
8563   return (gtk_widget_get_screen_unchecked (widget) != NULL);
8564 }
8565
8566 /**
8567  * gtk_widget_get_display:
8568  * @widget: a #GtkWidget
8569  *
8570  * Get the #GdkDisplay for the toplevel window associated with
8571  * this widget. This function can only be called after the widget
8572  * has been added to a widget hierarchy with a #GtkWindow at the top.
8573  *
8574  * In general, you should only create display specific
8575  * resources when a widget has been realized, and you should
8576  * free those resources when the widget is unrealized.
8577  *
8578  * Return value: (transfer none): the #GdkDisplay for the toplevel for this widget.
8579  *
8580  * Since: 2.2
8581  **/
8582 GdkDisplay*
8583 gtk_widget_get_display (GtkWidget *widget)
8584 {
8585   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8586
8587   return gdk_screen_get_display (gtk_widget_get_screen (widget));
8588 }
8589
8590 /**
8591  * gtk_widget_get_root_window:
8592  * @widget: a #GtkWidget
8593  *
8594  * Get the root window where this widget is located. This function can
8595  * only be called after the widget has been added to a widget
8596  * hierarchy with #GtkWindow at the top.
8597  *
8598  * The root window is useful for such purposes as creating a popup
8599  * #GdkWindow associated with the window. In general, you should only
8600  * create display specific resources when a widget has been realized,
8601  * and you should free those resources when the widget is unrealized.
8602  *
8603  * Return value: (transfer none): the #GdkWindow root window for the toplevel for this widget.
8604  *
8605  * Since: 2.2
8606  **/
8607 GdkWindow*
8608 gtk_widget_get_root_window (GtkWidget *widget)
8609 {
8610   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
8611
8612   return gdk_screen_get_root_window (gtk_widget_get_screen (widget));
8613 }
8614
8615 /**
8616  * gtk_widget_child_focus:
8617  * @widget: a #GtkWidget
8618  * @direction: direction of focus movement
8619  *
8620  * This function is used by custom widget implementations; if you're
8621  * writing an app, you'd use gtk_widget_grab_focus() to move the focus
8622  * to a particular widget, and gtk_container_set_focus_chain() to
8623  * change the focus tab order. So you may want to investigate those
8624  * functions instead.
8625  *
8626  * gtk_widget_child_focus() is called by containers as the user moves
8627  * around the window using keyboard shortcuts. @direction indicates
8628  * what kind of motion is taking place (up, down, left, right, tab
8629  * forward, tab backward). gtk_widget_child_focus() emits the
8630  * #GtkWidget::focus signal; widgets override the default handler
8631  * for this signal in order to implement appropriate focus behavior.
8632  *
8633  * The default ::focus handler for a widget should return %TRUE if
8634  * moving in @direction left the focus on a focusable location inside
8635  * that widget, and %FALSE if moving in @direction moved the focus
8636  * outside the widget. If returning %TRUE, widgets normally
8637  * call gtk_widget_grab_focus() to place the focus accordingly;
8638  * if returning %FALSE, they don't modify the current focus location.
8639  *
8640  * Return value: %TRUE if focus ended up inside @widget
8641  **/
8642 gboolean
8643 gtk_widget_child_focus (GtkWidget       *widget,
8644                         GtkDirectionType direction)
8645 {
8646   gboolean return_val;
8647
8648   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
8649
8650   if (!gtk_widget_get_visible (widget) ||
8651       !gtk_widget_is_sensitive (widget))
8652     return FALSE;
8653
8654   /* child widgets must set CAN_FOCUS, containers
8655    * don't have to though.
8656    */
8657   if (!GTK_IS_CONTAINER (widget) &&
8658       !gtk_widget_get_can_focus (widget))
8659     return FALSE;
8660
8661   g_signal_emit (widget,
8662                  widget_signals[FOCUS],
8663                  0,
8664                  direction, &return_val);
8665
8666   return return_val;
8667 }
8668
8669 /**
8670  * gtk_widget_keynav_failed:
8671  * @widget: a #GtkWidget
8672  * @direction: direction of focus movement
8673  *
8674  * This function should be called whenever keyboard navigation within
8675  * a single widget hits a boundary. The function emits the
8676  * #GtkWidget::keynav-failed signal on the widget and its return
8677  * value should be interpreted in a way similar to the return value of
8678  * gtk_widget_child_focus():
8679  *
8680  * When %TRUE is returned, stay in the widget, the failed keyboard
8681  * navigation is Ok and/or there is nowhere we can/should move the
8682  * focus to.
8683  *
8684  * When %FALSE is returned, the caller should continue with keyboard
8685  * navigation outside the widget, e.g. by calling
8686  * gtk_widget_child_focus() on the widget's toplevel.
8687  *
8688  * The default ::keynav-failed handler returns %TRUE for
8689  * %GTK_DIR_TAB_FORWARD and %GTK_DIR_TAB_BACKWARD. For the other
8690  * values of #GtkDirectionType, it looks at the
8691  * #GtkSettings:gtk-keynav-cursor-only setting and returns %FALSE
8692  * if the setting is %TRUE. This way the entire user interface
8693  * becomes cursor-navigatable on input devices such as mobile phones
8694  * which only have cursor keys but no tab key.
8695  *
8696  * Whenever the default handler returns %TRUE, it also calls
8697  * gtk_widget_error_bell() to notify the user of the failed keyboard
8698  * navigation.
8699  *
8700  * A use case for providing an own implementation of ::keynav-failed
8701  * (either by connecting to it or by overriding it) would be a row of
8702  * #GtkEntry widgets where the user should be able to navigate the
8703  * entire row with the cursor keys, as e.g. known from user interfaces
8704  * that require entering license keys.
8705  *
8706  * Return value: %TRUE if stopping keyboard navigation is fine, %FALSE
8707  *               if the emitting widget should try to handle the keyboard
8708  *               navigation attempt in its parent container(s).
8709  *
8710  * Since: 2.12
8711  **/
8712 gboolean
8713 gtk_widget_keynav_failed (GtkWidget        *widget,
8714                           GtkDirectionType  direction)
8715 {
8716   gboolean return_val;
8717
8718   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
8719
8720   g_signal_emit (widget, widget_signals[KEYNAV_FAILED], 0,
8721                  direction, &return_val);
8722
8723   return return_val;
8724 }
8725
8726 /**
8727  * gtk_widget_error_bell:
8728  * @widget: a #GtkWidget
8729  *
8730  * Notifies the user about an input-related error on this widget.
8731  * If the #GtkSettings:gtk-error-bell setting is %TRUE, it calls
8732  * gdk_window_beep(), otherwise it does nothing.
8733  *
8734  * Note that the effect of gdk_window_beep() can be configured in many
8735  * ways, depending on the windowing backend and the desktop environment
8736  * or window manager that is used.
8737  *
8738  * Since: 2.12
8739  **/
8740 void
8741 gtk_widget_error_bell (GtkWidget *widget)
8742 {
8743   GtkWidgetPrivate *priv;
8744   GtkSettings* settings;
8745   gboolean beep;
8746
8747   g_return_if_fail (GTK_IS_WIDGET (widget));
8748
8749   priv = widget->priv;
8750
8751   settings = gtk_widget_get_settings (widget);
8752   if (!settings)
8753     return;
8754
8755   g_object_get (settings,
8756                 "gtk-error-bell", &beep,
8757                 NULL);
8758
8759   if (beep && priv->window)
8760     gdk_window_beep (priv->window);
8761 }
8762
8763 static void
8764 gtk_widget_set_usize_internal (GtkWidget          *widget,
8765                                gint                width,
8766                                gint                height,
8767                                GtkQueueResizeFlags flags)
8768 {
8769   GtkWidgetAuxInfo *aux_info;
8770   gboolean changed = FALSE;
8771
8772   g_object_freeze_notify (G_OBJECT (widget));
8773
8774   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
8775
8776   if (width > -2 && aux_info->width != width)
8777     {
8778       if ((flags & GTK_QUEUE_RESIZE_INVALIDATE_ONLY) == 0)
8779         g_object_notify (G_OBJECT (widget), "width-request");
8780       aux_info->width = width;
8781       changed = TRUE;
8782     }
8783   if (height > -2 && aux_info->height != height)
8784     {
8785       if ((flags & GTK_QUEUE_RESIZE_INVALIDATE_ONLY) == 0)
8786         g_object_notify (G_OBJECT (widget), "height-request");
8787       aux_info->height = height;
8788       changed = TRUE;
8789     }
8790
8791   if (gtk_widget_get_visible (widget) && changed)
8792     {
8793       if ((flags & GTK_QUEUE_RESIZE_INVALIDATE_ONLY) == 0)
8794         gtk_widget_queue_resize (widget);
8795       else
8796         _gtk_size_group_queue_resize (widget, GTK_QUEUE_RESIZE_INVALIDATE_ONLY);
8797     }
8798
8799   g_object_thaw_notify (G_OBJECT (widget));
8800 }
8801
8802 /**
8803  * gtk_widget_set_size_request:
8804  * @widget: a #GtkWidget
8805  * @width: width @widget should request, or -1 to unset
8806  * @height: height @widget should request, or -1 to unset
8807  *
8808  * Sets the minimum size of a widget; that is, the widget's size
8809  * request will be @width by @height. You can use this function to
8810  * force a widget to be either larger or smaller than it normally
8811  * would be.
8812  *
8813  * In most cases, gtk_window_set_default_size() is a better choice for
8814  * toplevel windows than this function; setting the default size will
8815  * still allow users to shrink the window. Setting the size request
8816  * will force them to leave the window at least as large as the size
8817  * request. When dealing with window sizes,
8818  * gtk_window_set_geometry_hints() can be a useful function as well.
8819  *
8820  * Note the inherent danger of setting any fixed size - themes,
8821  * translations into other languages, different fonts, and user action
8822  * can all change the appropriate size for a given widget. So, it's
8823  * basically impossible to hardcode a size that will always be
8824  * correct.
8825  *
8826  * The size request of a widget is the smallest size a widget can
8827  * accept while still functioning well and drawing itself correctly.
8828  * However in some strange cases a widget may be allocated less than
8829  * its requested size, and in many cases a widget may be allocated more
8830  * space than it requested.
8831  *
8832  * If the size request in a given direction is -1 (unset), then
8833  * the "natural" size request of the widget will be used instead.
8834  *
8835  * Widgets can't actually be allocated a size less than 1 by 1, but
8836  * you can pass 0,0 to this function to mean "as small as possible."
8837  *
8838  * The size request set here does not include any margin from the
8839  * #GtkWidget properties margin-left, margin-right, margin-top, and
8840  * margin-bottom, but it does include pretty much all other padding
8841  * or border properties set by any subclass of #GtkWidget.
8842  **/
8843 void
8844 gtk_widget_set_size_request (GtkWidget *widget,
8845                              gint       width,
8846                              gint       height)
8847 {
8848   g_return_if_fail (GTK_IS_WIDGET (widget));
8849   g_return_if_fail (width >= -1);
8850   g_return_if_fail (height >= -1);
8851
8852   if (width == 0)
8853     width = 1;
8854   if (height == 0)
8855     height = 1;
8856
8857   gtk_widget_set_usize_internal (widget, width, height, 0);
8858 }
8859
8860
8861 /**
8862  * gtk_widget_get_size_request:
8863  * @widget: a #GtkWidget
8864  * @width: (out) (allow-none): return location for width, or %NULL
8865  * @height: (out) (allow-none): return location for height, or %NULL
8866  *
8867  * Gets the size request that was explicitly set for the widget using
8868  * gtk_widget_set_size_request(). A value of -1 stored in @width or
8869  * @height indicates that that dimension has not been set explicitly
8870  * and the natural requisition of the widget will be used intead. See
8871  * gtk_widget_set_size_request(). To get the size a widget will
8872  * actually request, call gtk_widget_get_preferred_size() instead of
8873  * this function.
8874  **/
8875 void
8876 gtk_widget_get_size_request (GtkWidget *widget,
8877                              gint      *width,
8878                              gint      *height)
8879 {
8880   const GtkWidgetAuxInfo *aux_info;
8881
8882   g_return_if_fail (GTK_IS_WIDGET (widget));
8883
8884   aux_info = _gtk_widget_get_aux_info_or_defaults (widget);
8885
8886   if (width)
8887     *width = aux_info->width;
8888
8889   if (height)
8890     *height = aux_info->height;
8891 }
8892
8893 /**
8894  * _gtk_widget_override_size_request:
8895  * @widget: a #GtkWidget
8896  * @width: new forced minimum width
8897  * @height: new forced minimum height
8898  * @old_width: location to store previous forced minimum width
8899  * @old_width: location to store previous forced minumum height
8900  *
8901  * Temporarily establishes a forced minimum size for a widget; this
8902  * is used by GtkWindow when calculating the size to add to the
8903  * window's geometry widget. Cached sizes for the widget and its
8904  * parents are invalidated, so that subsequent calls to the size
8905  * negotiation machinery produce the overriden result, but the
8906  * widget is not queued for relayout or redraw. The old size must
8907  * be restored with _gtk_widget_restore_size_request() or things
8908  * will go screwy.
8909  */
8910 void
8911 _gtk_widget_override_size_request (GtkWidget *widget,
8912                                    int        width,
8913                                    int        height,
8914                                    int       *old_width,
8915                                    int       *old_height)
8916 {
8917   gtk_widget_get_size_request (widget, old_width, old_height);
8918   gtk_widget_set_usize_internal (widget, width, height,
8919                                  GTK_QUEUE_RESIZE_INVALIDATE_ONLY);
8920 }
8921
8922 /**
8923  * _gtk_widget_restore_size_request:
8924  * @widget: a #GtkWidget
8925  * @old_width: saved forced minimum size
8926  * @old_height: saved forced minimum size
8927  *
8928  * Undoes the operation of_gtk_widget_override_size_request().
8929  */
8930 void
8931 _gtk_widget_restore_size_request (GtkWidget *widget,
8932                                   int        old_width,
8933                                   int        old_height)
8934 {
8935   gtk_widget_set_usize_internal (widget, old_width, old_height,
8936                                  GTK_QUEUE_RESIZE_INVALIDATE_ONLY);
8937 }
8938
8939 /**
8940  * gtk_widget_set_events:
8941  * @widget: a #GtkWidget
8942  * @events: event mask
8943  *
8944  * Sets the event mask (see #GdkEventMask) for a widget. The event
8945  * mask determines which events a widget will receive. Keep in mind
8946  * that different widgets have different default event masks, and by
8947  * changing the event mask you may disrupt a widget's functionality,
8948  * so be careful. This function must be called while a widget is
8949  * unrealized. Consider gtk_widget_add_events() for widgets that are
8950  * already realized, or if you want to preserve the existing event
8951  * mask. This function can't be used with #GTK_NO_WINDOW widgets;
8952  * to get events on those widgets, place them inside a #GtkEventBox
8953  * and receive events on the event box.
8954  **/
8955 void
8956 gtk_widget_set_events (GtkWidget *widget,
8957                        gint       events)
8958 {
8959   g_return_if_fail (GTK_IS_WIDGET (widget));
8960   g_return_if_fail (!gtk_widget_get_realized (widget));
8961
8962   g_object_set_qdata (G_OBJECT (widget), quark_event_mask,
8963                       GINT_TO_POINTER (events));
8964   g_object_notify (G_OBJECT (widget), "events");
8965 }
8966
8967 /**
8968  * gtk_widget_set_device_events:
8969  * @widget: a #GtkWidget
8970  * @device: a #GdkDevice
8971  * @events: event mask
8972  *
8973  * Sets the device event mask (see #GdkEventMask) for a widget. The event
8974  * mask determines which events a widget will receive from @device. Keep
8975  * in mind that different widgets have different default event masks, and by
8976  * changing the event mask you may disrupt a widget's functionality,
8977  * so be careful. This function must be called while a widget is
8978  * unrealized. Consider gtk_widget_add_device_events() for widgets that are
8979  * already realized, or if you want to preserve the existing event
8980  * mask. This function can't be used with #GTK_NO_WINDOW widgets;
8981  * to get events on those widgets, place them inside a #GtkEventBox
8982  * and receive events on the event box.
8983  *
8984  * Since: 3.0
8985  **/
8986 void
8987 gtk_widget_set_device_events (GtkWidget    *widget,
8988                               GdkDevice    *device,
8989                               GdkEventMask  events)
8990 {
8991   GHashTable *device_events;
8992
8993   g_return_if_fail (GTK_IS_WIDGET (widget));
8994   g_return_if_fail (GDK_IS_DEVICE (device));
8995   g_return_if_fail (!gtk_widget_get_realized (widget));
8996
8997   device_events = g_object_get_qdata (G_OBJECT (widget), quark_device_event_mask);
8998
8999   if (G_UNLIKELY (!device_events))
9000     {
9001       device_events = g_hash_table_new (NULL, NULL);
9002       g_object_set_qdata_full (G_OBJECT (widget), quark_device_event_mask, device_events,
9003                                (GDestroyNotify) g_hash_table_unref);
9004     }
9005
9006   g_hash_table_insert (device_events, device, GUINT_TO_POINTER (events));
9007 }
9008
9009 static void
9010 gtk_widget_add_events_internal_list (GtkWidget *widget,
9011                                      GdkDevice *device,
9012                                      gint       events,
9013                                      GList     *window_list)
9014 {
9015   GList *l;
9016
9017   for (l = window_list; l != NULL; l = l->next)
9018     {
9019       GdkWindow *window = l->data;
9020       gpointer user_data;
9021
9022       gdk_window_get_user_data (window, &user_data);
9023       if (user_data == widget)
9024         {
9025           GList *children;
9026
9027           if (device)
9028             gdk_window_set_device_events (window, device, gdk_window_get_events (window) | events);
9029           else
9030             gdk_window_set_events (window, gdk_window_get_events (window) | events);
9031
9032           children = gdk_window_get_children (window);
9033           gtk_widget_add_events_internal_list (widget, device, events, children);
9034           g_list_free (children);
9035         }
9036     }
9037 }
9038
9039 static void
9040 gtk_widget_add_events_internal (GtkWidget *widget,
9041                                 GdkDevice *device,
9042                                 gint       events)
9043 {
9044   GtkWidgetPrivate *priv = widget->priv;
9045   GList *window_list;
9046
9047   if (!gtk_widget_get_has_window (widget))
9048     window_list = gdk_window_get_children (priv->window);
9049   else
9050     window_list = g_list_prepend (NULL, priv->window);
9051
9052   gtk_widget_add_events_internal_list (widget, device, events, window_list);
9053
9054   g_list_free (window_list);
9055 }
9056
9057 /**
9058  * gtk_widget_add_events:
9059  * @widget: a #GtkWidget
9060  * @events: an event mask, see #GdkEventMask
9061  *
9062  * Adds the events in the bitfield @events to the event mask for
9063  * @widget. See gtk_widget_set_events() for details.
9064  **/
9065 void
9066 gtk_widget_add_events (GtkWidget *widget,
9067                        gint       events)
9068 {
9069   gint old_events;
9070
9071   g_return_if_fail (GTK_IS_WIDGET (widget));
9072
9073   old_events = GPOINTER_TO_INT (g_object_get_qdata (G_OBJECT (widget), quark_event_mask));
9074   g_object_set_qdata (G_OBJECT (widget), quark_event_mask,
9075                       GINT_TO_POINTER (old_events | events));
9076
9077   if (gtk_widget_get_realized (widget))
9078     gtk_widget_add_events_internal (widget, NULL, events);
9079
9080   g_object_notify (G_OBJECT (widget), "events");
9081 }
9082
9083 /**
9084  * gtk_widget_add_device_events:
9085  * @widget: a #GtkWidget
9086  * @device: a #GdkDevice
9087  * @events: an event mask, see #GdkEventMask
9088  *
9089  * Adds the device events in the bitfield @events to the event mask for
9090  * @widget. See gtk_widget_set_device_events() for details.
9091  *
9092  * Since: 3.0
9093  **/
9094 void
9095 gtk_widget_add_device_events (GtkWidget    *widget,
9096                               GdkDevice    *device,
9097                               GdkEventMask  events)
9098 {
9099   GdkEventMask old_events;
9100   GHashTable *device_events;
9101
9102   g_return_if_fail (GTK_IS_WIDGET (widget));
9103   g_return_if_fail (GDK_IS_DEVICE (device));
9104
9105   old_events = gtk_widget_get_device_events (widget, device);
9106
9107   device_events = g_object_get_qdata (G_OBJECT (widget), quark_device_event_mask);
9108
9109   if (G_UNLIKELY (!device_events))
9110     {
9111       device_events = g_hash_table_new (NULL, NULL);
9112       g_object_set_qdata_full (G_OBJECT (widget), quark_device_event_mask, device_events,
9113                                (GDestroyNotify) g_hash_table_unref);
9114     }
9115
9116   g_hash_table_insert (device_events, device,
9117                        GUINT_TO_POINTER (old_events | events));
9118
9119   if (gtk_widget_get_realized (widget))
9120     gtk_widget_add_events_internal (widget, device, events);
9121
9122   g_object_notify (G_OBJECT (widget), "events");
9123 }
9124
9125 /**
9126  * gtk_widget_set_extension_events:
9127  * @widget: a #GtkWidget
9128  * @mode: bitfield of extension events to receive
9129  *
9130  * Sets the extension events mask to @mode. See #GdkExtensionMode
9131  * and gdk_input_set_extension_events().
9132  **/
9133 void
9134 gtk_widget_set_extension_events (GtkWidget *widget,
9135                                  GdkExtensionMode mode)
9136 {
9137   g_return_if_fail (GTK_IS_WIDGET (widget));
9138
9139   if (gtk_widget_get_realized (widget))
9140     gtk_widget_set_extension_events_internal (widget, mode, NULL);
9141
9142   g_object_set_qdata (G_OBJECT (widget), quark_extension_event_mode,
9143                       GINT_TO_POINTER (mode));
9144   g_object_notify (G_OBJECT (widget), "extension-events");
9145 }
9146
9147 /**
9148  * gtk_widget_get_toplevel:
9149  * @widget: a #GtkWidget
9150  *
9151  * This function returns the topmost widget in the container hierarchy
9152  * @widget is a part of. If @widget has no parent widgets, it will be
9153  * returned as the topmost widget. No reference will be added to the
9154  * returned widget; it should not be unreferenced.
9155  *
9156  * Note the difference in behavior vs. gtk_widget_get_ancestor();
9157  * <literal>gtk_widget_get_ancestor (widget, GTK_TYPE_WINDOW)</literal>
9158  * would return
9159  * %NULL if @widget wasn't inside a toplevel window, and if the
9160  * window was inside a #GtkWindow-derived widget which was in turn
9161  * inside the toplevel #GtkWindow. While the second case may
9162  * seem unlikely, it actually happens when a #GtkPlug is embedded
9163  * inside a #GtkSocket within the same application.
9164  *
9165  * To reliably find the toplevel #GtkWindow, use
9166  * gtk_widget_get_toplevel() and check if the %TOPLEVEL flags
9167  * is set on the result.
9168  * |[
9169  *  GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
9170  *  if (gtk_widget_is_toplevel (toplevel))
9171  *    {
9172  *      /&ast; Perform action on toplevel. &ast;/
9173  *    }
9174  * ]|
9175  *
9176  * Return value: (transfer none): the topmost ancestor of @widget, or @widget itself
9177  *    if there's no ancestor.
9178  **/
9179 GtkWidget*
9180 gtk_widget_get_toplevel (GtkWidget *widget)
9181 {
9182   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
9183
9184   while (widget->priv->parent)
9185     widget = widget->priv->parent;
9186
9187   return widget;
9188 }
9189
9190 /**
9191  * gtk_widget_get_ancestor:
9192  * @widget: a #GtkWidget
9193  * @widget_type: ancestor type
9194  *
9195  * Gets the first ancestor of @widget with type @widget_type. For example,
9196  * <literal>gtk_widget_get_ancestor (widget, GTK_TYPE_BOX)</literal> gets
9197  * the first #GtkBox that's an ancestor of @widget. No reference will be
9198  * added to the returned widget; it should not be unreferenced. See note
9199  * about checking for a toplevel #GtkWindow in the docs for
9200  * gtk_widget_get_toplevel().
9201  *
9202  * Note that unlike gtk_widget_is_ancestor(), gtk_widget_get_ancestor()
9203  * considers @widget to be an ancestor of itself.
9204  *
9205  * Return value: (transfer none): the ancestor widget, or %NULL if not found
9206  **/
9207 GtkWidget*
9208 gtk_widget_get_ancestor (GtkWidget *widget,
9209                          GType      widget_type)
9210 {
9211   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
9212
9213   while (widget && !g_type_is_a (G_OBJECT_TYPE (widget), widget_type))
9214     widget = widget->priv->parent;
9215
9216   if (!(widget && g_type_is_a (G_OBJECT_TYPE (widget), widget_type)))
9217     return NULL;
9218
9219   return widget;
9220 }
9221
9222 /**
9223  * gtk_widget_set_visual:
9224  * @widget: a #GtkWidget
9225  * @visual: visual to be used or %NULL to unset a previous one
9226  *
9227  * Sets the visual that should be used for by widget and its children for
9228  * creating #GdkWindows. The visual must be on the same #GdkScreen as
9229  * returned by gdk_widget_get_screen(), so handling the
9230  * #GtkWidget::screen-changed signal is necessary.
9231  *
9232  * Setting a new @visual will not cause @widget to recreate its windows,
9233  * so you should call this function before @widget is realized.
9234  **/
9235 void
9236 gtk_widget_set_visual (GtkWidget *widget,
9237                        GdkVisual *visual)
9238 {
9239   g_return_if_fail (GTK_IS_WIDGET (widget));
9240   g_return_if_fail (visual == NULL || GDK_IS_VISUAL (visual));
9241   if (visual)
9242     {
9243       g_return_if_fail (gtk_widget_get_screen (widget) == gdk_visual_get_screen (visual));
9244     }
9245
9246   g_object_set_qdata_full (G_OBJECT (widget),
9247                            quark_visual,
9248                            g_object_ref (visual),
9249                            g_object_unref);
9250 }
9251
9252 /**
9253  * gtk_widget_get_visual:
9254  * @widget: a #GtkWidget
9255  *
9256  * Gets the visual that will be used to render @widget.
9257  *
9258  * Return value: (transfer none): the visual for @widget
9259  **/
9260 GdkVisual*
9261 gtk_widget_get_visual (GtkWidget *widget)
9262 {
9263   GtkWidget *w;
9264   GdkVisual *visual;
9265   GdkScreen *screen;
9266
9267   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
9268
9269   if (gtk_widget_get_has_window (widget) &&
9270       widget->priv->window)
9271     return gdk_window_get_visual (widget->priv->window);
9272
9273   screen = gtk_widget_get_screen (widget);
9274
9275   for (w = widget; w != NULL; w = w->priv->parent)
9276     {
9277       visual = g_object_get_qdata (G_OBJECT (w), quark_visual);
9278       if (visual)
9279         {
9280           if (gdk_visual_get_screen (visual) == screen)
9281             return visual;
9282
9283           g_warning ("Ignoring visual set on widget `%s' that is not on the correct screen.",
9284                      gtk_widget_get_name (widget));
9285         }
9286     }
9287
9288   return gdk_screen_get_system_visual (screen);
9289 }
9290
9291 /**
9292  * gtk_widget_get_settings:
9293  * @widget: a #GtkWidget
9294  *
9295  * Gets the settings object holding the settings (global property
9296  * settings, RC file information, etc) used for this widget.
9297  *
9298  * Note that this function can only be called when the #GtkWidget
9299  * is attached to a toplevel, since the settings object is specific
9300  * to a particular #GdkScreen.
9301  *
9302  * Return value: (transfer none): the relevant #GtkSettings object
9303  **/
9304 GtkSettings*
9305 gtk_widget_get_settings (GtkWidget *widget)
9306 {
9307   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
9308
9309   return gtk_settings_get_for_screen (gtk_widget_get_screen (widget));
9310 }
9311
9312 /**
9313  * gtk_widget_get_events:
9314  * @widget: a #GtkWidget
9315  *
9316  * Returns the event mask for the widget (a bitfield containing flags
9317  * from the #GdkEventMask enumeration). These are the events that the widget
9318  * will receive.
9319  *
9320  * Return value: event mask for @widget
9321  **/
9322 gint
9323 gtk_widget_get_events (GtkWidget *widget)
9324 {
9325   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
9326
9327   return GPOINTER_TO_INT (g_object_get_qdata (G_OBJECT (widget), quark_event_mask));
9328 }
9329
9330 /**
9331  * gtk_widget_get_device_events:
9332  * @widget: a #GtkWidget
9333  * @device: a #GdkDevice
9334  *
9335  * Returns the events mask for the widget corresponding to an specific device. These
9336  * are the events that the widget will receive when @device operates on it.
9337  *
9338  * Returns: device event mask for @widget
9339  *
9340  * Since: 3.0
9341  **/
9342 GdkEventMask
9343 gtk_widget_get_device_events (GtkWidget *widget,
9344                               GdkDevice *device)
9345 {
9346   GHashTable *device_events;
9347
9348   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
9349   g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
9350
9351   device_events = g_object_get_qdata (G_OBJECT (widget), quark_device_event_mask);
9352
9353   if (!device_events)
9354     return 0;
9355
9356   return GPOINTER_TO_UINT (g_hash_table_lookup (device_events, device));
9357 }
9358
9359 /**
9360  * gtk_widget_get_extension_events:
9361  * @widget: a #GtkWidget
9362  *
9363  * Retrieves the extension events the widget will receive; see
9364  * gdk_input_set_extension_events().
9365  *
9366  * Return value: extension events for @widget
9367  **/
9368 GdkExtensionMode
9369 gtk_widget_get_extension_events (GtkWidget *widget)
9370 {
9371   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
9372
9373   return GPOINTER_TO_INT (g_object_get_qdata (G_OBJECT (widget), quark_extension_event_mode));
9374 }
9375
9376 /**
9377  * gtk_widget_get_pointer:
9378  * @widget: a #GtkWidget
9379  * @x: (out) (allow-none): return location for the X coordinate, or %NULL
9380  * @y: (out) (allow-none): return location for the Y coordinate, or %NULL
9381  *
9382  * Obtains the location of the mouse pointer in widget coordinates.
9383  * Widget coordinates are a bit odd; for historical reasons, they are
9384  * defined as @widget->window coordinates for widgets that are not
9385  * #GTK_NO_WINDOW widgets, and are relative to @widget->allocation.x,
9386  * @widget->allocation.y for widgets that are #GTK_NO_WINDOW widgets.
9387  **/
9388 void
9389 gtk_widget_get_pointer (GtkWidget *widget,
9390                         gint      *x,
9391                         gint      *y)
9392 {
9393   GtkWidgetPrivate *priv;
9394
9395   g_return_if_fail (GTK_IS_WIDGET (widget));
9396
9397   priv = widget->priv;
9398
9399   if (x)
9400     *x = -1;
9401   if (y)
9402     *y = -1;
9403
9404   if (gtk_widget_get_realized (widget))
9405     {
9406       gdk_window_get_pointer (priv->window, x, y, NULL);
9407
9408       if (!gtk_widget_get_has_window (widget))
9409         {
9410           if (x)
9411             *x -= priv->allocation.x;
9412           if (y)
9413             *y -= priv->allocation.y;
9414         }
9415     }
9416 }
9417
9418 /**
9419  * gtk_widget_is_ancestor:
9420  * @widget: a #GtkWidget
9421  * @ancestor: another #GtkWidget
9422  *
9423  * Determines whether @widget is somewhere inside @ancestor, possibly with
9424  * intermediate containers.
9425  *
9426  * Return value: %TRUE if @ancestor contains @widget as a child,
9427  *    grandchild, great grandchild, etc.
9428  **/
9429 gboolean
9430 gtk_widget_is_ancestor (GtkWidget *widget,
9431                         GtkWidget *ancestor)
9432 {
9433   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
9434   g_return_val_if_fail (ancestor != NULL, FALSE);
9435
9436   while (widget)
9437     {
9438       if (widget->priv->parent == ancestor)
9439         return TRUE;
9440       widget = widget->priv->parent;
9441     }
9442
9443   return FALSE;
9444 }
9445
9446 static GQuark quark_composite_name = 0;
9447
9448 /**
9449  * gtk_widget_set_composite_name:
9450  * @widget: a #GtkWidget.
9451  * @name: the name to set
9452  *
9453  * Sets a widgets composite name. The widget must be
9454  * a composite child of its parent; see gtk_widget_push_composite_child().
9455  **/
9456 void
9457 gtk_widget_set_composite_name (GtkWidget   *widget,
9458                                const gchar *name)
9459 {
9460   g_return_if_fail (GTK_IS_WIDGET (widget));
9461   g_return_if_fail (widget->priv->composite_child);
9462   g_return_if_fail (name != NULL);
9463
9464   if (!quark_composite_name)
9465     quark_composite_name = g_quark_from_static_string ("gtk-composite-name");
9466
9467   g_object_set_qdata_full (G_OBJECT (widget),
9468                            quark_composite_name,
9469                            g_strdup (name),
9470                            g_free);
9471 }
9472
9473 /**
9474  * gtk_widget_get_composite_name:
9475  * @widget: a #GtkWidget
9476  *
9477  * Obtains the composite name of a widget.
9478  *
9479  * Returns: the composite name of @widget, or %NULL if @widget is not
9480  *   a composite child. The string should be freed when it is no
9481  *   longer needed.
9482  **/
9483 gchar*
9484 gtk_widget_get_composite_name (GtkWidget *widget)
9485 {
9486   GtkWidgetPrivate *priv;
9487
9488   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
9489
9490   priv = widget->priv;
9491
9492   if (widget->priv->composite_child && priv->parent)
9493     return _gtk_container_child_composite_name (GTK_CONTAINER (priv->parent),
9494                                                widget);
9495   else
9496     return NULL;
9497 }
9498
9499 /**
9500  * gtk_widget_push_composite_child:
9501  *
9502  * Makes all newly-created widgets as composite children until
9503  * the corresponding gtk_widget_pop_composite_child() call.
9504  *
9505  * A composite child is a child that's an implementation detail of the
9506  * container it's inside and should not be visible to people using the
9507  * container. Composite children aren't treated differently by GTK (but
9508  * see gtk_container_foreach() vs. gtk_container_forall()), but e.g. GUI
9509  * builders might want to treat them in a different way.
9510  *
9511  * Here is a simple example:
9512  * |[
9513  *   gtk_widget_push_composite_child ();
9514  *   scrolled_window->hscrollbar = gtk_scrollbar_new (GTK_ORIENTATION_HORIZONTAL, hadjustment);
9515  *   gtk_widget_set_composite_name (scrolled_window->hscrollbar, "hscrollbar");
9516  *   gtk_widget_pop_composite_child ();
9517  *   gtk_widget_set_parent (scrolled_window->hscrollbar,
9518  *                          GTK_WIDGET (scrolled_window));
9519  *   g_object_ref (scrolled_window->hscrollbar);
9520  * ]|
9521  **/
9522 void
9523 gtk_widget_push_composite_child (void)
9524 {
9525   composite_child_stack++;
9526 }
9527
9528 /**
9529  * gtk_widget_pop_composite_child:
9530  *
9531  * Cancels the effect of a previous call to gtk_widget_push_composite_child().
9532  **/
9533 void
9534 gtk_widget_pop_composite_child (void)
9535 {
9536   if (composite_child_stack)
9537     composite_child_stack--;
9538 }
9539
9540 static void
9541 gtk_widget_emit_direction_changed (GtkWidget        *widget,
9542                                    GtkTextDirection  old_dir)
9543 {
9544   gtk_widget_update_pango_context (widget);
9545
9546   g_signal_emit (widget, widget_signals[DIRECTION_CHANGED], 0, old_dir);
9547 }
9548
9549 /**
9550  * gtk_widget_set_direction:
9551  * @widget: a #GtkWidget
9552  * @dir:    the new direction
9553  *
9554  * Sets the reading direction on a particular widget. This direction
9555  * controls the primary direction for widgets containing text,
9556  * and also the direction in which the children of a container are
9557  * packed. The ability to set the direction is present in order
9558  * so that correct localization into languages with right-to-left
9559  * reading directions can be done. Generally, applications will
9560  * let the default reading direction present, except for containers
9561  * where the containers are arranged in an order that is explicitely
9562  * visual rather than logical (such as buttons for text justification).
9563  *
9564  * If the direction is set to %GTK_TEXT_DIR_NONE, then the value
9565  * set by gtk_widget_set_default_direction() will be used.
9566  **/
9567 void
9568 gtk_widget_set_direction (GtkWidget        *widget,
9569                           GtkTextDirection  dir)
9570 {
9571   GtkTextDirection old_dir;
9572
9573   g_return_if_fail (GTK_IS_WIDGET (widget));
9574   g_return_if_fail (dir >= GTK_TEXT_DIR_NONE && dir <= GTK_TEXT_DIR_RTL);
9575
9576   old_dir = gtk_widget_get_direction (widget);
9577
9578   widget->priv->direction = dir;
9579
9580   if (old_dir != gtk_widget_get_direction (widget))
9581     gtk_widget_emit_direction_changed (widget, old_dir);
9582 }
9583
9584 /**
9585  * gtk_widget_get_direction:
9586  * @widget: a #GtkWidget
9587  *
9588  * Gets the reading direction for a particular widget. See
9589  * gtk_widget_set_direction().
9590  *
9591  * Return value: the reading direction for the widget.
9592  **/
9593 GtkTextDirection
9594 gtk_widget_get_direction (GtkWidget *widget)
9595 {
9596   g_return_val_if_fail (GTK_IS_WIDGET (widget), GTK_TEXT_DIR_LTR);
9597
9598   if (widget->priv->direction == GTK_TEXT_DIR_NONE)
9599     return gtk_default_direction;
9600   else
9601     return widget->priv->direction;
9602 }
9603
9604 static void
9605 gtk_widget_set_default_direction_recurse (GtkWidget *widget, gpointer data)
9606 {
9607   GtkTextDirection old_dir = GPOINTER_TO_UINT (data);
9608
9609   g_object_ref (widget);
9610
9611   if (widget->priv->direction == GTK_TEXT_DIR_NONE)
9612     gtk_widget_emit_direction_changed (widget, old_dir);
9613
9614   if (GTK_IS_CONTAINER (widget))
9615     gtk_container_forall (GTK_CONTAINER (widget),
9616                           gtk_widget_set_default_direction_recurse,
9617                           data);
9618
9619   g_object_unref (widget);
9620 }
9621
9622 /**
9623  * gtk_widget_set_default_direction:
9624  * @dir: the new default direction. This cannot be
9625  *        %GTK_TEXT_DIR_NONE.
9626  *
9627  * Sets the default reading direction for widgets where the
9628  * direction has not been explicitly set by gtk_widget_set_direction().
9629  **/
9630 void
9631 gtk_widget_set_default_direction (GtkTextDirection dir)
9632 {
9633   g_return_if_fail (dir == GTK_TEXT_DIR_RTL || dir == GTK_TEXT_DIR_LTR);
9634
9635   if (dir != gtk_default_direction)
9636     {
9637       GList *toplevels, *tmp_list;
9638       GtkTextDirection old_dir = gtk_default_direction;
9639
9640       gtk_default_direction = dir;
9641
9642       tmp_list = toplevels = gtk_window_list_toplevels ();
9643       g_list_foreach (toplevels, (GFunc)g_object_ref, NULL);
9644
9645       while (tmp_list)
9646         {
9647           gtk_widget_set_default_direction_recurse (tmp_list->data,
9648                                                     GUINT_TO_POINTER (old_dir));
9649           g_object_unref (tmp_list->data);
9650           tmp_list = tmp_list->next;
9651         }
9652
9653       g_list_free (toplevels);
9654     }
9655 }
9656
9657 /**
9658  * gtk_widget_get_default_direction:
9659  *
9660  * Obtains the current default reading direction. See
9661  * gtk_widget_set_default_direction().
9662  *
9663  * Return value: the current default direction.
9664  **/
9665 GtkTextDirection
9666 gtk_widget_get_default_direction (void)
9667 {
9668   return gtk_default_direction;
9669 }
9670
9671 static void
9672 gtk_widget_dispose (GObject *object)
9673 {
9674   GtkWidget *widget = GTK_WIDGET (object);
9675   GtkWidgetPrivate *priv = widget->priv;
9676
9677   if (priv->parent)
9678     gtk_container_remove (GTK_CONTAINER (priv->parent), widget);
9679   else if (gtk_widget_get_visible (widget))
9680     gtk_widget_hide (widget);
9681
9682   priv->visible = FALSE;
9683   if (gtk_widget_get_realized (widget))
9684     gtk_widget_unrealize (widget);
9685
9686   if (!priv->in_destruction)
9687     {
9688       priv->in_destruction = TRUE;
9689       g_signal_emit (object, widget_signals[DESTROY], 0);
9690       priv->in_destruction = FALSE;
9691     }
9692
9693   G_OBJECT_CLASS (gtk_widget_parent_class)->dispose (object);
9694 }
9695
9696 static void
9697 gtk_widget_real_destroy (GtkWidget *object)
9698 {
9699   /* gtk_object_destroy() will already hold a refcount on object */
9700   GtkWidget *widget = GTK_WIDGET (object);
9701   GtkWidgetPrivate *priv = widget->priv;
9702
9703   /* wipe accelerator closures (keep order) */
9704   g_object_set_qdata (G_OBJECT (widget), quark_accel_path, NULL);
9705   g_object_set_qdata (G_OBJECT (widget), quark_accel_closures, NULL);
9706
9707   /* Callers of add_mnemonic_label() should disconnect on ::destroy */
9708   g_object_set_qdata (G_OBJECT (widget), quark_mnemonic_labels, NULL);
9709
9710   gtk_grab_remove (widget);
9711
9712   g_object_unref (priv->style);
9713   priv->style = gtk_widget_get_default_style ();
9714   g_object_ref (priv->style);
9715 }
9716
9717 static void
9718 gtk_widget_finalize (GObject *object)
9719 {
9720   GtkWidget *widget = GTK_WIDGET (object);
9721   GtkWidgetPrivate *priv = widget->priv;
9722   GtkWidgetAuxInfo *aux_info;
9723   GtkAccessible *accessible;
9724
9725   gtk_grab_remove (widget);
9726
9727   g_object_unref (priv->style);
9728   priv->style = NULL;
9729
9730   g_free (priv->name);
9731
9732   aux_info =_gtk_widget_get_aux_info (widget, FALSE);
9733   if (aux_info)
9734     gtk_widget_aux_info_destroy (aux_info);
9735
9736   accessible = g_object_get_qdata (G_OBJECT (widget), quark_accessible_object);
9737   if (accessible)
9738     g_object_unref (accessible);
9739
9740   if (g_object_is_floating (object))
9741     g_warning ("A floating object was finalized. This means that someone\n"
9742                "called g_object_unref() on an object that had only a floating\n"
9743                "reference; the initial floating reference is not owned by anyone\n"
9744                "and must be removed with g_object_ref_sink().");
9745
9746   G_OBJECT_CLASS (gtk_widget_parent_class)->finalize (object);
9747 }
9748
9749 /*****************************************
9750  * gtk_widget_real_map:
9751  *
9752  *   arguments:
9753  *
9754  *   results:
9755  *****************************************/
9756
9757 static void
9758 gtk_widget_real_map (GtkWidget *widget)
9759 {
9760   GtkWidgetPrivate *priv = widget->priv;
9761
9762   g_assert (gtk_widget_get_realized (widget));
9763
9764   if (!gtk_widget_get_mapped (widget))
9765     {
9766       gtk_widget_set_mapped (widget, TRUE);
9767
9768       if (gtk_widget_get_has_window (widget))
9769         gdk_window_show (priv->window);
9770     }
9771 }
9772
9773 /*****************************************
9774  * gtk_widget_real_unmap:
9775  *
9776  *   arguments:
9777  *
9778  *   results:
9779  *****************************************/
9780
9781 static void
9782 gtk_widget_real_unmap (GtkWidget *widget)
9783 {
9784   GtkWidgetPrivate *priv = widget->priv;
9785
9786   if (gtk_widget_get_mapped (widget))
9787     {
9788       gtk_widget_set_mapped (widget, FALSE);
9789
9790       if (gtk_widget_get_has_window (widget))
9791         gdk_window_hide (priv->window);
9792     }
9793 }
9794
9795 /*****************************************
9796  * gtk_widget_real_realize:
9797  *
9798  *   arguments:
9799  *
9800  *   results:
9801  *****************************************/
9802
9803 static void
9804 gtk_widget_real_realize (GtkWidget *widget)
9805 {
9806   GtkWidgetPrivate *priv = widget->priv;
9807
9808   g_assert (!gtk_widget_get_has_window (widget));
9809
9810   gtk_widget_set_realized (widget, TRUE);
9811   if (priv->parent)
9812     {
9813       priv->window = gtk_widget_get_parent_window (widget);
9814       g_object_ref (priv->window);
9815     }
9816   priv->style = gtk_style_attach (priv->style, priv->window);
9817 }
9818
9819 /*****************************************
9820  * gtk_widget_real_unrealize:
9821  *
9822  *   arguments:
9823  *
9824  *   results:
9825  *****************************************/
9826
9827 static void
9828 gtk_widget_real_unrealize (GtkWidget *widget)
9829 {
9830   GtkWidgetPrivate *priv = widget->priv;
9831
9832   if (gtk_widget_get_mapped (widget))
9833     gtk_widget_real_unmap (widget);
9834
9835   gtk_widget_set_mapped (widget, FALSE);
9836
9837   /* printf ("unrealizing %s\n", g_type_name (G_TYPE_FROM_INSTANCE (widget)));
9838    */
9839
9840    /* We must do unrealize child widget BEFORE container widget.
9841     * gdk_window_destroy() destroys specified xwindow and its sub-xwindows.
9842     * So, unrealizing container widget bofore its children causes the problem
9843     * (for example, gdk_ic_destroy () with destroyed window causes crash. )
9844     */
9845
9846   if (GTK_IS_CONTAINER (widget))
9847     gtk_container_forall (GTK_CONTAINER (widget),
9848                           (GtkCallback) gtk_widget_unrealize,
9849                           NULL);
9850
9851   gtk_style_detach (priv->style);
9852   if (gtk_widget_get_has_window (widget))
9853     {
9854       gdk_window_set_user_data (priv->window, NULL);
9855       gdk_window_destroy (priv->window);
9856       priv->window = NULL;
9857     }
9858   else
9859     {
9860       g_object_unref (priv->window);
9861       priv->window = NULL;
9862     }
9863
9864   gtk_selection_remove_all (widget);
9865
9866   gtk_widget_set_realized (widget, FALSE);
9867 }
9868
9869 static void
9870 gtk_widget_real_adjust_size_request (GtkWidget         *widget,
9871                                      GtkOrientation     orientation,
9872                                      gint              *minimum_size,
9873                                      gint              *natural_size)
9874 {
9875   const GtkWidgetAuxInfo *aux_info;
9876
9877   aux_info =_gtk_widget_get_aux_info_or_defaults (widget);
9878
9879   if (orientation == GTK_ORIENTATION_HORIZONTAL &&
9880       aux_info->width > 0)
9881     {
9882       *minimum_size = MAX (*minimum_size, aux_info->width);
9883     }
9884   else if (orientation == GTK_ORIENTATION_VERTICAL &&
9885            aux_info->height > 0)
9886     {
9887       *minimum_size = MAX (*minimum_size, aux_info->height);
9888     }
9889
9890   /* Fix it if set_size_request made natural size smaller than min size.
9891    * This would also silently fix broken widgets, but we warn about them
9892    * in gtksizerequest.c when calling their size request vfuncs.
9893    */
9894   *natural_size = MAX (*natural_size, *minimum_size);
9895
9896   if (orientation == GTK_ORIENTATION_HORIZONTAL)
9897     {
9898       *minimum_size += (aux_info->margin.left + aux_info->margin.right);
9899       *natural_size += (aux_info->margin.left + aux_info->margin.right);
9900     }
9901   else
9902     {
9903       *minimum_size += (aux_info->margin.top + aux_info->margin.bottom);
9904       *natural_size += (aux_info->margin.top + aux_info->margin.bottom);
9905     }
9906 }
9907
9908 /**
9909  * _gtk_widget_peek_request_cache:
9910  *
9911  * Returns the address of the widget's request cache (strictly for
9912  * internal use in gtksizerequest.c)
9913  *
9914  * Return value: the address of @widget's size request cache.
9915  **/
9916 gpointer
9917 _gtk_widget_peek_request_cache (GtkWidget *widget)
9918 {
9919   /* Don't bother slowing things down with the return_if_fail guards here */
9920   return &widget->priv->requests;
9921 }
9922
9923 /*
9924  * _gtk_widget_set_device_window:
9925  * @widget: a #GtkWidget.
9926  * @device: a #GdkDevice.
9927  * @window: the new device window.
9928  *
9929  * Sets pointer window for @widget and @device.  Does not ref @window.
9930  * Actually stores it on the #GdkScreen, but you don't need to know that.
9931  */
9932 void
9933 _gtk_widget_set_device_window (GtkWidget *widget,
9934                                GdkDevice *device,
9935                                GdkWindow *window)
9936 {
9937   GtkWidgetPrivate *priv;
9938   GdkScreen *screen;
9939   GHashTable *device_window;
9940
9941   g_return_if_fail (GTK_IS_WIDGET (widget));
9942   g_return_if_fail (GDK_IS_DEVICE (device));
9943   g_return_if_fail (!window || GDK_IS_WINDOW (window));
9944
9945   priv = widget->priv;
9946
9947   if (!gtk_widget_get_realized (widget))
9948     return;
9949
9950   screen = gdk_window_get_screen (priv->window);
9951   device_window = g_object_get_qdata (G_OBJECT (screen), quark_pointer_window);
9952
9953   if (G_UNLIKELY (!device_window))
9954     {
9955       device_window = g_hash_table_new (NULL, NULL);
9956       g_object_set_qdata_full (G_OBJECT (screen),
9957                                quark_pointer_window,
9958                                device_window,
9959                                (GDestroyNotify) g_hash_table_destroy);
9960     }
9961
9962   if (window)
9963     g_hash_table_insert (device_window, device, window);
9964   else
9965     g_hash_table_remove (device_window, device);
9966 }
9967
9968 /*
9969  * _gtk_widget_get_device_window:
9970  * @widget: a #GtkWidget.
9971  * @device: a #GdkDevice.
9972  *
9973  * Return value: the device window set on the #GdkScreen @widget is attached
9974  * to, or %NULL.
9975  */
9976 GdkWindow *
9977 _gtk_widget_get_device_window (GtkWidget *widget,
9978                                GdkDevice *device)
9979 {
9980   GtkWidgetPrivate *priv;
9981   GdkScreen *screen;
9982   GHashTable *device_window;
9983   GdkWindow *window;
9984   GtkWidget *w;
9985
9986   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
9987   g_return_val_if_fail (GDK_IS_DEVICE (device), NULL);
9988
9989   priv = widget->priv;
9990
9991   if (!gtk_widget_get_realized (widget))
9992     return NULL;
9993
9994   screen = gdk_window_get_screen (priv->window);
9995   device_window = g_object_get_qdata (G_OBJECT (screen), quark_pointer_window);
9996
9997   if (G_UNLIKELY (!device_window))
9998     return NULL;
9999
10000   window = g_hash_table_lookup (device_window, device);
10001
10002   if (!window)
10003     return NULL;
10004
10005   gdk_window_get_user_data (window, (gpointer *) &w);
10006
10007   if (widget != w)
10008     return NULL;
10009
10010   return window;
10011 }
10012
10013 /*
10014  * _gtk_widget_list_devices:
10015  * @widget: a #GtkWidget.
10016  *
10017  * Returns the list of #GdkDevices that is currently on top of any widget #GdkWindow.
10018  * Free the list with g_list_free(), the elements are owned by GTK+ and must not
10019  * be freed.
10020  */
10021 GList *
10022 _gtk_widget_list_devices (GtkWidget *widget)
10023 {
10024   GtkWidgetPrivate *priv;
10025   GdkScreen *screen;
10026   GHashTableIter iter;
10027   GHashTable *device_window;
10028   GList *devices = NULL;
10029   gpointer key, value;
10030
10031   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
10032
10033   priv = widget->priv;
10034
10035   if (!gtk_widget_get_realized (widget))
10036     return NULL;
10037
10038   screen = gdk_window_get_screen (priv->window);
10039   device_window = g_object_get_qdata (G_OBJECT (screen), quark_pointer_window);
10040
10041   if (G_UNLIKELY (!device_window))
10042     return NULL;
10043
10044   g_hash_table_iter_init (&iter, device_window);
10045
10046   while (g_hash_table_iter_next (&iter, &key, &value))
10047     {
10048       GdkDevice *device = key;
10049       GdkWindow *window = value;
10050       GtkWidget *w;
10051
10052       if (window)
10053         {
10054           gdk_window_get_user_data (window, (gpointer *) &w);
10055
10056           if (widget == w)
10057             devices = g_list_prepend (devices, device);
10058         }
10059     }
10060
10061   return devices;
10062 }
10063
10064 static void
10065 synth_crossing (GtkWidget       *widget,
10066                 GdkEventType     type,
10067                 GdkWindow       *window,
10068                 GdkDevice       *device,
10069                 GdkCrossingMode  mode,
10070                 GdkNotifyType    detail)
10071 {
10072   GdkEvent *event;
10073
10074   event = gdk_event_new (type);
10075
10076   event->crossing.window = g_object_ref (window);
10077   event->crossing.send_event = TRUE;
10078   event->crossing.subwindow = g_object_ref (window);
10079   event->crossing.time = GDK_CURRENT_TIME;
10080   event->crossing.x = event->crossing.y = 0;
10081   event->crossing.x_root = event->crossing.y_root = 0;
10082   event->crossing.mode = mode;
10083   event->crossing.detail = detail;
10084   event->crossing.focus = FALSE;
10085   event->crossing.state = 0;
10086   gdk_event_set_device (event, device);
10087
10088   if (!widget)
10089     widget = gtk_get_event_widget (event);
10090
10091   if (widget)
10092     gtk_widget_event_internal (widget, event);
10093
10094   gdk_event_free (event);
10095 }
10096
10097 /*
10098  * _gtk_widget_synthesize_crossing:
10099  * @from: the #GtkWidget the virtual pointer is leaving.
10100  * @to: the #GtkWidget the virtual pointer is moving to.
10101  * @mode: the #GdkCrossingMode to place on the synthesized events.
10102  *
10103  * Generate crossing event(s) on widget state (sensitivity) or GTK+ grab change.
10104  *
10105  * The real pointer window is the window that most recently received an enter notify
10106  * event.  Windows that don't select for crossing events can't become the real
10107  * poiner window.  The real pointer widget that owns the real pointer window.  The
10108  * effective pointer window is the same as the real pointer window unless the real
10109  * pointer widget is either insensitive or there is a grab on a widget that is not
10110  * an ancestor of the real pointer widget (in which case the effective pointer
10111  * window should be the root window).
10112  *
10113  * When the effective pointer window is the same as the real poiner window, we
10114  * receive crossing events from the windowing system.  When the effective pointer
10115  * window changes to become different from the real pointer window we synthesize
10116  * crossing events, attempting to follow X protocol rules:
10117  *
10118  * When the root window becomes the effective pointer window:
10119  *   - leave notify on real pointer window, detail Ancestor
10120  *   - leave notify on all of its ancestors, detail Virtual
10121  *   - enter notify on root window, detail Inferior
10122  *
10123  * When the root window ceases to be the effective pointer window:
10124  *   - leave notify on root window, detail Inferior
10125  *   - enter notify on all ancestors of real pointer window, detail Virtual
10126  *   - enter notify on real pointer window, detail Ancestor
10127  */
10128 void
10129 _gtk_widget_synthesize_crossing (GtkWidget       *from,
10130                                  GtkWidget       *to,
10131                                  GdkDevice       *device,
10132                                  GdkCrossingMode  mode)
10133 {
10134   GdkWindow *from_window = NULL, *to_window = NULL;
10135
10136   g_return_if_fail (from != NULL || to != NULL);
10137
10138   if (from != NULL)
10139     {
10140       from_window = _gtk_widget_get_device_window (from, device);
10141
10142       if (!from_window)
10143         from_window = from->priv->window;
10144     }
10145
10146   if (to != NULL)
10147     {
10148       to_window = _gtk_widget_get_device_window (to, device);
10149
10150       if (!to_window)
10151         to_window = to->priv->window;
10152     }
10153
10154   if (from_window == NULL && to_window == NULL)
10155     ;
10156   else if (from_window != NULL && to_window == NULL)
10157     {
10158       GList *from_ancestors = NULL, *list;
10159       GdkWindow *from_ancestor = from_window;
10160
10161       while (from_ancestor != NULL)
10162         {
10163           from_ancestor = gdk_window_get_effective_parent (from_ancestor);
10164           if (from_ancestor == NULL)
10165             break;
10166           from_ancestors = g_list_prepend (from_ancestors, from_ancestor);
10167         }
10168
10169       synth_crossing (from, GDK_LEAVE_NOTIFY, from_window,
10170                       device, mode, GDK_NOTIFY_ANCESTOR);
10171       for (list = g_list_last (from_ancestors); list; list = list->prev)
10172         {
10173           synth_crossing (NULL, GDK_LEAVE_NOTIFY, (GdkWindow *) list->data,
10174                           device, mode, GDK_NOTIFY_VIRTUAL);
10175         }
10176
10177       /* XXX: enter/inferior on root window? */
10178
10179       g_list_free (from_ancestors);
10180     }
10181   else if (from_window == NULL && to_window != NULL)
10182     {
10183       GList *to_ancestors = NULL, *list;
10184       GdkWindow *to_ancestor = to_window;
10185
10186       while (to_ancestor != NULL)
10187         {
10188           to_ancestor = gdk_window_get_effective_parent (to_ancestor);
10189           if (to_ancestor == NULL)
10190             break;
10191           to_ancestors = g_list_prepend (to_ancestors, to_ancestor);
10192         }
10193
10194       /* XXX: leave/inferior on root window? */
10195
10196       for (list = to_ancestors; list; list = list->next)
10197         {
10198           synth_crossing (NULL, GDK_ENTER_NOTIFY, (GdkWindow *) list->data,
10199                           device, mode, GDK_NOTIFY_VIRTUAL);
10200         }
10201       synth_crossing (to, GDK_ENTER_NOTIFY, to_window,
10202                       device, mode, GDK_NOTIFY_ANCESTOR);
10203
10204       g_list_free (to_ancestors);
10205     }
10206   else if (from_window == to_window)
10207     ;
10208   else
10209     {
10210       GList *from_ancestors = NULL, *to_ancestors = NULL, *list;
10211       GdkWindow *from_ancestor = from_window, *to_ancestor = to_window;
10212
10213       while (from_ancestor != NULL || to_ancestor != NULL)
10214         {
10215           if (from_ancestor != NULL)
10216             {
10217               from_ancestor = gdk_window_get_effective_parent (from_ancestor);
10218               if (from_ancestor == to_window)
10219                 break;
10220               if (from_ancestor)
10221                 from_ancestors = g_list_prepend (from_ancestors, from_ancestor);
10222             }
10223           if (to_ancestor != NULL)
10224             {
10225               to_ancestor = gdk_window_get_effective_parent (to_ancestor);
10226               if (to_ancestor == from_window)
10227                 break;
10228               if (to_ancestor)
10229                 to_ancestors = g_list_prepend (to_ancestors, to_ancestor);
10230             }
10231         }
10232       if (to_ancestor == from_window)
10233         {
10234           if (mode != GDK_CROSSING_GTK_UNGRAB)
10235             synth_crossing (from, GDK_LEAVE_NOTIFY, from_window,
10236                             device, mode, GDK_NOTIFY_INFERIOR);
10237           for (list = to_ancestors; list; list = list->next)
10238             synth_crossing (NULL, GDK_ENTER_NOTIFY, (GdkWindow *) list->data,
10239                             device, mode, GDK_NOTIFY_VIRTUAL);
10240           synth_crossing (to, GDK_ENTER_NOTIFY, to_window,
10241                           device, mode, GDK_NOTIFY_ANCESTOR);
10242         }
10243       else if (from_ancestor == to_window)
10244         {
10245           synth_crossing (from, GDK_LEAVE_NOTIFY, from_window,
10246                           device, mode, GDK_NOTIFY_ANCESTOR);
10247           for (list = g_list_last (from_ancestors); list; list = list->prev)
10248             {
10249               synth_crossing (NULL, GDK_LEAVE_NOTIFY, (GdkWindow *) list->data,
10250                               device, mode, GDK_NOTIFY_VIRTUAL);
10251             }
10252           if (mode != GDK_CROSSING_GTK_GRAB)
10253             synth_crossing (to, GDK_ENTER_NOTIFY, to_window,
10254                             device, mode, GDK_NOTIFY_INFERIOR);
10255         }
10256       else
10257         {
10258           while (from_ancestors != NULL && to_ancestors != NULL
10259                  && from_ancestors->data == to_ancestors->data)
10260             {
10261               from_ancestors = g_list_delete_link (from_ancestors,
10262                                                    from_ancestors);
10263               to_ancestors = g_list_delete_link (to_ancestors, to_ancestors);
10264             }
10265
10266           synth_crossing (from, GDK_LEAVE_NOTIFY, from_window,
10267                           device, mode, GDK_NOTIFY_NONLINEAR);
10268
10269           for (list = g_list_last (from_ancestors); list; list = list->prev)
10270             {
10271               synth_crossing (NULL, GDK_LEAVE_NOTIFY, (GdkWindow *) list->data,
10272                               device, mode, GDK_NOTIFY_NONLINEAR_VIRTUAL);
10273             }
10274           for (list = to_ancestors; list; list = list->next)
10275             {
10276               synth_crossing (NULL, GDK_ENTER_NOTIFY, (GdkWindow *) list->data,
10277                               device, mode, GDK_NOTIFY_NONLINEAR_VIRTUAL);
10278             }
10279           synth_crossing (to, GDK_ENTER_NOTIFY, to_window,
10280                           device, mode, GDK_NOTIFY_NONLINEAR);
10281         }
10282       g_list_free (from_ancestors);
10283       g_list_free (to_ancestors);
10284     }
10285 }
10286
10287 static void
10288 gtk_widget_propagate_state (GtkWidget           *widget,
10289                             GtkStateData        *data)
10290 {
10291   GtkWidgetPrivate *priv = widget->priv;
10292   guint8 old_state = gtk_widget_get_state (widget);
10293   guint8 old_saved_state = priv->saved_state;
10294
10295   /* don't call this function with state==GTK_STATE_INSENSITIVE,
10296    * parent_sensitive==TRUE on a sensitive widget
10297    */
10298
10299
10300   priv->parent_sensitive = data->parent_sensitive;
10301
10302   if (gtk_widget_is_sensitive (widget))
10303     {
10304       if (data->state_restoration)
10305         priv->state = priv->saved_state;
10306       else
10307         priv->state = data->state;
10308     }
10309   else
10310     {
10311       if (!data->state_restoration)
10312         {
10313           if (data->state != GTK_STATE_INSENSITIVE)
10314             priv->saved_state = data->state;
10315         }
10316       else if (gtk_widget_get_state (widget) != GTK_STATE_INSENSITIVE)
10317         priv->saved_state = gtk_widget_get_state (widget);
10318       priv->state = GTK_STATE_INSENSITIVE;
10319     }
10320
10321   if (gtk_widget_is_focus (widget) && !gtk_widget_is_sensitive (widget))
10322     {
10323       GtkWidget *window;
10324
10325       window = gtk_widget_get_toplevel (widget);
10326       if (window && gtk_widget_is_toplevel (window))
10327         gtk_window_set_focus (GTK_WINDOW (window), NULL);
10328     }
10329
10330   if (old_state != gtk_widget_get_state (widget) ||
10331       old_saved_state != priv->saved_state)
10332     {
10333       g_object_ref (widget);
10334
10335       if (!gtk_widget_is_sensitive (widget) && gtk_widget_has_grab (widget))
10336         gtk_grab_remove (widget);
10337
10338       g_signal_emit (widget, widget_signals[STATE_CHANGED], 0, old_state);
10339
10340       if (!priv->shadowed)
10341         {
10342           GList *event_windows = NULL;
10343           GList *devices, *d;
10344
10345           devices = _gtk_widget_list_devices (widget);
10346
10347           for (d = devices; d; d = d->next)
10348             {
10349               GdkWindow *window;
10350               GdkDevice *device;
10351
10352               device = d->data;
10353               window = _gtk_widget_get_device_window (widget, device);
10354
10355               /* Do not propagate more than once to the
10356                * same window if non-multidevice aware.
10357                */
10358               if (!gdk_window_get_support_multidevice (window) &&
10359                   g_list_find (event_windows, window))
10360                 continue;
10361
10362               if (!gtk_widget_is_sensitive (widget))
10363                 _gtk_widget_synthesize_crossing (widget, NULL, d->data,
10364                                                  GDK_CROSSING_STATE_CHANGED);
10365               else if (old_state == GTK_STATE_INSENSITIVE)
10366                 _gtk_widget_synthesize_crossing (NULL, widget, d->data,
10367                                                  GDK_CROSSING_STATE_CHANGED);
10368
10369               event_windows = g_list_prepend (event_windows, window);
10370             }
10371
10372           g_list_free (event_windows);
10373           g_list_free (devices);
10374         }
10375
10376       if (GTK_IS_CONTAINER (widget))
10377         {
10378           data->parent_sensitive = (gtk_widget_is_sensitive (widget) != FALSE);
10379           if (data->use_forall)
10380             gtk_container_forall (GTK_CONTAINER (widget),
10381                                   (GtkCallback) gtk_widget_propagate_state,
10382                                   data);
10383           else
10384             gtk_container_foreach (GTK_CONTAINER (widget),
10385                                    (GtkCallback) gtk_widget_propagate_state,
10386                                    data);
10387         }
10388       g_object_unref (widget);
10389     }
10390 }
10391
10392 static const GtkWidgetAuxInfo default_aux_info = {
10393   -1, -1,
10394   GTK_ALIGN_FILL,
10395   GTK_ALIGN_FILL,
10396   { 0, 0, 0, 0 }
10397 };
10398
10399 /*
10400  * _gtk_widget_get_aux_info:
10401  * @widget: a #GtkWidget
10402  * @create: if %TRUE, create the structure if it doesn't exist
10403  *
10404  * Get the #GtkWidgetAuxInfo structure for the widget.
10405  *
10406  * Return value: the #GtkAuxInfo structure for the widget, or
10407  *    %NULL if @create is %FALSE and one doesn't already exist.
10408  */
10409 GtkWidgetAuxInfo*
10410 _gtk_widget_get_aux_info (GtkWidget *widget,
10411                           gboolean   create)
10412 {
10413   GtkWidgetAuxInfo *aux_info;
10414
10415   aux_info = g_object_get_qdata (G_OBJECT (widget), quark_aux_info);
10416   if (!aux_info && create)
10417     {
10418       aux_info = g_slice_new0 (GtkWidgetAuxInfo);
10419
10420       *aux_info = default_aux_info;
10421
10422       g_object_set_qdata (G_OBJECT (widget), quark_aux_info, aux_info);
10423     }
10424
10425   return aux_info;
10426 }
10427
10428 static const GtkWidgetAuxInfo*
10429 _gtk_widget_get_aux_info_or_defaults (GtkWidget *widget)
10430 {
10431   GtkWidgetAuxInfo *aux_info;
10432
10433   aux_info = _gtk_widget_get_aux_info (widget, FALSE);
10434   if (aux_info == NULL)
10435     {
10436       return &default_aux_info;
10437     }
10438   else
10439     {
10440       return aux_info;
10441     }
10442 }
10443
10444 /*****************************************
10445  * gtk_widget_aux_info_destroy:
10446  *
10447  *   arguments:
10448  *
10449  *   results:
10450  *****************************************/
10451
10452 static void
10453 gtk_widget_aux_info_destroy (GtkWidgetAuxInfo *aux_info)
10454 {
10455   g_slice_free (GtkWidgetAuxInfo, aux_info);
10456 }
10457
10458 /**
10459  * gtk_widget_shape_combine_region:
10460  * @widget: a #GtkWidget
10461  * @region: (allow-none): shape to be added, or %NULL to remove an existing shape
10462  *
10463  * Sets a shape for this widget's GDK window. This allows for
10464  * transparent windows etc., see gdk_window_shape_combine_region()
10465  * for more information.
10466  *
10467  * Since: 3.0
10468  **/
10469 void
10470 gtk_widget_shape_combine_region (GtkWidget *widget,
10471                                  cairo_region_t *region)
10472 {
10473   GtkWidgetPrivate *priv;
10474
10475   g_return_if_fail (GTK_IS_WIDGET (widget));
10476   /*  set_shape doesn't work on widgets without gdk window */
10477   g_return_if_fail (gtk_widget_get_has_window (widget));
10478
10479   priv = widget->priv;
10480
10481   if (region == NULL)
10482     {
10483       priv->has_shape_mask = FALSE;
10484
10485       if (priv->window)
10486         gdk_window_shape_combine_region (priv->window, NULL, 0, 0);
10487
10488       g_object_set_qdata (G_OBJECT (widget), quark_shape_info, NULL);
10489     }
10490   else
10491     {
10492       priv->has_shape_mask = TRUE;
10493
10494       g_object_set_qdata_full (G_OBJECT (widget), quark_shape_info,
10495                                cairo_region_copy (region),
10496                                (GDestroyNotify) cairo_region_destroy);
10497
10498       /* set shape if widget has a gdk window already.
10499        * otherwise the shape is scheduled to be set by gtk_widget_realize().
10500        */
10501       if (priv->window)
10502         gdk_window_shape_combine_region (priv->window, region, 0, 0);
10503     }
10504 }
10505
10506 /**
10507  * gtk_widget_input_shape_combine_region:
10508  * @widget: a #GtkWidget
10509  * @region: (allow-none): shape to be added, or %NULL to remove an existing shape
10510  *
10511  * Sets an input shape for this widget's GDK window. This allows for
10512  * windows which react to mouse click in a nonrectangular region, see
10513  * gdk_window_input_shape_combine_region() for more information.
10514  *
10515  * Since: 3.0
10516  **/
10517 void
10518 gtk_widget_input_shape_combine_region (GtkWidget *widget,
10519                                        cairo_region_t *region)
10520 {
10521   GtkWidgetPrivate *priv;
10522
10523   g_return_if_fail (GTK_IS_WIDGET (widget));
10524   /*  set_shape doesn't work on widgets without gdk window */
10525   g_return_if_fail (gtk_widget_get_has_window (widget));
10526
10527   priv = widget->priv;
10528
10529   if (region == NULL)
10530     {
10531       if (priv->window)
10532         gdk_window_input_shape_combine_region (priv->window, NULL, 0, 0);
10533
10534       g_object_set_qdata (G_OBJECT (widget), quark_input_shape_info, NULL);
10535     }
10536   else
10537     {
10538       g_object_set_qdata_full (G_OBJECT (widget), quark_input_shape_info,
10539                                cairo_region_copy (region),
10540                                (GDestroyNotify) cairo_region_destroy);
10541
10542       /* set shape if widget has a gdk window already.
10543        * otherwise the shape is scheduled to be set by gtk_widget_realize().
10544        */
10545       if (priv->window)
10546         gdk_window_input_shape_combine_region (priv->window, region, 0, 0);
10547     }
10548 }
10549
10550
10551 static void
10552 gtk_reset_shapes_recurse (GtkWidget *widget,
10553                           GdkWindow *window)
10554 {
10555   gpointer data;
10556   GList *list;
10557
10558   gdk_window_get_user_data (window, &data);
10559   if (data != widget)
10560     return;
10561
10562   gdk_window_shape_combine_region (window, NULL, 0, 0);
10563   for (list = gdk_window_peek_children (window); list; list = list->next)
10564     gtk_reset_shapes_recurse (widget, list->data);
10565 }
10566
10567 /**
10568  * gtk_widget_reset_shapes:
10569  * @widget: a #GtkWidget
10570  *
10571  * Recursively resets the shape on this widget and its descendants.
10572  **/
10573 void
10574 gtk_widget_reset_shapes (GtkWidget *widget)
10575 {
10576   GtkWidgetPrivate *priv;
10577
10578   g_return_if_fail (GTK_IS_WIDGET (widget));
10579   g_return_if_fail (gtk_widget_get_realized (widget));
10580
10581   priv = widget->priv;
10582
10583   if (!priv->has_shape_mask)
10584     gtk_reset_shapes_recurse (widget, priv->window);
10585 }
10586
10587 /* style properties
10588  */
10589
10590 /**
10591  * gtk_widget_class_install_style_property_parser:
10592  * @klass: a #GtkWidgetClass
10593  * @pspec: the #GParamSpec for the style property
10594  * @parser: the parser for the style property
10595  *
10596  * Installs a style property on a widget class.
10597  **/
10598 void
10599 gtk_widget_class_install_style_property_parser (GtkWidgetClass     *klass,
10600                                                 GParamSpec         *pspec,
10601                                                 GtkRcPropertyParser parser)
10602 {
10603   g_return_if_fail (GTK_IS_WIDGET_CLASS (klass));
10604   g_return_if_fail (G_IS_PARAM_SPEC (pspec));
10605   g_return_if_fail (pspec->flags & G_PARAM_READABLE);
10606   g_return_if_fail (!(pspec->flags & (G_PARAM_CONSTRUCT_ONLY | G_PARAM_CONSTRUCT)));
10607
10608   if (g_param_spec_pool_lookup (style_property_spec_pool, pspec->name, G_OBJECT_CLASS_TYPE (klass), FALSE))
10609     {
10610       g_warning (G_STRLOC ": class `%s' already contains a style property named `%s'",
10611                  G_OBJECT_CLASS_NAME (klass),
10612                  pspec->name);
10613       return;
10614     }
10615
10616   g_param_spec_ref_sink (pspec);
10617   g_param_spec_set_qdata (pspec, quark_property_parser, (gpointer) parser);
10618   g_param_spec_pool_insert (style_property_spec_pool, pspec, G_OBJECT_CLASS_TYPE (klass));
10619 }
10620
10621 /**
10622  * gtk_widget_class_install_style_property:
10623  * @klass: a #GtkWidgetClass
10624  * @pspec: the #GParamSpec for the property
10625  *
10626  * Installs a style property on a widget class. The parser for the
10627  * style property is determined by the value type of @pspec.
10628  **/
10629 void
10630 gtk_widget_class_install_style_property (GtkWidgetClass *klass,
10631                                          GParamSpec     *pspec)
10632 {
10633   GtkRcPropertyParser parser;
10634
10635   g_return_if_fail (GTK_IS_WIDGET_CLASS (klass));
10636   g_return_if_fail (G_IS_PARAM_SPEC (pspec));
10637
10638   parser = _gtk_rc_property_parser_from_type (G_PARAM_SPEC_VALUE_TYPE (pspec));
10639
10640   gtk_widget_class_install_style_property_parser (klass, pspec, parser);
10641 }
10642
10643 /**
10644  * gtk_widget_class_find_style_property:
10645  * @klass: a #GtkWidgetClass
10646  * @property_name: the name of the style property to find
10647  * @returns: (allow-none): the #GParamSpec of the style property or %NULL if @class has no
10648  *   style property with that name.
10649  *
10650  * Finds a style property of a widget class by name.
10651  *
10652  * Since: 2.2
10653  */
10654 GParamSpec*
10655 gtk_widget_class_find_style_property (GtkWidgetClass *klass,
10656                                       const gchar    *property_name)
10657 {
10658   g_return_val_if_fail (property_name != NULL, NULL);
10659
10660   return g_param_spec_pool_lookup (style_property_spec_pool,
10661                                    property_name,
10662                                    G_OBJECT_CLASS_TYPE (klass),
10663                                    TRUE);
10664 }
10665
10666 /**
10667  * gtk_widget_class_list_style_properties:
10668  * @klass: a #GtkWidgetClass
10669  * @n_properties: location to return the number of style properties found
10670  * @returns: an newly allocated array of #GParamSpec*. The array must
10671  *       be freed with g_free().
10672  *
10673  * Returns all style properties of a widget class.
10674  *
10675  * Since: 2.2
10676  */
10677 GParamSpec**
10678 gtk_widget_class_list_style_properties (GtkWidgetClass *klass,
10679                                         guint          *n_properties)
10680 {
10681   GParamSpec **pspecs;
10682   guint n;
10683
10684   pspecs = g_param_spec_pool_list (style_property_spec_pool,
10685                                    G_OBJECT_CLASS_TYPE (klass),
10686                                    &n);
10687   if (n_properties)
10688     *n_properties = n;
10689
10690   return pspecs;
10691 }
10692
10693 /**
10694  * gtk_widget_style_get_property:
10695  * @widget: a #GtkWidget
10696  * @property_name: the name of a style property
10697  * @value: location to return the property value
10698  *
10699  * Gets the value of a style property of @widget.
10700  */
10701 void
10702 gtk_widget_style_get_property (GtkWidget   *widget,
10703                                const gchar *property_name,
10704                                GValue      *value)
10705 {
10706   GParamSpec *pspec;
10707
10708   g_return_if_fail (GTK_IS_WIDGET (widget));
10709   g_return_if_fail (property_name != NULL);
10710   g_return_if_fail (G_IS_VALUE (value));
10711
10712   g_object_ref (widget);
10713   pspec = g_param_spec_pool_lookup (style_property_spec_pool,
10714                                     property_name,
10715                                     G_OBJECT_TYPE (widget),
10716                                     TRUE);
10717   if (!pspec)
10718     g_warning ("%s: widget class `%s' has no property named `%s'",
10719                G_STRLOC,
10720                G_OBJECT_TYPE_NAME (widget),
10721                property_name);
10722   else
10723     {
10724       GtkStyleContext *context;
10725       const GValue *peek_value;
10726
10727       context = gtk_widget_get_style_context (widget);
10728       peek_value = _gtk_style_context_peek_style_property (context,
10729                                                            G_OBJECT_TYPE (widget),
10730                                                            pspec);
10731
10732       /* auto-conversion of the caller's value type
10733        */
10734       if (G_VALUE_TYPE (value) == G_PARAM_SPEC_VALUE_TYPE (pspec))
10735         g_value_copy (peek_value, value);
10736       else if (g_value_type_transformable (G_PARAM_SPEC_VALUE_TYPE (pspec), G_VALUE_TYPE (value)))
10737         g_value_transform (peek_value, value);
10738       else
10739         g_warning ("can't retrieve style property `%s' of type `%s' as value of type `%s'",
10740                    pspec->name,
10741                    g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
10742                    G_VALUE_TYPE_NAME (value));
10743     }
10744   g_object_unref (widget);
10745 }
10746
10747 /**
10748  * gtk_widget_style_get_valist:
10749  * @widget: a #GtkWidget
10750  * @first_property_name: the name of the first property to get
10751  * @var_args: a <type>va_list</type> of pairs of property names and
10752  *     locations to return the property values, starting with the location
10753  *     for @first_property_name.
10754  *
10755  * Non-vararg variant of gtk_widget_style_get(). Used primarily by language
10756  * bindings.
10757  */
10758 void
10759 gtk_widget_style_get_valist (GtkWidget   *widget,
10760                              const gchar *first_property_name,
10761                              va_list      var_args)
10762 {
10763   GtkStyleContext *context;
10764   const gchar *name;
10765
10766   g_return_if_fail (GTK_IS_WIDGET (widget));
10767
10768   g_object_ref (widget);
10769   context = gtk_widget_get_style_context (widget);
10770
10771   name = first_property_name;
10772   while (name)
10773     {
10774       const GValue *peek_value;
10775       GParamSpec *pspec;
10776       gchar *error;
10777
10778       pspec = g_param_spec_pool_lookup (style_property_spec_pool,
10779                                         name,
10780                                         G_OBJECT_TYPE (widget),
10781                                         TRUE);
10782       if (!pspec)
10783         {
10784           g_warning ("%s: widget class `%s' has no property named `%s'",
10785                      G_STRLOC,
10786                      G_OBJECT_TYPE_NAME (widget),
10787                      name);
10788           break;
10789         }
10790       /* style pspecs are always readable so we can spare that check here */
10791
10792       peek_value = _gtk_style_context_peek_style_property (context,
10793                                                            G_OBJECT_TYPE (widget),
10794                                                            pspec);
10795
10796       G_VALUE_LCOPY (peek_value, var_args, 0, &error);
10797       if (error)
10798         {
10799           g_warning ("%s: %s", G_STRLOC, error);
10800           g_free (error);
10801           break;
10802         }
10803
10804       name = va_arg (var_args, gchar*);
10805     }
10806
10807   g_object_unref (widget);
10808 }
10809
10810 /**
10811  * gtk_widget_style_get:
10812  * @widget: a #GtkWidget
10813  * @first_property_name: the name of the first property to get
10814  * @Varargs: pairs of property names and locations to
10815  *   return the property values, starting with the location for
10816  *   @first_property_name, terminated by %NULL.
10817  *
10818  * Gets the values of a multiple style properties of @widget.
10819  */
10820 void
10821 gtk_widget_style_get (GtkWidget   *widget,
10822                       const gchar *first_property_name,
10823                       ...)
10824 {
10825   va_list var_args;
10826
10827   g_return_if_fail (GTK_IS_WIDGET (widget));
10828
10829   va_start (var_args, first_property_name);
10830   gtk_widget_style_get_valist (widget, first_property_name, var_args);
10831   va_end (var_args);
10832 }
10833
10834 /**
10835  * gtk_widget_path:
10836  * @widget: a #GtkWidget
10837  * @path_length: (out) (allow-none): location to store length of the path, or %NULL
10838  * @path: (out) (allow-none):  location to store allocated path string, or %NULL
10839  * @path_reversed: (out) (allow-none):  location to store allocated reverse path string, or %NULL
10840  *
10841  * Obtains the full path to @widget. The path is simply the name of a
10842  * widget and all its parents in the container hierarchy, separated by
10843  * periods. The name of a widget comes from
10844  * gtk_widget_get_name(). Paths are used to apply styles to a widget
10845  * in gtkrc configuration files. Widget names are the type of the
10846  * widget by default (e.g. "GtkButton") or can be set to an
10847  * application-specific value with gtk_widget_set_name(). By setting
10848  * the name of a widget, you allow users or theme authors to apply
10849  * styles to that specific widget in their gtkrc
10850  * file. @path_reversed_p fills in the path in reverse order,
10851  * i.e. starting with @widget's name instead of starting with the name
10852  * of @widget's outermost ancestor.
10853  **/
10854 void
10855 gtk_widget_path (GtkWidget *widget,
10856                  guint     *path_length,
10857                  gchar    **path,
10858                  gchar    **path_reversed)
10859 {
10860   static gchar *rev_path = NULL;
10861   static guint tmp_path_len = 0;
10862   guint len;
10863
10864   g_return_if_fail (GTK_IS_WIDGET (widget));
10865
10866   len = 0;
10867   do
10868     {
10869       const gchar *string;
10870       const gchar *s;
10871       gchar *d;
10872       guint l;
10873
10874       string = gtk_widget_get_name (widget);
10875       l = strlen (string);
10876       while (tmp_path_len <= len + l + 1)
10877         {
10878           tmp_path_len += INIT_PATH_SIZE;
10879           rev_path = g_realloc (rev_path, tmp_path_len);
10880         }
10881       s = string + l - 1;
10882       d = rev_path + len;
10883       while (s >= string)
10884         *(d++) = *(s--);
10885       len += l;
10886
10887       widget = widget->priv->parent;
10888
10889       if (widget)
10890         rev_path[len++] = '.';
10891       else
10892         rev_path[len++] = 0;
10893     }
10894   while (widget);
10895
10896   if (path_length)
10897     *path_length = len - 1;
10898   if (path_reversed)
10899     *path_reversed = g_strdup (rev_path);
10900   if (path)
10901     {
10902       *path = g_strdup (rev_path);
10903       g_strreverse (*path);
10904     }
10905 }
10906
10907 /**
10908  * gtk_widget_class_path:
10909  * @widget: a #GtkWidget
10910  * @path_length: (out) (allow-none): location to store the length of the class path, or %NULL
10911  * @path: (out) (allow-none): location to store the class path as an allocated string, or %NULL
10912  * @path_reversed: (out) (allow-none): location to store the reverse class path as an allocated
10913  *    string, or %NULL
10914  *
10915  * Same as gtk_widget_path(), but always uses the name of a widget's type,
10916  * never uses a custom name set with gtk_widget_set_name().
10917  *
10918  **/
10919 void
10920 gtk_widget_class_path (GtkWidget *widget,
10921                        guint     *path_length,
10922                        gchar    **path,
10923                        gchar    **path_reversed)
10924 {
10925   static gchar *rev_path = NULL;
10926   static guint tmp_path_len = 0;
10927   guint len;
10928
10929   g_return_if_fail (GTK_IS_WIDGET (widget));
10930
10931   len = 0;
10932   do
10933     {
10934       const gchar *string;
10935       const gchar *s;
10936       gchar *d;
10937       guint l;
10938
10939       string = g_type_name (G_OBJECT_TYPE (widget));
10940       l = strlen (string);
10941       while (tmp_path_len <= len + l + 1)
10942         {
10943           tmp_path_len += INIT_PATH_SIZE;
10944           rev_path = g_realloc (rev_path, tmp_path_len);
10945         }
10946       s = string + l - 1;
10947       d = rev_path + len;
10948       while (s >= string)
10949         *(d++) = *(s--);
10950       len += l;
10951
10952       widget = widget->priv->parent;
10953
10954       if (widget)
10955         rev_path[len++] = '.';
10956       else
10957         rev_path[len++] = 0;
10958     }
10959   while (widget);
10960
10961   if (path_length)
10962     *path_length = len - 1;
10963   if (path_reversed)
10964     *path_reversed = g_strdup (rev_path);
10965   if (path)
10966     {
10967       *path = g_strdup (rev_path);
10968       g_strreverse (*path);
10969     }
10970 }
10971
10972 /**
10973  * gtk_requisition_new:
10974  *
10975  * Allocates a new #GtkRequisition structure and initializes its elements to zero.
10976  *
10977  * Returns: a new empty #GtkRequisition. The newly allocated #GtkRequisition should
10978  *   be freed with gtk_requisition_free().
10979  *
10980  * Since: 3.0
10981  */
10982 GtkRequisition *
10983 gtk_requisition_new (void)
10984 {
10985   return g_slice_new0 (GtkRequisition);
10986 }
10987
10988 /**
10989  * gtk_requisition_copy:
10990  * @requisition: a #GtkRequisition
10991  *
10992  * Copies a #GtkRequisition.
10993  *
10994  * Returns: a copy of @requisition
10995  **/
10996 GtkRequisition *
10997 gtk_requisition_copy (const GtkRequisition *requisition)
10998 {
10999   return g_slice_dup (GtkRequisition, requisition);
11000 }
11001
11002 /**
11003  * gtk_requisition_free:
11004  * @requisition: a #GtkRequisition
11005  *
11006  * Frees a #GtkRequisition.
11007  **/
11008 void
11009 gtk_requisition_free (GtkRequisition *requisition)
11010 {
11011   g_slice_free (GtkRequisition, requisition);
11012 }
11013
11014 G_DEFINE_BOXED_TYPE (GtkRequisition, gtk_requisition,
11015                      gtk_requisition_copy,
11016                      gtk_requisition_free)
11017
11018 /**
11019  * gtk_widget_get_accessible:
11020  * @widget: a #GtkWidget
11021  *
11022  * Returns the accessible object that describes the widget to an
11023  * assistive technology.
11024  *
11025  * If no accessibility library is loaded (i.e. no ATK implementation library is
11026  * loaded via <envar>GTK_MODULES</envar> or via another application library,
11027  * such as libgnome), then this #AtkObject instance may be a no-op. Likewise,
11028  * if no class-specific #AtkObject implementation is available for the widget
11029  * instance in question, it will inherit an #AtkObject implementation from the
11030  * first ancestor class for which such an implementation is defined.
11031  *
11032  * The documentation of the
11033  * <ulink url="http://library.gnome.org/devel/atk/stable/">ATK</ulink>
11034  * library contains more information about accessible objects and their uses.
11035  *
11036  * Returns: (transfer none): the #AtkObject associated with @widget
11037  */
11038 AtkObject*
11039 gtk_widget_get_accessible (GtkWidget *widget)
11040 {
11041   GtkWidgetClass *klass;
11042
11043   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
11044
11045   klass = GTK_WIDGET_GET_CLASS (widget);
11046
11047   g_return_val_if_fail (klass->get_accessible != NULL, NULL);
11048
11049   return klass->get_accessible (widget);
11050 }
11051
11052 static AtkObject*
11053 gtk_widget_real_get_accessible (GtkWidget *widget)
11054 {
11055   AtkObject* accessible;
11056
11057   accessible = g_object_get_qdata (G_OBJECT (widget),
11058                                    quark_accessible_object);
11059   if (!accessible)
11060   {
11061     AtkObjectFactory *factory;
11062     AtkRegistry *default_registry;
11063
11064     default_registry = atk_get_default_registry ();
11065     factory = atk_registry_get_factory (default_registry,
11066                                         G_TYPE_FROM_INSTANCE (widget));
11067     accessible =
11068       atk_object_factory_create_accessible (factory,
11069                                             G_OBJECT (widget));
11070     g_object_set_qdata (G_OBJECT (widget),
11071                         quark_accessible_object,
11072                         accessible);
11073   }
11074   return accessible;
11075 }
11076
11077 /*
11078  * Initialize a AtkImplementorIface instance's virtual pointers as
11079  * appropriate to this implementor's class (GtkWidget).
11080  */
11081 static void
11082 gtk_widget_accessible_interface_init (AtkImplementorIface *iface)
11083 {
11084   iface->ref_accessible = gtk_widget_ref_accessible;
11085 }
11086
11087 static AtkObject*
11088 gtk_widget_ref_accessible (AtkImplementor *implementor)
11089 {
11090   AtkObject *accessible;
11091
11092   accessible = gtk_widget_get_accessible (GTK_WIDGET (implementor));
11093   if (accessible)
11094     g_object_ref (accessible);
11095   return accessible;
11096 }
11097
11098 /*
11099  * Expand flag management
11100  */
11101
11102 static void
11103 gtk_widget_update_computed_expand (GtkWidget *widget)
11104 {
11105   GtkWidgetPrivate *priv;
11106
11107   priv = widget->priv;
11108
11109   if (priv->need_compute_expand)
11110     {
11111       gboolean h, v;
11112
11113       if (priv->hexpand_set)
11114         h = priv->hexpand;
11115       else
11116         h = FALSE;
11117
11118       if (priv->vexpand_set)
11119         v = priv->vexpand;
11120       else
11121         v = FALSE;
11122
11123       /* we don't need to use compute_expand if both expands are
11124        * forced by the app
11125        */
11126       if (!(priv->hexpand_set && priv->vexpand_set))
11127         {
11128           if (GTK_WIDGET_GET_CLASS (widget)->compute_expand != NULL)
11129             {
11130               gboolean ignored;
11131
11132               GTK_WIDGET_GET_CLASS (widget)->compute_expand (widget,
11133                                                              priv->hexpand_set ? &ignored : &h,
11134                                                              priv->vexpand_set ? &ignored : &v);
11135             }
11136         }
11137
11138       priv->need_compute_expand = FALSE;
11139       priv->computed_hexpand = h != FALSE;
11140       priv->computed_vexpand = v != FALSE;
11141     }
11142 }
11143
11144 /**
11145  * gtk_widget_queue_compute_expand:
11146  * @widget: a #GtkWidget
11147  *
11148  * Mark @widget as needing to recompute its expand flags. Call
11149  * this function when setting legacy expand child properties
11150  * on the child of a container.
11151  *
11152  * See gtk_widget_compute_expand().
11153  */
11154 void
11155 gtk_widget_queue_compute_expand (GtkWidget *widget)
11156 {
11157   GtkWidget *parent;
11158   gboolean changed_anything;
11159
11160   if (widget->priv->need_compute_expand)
11161     return;
11162
11163   changed_anything = FALSE;
11164   parent = widget;
11165   while (parent != NULL)
11166     {
11167       if (!parent->priv->need_compute_expand)
11168         {
11169           parent->priv->need_compute_expand = TRUE;
11170           changed_anything = TRUE;
11171         }
11172
11173       /* Note: if we had an invariant that "if a child needs to
11174        * compute expand, its parents also do" then we could stop going
11175        * up when we got to a parent that already needed to
11176        * compute. However, in general we compute expand lazily (as
11177        * soon as we see something in a subtree that is expand, we know
11178        * we're expanding) and so this invariant does not hold and we
11179        * have to always walk all the way up in case some ancestor
11180        * is not currently need_compute_expand.
11181        */
11182
11183       parent = parent->priv->parent;
11184     }
11185
11186   /* recomputing expand always requires
11187    * a relayout as well
11188    */
11189   if (changed_anything)
11190     gtk_widget_queue_resize (widget);
11191 }
11192
11193 /**
11194  * gtk_widget_compute_expand:
11195  * @widget: the widget
11196  * @orientation: expand direction
11197  *
11198  * Computes whether a container should give this widget extra space
11199  * when possible. Containers should check this, rather than
11200  * looking at gtk_widget_get_hexpand() or gtk_widget_get_vexpand().
11201  *
11202  * This function already checks whether the widget is visible, so
11203  * visibility does not need to be checked separately. Non-visible
11204  * widgets are not expanded.
11205  *
11206  * The computed expand value uses either the expand setting explicitly
11207  * set on the widget itself, or, if none has been explicitly set,
11208  * the widget may expand if some of its children do.
11209  *
11210  * Return value: whether widget tree rooted here should be expanded
11211  */
11212 gboolean
11213 gtk_widget_compute_expand (GtkWidget     *widget,
11214                            GtkOrientation orientation)
11215 {
11216   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
11217
11218   /* We never make a widget expand if not even showing. */
11219   if (!gtk_widget_get_visible (widget))
11220     return FALSE;
11221
11222   gtk_widget_update_computed_expand (widget);
11223
11224   if (orientation == GTK_ORIENTATION_HORIZONTAL)
11225     {
11226       return widget->priv->computed_hexpand;
11227     }
11228   else
11229     {
11230       return widget->priv->computed_vexpand;
11231     }
11232 }
11233
11234 static void
11235 gtk_widget_set_expand (GtkWidget     *widget,
11236                        GtkOrientation orientation,
11237                        gboolean       expand)
11238 {
11239   const char *expand_prop;
11240   const char *expand_set_prop;
11241   gboolean was_both;
11242   GtkWidgetPrivate *priv;
11243
11244   g_return_if_fail (GTK_IS_WIDGET (widget));
11245
11246   priv = widget->priv;
11247
11248   expand = expand != FALSE;
11249
11250   was_both = priv->hexpand && priv->vexpand;
11251
11252   if (orientation == GTK_ORIENTATION_HORIZONTAL)
11253     {
11254       if (priv->hexpand_set &&
11255           priv->hexpand == expand)
11256         return;
11257
11258       priv->hexpand_set = TRUE;
11259       priv->hexpand = expand;
11260
11261       expand_prop = "hexpand";
11262       expand_set_prop = "hexpand-set";
11263     }
11264   else
11265     {
11266       if (priv->vexpand_set &&
11267           priv->vexpand == expand)
11268         return;
11269
11270       priv->vexpand_set = TRUE;
11271       priv->vexpand = expand;
11272
11273       expand_prop = "vexpand";
11274       expand_set_prop = "vexpand-set";
11275     }
11276
11277   gtk_widget_queue_compute_expand (widget);
11278
11279   g_object_freeze_notify (G_OBJECT (widget));
11280   g_object_notify (G_OBJECT (widget), expand_prop);
11281   g_object_notify (G_OBJECT (widget), expand_set_prop);
11282   if (was_both != (priv->hexpand && priv->vexpand))
11283     g_object_notify (G_OBJECT (widget), "expand");
11284   g_object_thaw_notify (G_OBJECT (widget));
11285 }
11286
11287 static void
11288 gtk_widget_set_expand_set (GtkWidget      *widget,
11289                            GtkOrientation  orientation,
11290                            gboolean        set)
11291 {
11292   GtkWidgetPrivate *priv;
11293   const char *prop;
11294
11295   priv = widget->priv;
11296
11297   set = set != FALSE;
11298
11299   if (orientation == GTK_ORIENTATION_HORIZONTAL)
11300     {
11301       if (set == priv->hexpand_set)
11302         return;
11303
11304       priv->hexpand_set = set;
11305       prop = "hexpand-set";
11306     }
11307   else
11308     {
11309       if (set == priv->vexpand_set)
11310         return;
11311
11312       priv->vexpand_set = set;
11313       prop = "vexpand-set";
11314     }
11315
11316   gtk_widget_queue_compute_expand (widget);
11317
11318   g_object_notify (G_OBJECT (widget), prop);
11319 }
11320
11321 /**
11322  * gtk_widget_get_hexpand:
11323  * @widget: the widget
11324  *
11325  * Gets whether the widget would like any available extra horizontal
11326  * space. When a user resizes a #GtkWindow, widgets with expand=TRUE
11327  * generally receive the extra space. For example, a list or
11328  * scrollable area or document in your window would often be set to
11329  * expand.
11330  *
11331  * Containers should use gtk_widget_compute_expand() rather than
11332  * this function, to see whether a widget, or any of its children,
11333  * has the expand flag set. If any child of a widget wants to
11334  * expand, the parent may ask to expand also.
11335  *
11336  * This function only looks at the widget's own hexpand flag, rather
11337  * than computing whether the entire widget tree rooted at this widget
11338  * wants to expand.
11339  *
11340  * Return value: whether hexpand flag is set
11341  */
11342 gboolean
11343 gtk_widget_get_hexpand (GtkWidget *widget)
11344 {
11345   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
11346
11347   return widget->priv->hexpand;
11348 }
11349
11350 /**
11351  * gtk_widget_set_hexpand:
11352  * @widget: the widget
11353  * @expand: whether to expand
11354  *
11355  * Sets whether the widget would like any available extra horizontal
11356  * space. When a user resizes a #GtkWindow, widgets with expand=TRUE
11357  * generally receive the extra space. For example, a list or
11358  * scrollable area or document in your window would often be set to
11359  * expand.
11360  *
11361  * Call this function to set the expand flag if you would like your
11362  * widget to become larger horizontally when the window has extra
11363  * room.
11364  *
11365  * By default, widgets automatically expand if any of their children
11366  * want to expand. (To see if a widget will automatically expand given
11367  * its current children and state, call gtk_widget_compute_expand(). A
11368  * container can decide how the expandability of children affects the
11369  * expansion of the container by overriding the compute_expand virtual
11370  * method on #GtkWidget.).
11371  *
11372  * Setting hexpand explicitly with this function will override the
11373  * automatic expand behavior.
11374  *
11375  * This function forces the widget to expand or not to expand,
11376  * regardless of children.  The override occurs because
11377  * gtk_widget_set_hexpand() sets the hexpand-set property (see
11378  * gtk_widget_set_hexpand_set()) which causes the widget's hexpand
11379  * value to be used, rather than looking at children and widget state.
11380  */
11381 void
11382 gtk_widget_set_hexpand (GtkWidget      *widget,
11383                         gboolean        expand)
11384 {
11385   g_return_if_fail (GTK_IS_WIDGET (widget));
11386
11387   gtk_widget_set_expand (widget, GTK_ORIENTATION_HORIZONTAL, expand);
11388 }
11389
11390 /**
11391  * gtk_widget_get_hexpand_set:
11392  * @widget: the widget
11393  *
11394  * Gets whether gtk_widget_set_hexpand() has been used to
11395  * explicitly set the expand flag on this widget.
11396  *
11397  * If hexpand is set, then it overrides any computed
11398  * expand value based on child widgets. If hexpand is not
11399  * set, then the expand value depends on whether any
11400  * children of the widget would like to expand.
11401  *
11402  * There are few reasons to use this function, but it's here
11403  * for completeness and consistency.
11404  *
11405  * Return value: whether hexpand has been explicitly set
11406  */
11407 gboolean
11408 gtk_widget_get_hexpand_set (GtkWidget      *widget)
11409 {
11410   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
11411
11412   return widget->priv->hexpand_set;
11413 }
11414
11415 /**
11416  * gtk_widget_set_hexpand_set:
11417  * @widget: the widget
11418  * @set: value for hexpand-set property
11419  *
11420  * Sets whether the hexpand flag (see gtk_widget_get_hexpand()) will
11421  * be used.
11422  *
11423  * The hexpand-set property will be set automatically when you call
11424  * gtk_widget_set_hexpand() to set hexpand, so the most likely
11425  * reason to use this function would be to unset an explicit expand
11426  * flag.
11427  *
11428  * If hexpand is set, then it overrides any computed
11429  * expand value based on child widgets. If hexpand is not
11430  * set, then the expand value depends on whether any
11431  * children of the widget would like to expand.
11432  *
11433  * There are few reasons to use this function, but it's here
11434  * for completeness and consistency.
11435  *
11436  * Return value: whether hexpand has been explicitly set
11437  */
11438 void
11439 gtk_widget_set_hexpand_set (GtkWidget      *widget,
11440                             gboolean        set)
11441 {
11442   g_return_if_fail (GTK_IS_WIDGET (widget));
11443
11444   gtk_widget_set_expand_set (widget, GTK_ORIENTATION_HORIZONTAL, set);
11445 }
11446
11447
11448 /**
11449  * gtk_widget_get_vexpand:
11450  * @widget: the widget
11451  *
11452  * Gets whether the widget would like any available extra vertical
11453  * space.
11454  *
11455  * See gtk_widget_get_hexpand() for more detail.
11456  *
11457  * Return value: whether vexpand flag is set
11458  */
11459 gboolean
11460 gtk_widget_get_vexpand (GtkWidget *widget)
11461 {
11462   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
11463
11464   return widget->priv->vexpand;
11465 }
11466
11467 /**
11468  * gtk_widget_set_vexpand:
11469  * @widget: the widget
11470  * @expand: whether to expand
11471  *
11472  * Sets whether the widget would like any available extra vertical
11473  * space.
11474  *
11475  * See gtk_widget_set_hexpand() for more detail.
11476  */
11477 void
11478 gtk_widget_set_vexpand (GtkWidget      *widget,
11479                         gboolean        expand)
11480 {
11481   g_return_if_fail (GTK_IS_WIDGET (widget));
11482
11483   gtk_widget_set_expand (widget, GTK_ORIENTATION_VERTICAL, expand);
11484 }
11485
11486 /**
11487  * gtk_widget_get_vexpand_set:
11488  * @widget: the widget
11489  *
11490  * Gets whether gtk_widget_set_vexpand() has been used to
11491  * explicitly set the expand flag on this widget.
11492  *
11493  * See gtk_widget_get_hexpand_set() for more detail.
11494  *
11495  * Return value: whether vexpand has been explicitly set
11496  */
11497 gboolean
11498 gtk_widget_get_vexpand_set (GtkWidget      *widget)
11499 {
11500   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
11501
11502   return widget->priv->vexpand_set;
11503 }
11504
11505 /**
11506  * gtk_widget_set_vexpand_set:
11507  * @widget: the widget
11508  * @set: value for vexpand-set property
11509  *
11510  * Sets whether the vexpand flag (see gtk_widget_get_vexpand()) will
11511  * be used.
11512  *
11513  * See gtk_widget_set_hexpand_set() for more detail.
11514  *
11515  * Return value: whether vexpand has been explicitly set
11516  */
11517 void
11518 gtk_widget_set_vexpand_set (GtkWidget      *widget,
11519                             gboolean        set)
11520 {
11521   g_return_if_fail (GTK_IS_WIDGET (widget));
11522
11523   gtk_widget_set_expand_set (widget, GTK_ORIENTATION_VERTICAL, set);
11524 }
11525
11526 /*
11527  * GtkBuildable implementation
11528  */
11529 static GQuark            quark_builder_has_default = 0;
11530 static GQuark            quark_builder_has_focus = 0;
11531 static GQuark            quark_builder_atk_relations = 0;
11532 static GQuark            quark_builder_set_name = 0;
11533
11534 static void
11535 gtk_widget_buildable_interface_init (GtkBuildableIface *iface)
11536 {
11537   quark_builder_has_default = g_quark_from_static_string ("gtk-builder-has-default");
11538   quark_builder_has_focus = g_quark_from_static_string ("gtk-builder-has-focus");
11539   quark_builder_atk_relations = g_quark_from_static_string ("gtk-builder-atk-relations");
11540   quark_builder_set_name = g_quark_from_static_string ("gtk-builder-set-name");
11541
11542   iface->set_name = gtk_widget_buildable_set_name;
11543   iface->get_name = gtk_widget_buildable_get_name;
11544   iface->get_internal_child = gtk_widget_buildable_get_internal_child;
11545   iface->set_buildable_property = gtk_widget_buildable_set_buildable_property;
11546   iface->parser_finished = gtk_widget_buildable_parser_finished;
11547   iface->custom_tag_start = gtk_widget_buildable_custom_tag_start;
11548   iface->custom_finished = gtk_widget_buildable_custom_finished;
11549 }
11550
11551 static void
11552 gtk_widget_buildable_set_name (GtkBuildable *buildable,
11553                                const gchar  *name)
11554 {
11555   g_object_set_qdata_full (G_OBJECT (buildable), quark_builder_set_name,
11556                            g_strdup (name), g_free);
11557 }
11558
11559 static const gchar *
11560 gtk_widget_buildable_get_name (GtkBuildable *buildable)
11561 {
11562   return g_object_get_qdata (G_OBJECT (buildable), quark_builder_set_name);
11563 }
11564
11565 static GObject *
11566 gtk_widget_buildable_get_internal_child (GtkBuildable *buildable,
11567                                          GtkBuilder   *builder,
11568                                          const gchar  *childname)
11569 {
11570   if (strcmp (childname, "accessible") == 0)
11571     return G_OBJECT (gtk_widget_get_accessible (GTK_WIDGET (buildable)));
11572
11573   return NULL;
11574 }
11575
11576 static void
11577 gtk_widget_buildable_set_buildable_property (GtkBuildable *buildable,
11578                                              GtkBuilder   *builder,
11579                                              const gchar  *name,
11580                                              const GValue *value)
11581 {
11582   if (strcmp (name, "has-default") == 0 && g_value_get_boolean (value))
11583       g_object_set_qdata (G_OBJECT (buildable), quark_builder_has_default,
11584                           GINT_TO_POINTER (TRUE));
11585   else if (strcmp (name, "has-focus") == 0 && g_value_get_boolean (value))
11586       g_object_set_qdata (G_OBJECT (buildable), quark_builder_has_focus,
11587                           GINT_TO_POINTER (TRUE));
11588   else
11589     g_object_set_property (G_OBJECT (buildable), name, value);
11590 }
11591
11592 typedef struct
11593 {
11594   gchar *action_name;
11595   GString *description;
11596   gchar *context;
11597   gboolean translatable;
11598 } AtkActionData;
11599
11600 typedef struct
11601 {
11602   gchar *target;
11603   gchar *type;
11604 } AtkRelationData;
11605
11606 static void
11607 free_action (AtkActionData *data, gpointer user_data)
11608 {
11609   g_free (data->action_name);
11610   g_string_free (data->description, TRUE);
11611   g_free (data->context);
11612   g_slice_free (AtkActionData, data);
11613 }
11614
11615 static void
11616 free_relation (AtkRelationData *data, gpointer user_data)
11617 {
11618   g_free (data->target);
11619   g_free (data->type);
11620   g_slice_free (AtkRelationData, data);
11621 }
11622
11623 static void
11624 gtk_widget_buildable_parser_finished (GtkBuildable *buildable,
11625                                       GtkBuilder   *builder)
11626 {
11627   GSList *atk_relations;
11628
11629   if (g_object_get_qdata (G_OBJECT (buildable), quark_builder_has_default))
11630     gtk_widget_grab_default (GTK_WIDGET (buildable));
11631   if (g_object_get_qdata (G_OBJECT (buildable), quark_builder_has_focus))
11632     gtk_widget_grab_focus (GTK_WIDGET (buildable));
11633
11634   atk_relations = g_object_get_qdata (G_OBJECT (buildable),
11635                                       quark_builder_atk_relations);
11636   if (atk_relations)
11637     {
11638       AtkObject *accessible;
11639       AtkRelationSet *relation_set;
11640       GSList *l;
11641       GObject *target;
11642       AtkRelationType relation_type;
11643       AtkObject *target_accessible;
11644
11645       accessible = gtk_widget_get_accessible (GTK_WIDGET (buildable));
11646       relation_set = atk_object_ref_relation_set (accessible);
11647
11648       for (l = atk_relations; l; l = l->next)
11649         {
11650           AtkRelationData *relation = (AtkRelationData*)l->data;
11651
11652           target = gtk_builder_get_object (builder, relation->target);
11653           if (!target)
11654             {
11655               g_warning ("Target object %s in <relation> does not exist",
11656                          relation->target);
11657               continue;
11658             }
11659           target_accessible = gtk_widget_get_accessible (GTK_WIDGET (target));
11660           g_assert (target_accessible != NULL);
11661
11662           relation_type = atk_relation_type_for_name (relation->type);
11663           if (relation_type == ATK_RELATION_NULL)
11664             {
11665               g_warning ("<relation> type %s not found",
11666                          relation->type);
11667               continue;
11668             }
11669           atk_relation_set_add_relation_by_type (relation_set, relation_type,
11670                                                  target_accessible);
11671         }
11672       g_object_unref (relation_set);
11673
11674       g_slist_foreach (atk_relations, (GFunc)free_relation, NULL);
11675       g_slist_free (atk_relations);
11676       g_object_set_qdata (G_OBJECT (buildable), quark_builder_atk_relations,
11677                           NULL);
11678     }
11679 }
11680
11681 typedef struct
11682 {
11683   GSList *actions;
11684   GSList *relations;
11685 } AccessibilitySubParserData;
11686
11687 static void
11688 accessibility_start_element (GMarkupParseContext  *context,
11689                              const gchar          *element_name,
11690                              const gchar         **names,
11691                              const gchar         **values,
11692                              gpointer              user_data,
11693                              GError              **error)
11694 {
11695   AccessibilitySubParserData *data = (AccessibilitySubParserData*)user_data;
11696   guint i;
11697   gint line_number, char_number;
11698
11699   if (strcmp (element_name, "relation") == 0)
11700     {
11701       gchar *target = NULL;
11702       gchar *type = NULL;
11703       AtkRelationData *relation;
11704
11705       for (i = 0; names[i]; i++)
11706         {
11707           if (strcmp (names[i], "target") == 0)
11708             target = g_strdup (values[i]);
11709           else if (strcmp (names[i], "type") == 0)
11710             type = g_strdup (values[i]);
11711           else
11712             {
11713               g_markup_parse_context_get_position (context,
11714                                                    &line_number,
11715                                                    &char_number);
11716               g_set_error (error,
11717                            GTK_BUILDER_ERROR,
11718                            GTK_BUILDER_ERROR_INVALID_ATTRIBUTE,
11719                            "%s:%d:%d '%s' is not a valid attribute of <%s>",
11720                            "<input>",
11721                            line_number, char_number, names[i], "relation");
11722               g_free (target);
11723               g_free (type);
11724               return;
11725             }
11726         }
11727
11728       if (!target || !type)
11729         {
11730           g_markup_parse_context_get_position (context,
11731                                                &line_number,
11732                                                &char_number);
11733           g_set_error (error,
11734                        GTK_BUILDER_ERROR,
11735                        GTK_BUILDER_ERROR_MISSING_ATTRIBUTE,
11736                        "%s:%d:%d <%s> requires attribute \"%s\"",
11737                        "<input>",
11738                        line_number, char_number, "relation",
11739                        type ? "target" : "type");
11740           g_free (target);
11741           g_free (type);
11742           return;
11743         }
11744
11745       relation = g_slice_new (AtkRelationData);
11746       relation->target = target;
11747       relation->type = type;
11748
11749       data->relations = g_slist_prepend (data->relations, relation);
11750     }
11751   else if (strcmp (element_name, "action") == 0)
11752     {
11753       const gchar *action_name = NULL;
11754       const gchar *description = NULL;
11755       const gchar *msg_context = NULL;
11756       gboolean translatable = FALSE;
11757       AtkActionData *action;
11758
11759       for (i = 0; names[i]; i++)
11760         {
11761           if (strcmp (names[i], "action_name") == 0)
11762             action_name = values[i];
11763           else if (strcmp (names[i], "description") == 0)
11764             description = values[i];
11765           else if (strcmp (names[i], "translatable") == 0)
11766             {
11767               if (!_gtk_builder_boolean_from_string (values[i], &translatable, error))
11768                 return;
11769             }
11770           else if (strcmp (names[i], "comments") == 0)
11771             {
11772               /* do nothing, comments are for translators */
11773             }
11774           else if (strcmp (names[i], "context") == 0)
11775             msg_context = values[i];
11776           else
11777             {
11778               g_markup_parse_context_get_position (context,
11779                                                    &line_number,
11780                                                    &char_number);
11781               g_set_error (error,
11782                            GTK_BUILDER_ERROR,
11783                            GTK_BUILDER_ERROR_INVALID_ATTRIBUTE,
11784                            "%s:%d:%d '%s' is not a valid attribute of <%s>",
11785                            "<input>",
11786                            line_number, char_number, names[i], "action");
11787               return;
11788             }
11789         }
11790
11791       if (!action_name)
11792         {
11793           g_markup_parse_context_get_position (context,
11794                                                &line_number,
11795                                                &char_number);
11796           g_set_error (error,
11797                        GTK_BUILDER_ERROR,
11798                        GTK_BUILDER_ERROR_MISSING_ATTRIBUTE,
11799                        "%s:%d:%d <%s> requires attribute \"%s\"",
11800                        "<input>",
11801                        line_number, char_number, "action",
11802                        "action_name");
11803           return;
11804         }
11805
11806       action = g_slice_new (AtkActionData);
11807       action->action_name = g_strdup (action_name);
11808       action->description = g_string_new (description);
11809       action->context = g_strdup (msg_context);
11810       action->translatable = translatable;
11811
11812       data->actions = g_slist_prepend (data->actions, action);
11813     }
11814   else if (strcmp (element_name, "accessibility") == 0)
11815     ;
11816   else
11817     g_warning ("Unsupported tag for GtkWidget: %s\n", element_name);
11818 }
11819
11820 static void
11821 accessibility_text (GMarkupParseContext  *context,
11822                     const gchar          *text,
11823                     gsize                 text_len,
11824                     gpointer              user_data,
11825                     GError              **error)
11826 {
11827   AccessibilitySubParserData *data = (AccessibilitySubParserData*)user_data;
11828
11829   if (strcmp (g_markup_parse_context_get_element (context), "action") == 0)
11830     {
11831       AtkActionData *action = data->actions->data;
11832
11833       g_string_append_len (action->description, text, text_len);
11834     }
11835 }
11836
11837 static const GMarkupParser accessibility_parser =
11838   {
11839     accessibility_start_element,
11840     NULL,
11841     accessibility_text,
11842   };
11843
11844 typedef struct
11845 {
11846   GObject *object;
11847   guint    key;
11848   guint    modifiers;
11849   gchar   *signal;
11850 } AccelGroupParserData;
11851
11852 static void
11853 accel_group_start_element (GMarkupParseContext  *context,
11854                            const gchar          *element_name,
11855                            const gchar         **names,
11856                            const gchar         **values,
11857                            gpointer              user_data,
11858                            GError              **error)
11859 {
11860   gint i;
11861   guint key = 0;
11862   guint modifiers = 0;
11863   gchar *signal = NULL;
11864   AccelGroupParserData *parser_data = (AccelGroupParserData*)user_data;
11865
11866   for (i = 0; names[i]; i++)
11867     {
11868       if (strcmp (names[i], "key") == 0)
11869         key = gdk_keyval_from_name (values[i]);
11870       else if (strcmp (names[i], "modifiers") == 0)
11871         {
11872           if (!_gtk_builder_flags_from_string (GDK_TYPE_MODIFIER_TYPE,
11873                                                values[i],
11874                                                &modifiers,
11875                                                error))
11876               return;
11877         }
11878       else if (strcmp (names[i], "signal") == 0)
11879         signal = g_strdup (values[i]);
11880     }
11881
11882   if (key == 0 || signal == NULL)
11883     {
11884       g_warning ("<accelerator> requires key and signal attributes");
11885       return;
11886     }
11887   parser_data->key = key;
11888   parser_data->modifiers = modifiers;
11889   parser_data->signal = signal;
11890 }
11891
11892 static const GMarkupParser accel_group_parser =
11893   {
11894     accel_group_start_element,
11895   };
11896
11897 static gboolean
11898 gtk_widget_buildable_custom_tag_start (GtkBuildable     *buildable,
11899                                        GtkBuilder       *builder,
11900                                        GObject          *child,
11901                                        const gchar      *tagname,
11902                                        GMarkupParser    *parser,
11903                                        gpointer         *data)
11904 {
11905   g_assert (buildable);
11906
11907   if (strcmp (tagname, "accelerator") == 0)
11908     {
11909       AccelGroupParserData *parser_data;
11910
11911       parser_data = g_slice_new0 (AccelGroupParserData);
11912       parser_data->object = g_object_ref (buildable);
11913       *parser = accel_group_parser;
11914       *data = parser_data;
11915       return TRUE;
11916     }
11917   if (strcmp (tagname, "accessibility") == 0)
11918     {
11919       AccessibilitySubParserData *parser_data;
11920
11921       parser_data = g_slice_new0 (AccessibilitySubParserData);
11922       *parser = accessibility_parser;
11923       *data = parser_data;
11924       return TRUE;
11925     }
11926   return FALSE;
11927 }
11928
11929 void
11930 _gtk_widget_buildable_finish_accelerator (GtkWidget *widget,
11931                                           GtkWidget *toplevel,
11932                                           gpointer   user_data)
11933 {
11934   AccelGroupParserData *accel_data;
11935   GSList *accel_groups;
11936   GtkAccelGroup *accel_group;
11937
11938   g_return_if_fail (GTK_IS_WIDGET (widget));
11939   g_return_if_fail (GTK_IS_WIDGET (toplevel));
11940   g_return_if_fail (user_data != NULL);
11941
11942   accel_data = (AccelGroupParserData*)user_data;
11943   accel_groups = gtk_accel_groups_from_object (G_OBJECT (toplevel));
11944   if (g_slist_length (accel_groups) == 0)
11945     {
11946       accel_group = gtk_accel_group_new ();
11947       gtk_window_add_accel_group (GTK_WINDOW (toplevel), accel_group);
11948     }
11949   else
11950     {
11951       g_assert (g_slist_length (accel_groups) == 1);
11952       accel_group = g_slist_nth_data (accel_groups, 0);
11953     }
11954
11955   gtk_widget_add_accelerator (GTK_WIDGET (accel_data->object),
11956                               accel_data->signal,
11957                               accel_group,
11958                               accel_data->key,
11959                               accel_data->modifiers,
11960                               GTK_ACCEL_VISIBLE);
11961
11962   g_object_unref (accel_data->object);
11963   g_free (accel_data->signal);
11964   g_slice_free (AccelGroupParserData, accel_data);
11965 }
11966
11967 static void
11968 gtk_widget_buildable_custom_finished (GtkBuildable *buildable,
11969                                       GtkBuilder   *builder,
11970                                       GObject      *child,
11971                                       const gchar  *tagname,
11972                                       gpointer      user_data)
11973 {
11974   AccelGroupParserData *accel_data;
11975   AccessibilitySubParserData *a11y_data;
11976   GtkWidget *toplevel;
11977
11978   if (strcmp (tagname, "accelerator") == 0)
11979     {
11980       accel_data = (AccelGroupParserData*)user_data;
11981       g_assert (accel_data->object);
11982
11983       toplevel = gtk_widget_get_toplevel (GTK_WIDGET (accel_data->object));
11984
11985       _gtk_widget_buildable_finish_accelerator (GTK_WIDGET (buildable), toplevel, user_data);
11986     }
11987   else if (strcmp (tagname, "accessibility") == 0)
11988     {
11989       a11y_data = (AccessibilitySubParserData*)user_data;
11990
11991       if (a11y_data->actions)
11992         {
11993           AtkObject *accessible;
11994           AtkAction *action;
11995           gint i, n_actions;
11996           GSList *l;
11997
11998           accessible = gtk_widget_get_accessible (GTK_WIDGET (buildable));
11999
12000           action = ATK_ACTION (accessible);
12001           n_actions = atk_action_get_n_actions (action);
12002
12003           for (l = a11y_data->actions; l; l = l->next)
12004             {
12005               AtkActionData *action_data = (AtkActionData*)l->data;
12006
12007               for (i = 0; i < n_actions; i++)
12008                 if (strcmp (atk_action_get_name (action, i),
12009                             action_data->action_name) == 0)
12010                   break;
12011
12012               if (i < n_actions)
12013                 {
12014                   gchar *description;
12015
12016                   if (action_data->translatable && action_data->description->len)
12017                     description = _gtk_builder_parser_translate (gtk_builder_get_translation_domain (builder),
12018                                                                  action_data->context,
12019                                                                  action_data->description->str);
12020                   else
12021                     description = action_data->description->str;
12022
12023                   atk_action_set_description (action, i, description);
12024                 }
12025             }
12026
12027           g_slist_foreach (a11y_data->actions, (GFunc)free_action, NULL);
12028           g_slist_free (a11y_data->actions);
12029         }
12030
12031       if (a11y_data->relations)
12032         g_object_set_qdata (G_OBJECT (buildable), quark_builder_atk_relations,
12033                             a11y_data->relations);
12034
12035       g_slice_free (AccessibilitySubParserData, a11y_data);
12036     }
12037 }
12038
12039 static void
12040 gtk_widget_real_get_width (GtkWidget *widget,
12041                            gint      *minimum_size,
12042                            gint      *natural_size)
12043 {
12044   if (minimum_size)
12045     *minimum_size = 0;
12046
12047   if (natural_size)
12048     *natural_size = 0;
12049 }
12050
12051 static void
12052 gtk_widget_real_get_height (GtkWidget *widget,
12053                             gint      *minimum_size,
12054                             gint      *natural_size)
12055 {
12056   if (minimum_size)
12057     *minimum_size = 0;
12058
12059   if (natural_size)
12060     *natural_size = 0;
12061 }
12062
12063 static void
12064 gtk_widget_real_get_height_for_width (GtkWidget *widget,
12065                                       gint       width,
12066                                       gint      *minimum_height,
12067                                       gint      *natural_height)
12068 {
12069   GTK_WIDGET_GET_CLASS (widget)->get_preferred_height (widget, minimum_height, natural_height);
12070 }
12071
12072 static void
12073 gtk_widget_real_get_width_for_height (GtkWidget *widget,
12074                                       gint       height,
12075                                       gint      *minimum_width,
12076                                       gint      *natural_width)
12077 {
12078   GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, minimum_width, natural_width);
12079 }
12080
12081 /**
12082  * gtk_widget_get_halign:
12083  * @widget: a #GtkWidget
12084  *
12085  * Gets the value of the #GtkWidget:halign property.
12086  *
12087  * Returns: the horizontal alignment of @widget
12088  */
12089 GtkAlign
12090 gtk_widget_get_halign (GtkWidget *widget)
12091 {
12092   g_return_val_if_fail (GTK_IS_WIDGET (widget), GTK_ALIGN_FILL);
12093   return _gtk_widget_get_aux_info_or_defaults (widget)->halign;
12094 }
12095
12096 /**
12097  * gtk_widget_set_halign:
12098  * @widget: a #GtkWidget
12099  * @align: the horizontal alignment
12100  *
12101  * Sets the horizontal alignment of @widget.
12102  * See the #GtkWidget:halign property.
12103  */
12104 void
12105 gtk_widget_set_halign (GtkWidget *widget,
12106                        GtkAlign   align)
12107 {
12108   GtkWidgetAuxInfo *aux_info;
12109
12110   g_return_if_fail (GTK_IS_WIDGET (widget));
12111
12112   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
12113
12114   if (aux_info->halign == align)
12115     return;
12116
12117   aux_info->halign = align;
12118   gtk_widget_queue_resize (widget);
12119   g_object_notify (G_OBJECT (widget), "halign");
12120 }
12121
12122 /**
12123  * gtk_widget_get_valign:
12124  * @widget: a #GtkWidget
12125  *
12126  * Gets the value of the #GtkWidget:valign property.
12127  *
12128  * Returns: the vertical alignment of @widget
12129  */
12130 GtkAlign
12131 gtk_widget_get_valign (GtkWidget *widget)
12132 {
12133   g_return_val_if_fail (GTK_IS_WIDGET (widget), GTK_ALIGN_FILL);
12134   return _gtk_widget_get_aux_info_or_defaults (widget)->valign;
12135 }
12136
12137 /**
12138  * gtk_widget_set_valign:
12139  * @widget: a #GtkWidget
12140  * @align: the vertical alignment
12141  *
12142  * Sets the vertical alignment of @widget.
12143  * See the #GtkWidget:valign property.
12144  */
12145 void
12146 gtk_widget_set_valign (GtkWidget *widget,
12147                        GtkAlign   align)
12148 {
12149   GtkWidgetAuxInfo *aux_info;
12150
12151   g_return_if_fail (GTK_IS_WIDGET (widget));
12152
12153   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
12154
12155   if (aux_info->valign == align)
12156     return;
12157
12158   aux_info->valign = align;
12159   gtk_widget_queue_resize (widget);
12160   g_object_notify (G_OBJECT (widget), "valign");
12161 }
12162
12163 /**
12164  * gtk_widget_get_margin_left:
12165  * @widget: a #GtkWidget
12166  *
12167  * Gets the value of the #GtkWidget:margin-left property.
12168  *
12169  * Returns: The left margin of @widget
12170  */
12171 gint
12172 gtk_widget_get_margin_left (GtkWidget *widget)
12173 {
12174   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
12175
12176   return _gtk_widget_get_aux_info_or_defaults (widget)->margin.left;
12177 }
12178
12179 /**
12180  * gtk_widget_set_margin_left:
12181  * @widget: a #GtkWidget
12182  * @margin: the left margin
12183  *
12184  * Sets the left margin of @widget.
12185  * See the #GtkWidget:margin-left property.
12186  */
12187 void
12188 gtk_widget_set_margin_left (GtkWidget *widget,
12189                             gint       margin)
12190 {
12191   GtkWidgetAuxInfo *aux_info;
12192
12193   g_return_if_fail (GTK_IS_WIDGET (widget));
12194   g_return_if_fail (margin <= G_MAXINT16);
12195
12196   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
12197
12198   if (aux_info->margin.left == margin)
12199     return;
12200
12201   aux_info->margin.left = margin;
12202   gtk_widget_queue_resize (widget);
12203   g_object_notify (G_OBJECT (widget), "margin-left");
12204 }
12205
12206 /**
12207  * gtk_widget_get_margin_right:
12208  * @widget: a #GtkWidget
12209  *
12210  * Gets the value of the #GtkWidget:margin-right property.
12211  *
12212  * Returns: The left margin of @widget
12213  */
12214 gint
12215 gtk_widget_get_margin_right (GtkWidget *widget)
12216 {
12217   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
12218
12219   return _gtk_widget_get_aux_info_or_defaults (widget)->margin.right;
12220 }
12221
12222 /**
12223  * gtk_widget_set_margin_right:
12224  * @widget: a #GtkWidget
12225  * @margin: the right margin
12226  *
12227  * Sets the right margin of @widget.
12228  * See the #GtkWidget:margin-right property.
12229  */
12230 void
12231 gtk_widget_set_margin_right (GtkWidget *widget,
12232                              gint       margin)
12233 {
12234   GtkWidgetAuxInfo *aux_info;
12235
12236   g_return_if_fail (GTK_IS_WIDGET (widget));
12237   g_return_if_fail (margin <= G_MAXINT16);
12238
12239   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
12240
12241   if (aux_info->margin.right == margin)
12242     return;
12243
12244   aux_info->margin.right = margin;
12245   gtk_widget_queue_resize (widget);
12246   g_object_notify (G_OBJECT (widget), "margin-right");
12247 }
12248
12249 /**
12250  * gtk_widget_get_margin_top:
12251  * @widget: a #GtkWidget
12252  *
12253  * Gets the value of the #GtkWidget:margin-top property.
12254  *
12255  * Returns: The top margin of @widget
12256  */
12257 gint
12258 gtk_widget_get_margin_top (GtkWidget *widget)
12259 {
12260   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
12261
12262   return _gtk_widget_get_aux_info_or_defaults (widget)->margin.top;
12263 }
12264
12265 /**
12266  * gtk_widget_set_margin_top:
12267  * @widget: a #GtkWidget
12268  * @margin: the top margin
12269  *
12270  * Sets the top margin of @widget.
12271  * See the #GtkWidget:margin-top property.
12272  */
12273 void
12274 gtk_widget_set_margin_top (GtkWidget *widget,
12275                            gint       margin)
12276 {
12277   GtkWidgetAuxInfo *aux_info;
12278
12279   g_return_if_fail (GTK_IS_WIDGET (widget));
12280   g_return_if_fail (margin <= G_MAXINT16);
12281
12282   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
12283
12284   if (aux_info->margin.top == margin)
12285     return;
12286
12287   aux_info->margin.top = margin;
12288   gtk_widget_queue_resize (widget);
12289   g_object_notify (G_OBJECT (widget), "margin-top");
12290 }
12291
12292 /**
12293  * gtk_widget_get_margin_bottom:
12294  * @widget: a #GtkWidget
12295  *
12296  * Gets the value of the #GtkWidget:margin-bottom property.
12297  *
12298  * Returns: The bottom margin of @widget
12299  */
12300 gint
12301 gtk_widget_get_margin_bottom (GtkWidget *widget)
12302 {
12303   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
12304
12305   return _gtk_widget_get_aux_info_or_defaults (widget)->margin.bottom;
12306 }
12307
12308 /**
12309  * gtk_widget_set_margin_bottom:
12310  * @widget: a #GtkWidget
12311  * @margin: the bottom margin
12312  *
12313  * Sets the bottom margin of @widget.
12314  * See the #GtkWidget:margin-bottom property.
12315  */
12316 void
12317 gtk_widget_set_margin_bottom (GtkWidget *widget,
12318                               gint       margin)
12319 {
12320   GtkWidgetAuxInfo *aux_info;
12321
12322   g_return_if_fail (GTK_IS_WIDGET (widget));
12323   g_return_if_fail (margin <= G_MAXINT16);
12324
12325   aux_info = _gtk_widget_get_aux_info (widget, TRUE);
12326
12327   if (aux_info->margin.bottom == margin)
12328     return;
12329
12330   aux_info->margin.bottom = margin;
12331   gtk_widget_queue_resize (widget);
12332   g_object_notify (G_OBJECT (widget), "margin-bottom");
12333 }
12334
12335 /**
12336  * gtk_widget_get_clipboard:
12337  * @widget: a #GtkWidget
12338  * @selection: a #GdkAtom which identifies the clipboard
12339  *             to use. %GDK_SELECTION_CLIPBOARD gives the
12340  *             default clipboard. Another common value
12341  *             is %GDK_SELECTION_PRIMARY, which gives
12342  *             the primary X selection.
12343  *
12344  * Returns the clipboard object for the given selection to
12345  * be used with @widget. @widget must have a #GdkDisplay
12346  * associated with it, so must be attached to a toplevel
12347  * window.
12348  *
12349  * Return value: (transfer none): the appropriate clipboard object. If no
12350  *             clipboard already exists, a new one will
12351  *             be created. Once a clipboard object has
12352  *             been created, it is persistent for all time.
12353  *
12354  * Since: 2.2
12355  **/
12356 GtkClipboard *
12357 gtk_widget_get_clipboard (GtkWidget *widget, GdkAtom selection)
12358 {
12359   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
12360   g_return_val_if_fail (gtk_widget_has_screen (widget), NULL);
12361
12362   return gtk_clipboard_get_for_display (gtk_widget_get_display (widget),
12363                                         selection);
12364 }
12365
12366 /**
12367  * gtk_widget_list_mnemonic_labels:
12368  * @widget: a #GtkWidget
12369  *
12370  * Returns a newly allocated list of the widgets, normally labels, for
12371  * which this widget is the target of a mnemonic (see for example,
12372  * gtk_label_set_mnemonic_widget()).
12373
12374  * The widgets in the list are not individually referenced. If you
12375  * want to iterate through the list and perform actions involving
12376  * callbacks that might destroy the widgets, you
12377  * <emphasis>must</emphasis> call <literal>g_list_foreach (result,
12378  * (GFunc)g_object_ref, NULL)</literal> first, and then unref all the
12379  * widgets afterwards.
12380
12381  * Return value: (element-type GtkWidget) (transfer container): the list of
12382  *  mnemonic labels; free this list
12383  *  with g_list_free() when you are done with it.
12384  *
12385  * Since: 2.4
12386  **/
12387 GList *
12388 gtk_widget_list_mnemonic_labels (GtkWidget *widget)
12389 {
12390   GList *list = NULL;
12391   GSList *l;
12392
12393   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
12394
12395   for (l = g_object_get_qdata (G_OBJECT (widget), quark_mnemonic_labels); l; l = l->next)
12396     list = g_list_prepend (list, l->data);
12397
12398   return list;
12399 }
12400
12401 /**
12402  * gtk_widget_add_mnemonic_label:
12403  * @widget: a #GtkWidget
12404  * @label: a #GtkWidget that acts as a mnemonic label for @widget
12405  *
12406  * Adds a widget to the list of mnemonic labels for
12407  * this widget. (See gtk_widget_list_mnemonic_labels()). Note the
12408  * list of mnemonic labels for the widget is cleared when the
12409  * widget is destroyed, so the caller must make sure to update
12410  * its internal state at this point as well, by using a connection
12411  * to the #GtkWidget::destroy signal or a weak notifier.
12412  *
12413  * Since: 2.4
12414  **/
12415 void
12416 gtk_widget_add_mnemonic_label (GtkWidget *widget,
12417                                GtkWidget *label)
12418 {
12419   GSList *old_list, *new_list;
12420
12421   g_return_if_fail (GTK_IS_WIDGET (widget));
12422   g_return_if_fail (GTK_IS_WIDGET (label));
12423
12424   old_list = g_object_steal_qdata (G_OBJECT (widget), quark_mnemonic_labels);
12425   new_list = g_slist_prepend (old_list, label);
12426
12427   g_object_set_qdata_full (G_OBJECT (widget), quark_mnemonic_labels,
12428                            new_list, (GDestroyNotify) g_slist_free);
12429 }
12430
12431 /**
12432  * gtk_widget_remove_mnemonic_label:
12433  * @widget: a #GtkWidget
12434  * @label: a #GtkWidget that was previously set as a mnemnic label for
12435  *         @widget with gtk_widget_add_mnemonic_label().
12436  *
12437  * Removes a widget from the list of mnemonic labels for
12438  * this widget. (See gtk_widget_list_mnemonic_labels()). The widget
12439  * must have previously been added to the list with
12440  * gtk_widget_add_mnemonic_label().
12441  *
12442  * Since: 2.4
12443  **/
12444 void
12445 gtk_widget_remove_mnemonic_label (GtkWidget *widget,
12446                                   GtkWidget *label)
12447 {
12448   GSList *old_list, *new_list;
12449
12450   g_return_if_fail (GTK_IS_WIDGET (widget));
12451   g_return_if_fail (GTK_IS_WIDGET (label));
12452
12453   old_list = g_object_steal_qdata (G_OBJECT (widget), quark_mnemonic_labels);
12454   new_list = g_slist_remove (old_list, label);
12455
12456   if (new_list)
12457     g_object_set_qdata_full (G_OBJECT (widget), quark_mnemonic_labels,
12458                              new_list, (GDestroyNotify) g_slist_free);
12459 }
12460
12461 /**
12462  * gtk_widget_get_no_show_all:
12463  * @widget: a #GtkWidget
12464  *
12465  * Returns the current value of the #GtkWidget:no-show-all property,
12466  * which determines whether calls to gtk_widget_show_all()
12467  * will affect this widget.
12468  *
12469  * Return value: the current value of the "no-show-all" property.
12470  *
12471  * Since: 2.4
12472  **/
12473 gboolean
12474 gtk_widget_get_no_show_all (GtkWidget *widget)
12475 {
12476   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
12477
12478   return widget->priv->no_show_all;
12479 }
12480
12481 /**
12482  * gtk_widget_set_no_show_all:
12483  * @widget: a #GtkWidget
12484  * @no_show_all: the new value for the "no-show-all" property
12485  *
12486  * Sets the #GtkWidget:no-show-all property, which determines whether
12487  * calls to gtk_widget_show_all() will affect this widget.
12488  *
12489  * This is mostly for use in constructing widget hierarchies with externally
12490  * controlled visibility, see #GtkUIManager.
12491  *
12492  * Since: 2.4
12493  **/
12494 void
12495 gtk_widget_set_no_show_all (GtkWidget *widget,
12496                             gboolean   no_show_all)
12497 {
12498   g_return_if_fail (GTK_IS_WIDGET (widget));
12499
12500   no_show_all = (no_show_all != FALSE);
12501
12502   if (widget->priv->no_show_all != no_show_all)
12503     {
12504       widget->priv->no_show_all = no_show_all;
12505
12506       g_object_notify (G_OBJECT (widget), "no-show-all");
12507     }
12508 }
12509
12510
12511 static void
12512 gtk_widget_real_set_has_tooltip (GtkWidget *widget,
12513                                  gboolean   has_tooltip,
12514                                  gboolean   force)
12515 {
12516   GtkWidgetPrivate *priv = widget->priv;
12517   gboolean priv_has_tooltip;
12518
12519   priv_has_tooltip = GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (widget),
12520                                        quark_has_tooltip));
12521
12522   if (priv_has_tooltip != has_tooltip || force)
12523     {
12524       priv_has_tooltip = has_tooltip;
12525
12526       if (priv_has_tooltip)
12527         {
12528           if (gtk_widget_get_realized (widget) && !gtk_widget_get_has_window (widget))
12529             gdk_window_set_events (priv->window,
12530                                    gdk_window_get_events (priv->window) |
12531                                    GDK_LEAVE_NOTIFY_MASK |
12532                                    GDK_POINTER_MOTION_MASK |
12533                                    GDK_POINTER_MOTION_HINT_MASK);
12534
12535           if (gtk_widget_get_has_window (widget))
12536               gtk_widget_add_events (widget,
12537                                      GDK_LEAVE_NOTIFY_MASK |
12538                                      GDK_POINTER_MOTION_MASK |
12539                                      GDK_POINTER_MOTION_HINT_MASK);
12540         }
12541
12542       g_object_set_qdata (G_OBJECT (widget), quark_has_tooltip,
12543                           GUINT_TO_POINTER (priv_has_tooltip));
12544     }
12545 }
12546
12547 /**
12548  * gtk_widget_set_tooltip_window:
12549  * @widget: a #GtkWidget
12550  * @custom_window: (allow-none): a #GtkWindow, or %NULL
12551  *
12552  * Replaces the default, usually yellow, window used for displaying
12553  * tooltips with @custom_window. GTK+ will take care of showing and
12554  * hiding @custom_window at the right moment, to behave likewise as
12555  * the default tooltip window. If @custom_window is %NULL, the default
12556  * tooltip window will be used.
12557  *
12558  * If the custom window should have the default theming it needs to
12559  * have the name "gtk-tooltip", see gtk_widget_set_name().
12560  *
12561  * Since: 2.12
12562  */
12563 void
12564 gtk_widget_set_tooltip_window (GtkWidget *widget,
12565                                GtkWindow *custom_window)
12566 {
12567   gboolean has_tooltip;
12568   gchar *tooltip_markup;
12569
12570   g_return_if_fail (GTK_IS_WIDGET (widget));
12571   g_return_if_fail (custom_window == NULL || GTK_IS_WINDOW (custom_window));
12572
12573   tooltip_markup = g_object_get_qdata (G_OBJECT (widget), quark_tooltip_markup);
12574
12575   if (custom_window)
12576     g_object_ref (custom_window);
12577
12578   g_object_set_qdata_full (G_OBJECT (widget), quark_tooltip_window,
12579                            custom_window, g_object_unref);
12580
12581   has_tooltip = (custom_window != NULL || tooltip_markup != NULL);
12582   gtk_widget_real_set_has_tooltip (widget, has_tooltip, FALSE);
12583
12584   if (has_tooltip && gtk_widget_get_visible (widget))
12585     gtk_widget_queue_tooltip_query (widget);
12586 }
12587
12588 /**
12589  * gtk_widget_get_tooltip_window:
12590  * @widget: a #GtkWidget
12591  *
12592  * Returns the #GtkWindow of the current tooltip. This can be the
12593  * GtkWindow created by default, or the custom tooltip window set
12594  * using gtk_widget_set_tooltip_window().
12595  *
12596  * Return value: (transfer none): The #GtkWindow of the current tooltip.
12597  *
12598  * Since: 2.12
12599  */
12600 GtkWindow *
12601 gtk_widget_get_tooltip_window (GtkWidget *widget)
12602 {
12603   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
12604
12605   return g_object_get_qdata (G_OBJECT (widget), quark_tooltip_window);
12606 }
12607
12608 /**
12609  * gtk_widget_trigger_tooltip_query:
12610  * @widget: a #GtkWidget
12611  *
12612  * Triggers a tooltip query on the display where the toplevel of @widget
12613  * is located. See gtk_tooltip_trigger_tooltip_query() for more
12614  * information.
12615  *
12616  * Since: 2.12
12617  */
12618 void
12619 gtk_widget_trigger_tooltip_query (GtkWidget *widget)
12620 {
12621   gtk_tooltip_trigger_tooltip_query (gtk_widget_get_display (widget));
12622 }
12623
12624 static guint tooltip_query_id;
12625 static GSList *tooltip_query_displays;
12626
12627 static gboolean
12628 tooltip_query_idle (gpointer data)
12629 {
12630   g_slist_foreach (tooltip_query_displays, (GFunc)gtk_tooltip_trigger_tooltip_query, NULL);
12631   g_slist_foreach (tooltip_query_displays, (GFunc)g_object_unref, NULL);
12632   g_slist_free (tooltip_query_displays);
12633
12634   tooltip_query_displays = NULL;
12635   tooltip_query_id = 0;
12636
12637   return FALSE;
12638 }
12639
12640 static void
12641 gtk_widget_queue_tooltip_query (GtkWidget *widget)
12642 {
12643   GdkDisplay *display;
12644
12645   display = gtk_widget_get_display (widget);
12646
12647   if (!g_slist_find (tooltip_query_displays, display))
12648     tooltip_query_displays = g_slist_prepend (tooltip_query_displays, g_object_ref (display));
12649
12650   if (tooltip_query_id == 0)
12651     tooltip_query_id = gdk_threads_add_idle (tooltip_query_idle, NULL);
12652 }
12653
12654 /**
12655  * gtk_widget_set_tooltip_text:
12656  * @widget: a #GtkWidget
12657  * @text: the contents of the tooltip for @widget
12658  *
12659  * Sets @text as the contents of the tooltip. This function will take
12660  * care of setting #GtkWidget:has-tooltip to %TRUE and of the default
12661  * handler for the #GtkWidget::query-tooltip signal.
12662  *
12663  * See also the #GtkWidget:tooltip-text property and gtk_tooltip_set_text().
12664  *
12665  * Since: 2.12
12666  */
12667 void
12668 gtk_widget_set_tooltip_text (GtkWidget   *widget,
12669                              const gchar *text)
12670 {
12671   g_return_if_fail (GTK_IS_WIDGET (widget));
12672
12673   g_object_set (G_OBJECT (widget), "tooltip-text", text, NULL);
12674 }
12675
12676 /**
12677  * gtk_widget_get_tooltip_text:
12678  * @widget: a #GtkWidget
12679  *
12680  * Gets the contents of the tooltip for @widget.
12681  *
12682  * Return value: the tooltip text, or %NULL. You should free the
12683  *   returned string with g_free() when done.
12684  *
12685  * Since: 2.12
12686  */
12687 gchar *
12688 gtk_widget_get_tooltip_text (GtkWidget *widget)
12689 {
12690   gchar *text = NULL;
12691
12692   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
12693
12694   g_object_get (G_OBJECT (widget), "tooltip-text", &text, NULL);
12695
12696   return text;
12697 }
12698
12699 /**
12700  * gtk_widget_set_tooltip_markup:
12701  * @widget: a #GtkWidget
12702  * @markup: (allow-none): the contents of the tooltip for @widget, or %NULL
12703  *
12704  * Sets @markup as the contents of the tooltip, which is marked up with
12705  *  the <link linkend="PangoMarkupFormat">Pango text markup language</link>.
12706  *
12707  * This function will take care of setting #GtkWidget:has-tooltip to %TRUE
12708  * and of the default handler for the #GtkWidget::query-tooltip signal.
12709  *
12710  * See also the #GtkWidget:tooltip-markup property and
12711  * gtk_tooltip_set_markup().
12712  *
12713  * Since: 2.12
12714  */
12715 void
12716 gtk_widget_set_tooltip_markup (GtkWidget   *widget,
12717                                const gchar *markup)
12718 {
12719   g_return_if_fail (GTK_IS_WIDGET (widget));
12720
12721   g_object_set (G_OBJECT (widget), "tooltip-markup", markup, NULL);
12722 }
12723
12724 /**
12725  * gtk_widget_get_tooltip_markup:
12726  * @widget: a #GtkWidget
12727  *
12728  * Gets the contents of the tooltip for @widget.
12729  *
12730  * Return value: the tooltip text, or %NULL. You should free the
12731  *   returned string with g_free() when done.
12732  *
12733  * Since: 2.12
12734  */
12735 gchar *
12736 gtk_widget_get_tooltip_markup (GtkWidget *widget)
12737 {
12738   gchar *text = NULL;
12739
12740   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
12741
12742   g_object_get (G_OBJECT (widget), "tooltip-markup", &text, NULL);
12743
12744   return text;
12745 }
12746
12747 /**
12748  * gtk_widget_set_has_tooltip:
12749  * @widget: a #GtkWidget
12750  * @has_tooltip: whether or not @widget has a tooltip.
12751  *
12752  * Sets the has-tooltip property on @widget to @has_tooltip.  See
12753  * #GtkWidget:has-tooltip for more information.
12754  *
12755  * Since: 2.12
12756  */
12757 void
12758 gtk_widget_set_has_tooltip (GtkWidget *widget,
12759                             gboolean   has_tooltip)
12760 {
12761   g_return_if_fail (GTK_IS_WIDGET (widget));
12762
12763   g_object_set (G_OBJECT (widget), "has-tooltip", has_tooltip, NULL);
12764 }
12765
12766 /**
12767  * gtk_widget_get_has_tooltip:
12768  * @widget: a #GtkWidget
12769  *
12770  * Returns the current value of the has-tooltip property.  See
12771  * #GtkWidget:has-tooltip for more information.
12772  *
12773  * Return value: current value of has-tooltip on @widget.
12774  *
12775  * Since: 2.12
12776  */
12777 gboolean
12778 gtk_widget_get_has_tooltip (GtkWidget *widget)
12779 {
12780   gboolean has_tooltip = FALSE;
12781
12782   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
12783
12784   g_object_get (G_OBJECT (widget), "has-tooltip", &has_tooltip, NULL);
12785
12786   return has_tooltip;
12787 }
12788
12789 /**
12790  * gtk_widget_get_allocation:
12791  * @widget: a #GtkWidget
12792  * @allocation: (out): a pointer to a #GtkAllocation to copy to
12793  *
12794  * Retrieves the widget's allocation.
12795  *
12796  * Note, when implementing a #GtkContainer: a widget's allocation will
12797  * be its "adjusted" allocation, that is, the widget's parent
12798  * container typically calls gtk_widget_size_allocate() with an
12799  * allocation, and that allocation is then adjusted (to handle margin
12800  * and alignment for example) before assignment to the widget.
12801  * gtk_widget_get_allocation() returns the adjusted allocation that
12802  * was actually assigned to the widget. The adjusted allocation is
12803  * guaranteed to be completely contained within the
12804  * gtk_widget_size_allocate() allocation, however. So a #GtkContainer
12805  * is guaranteed that its children stay inside the assigned bounds,
12806  * but not that they have exactly the bounds the container assigned.
12807  * There is no way to get the original allocation assigned by
12808  * gtk_widget_size_allocate(), since it isn't stored; if a container
12809  * implementation needs that information it will have to track it itself.
12810  *
12811  * Since: 2.18
12812  */
12813 void
12814 gtk_widget_get_allocation (GtkWidget     *widget,
12815                            GtkAllocation *allocation)
12816 {
12817   GtkWidgetPrivate *priv;
12818
12819   g_return_if_fail (GTK_IS_WIDGET (widget));
12820   g_return_if_fail (allocation != NULL);
12821
12822   priv = widget->priv;
12823
12824   *allocation = priv->allocation;
12825 }
12826
12827 /**
12828  * gtk_widget_set_allocation:
12829  * @widget: a #GtkWidget
12830  * @allocation: a pointer to a #GtkAllocation to copy from
12831  *
12832  * Sets the widget's allocation.  This should not be used
12833  * directly, but from within a widget's size_allocate method.
12834  *
12835  * The allocation set should be the "adjusted" or actual
12836  * allocation. If you're implementing a #GtkContainer, you want to use
12837  * gtk_widget_size_allocate() instead of gtk_widget_set_allocation().
12838  * The GtkWidgetClass::adjust_size_allocation virtual method adjusts the
12839  * allocation inside gtk_widget_size_allocate() to create an adjusted
12840  * allocation.
12841  *
12842  * Since: 2.18
12843  */
12844 void
12845 gtk_widget_set_allocation (GtkWidget           *widget,
12846                            const GtkAllocation *allocation)
12847 {
12848   GtkWidgetPrivate *priv;
12849
12850   g_return_if_fail (GTK_IS_WIDGET (widget));
12851   g_return_if_fail (allocation != NULL);
12852
12853   priv = widget->priv;
12854
12855   priv->allocation = *allocation;
12856 }
12857
12858 /**
12859  * gtk_widget_get_allocated_width:
12860  * @widget: the widget to query
12861  *
12862  * Returns the width that has currently been allocated to @widget.
12863  * This function is intended to be used when implementing handlers
12864  * for the #GtkWidget::draw function.
12865  *
12866  * Returns: the width of the @widget
12867  **/
12868 int
12869 gtk_widget_get_allocated_width (GtkWidget *widget)
12870 {
12871   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
12872
12873   return widget->priv->allocation.width;
12874 }
12875
12876 /**
12877  * gtk_widget_get_allocated_height:
12878  * @widget: the widget to query
12879  *
12880  * Returns the height that has currently been allocated to @widget.
12881  * This function is intended to be used when implementing handlers
12882  * for the #GtkWidget::draw function.
12883  *
12884  * Returns: the height of the @widget
12885  **/
12886 int
12887 gtk_widget_get_allocated_height (GtkWidget *widget)
12888 {
12889   g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
12890
12891   return widget->priv->allocation.height;
12892 }
12893
12894 /**
12895  * gtk_widget_get_requisition:
12896  * @widget: a #GtkWidget
12897  * @requisition: (out): a pointer to a #GtkRequisition to copy to
12898  *
12899  * Retrieves the widget's requisition.
12900  *
12901  * This function should only be used by widget implementations in
12902  * order to figure whether the widget's requisition has actually
12903  * changed after some internal state change (so that they can call
12904  * gtk_widget_queue_resize() instead of gtk_widget_queue_draw()).
12905  *
12906  * Normally, gtk_widget_size_request() should be used.
12907  *
12908  * Since: 2.20
12909  *
12910  * Deprecated: 3.0: The #GtkRequisition cache on the widget was
12911  * removed, If you need to cache sizes across requests and allocations,
12912  * add an explicit cache to the widget in question instead.
12913  */
12914 void
12915 gtk_widget_get_requisition (GtkWidget      *widget,
12916                             GtkRequisition *requisition)
12917 {
12918   g_return_if_fail (GTK_IS_WIDGET (widget));
12919   g_return_if_fail (requisition != NULL);
12920
12921   gtk_widget_get_preferred_size (widget, requisition, NULL);
12922 }
12923
12924 /**
12925  * gtk_widget_set_window:
12926  * @widget: a #GtkWidget
12927  * @window: a #GdkWindow
12928  *
12929  * Sets a widget's window. This function should only be used in a
12930  * widget's #GtkWidget::realize implementation. The %window passed is
12931  * usually either new window created with gdk_window_new(), or the
12932  * window of its parent widget as returned by
12933  * gtk_widget_get_parent_window().
12934  *
12935  * Widgets must indicate whether they will create their own #GdkWindow
12936  * by calling gtk_widget_set_has_window(). This is usually done in the
12937  * widget's init() function.
12938  *
12939  * <note><para>This function does not add any reference to @window.</para></note>
12940  *
12941  * Since: 2.18
12942  */
12943 void
12944 gtk_widget_set_window (GtkWidget *widget,
12945                        GdkWindow *window)
12946 {
12947   GtkWidgetPrivate *priv;
12948
12949   g_return_if_fail (GTK_IS_WIDGET (widget));
12950   g_return_if_fail (window == NULL || GDK_IS_WINDOW (window));
12951
12952   priv = widget->priv;
12953
12954   if (priv->window != window)
12955     {
12956       priv->window = window;
12957       g_object_notify (G_OBJECT (widget), "window");
12958     }
12959 }
12960
12961 /**
12962  * gtk_widget_get_window:
12963  * @widget: a #GtkWidget
12964  *
12965  * Returns the widget's window if it is realized, %NULL otherwise
12966  *
12967  * Return value: (transfer none): @widget's window.
12968  *
12969  * Since: 2.14
12970  */
12971 GdkWindow*
12972 gtk_widget_get_window (GtkWidget *widget)
12973 {
12974   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
12975
12976   return widget->priv->window;
12977 }
12978
12979 /**
12980  * gtk_widget_get_support_multidevice:
12981  * @widget: a #GtkWidget
12982  *
12983  * Returns %TRUE if @widget is multiple pointer aware. See
12984  * gtk_widget_set_support_multidevice() for more information.
12985  *
12986  * Returns: %TRUE is @widget is multidevice aware.
12987  **/
12988 gboolean
12989 gtk_widget_get_support_multidevice (GtkWidget *widget)
12990 {
12991   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
12992
12993   return widget->priv->multidevice;
12994 }
12995
12996 /**
12997  * gtk_widget_set_support_multidevice:
12998  * @widget: a #GtkWidget
12999  * @support_multidevice: %TRUE to support input from multiple devices.
13000  *
13001  * Enables or disables multiple pointer awareness. If this setting is %TRUE,
13002  * @widget will start receiving multiple, per device enter/leave events. Note
13003  * that if custom #GdkWindow<!-- -->s are created in #GtkWidget::realize,
13004  * gdk_window_set_support_multidevice() will have to be called manually on them.
13005  *
13006  * Since: 3.0
13007  **/
13008 void
13009 gtk_widget_set_support_multidevice (GtkWidget *widget,
13010                                     gboolean   support_multidevice)
13011 {
13012   GtkWidgetPrivate *priv;
13013
13014   g_return_if_fail (GTK_IS_WIDGET (widget));
13015
13016   priv = widget->priv;
13017
13018   if (support_multidevice)
13019     {
13020       priv->multidevice = TRUE;
13021       gtk_widget_set_extension_events (widget, GDK_EXTENSION_EVENTS_ALL);
13022     }
13023   else
13024     {
13025       priv->multidevice = FALSE;
13026       gtk_widget_set_extension_events (widget, GDK_EXTENSION_EVENTS_NONE);
13027     }
13028
13029   if (gtk_widget_get_realized (widget))
13030     gdk_window_set_support_multidevice (priv->window, support_multidevice);
13031 }
13032
13033 static void
13034 _gtk_widget_set_has_focus (GtkWidget *widget,
13035                            gboolean   has_focus)
13036 {
13037   widget->priv->has_focus = has_focus;
13038 }
13039
13040 /**
13041  * gtk_widget_send_focus_change:
13042  * @widget: a #GtkWidget
13043  * @event: a #GdkEvent of type GDK_FOCUS_CHANGE
13044  *
13045  * Sends the focus change @event to @widget
13046  *
13047  * This function is not meant to be used by applications. The only time it
13048  * should be used is when it is necessary for a #GtkWidget to assign focus
13049  * to a widget that is semantically owned by the first widget even though
13050  * it's not a direct child - for instance, a search entry in a floating
13051  * window similar to the quick search in #GtkTreeView.
13052  *
13053  * An example of its usage is:
13054  *
13055  * |[
13056  *   GdkEvent *fevent = gdk_event_new (GDK_FOCUS_CHANGE);
13057  *
13058  *   fevent->focus_change.type = GDK_FOCUS_CHANGE;
13059  *   fevent->focus_change.in = TRUE;
13060  *   fevent->focus_change.window = gtk_widget_get_window (widget);
13061  *   if (fevent->focus_change.window != NULL)
13062  *     g_object_ref (fevent->focus_change.window);
13063  *
13064  *   gtk_widget_send_focus_change (widget, fevent);
13065  *
13066  *   gdk_event_free (event);
13067  * ]|
13068  *
13069  * Return value: the return value from the event signal emission: %TRUE
13070  *   if the event was handled, and %FALSE otherwise
13071  *
13072  * Since: 2.20
13073  */
13074 gboolean
13075 gtk_widget_send_focus_change (GtkWidget *widget,
13076                               GdkEvent  *event)
13077 {
13078   gboolean res;
13079
13080   g_return_val_if_fail (GTK_IS_WIDGET (widget), FALSE);
13081   g_return_val_if_fail (event != NULL && event->type == GDK_FOCUS_CHANGE, FALSE);
13082
13083   g_object_ref (widget);
13084
13085   _gtk_widget_set_has_focus (widget, event->focus_change.in);
13086
13087   res = gtk_widget_event (widget, event);
13088
13089   g_object_notify (G_OBJECT (widget), "has-focus");
13090
13091   g_object_unref (widget);
13092
13093   return res;
13094 }
13095
13096 /**
13097  * gtk_widget_in_destruction:
13098  * @widget: a #GtkWidget
13099  *
13100  * Returns whether the widget is currently being destroyed.
13101  * This information can sometimes be used to avoid doing
13102  * unnecessary work.
13103  *
13104  * Returns: %TRUE if @widget is being destroyed
13105  */
13106 gboolean
13107 gtk_widget_in_destruction (GtkWidget *widget)
13108 {
13109   return widget->priv->in_destruction;
13110 }
13111
13112 gboolean
13113 _gtk_widget_get_resize_pending (GtkWidget *widget)
13114 {
13115   return widget->priv->resize_pending;
13116 }
13117
13118 void
13119 _gtk_widget_set_resize_pending (GtkWidget *widget,
13120                                 gboolean   resize_pending)
13121 {
13122   widget->priv->resize_pending = resize_pending;
13123 }
13124
13125 gboolean
13126 _gtk_widget_get_in_reparent (GtkWidget *widget)
13127 {
13128   return widget->priv->in_reparent;
13129 }
13130
13131 void
13132 _gtk_widget_set_in_reparent (GtkWidget *widget,
13133                              gboolean   in_reparent)
13134 {
13135   widget->priv->in_reparent = in_reparent;
13136 }
13137
13138 gboolean
13139 _gtk_widget_get_anchored (GtkWidget *widget)
13140 {
13141   return widget->priv->anchored;
13142 }
13143
13144 void
13145 _gtk_widget_set_anchored (GtkWidget *widget,
13146                           gboolean   anchored)
13147 {
13148   widget->priv->anchored = anchored;
13149 }
13150
13151 gboolean
13152 _gtk_widget_get_shadowed (GtkWidget *widget)
13153 {
13154   return widget->priv->shadowed;
13155 }
13156
13157 void
13158 _gtk_widget_set_shadowed (GtkWidget *widget,
13159                           gboolean   shadowed)
13160 {
13161   widget->priv->shadowed = shadowed;
13162 }
13163
13164 gboolean
13165 _gtk_widget_get_alloc_needed (GtkWidget *widget)
13166 {
13167   return widget->priv->alloc_needed;
13168 }
13169
13170 void
13171 _gtk_widget_set_alloc_needed (GtkWidget *widget,
13172                               gboolean   alloc_needed)
13173 {
13174   widget->priv->alloc_needed = alloc_needed;
13175 }
13176
13177 gboolean
13178 _gtk_widget_get_width_request_needed (GtkWidget *widget)
13179 {
13180   return widget->priv->width_request_needed;
13181 }
13182
13183 void
13184 _gtk_widget_set_width_request_needed (GtkWidget *widget,
13185                                       gboolean   width_request_needed)
13186 {
13187   widget->priv->width_request_needed = width_request_needed;
13188 }
13189
13190 gboolean
13191 _gtk_widget_get_height_request_needed (GtkWidget *widget)
13192 {
13193   return widget->priv->height_request_needed;
13194 }
13195
13196 void
13197 _gtk_widget_set_height_request_needed (GtkWidget *widget,
13198                                        gboolean   height_request_needed)
13199 {
13200   widget->priv->height_request_needed = height_request_needed;
13201 }
13202
13203 GtkWidgetPath *
13204 gtk_widget_get_path (GtkWidget *widget)
13205 {
13206   GtkStyleContext *context;
13207   GtkWidgetPath *path;
13208   GtkWidget *parent;
13209   GList *regions, *reg;
13210
13211   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
13212
13213   parent = widget->priv->parent;
13214
13215   path = gtk_widget_path_new ();
13216   gtk_widget_path_prepend_type (path, G_OBJECT_TYPE (widget));
13217   regions = reg = NULL;
13218
13219   if (widget->priv->name)
13220     gtk_widget_path_iter_set_name (path, 0, widget->priv->name);
13221
13222   context = g_object_get_qdata (G_OBJECT (widget),
13223                                 quark_style_context);
13224
13225   if (context)
13226     regions = reg = gtk_style_context_list_child_classes (context);
13227
13228   while (reg)
13229     {
13230       GtkChildClassFlags flags;
13231       const gchar *region_name;
13232
13233       region_name = reg->data;
13234       reg = reg->next;
13235
13236       gtk_style_context_has_child_class (context, region_name, &flags);
13237       gtk_widget_path_iter_add_region (path, 0, region_name, flags);
13238     }
13239
13240   g_list_free (regions);
13241
13242   while (parent)
13243     {
13244       guint position;
13245
13246       position = gtk_widget_path_prepend_type (path, G_OBJECT_TYPE (parent));
13247
13248       if (parent->priv->name)
13249         gtk_widget_path_iter_set_name (path, position, parent->priv->name);
13250
13251       parent = parent->priv->parent;
13252     }
13253
13254   return path;
13255 }
13256
13257 GtkStyleContext *
13258 gtk_widget_get_style_context (GtkWidget *widget)
13259 {
13260   GtkStyleContext *context;
13261
13262   g_return_val_if_fail (GTK_IS_WIDGET (widget), NULL);
13263
13264   context = g_object_get_qdata (G_OBJECT (widget),
13265                                 quark_style_context);
13266
13267   if (G_UNLIKELY (!context))
13268     {
13269       static GtkCssProvider *css_provider = NULL;
13270       GtkWidgetPath *path;
13271
13272       context = g_object_new (GTK_TYPE_STYLE_CONTEXT, NULL);
13273       g_object_set_qdata_full (G_OBJECT (widget),
13274                                quark_style_context, context,
13275                                (GDestroyNotify) g_object_unref);
13276
13277       /* Add provider for user file */
13278       if (G_UNLIKELY (!css_provider))
13279         {
13280           GFile *home_dir, *css_file;
13281           gchar *filename;
13282
13283           css_provider = gtk_css_provider_new ();
13284           home_dir = g_file_new_for_path (g_get_home_dir ());
13285
13286           filename = g_strdup_printf (".gtk-%d.0.css", GTK_MAJOR_VERSION);
13287           css_file = g_file_get_child (home_dir, filename);
13288           g_free (filename);
13289
13290           if (g_file_query_exists (css_file, NULL))
13291             gtk_css_provider_load_from_file (css_provider, css_file, NULL);
13292
13293           g_object_unref (home_dir);
13294           g_object_unref (css_file);
13295         }
13296
13297       gtk_style_context_add_provider (context,
13298                                       GTK_STYLE_PROVIDER (css_provider),
13299                                       GTK_STYLE_PROVIDER_PRIORITY_USER);
13300
13301
13302       path = gtk_widget_get_path (widget);
13303       gtk_style_context_set_path (context, path);
13304       gtk_widget_path_free (path);
13305
13306       gtk_style_context_set_screen (context,
13307                                     gtk_widget_get_screen (widget));
13308     }
13309
13310   return context;
13311 }