]> Pileus Git - ~andy/gtk/blob - gtk/gtkcontainer.c
container: fix wrong branching logic
[~andy/gtk] / gtk / gtkcontainer.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, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 #include "config.h"
26
27 #include "gtkcontainer.h"
28 #include "gtkcontainerprivate.h"
29
30 #include <stdarg.h>
31 #include <string.h>
32 #include <stdlib.h>
33
34 #include <gobject/gobjectnotifyqueue.c>
35 #include <gobject/gvaluecollector.h>
36
37 #include "gtkadjustment.h"
38 #include "gtkbuildable.h"
39 #include "gtkbuilderprivate.h"
40 #include "gtktypebuiltins.h"
41 #include "gtkprivate.h"
42 #include "gtkmain.h"
43 #include "gtkmarshalers.h"
44 #include "gtksizerequest.h"
45 #include "gtkwidgetprivate.h"
46 #include "gtkwindow.h"
47 #include "gtkassistant.h"
48 #include "gtkintl.h"
49 #include "gtkstylecontextprivate.h"
50 #include "gtkwidgetpath.h"
51 #include "a11y/gtkcontaineraccessible.h"
52
53 /**
54  * SECTION:gtkcontainer
55  * @Short_description: Base class for widgets which contain other widgets
56  * @Title: GtkContainer
57  *
58  * A GTK+ user interface is constructed by nesting widgets inside widgets.
59  * Container widgets are the inner nodes in the resulting tree of widgets:
60  * they contain other widgets. So, for example, you might have a #GtkWindow
61  * containing a #GtkFrame containing a #GtkLabel. If you wanted an image instead
62  * of a textual label inside the frame, you might replace the #GtkLabel widget
63  * with a #GtkImage widget.
64  *
65  * There are two major kinds of container widgets in GTK+. Both are subclasses
66  * of the abstract GtkContainer base class.
67  *
68  * The first type of container widget has a single child widget and derives
69  * from #GtkBin. These containers are <emphasis>decorators</emphasis>, which
70  * add some kind of functionality to the child. For example, a #GtkButton makes
71  * its child into a clickable button; a #GtkFrame draws a frame around its child
72  * and a #GtkWindow places its child widget inside a top-level window.
73  *
74  * The second type of container can have more than one child; its purpose is to
75  * manage <emphasis>layout</emphasis>. This means that these containers assign
76  * sizes and positions to their children. For example, a #GtkHBox arranges its
77  * children in a horizontal row, and a #GtkGrid arranges the widgets it contains
78  * in a two-dimensional grid.
79  *
80  * <refsect2 id="container-geometry-management">
81  * <title>Height for width geometry management</title>
82  * <para>
83  * GTK+ uses a height-for-width (and width-for-height) geometry management system.
84  * Height-for-width means that a widget can change how much vertical space it needs,
85  * depending on the amount of horizontal space that it is given (and similar for
86  * width-for-height).
87  *
88  * There are some things to keep in mind when implementing container widgets
89  * that make use of GTK+'s height for width geometry management system. First,
90  * it's important to note that a container must prioritize one of its
91  * dimensions, that is to say that a widget or container can only have a
92  * #GtkSizeRequestMode that is %GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH or
93  * %GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT. However, every widget and container
94  * must be able to respond to the APIs for both dimensions, i.e. even if a
95  * widget has a request mode that is height-for-width, it is possible that
96  * its parent will request its sizes using the width-for-height APIs.
97  *
98  * To ensure that everything works properly, here are some guidelines to follow
99  * when implementing height-for-width (or width-for-height) containers.
100  *
101  * Each request mode involves 2 virtual methods. Height-for-width apis run
102  * through gtk_widget_get_preferred_width() and then through gtk_widget_get_preferred_height_for_width().
103  * When handling requests in the opposite #GtkSizeRequestMode it is important that
104  * every widget request at least enough space to display all of its content at all times.
105  *
106  * When gtk_widget_get_preferred_height() is called on a container that is height-for-width,
107  * the container must return the height for its minimum width. This is easily achieved by
108  * simply calling the reverse apis implemented for itself as follows:
109  *
110  * <programlisting><![CDATA[
111  * static void
112  * foo_container_get_preferred_height (GtkWidget *widget, gint *min_height, gint *nat_height)
113  * {
114  *    if (i_am_in_height_for_width_mode)
115  *      {
116  *        gint min_width;
117  *
118  *        GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, &min_width, NULL);
119  *        GTK_WIDGET_GET_CLASS (widget)->get_preferred_height_for_width (widget, min_width,
120  *                                                                       min_height, nat_height);
121  *      }
122  *    else
123  *      {
124  *        ... many containers support both request modes, execute the real width-for-height
125  *        request here by returning the collective heights of all widgets that are
126  *        stacked vertically (or whatever is appropriate for this container) ...
127  *      }
128  * }
129  * ]]></programlisting>
130  *
131  * Similarly, when gtk_widget_get_preferred_width_for_height() is called for a container or widget
132  * that is height-for-width, it then only needs to return the base minimum width like so:
133  *
134  * <programlisting><![CDATA[
135  * static void
136  * foo_container_get_preferred_width_for_height (GtkWidget *widget, gint for_height,
137  *                                               gint *min_width, gint *nat_width)
138  * {
139  *    if (i_am_in_height_for_width_mode)
140  *      {
141  *        GTK_WIDGET_GET_CLASS (widget)->get_preferred_width (widget, min_width, nat_width);
142  *      }
143  *    else
144  *      {
145  *        ... execute the real width-for-height request here based on the required width
146  *        of the children collectively if the container were to be allocated the said height ...
147  *      }
148  * }
149  * ]]></programlisting>
150  *
151  * Height for width requests are generally implemented in terms of a virtual allocation
152  * of widgets in the input orientation. Assuming an height-for-width request mode, a container
153  * would implement the <function>get_preferred_height_for_width()</function> virtual function by first calling
154  * gtk_widget_get_preferred_width() for each of its children.
155  *
156  * For each potential group of children that are lined up horizontally, the values returned by
157  * gtk_widget_get_preferred_width() should be collected in an array of #GtkRequestedSize structures.
158  * Any child spacing should be removed from the input @for_width and then the collective size should be
159  * allocated using the gtk_distribute_natural_allocation() convenience function.
160  *
161  * The container will then move on to request the preferred height for each child by using
162  * gtk_widget_get_preferred_height_for_width() and using the sizes stored in the #GtkRequestedSize array.
163  *
164  * To allocate a height-for-width container, it's again important
165  * to consider that a container must prioritize one dimension over the other. So if
166  * a container is a height-for-width container it must first allocate all widgets horizontally
167  * using a #GtkRequestedSize array and gtk_distribute_natural_allocation() and then add any
168  * extra space (if and where appropriate) for the widget to expand.
169  *
170  * After adding all the expand space, the container assumes it was allocated sufficient
171  * height to fit all of its content. At this time, the container must use the total horizontal sizes
172  * of each widget to request the height-for-width of each of its children and store the requests in a
173  * #GtkRequestedSize array for any widgets that stack vertically (for tabular containers this can
174  * be generalized into the heights and widths of rows and columns).
175  * The vertical space must then again be distributed using gtk_distribute_natural_allocation()
176  * while this time considering the allocated height of the widget minus any vertical spacing
177  * that the container adds. Then vertical expand space should be added where appropriate and available
178  * and the container should go on to actually allocating the child widgets.
179  *
180  * See <link linkend="geometry-management">GtkWidget's geometry management section</link>
181  * to learn more about implementing height-for-width geometry management for widgets.
182  * </para>
183  * </refsect2>
184  * <refsect2 id="child-properties">
185  * <title>Child properties</title>
186  * <para>
187  * GtkContainer introduces <emphasis>child properties</emphasis>.
188  * These are object properties that are not specific
189  * to either the container or the contained widget, but rather to their relation.
190  * Typical examples of child properties are the position or pack-type of a widget
191  * which is contained in a #GtkBox.
192  *
193  * Use gtk_container_class_install_child_property() to install child properties
194  * for a container class and gtk_container_class_find_child_property() or
195  * gtk_container_class_list_child_properties() to get information about existing
196  * child properties.
197  *
198  * To set the value of a child property, use gtk_container_child_set_property(),
199  * gtk_container_child_set() or gtk_container_child_set_valist().
200  * To obtain the value of a child property, use
201  * gtk_container_child_get_property(), gtk_container_child_get() or
202  * gtk_container_child_get_valist(). To emit notification about child property
203  * changes, use gtk_widget_child_notify().
204  * </para>
205  * </refsect2>
206  * <refsect2 id="GtkContainer-BUILDER-UI">
207  * <title>GtkContainer as GtkBuildable</title>
208  * <para>
209  * The GtkContainer implementation of the GtkBuildable interface
210  * supports a &lt;packing&gt; element for children, which can
211  * contain multiple &lt;property&gt; elements that specify
212  * child properties for the child.
213  * <example>
214  * <title>Child properties in UI definitions</title>
215  * <programlisting><![CDATA[
216  * <object class="GtkVBox">
217  *   <child>
218  *     <object class="GtkLabel"/>
219  *     <packing>
220  *       <property name="pack-type">start</property>
221  *     </packing>
222  *   </child>
223  * </object>
224  * ]]></programlisting>
225  * </example>
226  * Since 2.16, child properties can also be marked as translatable using
227  * the same "translatable", "comments" and "context" attributes that are used
228  * for regular properties.
229  * </para>
230  * </refsect2>
231  */
232
233
234 struct _GtkContainerPrivate
235 {
236   GtkWidget *focus_child;
237
238   guint border_width : 16;
239
240   guint has_focus_chain    : 1;
241   guint reallocate_redraws : 1;
242   guint resize_pending     : 1;
243   guint restyle_pending    : 1;
244   guint resize_mode        : 2;
245   guint request_mode       : 2;
246 };
247
248 enum {
249   ADD,
250   REMOVE,
251   CHECK_RESIZE,
252   SET_FOCUS_CHILD,
253   LAST_SIGNAL
254 };
255
256 enum {
257   PROP_0,
258   PROP_BORDER_WIDTH,
259   PROP_RESIZE_MODE,
260   PROP_CHILD
261 };
262
263 #define PARAM_SPEC_PARAM_ID(pspec)              ((pspec)->param_id)
264 #define PARAM_SPEC_SET_PARAM_ID(pspec, id)      ((pspec)->param_id = (id))
265
266
267 /* --- prototypes --- */
268 static void     gtk_container_base_class_init      (GtkContainerClass *klass);
269 static void     gtk_container_base_class_finalize  (GtkContainerClass *klass);
270 static void     gtk_container_class_init           (GtkContainerClass *klass);
271 static void     gtk_container_init                 (GtkContainer      *container);
272 static void     gtk_container_destroy              (GtkWidget         *widget);
273 static void     gtk_container_set_property         (GObject         *object,
274                                                     guint            prop_id,
275                                                     const GValue    *value,
276                                                     GParamSpec      *pspec);
277 static void     gtk_container_get_property         (GObject         *object,
278                                                     guint            prop_id,
279                                                     GValue          *value,
280                                                     GParamSpec      *pspec);
281 static void     gtk_container_add_unimplemented    (GtkContainer      *container,
282                                                     GtkWidget         *widget);
283 static void     gtk_container_remove_unimplemented (GtkContainer      *container,
284                                                     GtkWidget         *widget);
285 static void     gtk_container_real_check_resize    (GtkContainer      *container);
286 static void     gtk_container_compute_expand       (GtkWidget         *widget,
287                                                     gboolean          *hexpand_p,
288                                                     gboolean          *vexpand_p);
289 static gboolean gtk_container_focus                (GtkWidget         *widget,
290                                                     GtkDirectionType   direction);
291 static void     gtk_container_real_set_focus_child (GtkContainer      *container,
292                                                     GtkWidget         *widget);
293
294 static gboolean gtk_container_focus_move           (GtkContainer      *container,
295                                                     GList             *children,
296                                                     GtkDirectionType   direction);
297 static void     gtk_container_children_callback    (GtkWidget         *widget,
298                                                     gpointer           client_data);
299 static void     gtk_container_show_all             (GtkWidget         *widget);
300 static gint     gtk_container_draw                 (GtkWidget         *widget,
301                                                     cairo_t           *cr);
302 static void     gtk_container_map                  (GtkWidget         *widget);
303 static void     gtk_container_unmap                (GtkWidget         *widget);
304 static void     gtk_container_adjust_size_request  (GtkWidget         *widget,
305                                                     GtkOrientation     orientation,
306                                                     gint              *minimum_size,
307                                                     gint              *natural_size);
308 static void     gtk_container_adjust_size_allocation (GtkWidget       *widget,
309                                                       GtkOrientation   orientation,
310                                                       gint            *minimum_size,
311                                                       gint            *natural_size,
312                                                       gint            *allocated_pos,
313                                                       gint            *allocated_size);
314 static GtkSizeRequestMode gtk_container_get_request_mode (GtkWidget   *widget);
315
316 static gchar* gtk_container_child_default_composite_name (GtkContainer *container,
317                                                           GtkWidget    *child);
318
319 static GtkWidgetPath * gtk_container_real_get_path_for_child (GtkContainer *container,
320                                                               GtkWidget    *child);
321
322 /* GtkBuildable */
323 static void gtk_container_buildable_init           (GtkBuildableIface *iface);
324 static void gtk_container_buildable_add_child      (GtkBuildable *buildable,
325                                                     GtkBuilder   *builder,
326                                                     GObject      *child,
327                                                     const gchar  *type);
328 static gboolean gtk_container_buildable_custom_tag_start (GtkBuildable  *buildable,
329                                                           GtkBuilder    *builder,
330                                                           GObject       *child,
331                                                           const gchar   *tagname,
332                                                           GMarkupParser *parser,
333                                                           gpointer      *data);
334 static void    gtk_container_buildable_custom_tag_end (GtkBuildable *buildable,
335                                                        GtkBuilder   *builder,
336                                                        GObject      *child,
337                                                        const gchar  *tagname,
338                                                        gpointer     *data);
339
340
341 /* --- variables --- */
342 static const gchar           vadjustment_key[] = "gtk-vadjustment";
343 static guint                 vadjustment_key_id = 0;
344 static const gchar           hadjustment_key[] = "gtk-hadjustment";
345 static guint                 hadjustment_key_id = 0;
346 static GSList               *container_resize_queue = NULL;
347 static GSList               *container_restyle_queue = NULL;
348 static guint                 container_signals[LAST_SIGNAL] = { 0 };
349 static GtkWidgetClass       *parent_class = NULL;
350 extern GParamSpecPool       *_gtk_widget_child_property_pool;
351 extern GObjectNotifyContext *_gtk_widget_child_property_notify_context;
352 static GtkBuildableIface    *parent_buildable_iface;
353
354
355 /* --- functions --- */
356 GType
357 gtk_container_get_type (void)
358 {
359   static GType container_type = 0;
360
361   if (!container_type)
362     {
363       const GTypeInfo container_info =
364       {
365         sizeof (GtkContainerClass),
366         (GBaseInitFunc) gtk_container_base_class_init,
367         (GBaseFinalizeFunc) gtk_container_base_class_finalize,
368         (GClassInitFunc) gtk_container_class_init,
369         NULL        /* class_finalize */,
370         NULL        /* class_data */,
371         sizeof (GtkContainer),
372         0           /* n_preallocs */,
373         (GInstanceInitFunc) gtk_container_init,
374         NULL,       /* value_table */
375       };
376
377       const GInterfaceInfo buildable_info =
378       {
379         (GInterfaceInitFunc) gtk_container_buildable_init,
380         NULL,
381         NULL
382       };
383
384       container_type =
385         g_type_register_static (GTK_TYPE_WIDGET, I_("GtkContainer"),
386                                 &container_info, G_TYPE_FLAG_ABSTRACT);
387
388       g_type_add_interface_static (container_type,
389                                    GTK_TYPE_BUILDABLE,
390                                    &buildable_info);
391
392     }
393
394   return container_type;
395 }
396
397 static void
398 gtk_container_base_class_init (GtkContainerClass *class)
399 {
400   /* reset instance specifc class fields that don't get inherited */
401   class->set_child_property = NULL;
402   class->get_child_property = NULL;
403 }
404
405 static void
406 gtk_container_base_class_finalize (GtkContainerClass *class)
407 {
408   GList *list, *node;
409
410   list = g_param_spec_pool_list_owned (_gtk_widget_child_property_pool, G_OBJECT_CLASS_TYPE (class));
411   for (node = list; node; node = node->next)
412     {
413       GParamSpec *pspec = node->data;
414
415       g_param_spec_pool_remove (_gtk_widget_child_property_pool, pspec);
416       PARAM_SPEC_SET_PARAM_ID (pspec, 0);
417       g_param_spec_unref (pspec);
418     }
419   g_list_free (list);
420 }
421
422 static void
423 gtk_container_class_init (GtkContainerClass *class)
424 {
425   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
426   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
427
428   parent_class = g_type_class_peek_parent (class);
429
430   vadjustment_key_id = g_quark_from_static_string (vadjustment_key);
431   hadjustment_key_id = g_quark_from_static_string (hadjustment_key);
432
433   gobject_class->set_property = gtk_container_set_property;
434   gobject_class->get_property = gtk_container_get_property;
435
436   widget_class->destroy = gtk_container_destroy;
437   widget_class->compute_expand = gtk_container_compute_expand;
438   widget_class->show_all = gtk_container_show_all;
439   widget_class->draw = gtk_container_draw;
440   widget_class->map = gtk_container_map;
441   widget_class->unmap = gtk_container_unmap;
442   widget_class->focus = gtk_container_focus;
443
444   widget_class->adjust_size_request = gtk_container_adjust_size_request;
445   widget_class->adjust_size_allocation = gtk_container_adjust_size_allocation;
446   widget_class->get_request_mode = gtk_container_get_request_mode;
447
448   class->add = gtk_container_add_unimplemented;
449   class->remove = gtk_container_remove_unimplemented;
450   class->check_resize = gtk_container_real_check_resize;
451   class->forall = NULL;
452   class->set_focus_child = gtk_container_real_set_focus_child;
453   class->child_type = NULL;
454   class->composite_name = gtk_container_child_default_composite_name;
455   class->get_path_for_child = gtk_container_real_get_path_for_child;
456
457   g_object_class_install_property (gobject_class,
458                                    PROP_RESIZE_MODE,
459                                    g_param_spec_enum ("resize-mode",
460                                                       P_("Resize mode"),
461                                                       P_("Specify how resize events are handled"),
462                                                       GTK_TYPE_RESIZE_MODE,
463                                                       GTK_RESIZE_PARENT,
464                                                       GTK_PARAM_READWRITE));
465   g_object_class_install_property (gobject_class,
466                                    PROP_BORDER_WIDTH,
467                                    g_param_spec_uint ("border-width",
468                                                       P_("Border width"),
469                                                       P_("The width of the empty border outside the containers children"),
470                                                       0,
471                                                       65535,
472                                                       0,
473                                                       GTK_PARAM_READWRITE));
474   g_object_class_install_property (gobject_class,
475                                    PROP_CHILD,
476                                    g_param_spec_object ("child",
477                                                       P_("Child"),
478                                                       P_("Can be used to add a new child to the container"),
479                                                       GTK_TYPE_WIDGET,
480                                                       GTK_PARAM_WRITABLE));
481   container_signals[ADD] =
482     g_signal_new (I_("add"),
483                   G_OBJECT_CLASS_TYPE (gobject_class),
484                   G_SIGNAL_RUN_FIRST,
485                   G_STRUCT_OFFSET (GtkContainerClass, add),
486                   NULL, NULL,
487                   _gtk_marshal_VOID__OBJECT,
488                   G_TYPE_NONE, 1,
489                   GTK_TYPE_WIDGET);
490   container_signals[REMOVE] =
491     g_signal_new (I_("remove"),
492                   G_OBJECT_CLASS_TYPE (gobject_class),
493                   G_SIGNAL_RUN_FIRST,
494                   G_STRUCT_OFFSET (GtkContainerClass, remove),
495                   NULL, NULL,
496                   _gtk_marshal_VOID__OBJECT,
497                   G_TYPE_NONE, 1,
498                   GTK_TYPE_WIDGET);
499   container_signals[CHECK_RESIZE] =
500     g_signal_new (I_("check-resize"),
501                   G_OBJECT_CLASS_TYPE (gobject_class),
502                   G_SIGNAL_RUN_LAST,
503                   G_STRUCT_OFFSET (GtkContainerClass, check_resize),
504                   NULL, NULL,
505                   _gtk_marshal_VOID__VOID,
506                   G_TYPE_NONE, 0);
507   container_signals[SET_FOCUS_CHILD] =
508     g_signal_new (I_("set-focus-child"),
509                   G_OBJECT_CLASS_TYPE (gobject_class),
510                   G_SIGNAL_RUN_FIRST,
511                   G_STRUCT_OFFSET (GtkContainerClass, set_focus_child),
512                   NULL, NULL,
513                   _gtk_marshal_VOID__OBJECT,
514                   G_TYPE_NONE, 1,
515                   GTK_TYPE_WIDGET);
516
517   g_type_class_add_private (class, sizeof (GtkContainerPrivate));
518
519   gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_CONTAINER_ACCESSIBLE);
520 }
521
522 static void
523 gtk_container_buildable_init (GtkBuildableIface *iface)
524 {
525   parent_buildable_iface = g_type_interface_peek_parent (iface);
526   iface->add_child = gtk_container_buildable_add_child;
527   iface->custom_tag_start = gtk_container_buildable_custom_tag_start;
528   iface->custom_tag_end = gtk_container_buildable_custom_tag_end;
529 }
530
531 static void
532 gtk_container_buildable_add_child (GtkBuildable  *buildable,
533                                    GtkBuilder    *builder,
534                                    GObject       *child,
535                                    const gchar   *type)
536 {
537   if (type)
538     {
539       GTK_BUILDER_WARN_INVALID_CHILD_TYPE (buildable, type);
540     }
541   else if (GTK_IS_WIDGET (child) &&
542            gtk_widget_get_parent (GTK_WIDGET (child)) == NULL)
543     {
544       gtk_container_add (GTK_CONTAINER (buildable), GTK_WIDGET (child));
545     }
546   else
547     g_warning ("Cannot add an object of type %s to a container of type %s",
548                g_type_name (G_OBJECT_TYPE (child)), g_type_name (G_OBJECT_TYPE (buildable)));
549 }
550
551 static void
552 gtk_container_buildable_set_child_property (GtkContainer *container,
553                                             GtkBuilder   *builder,
554                                             GtkWidget    *child,
555                                             gchar        *name,
556                                             const gchar  *value)
557 {
558   GParamSpec *pspec;
559   GValue gvalue = G_VALUE_INIT;
560   GError *error = NULL;
561
562   pspec = gtk_container_class_find_child_property
563     (G_OBJECT_GET_CLASS (container), name);
564   if (!pspec)
565     {
566       g_warning ("%s does not have a property called %s",
567                  g_type_name (G_OBJECT_TYPE (container)), name);
568       return;
569     }
570
571   if (!gtk_builder_value_from_string (builder, pspec, value, &gvalue, &error))
572     {
573       g_warning ("Could not read property %s:%s with value %s of type %s: %s",
574                  g_type_name (G_OBJECT_TYPE (container)),
575                  name,
576                  value,
577                  g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
578                  error->message);
579       g_error_free (error);
580       return;
581     }
582
583   gtk_container_child_set_property (container, child, name, &gvalue);
584   g_value_unset (&gvalue);
585 }
586
587 typedef struct {
588   GtkBuilder   *builder;
589   GtkContainer *container;
590   GtkWidget    *child;
591   GString      *string;
592   gchar        *child_prop_name;
593   gchar        *context;
594   gboolean      translatable;
595 } PackingPropertiesData;
596
597 static void
598 attributes_start_element (GMarkupParseContext *context,
599                           const gchar         *element_name,
600                           const gchar        **names,
601                           const gchar        **values,
602                           gpointer             user_data,
603                           GError             **error)
604 {
605   PackingPropertiesData *parser_data = (PackingPropertiesData*)user_data;
606   guint i;
607
608   if (strcmp (element_name, "property") == 0)
609     {
610       for (i = 0; names[i]; i++)
611         if (strcmp (names[i], "name") == 0)
612           parser_data->child_prop_name = g_strdup (values[i]);
613         else if (strcmp (names[i], "translatable") == 0)
614           {
615             if (!_gtk_builder_boolean_from_string (values[1],
616                                                    &parser_data->translatable,
617                                                    error))
618               return;
619           }
620         else if (strcmp (names[i], "comments") == 0)
621           ; /* for translators */
622         else if (strcmp (names[i], "context") == 0)
623           parser_data->context = g_strdup (values[1]);
624         else
625           g_warning ("Unsupported attribute for GtkContainer Child "
626                      "property: %s\n", names[i]);
627     }
628   else if (strcmp (element_name, "packing") == 0)
629     return;
630   else
631     g_warning ("Unsupported tag for GtkContainer: %s\n", element_name);
632 }
633
634 static void
635 attributes_text_element (GMarkupParseContext *context,
636                          const gchar         *text,
637                          gsize                text_len,
638                          gpointer             user_data,
639                          GError             **error)
640 {
641   PackingPropertiesData *parser_data = (PackingPropertiesData*)user_data;
642
643   if (parser_data->child_prop_name)
644     g_string_append_len (parser_data->string, text, text_len);
645 }
646
647 static void
648 attributes_end_element (GMarkupParseContext *context,
649                         const gchar         *element_name,
650                         gpointer             user_data,
651                         GError             **error)
652 {
653   PackingPropertiesData *parser_data = (PackingPropertiesData*)user_data;
654
655   /* translate the string */
656   if (parser_data->string->len && parser_data->translatable)
657     {
658       gchar *translated;
659       const gchar* domain;
660
661       domain = gtk_builder_get_translation_domain (parser_data->builder);
662
663       translated = _gtk_builder_parser_translate (domain,
664                                                   parser_data->context,
665                                                   parser_data->string->str);
666       g_string_set_size (parser_data->string, 0);
667       g_string_append (parser_data->string, translated);
668     }
669
670   if (parser_data->child_prop_name)
671     gtk_container_buildable_set_child_property (parser_data->container,
672                                                 parser_data->builder,
673                                                 parser_data->child,
674                                                 parser_data->child_prop_name,
675                                                 parser_data->string->str);
676
677   g_string_set_size (parser_data->string, 0);
678   g_free (parser_data->child_prop_name);
679   g_free (parser_data->context);
680   parser_data->child_prop_name = NULL;
681   parser_data->context = NULL;
682   parser_data->translatable = FALSE;
683 }
684
685 static const GMarkupParser attributes_parser =
686   {
687     attributes_start_element,
688     attributes_end_element,
689     attributes_text_element,
690   };
691
692 static gboolean
693 gtk_container_buildable_custom_tag_start (GtkBuildable  *buildable,
694                                           GtkBuilder    *builder,
695                                           GObject       *child,
696                                           const gchar   *tagname,
697                                           GMarkupParser *parser,
698                                           gpointer      *data)
699 {
700   PackingPropertiesData *parser_data;
701
702   if (parent_buildable_iface->custom_tag_start (buildable, builder, child,
703                                                 tagname, parser, data))
704     return TRUE;
705
706   if (child && strcmp (tagname, "packing") == 0)
707     {
708       parser_data = g_slice_new0 (PackingPropertiesData);
709       parser_data->string = g_string_new ("");
710       parser_data->builder = builder;
711       parser_data->container = GTK_CONTAINER (buildable);
712       parser_data->child = GTK_WIDGET (child);
713       parser_data->child_prop_name = NULL;
714
715       *parser = attributes_parser;
716       *data = parser_data;
717       return TRUE;
718     }
719
720   return FALSE;
721 }
722
723 static void
724 gtk_container_buildable_custom_tag_end (GtkBuildable *buildable,
725                                         GtkBuilder   *builder,
726                                         GObject      *child,
727                                         const gchar  *tagname,
728                                         gpointer     *data)
729 {
730   if (strcmp (tagname, "packing") == 0)
731     {
732       PackingPropertiesData *parser_data = (PackingPropertiesData*)data;
733       g_string_free (parser_data->string, TRUE);
734       g_slice_free (PackingPropertiesData, parser_data);
735       return;
736     }
737
738   if (parent_buildable_iface->custom_tag_end)
739     parent_buildable_iface->custom_tag_end (buildable, builder,
740                                             child, tagname, data);
741 }
742
743 /**
744  * gtk_container_child_type:
745  * @container: a #GtkContainer
746  *
747  * Returns the type of the children supported by the container.
748  *
749  * Note that this may return %G_TYPE_NONE to indicate that no more
750  * children can be added, e.g. for a #GtkPaned which already has two
751  * children.
752  *
753  * Return value: a #GType.
754  **/
755 GType
756 gtk_container_child_type (GtkContainer *container)
757 {
758   GType slot;
759   GtkContainerClass *class;
760
761   g_return_val_if_fail (GTK_IS_CONTAINER (container), 0);
762
763   class = GTK_CONTAINER_GET_CLASS (container);
764   if (class->child_type)
765     slot = class->child_type (container);
766   else
767     slot = G_TYPE_NONE;
768
769   return slot;
770 }
771
772 /* --- GtkContainer child property mechanism --- */
773
774 /**
775  * gtk_container_child_notify:
776  * @container: the #GtkContainer
777  * @child: the child widget
778  * @child_property: the name of a child property installed on
779  *     the class of @container
780  *
781  * Emits a #GtkWidget::child-notify signal for the
782  * <link linkend="child-properties">child property</link>
783  * @child_property on widget.
784  *
785  * This is an analogue of g_object_notify() for child properties.
786  *
787  * Also see gtk_widget_child_notify().
788  *
789  * Since: 3.2
790  */
791 void
792 gtk_container_child_notify (GtkContainer *container,
793                             GtkWidget    *child,
794                             const gchar  *child_property)
795 {
796   GObject *obj;
797   GParamSpec *pspec;
798
799   g_return_if_fail (GTK_IS_CONTAINER (container));
800   g_return_if_fail (GTK_IS_WIDGET (child));
801   g_return_if_fail (child_property != NULL);
802
803   obj = G_OBJECT (child);
804
805   if (obj->ref_count == 0)
806     return;
807
808   g_object_ref (obj);
809
810   pspec = g_param_spec_pool_lookup (_gtk_widget_child_property_pool,
811                                     child_property,
812                                     G_OBJECT_TYPE (container),
813                                     TRUE);
814
815   if (pspec == NULL)
816     {
817       g_warning ("%s: container class `%s' has no child property named `%s'",
818                  G_STRLOC,
819                  G_OBJECT_TYPE_NAME (container),
820                  child_property);
821     }
822   else
823     {
824       GObjectNotifyQueue *nqueue;
825
826       nqueue = g_object_notify_queue_freeze (obj, _gtk_widget_child_property_notify_context);
827
828       g_object_notify_queue_add (obj, nqueue, pspec);
829       g_object_notify_queue_thaw (obj, nqueue);
830     }
831
832   g_object_unref (obj);
833 }
834
835 static inline void
836 container_get_child_property (GtkContainer *container,
837                               GtkWidget    *child,
838                               GParamSpec   *pspec,
839                               GValue       *value)
840 {
841   GtkContainerClass *class = g_type_class_peek (pspec->owner_type);
842
843   class->get_child_property (container, child, PARAM_SPEC_PARAM_ID (pspec), value, pspec);
844 }
845
846 static inline void
847 container_set_child_property (GtkContainer       *container,
848                               GtkWidget          *child,
849                               GParamSpec         *pspec,
850                               const GValue       *value,
851                               GObjectNotifyQueue *nqueue)
852 {
853   GValue tmp_value = G_VALUE_INIT;
854   GtkContainerClass *class = g_type_class_peek (pspec->owner_type);
855
856   /* provide a copy to work from, convert (if necessary) and validate */
857   g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
858   if (!g_value_transform (value, &tmp_value))
859     g_warning ("unable to set child property `%s' of type `%s' from value of type `%s'",
860                pspec->name,
861                g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
862                G_VALUE_TYPE_NAME (value));
863   else if (g_param_value_validate (pspec, &tmp_value) && !(pspec->flags & G_PARAM_LAX_VALIDATION))
864     {
865       gchar *contents = g_strdup_value_contents (value);
866
867       g_warning ("value \"%s\" of type `%s' is invalid for property `%s' of type `%s'",
868                  contents,
869                  G_VALUE_TYPE_NAME (value),
870                  pspec->name,
871                  g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
872       g_free (contents);
873     }
874   else
875     {
876       class->set_child_property (container, child, PARAM_SPEC_PARAM_ID (pspec), &tmp_value, pspec);
877       g_object_notify_queue_add (G_OBJECT (child), nqueue, pspec);
878     }
879   g_value_unset (&tmp_value);
880 }
881
882 /**
883  * gtk_container_child_get_valist:
884  * @container: a #GtkContainer
885  * @child: a widget which is a child of @container
886  * @first_property_name: the name of the first property to get
887  * @var_args: return location for the first property, followed
888  *     optionally by more name/return location pairs, followed by %NULL
889  *
890  * Gets the values of one or more child properties for @child and @container.
891  **/
892 void
893 gtk_container_child_get_valist (GtkContainer *container,
894                                 GtkWidget    *child,
895                                 const gchar  *first_property_name,
896                                 va_list       var_args)
897 {
898   const gchar *name;
899
900   g_return_if_fail (GTK_IS_CONTAINER (container));
901   g_return_if_fail (GTK_IS_WIDGET (child));
902
903   g_object_ref (container);
904   g_object_ref (child);
905
906   name = first_property_name;
907   while (name)
908     {
909       GValue value = G_VALUE_INIT;
910       GParamSpec *pspec;
911       gchar *error;
912
913       pspec = g_param_spec_pool_lookup (_gtk_widget_child_property_pool,
914                                         name,
915                                         G_OBJECT_TYPE (container),
916                                         TRUE);
917       if (!pspec)
918         {
919           g_warning ("%s: container class `%s' has no child property named `%s'",
920                      G_STRLOC,
921                      G_OBJECT_TYPE_NAME (container),
922                      name);
923           break;
924         }
925       if (!(pspec->flags & G_PARAM_READABLE))
926         {
927           g_warning ("%s: child property `%s' of container class `%s' is not readable",
928                      G_STRLOC,
929                      pspec->name,
930                      G_OBJECT_TYPE_NAME (container));
931           break;
932         }
933       g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec));
934       container_get_child_property (container, child, pspec, &value);
935       G_VALUE_LCOPY (&value, var_args, 0, &error);
936       if (error)
937         {
938           g_warning ("%s: %s", G_STRLOC, error);
939           g_free (error);
940           g_value_unset (&value);
941           break;
942         }
943       g_value_unset (&value);
944       name = va_arg (var_args, gchar*);
945     }
946
947   g_object_unref (child);
948   g_object_unref (container);
949 }
950
951 /**
952  * gtk_container_child_get_property:
953  * @container: a #GtkContainer
954  * @child: a widget which is a child of @container
955  * @property_name: the name of the property to get
956  * @value: a location to return the value
957  *
958  * Gets the value of a child property for @child and @container.
959  **/
960 void
961 gtk_container_child_get_property (GtkContainer *container,
962                                   GtkWidget    *child,
963                                   const gchar  *property_name,
964                                   GValue       *value)
965 {
966   GParamSpec *pspec;
967
968   g_return_if_fail (GTK_IS_CONTAINER (container));
969   g_return_if_fail (GTK_IS_WIDGET (child));
970   g_return_if_fail (property_name != NULL);
971   g_return_if_fail (G_IS_VALUE (value));
972
973   g_object_ref (container);
974   g_object_ref (child);
975   pspec = g_param_spec_pool_lookup (_gtk_widget_child_property_pool, property_name,
976                                     G_OBJECT_TYPE (container), TRUE);
977   if (!pspec)
978     g_warning ("%s: container class `%s' has no child property named `%s'",
979                G_STRLOC,
980                G_OBJECT_TYPE_NAME (container),
981                property_name);
982   else if (!(pspec->flags & G_PARAM_READABLE))
983     g_warning ("%s: child property `%s' of container class `%s' is not readable",
984                G_STRLOC,
985                pspec->name,
986                G_OBJECT_TYPE_NAME (container));
987   else
988     {
989       GValue *prop_value, tmp_value = G_VALUE_INIT;
990
991       /* auto-conversion of the callers value type
992        */
993       if (G_VALUE_TYPE (value) == G_PARAM_SPEC_VALUE_TYPE (pspec))
994         {
995           g_value_reset (value);
996           prop_value = value;
997         }
998       else if (!g_value_type_transformable (G_PARAM_SPEC_VALUE_TYPE (pspec), G_VALUE_TYPE (value)))
999         {
1000           g_warning ("can't retrieve child property `%s' of type `%s' as value of type `%s'",
1001                      pspec->name,
1002                      g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
1003                      G_VALUE_TYPE_NAME (value));
1004           g_object_unref (child);
1005           g_object_unref (container);
1006           return;
1007         }
1008       else
1009         {
1010           g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
1011           prop_value = &tmp_value;
1012         }
1013       container_get_child_property (container, child, pspec, prop_value);
1014       if (prop_value != value)
1015         {
1016           g_value_transform (prop_value, value);
1017           g_value_unset (&tmp_value);
1018         }
1019     }
1020   g_object_unref (child);
1021   g_object_unref (container);
1022 }
1023
1024 /**
1025  * gtk_container_child_set_valist:
1026  * @container: a #GtkContainer
1027  * @child: a widget which is a child of @container
1028  * @first_property_name: the name of the first property to set
1029  * @var_args: a %NULL-terminated list of property names and values, starting
1030  *           with @first_prop_name
1031  *
1032  * Sets one or more child properties for @child and @container.
1033  **/
1034 void
1035 gtk_container_child_set_valist (GtkContainer *container,
1036                                 GtkWidget    *child,
1037                                 const gchar  *first_property_name,
1038                                 va_list       var_args)
1039 {
1040   GObjectNotifyQueue *nqueue;
1041   const gchar *name;
1042
1043   g_return_if_fail (GTK_IS_CONTAINER (container));
1044   g_return_if_fail (GTK_IS_WIDGET (child));
1045
1046   g_object_ref (container);
1047   g_object_ref (child);
1048
1049   nqueue = g_object_notify_queue_freeze (G_OBJECT (child), _gtk_widget_child_property_notify_context);
1050   name = first_property_name;
1051   while (name)
1052     {
1053       GValue value = G_VALUE_INIT;
1054       gchar *error = NULL;
1055       GParamSpec *pspec = g_param_spec_pool_lookup (_gtk_widget_child_property_pool,
1056                                                     name,
1057                                                     G_OBJECT_TYPE (container),
1058                                                     TRUE);
1059       if (!pspec)
1060         {
1061           g_warning ("%s: container class `%s' has no child property named `%s'",
1062                      G_STRLOC,
1063                      G_OBJECT_TYPE_NAME (container),
1064                      name);
1065           break;
1066         }
1067       if (!(pspec->flags & G_PARAM_WRITABLE))
1068         {
1069           g_warning ("%s: child property `%s' of container class `%s' is not writable",
1070                      G_STRLOC,
1071                      pspec->name,
1072                      G_OBJECT_TYPE_NAME (container));
1073           break;
1074         }
1075
1076       G_VALUE_COLLECT_INIT (&value, G_PARAM_SPEC_VALUE_TYPE (pspec),
1077                             var_args, 0, &error);
1078       if (error)
1079         {
1080           g_warning ("%s: %s", G_STRLOC, error);
1081           g_free (error);
1082
1083           /* we purposely leak the value here, it might not be
1084            * in a sane state if an error condition occoured
1085            */
1086           break;
1087         }
1088       container_set_child_property (container, child, pspec, &value, nqueue);
1089       g_value_unset (&value);
1090       name = va_arg (var_args, gchar*);
1091     }
1092   g_object_notify_queue_thaw (G_OBJECT (child), nqueue);
1093
1094   g_object_unref (container);
1095   g_object_unref (child);
1096 }
1097
1098 /**
1099  * gtk_container_child_set_property:
1100  * @container: a #GtkContainer
1101  * @child: a widget which is a child of @container
1102  * @property_name: the name of the property to set
1103  * @value: the value to set the property to
1104  *
1105  * Sets a child property for @child and @container.
1106  **/
1107 void
1108 gtk_container_child_set_property (GtkContainer *container,
1109                                   GtkWidget    *child,
1110                                   const gchar  *property_name,
1111                                   const GValue *value)
1112 {
1113   GObjectNotifyQueue *nqueue;
1114   GParamSpec *pspec;
1115
1116   g_return_if_fail (GTK_IS_CONTAINER (container));
1117   g_return_if_fail (GTK_IS_WIDGET (child));
1118   g_return_if_fail (property_name != NULL);
1119   g_return_if_fail (G_IS_VALUE (value));
1120
1121   g_object_ref (container);
1122   g_object_ref (child);
1123
1124   nqueue = g_object_notify_queue_freeze (G_OBJECT (child), _gtk_widget_child_property_notify_context);
1125   pspec = g_param_spec_pool_lookup (_gtk_widget_child_property_pool, property_name,
1126                                     G_OBJECT_TYPE (container), TRUE);
1127   if (!pspec)
1128     g_warning ("%s: container class `%s' has no child property named `%s'",
1129                G_STRLOC,
1130                G_OBJECT_TYPE_NAME (container),
1131                property_name);
1132   else if (!(pspec->flags & G_PARAM_WRITABLE))
1133     g_warning ("%s: child property `%s' of container class `%s' is not writable",
1134                G_STRLOC,
1135                pspec->name,
1136                G_OBJECT_TYPE_NAME (container));
1137   else
1138     {
1139       container_set_child_property (container, child, pspec, value, nqueue);
1140     }
1141   g_object_notify_queue_thaw (G_OBJECT (child), nqueue);
1142   g_object_unref (container);
1143   g_object_unref (child);
1144 }
1145
1146 /**
1147  * gtk_container_add_with_properties:
1148  * @container: a #GtkContainer
1149  * @widget: a widget to be placed inside @container
1150  * @first_prop_name: the name of the first child property to set
1151  * @...: a %NULL-terminated list of property names and values, starting
1152  *     with @first_prop_name
1153  *
1154  * Adds @widget to @container, setting child properties at the same time.
1155  * See gtk_container_add() and gtk_container_child_set() for more details.
1156  */
1157 void
1158 gtk_container_add_with_properties (GtkContainer *container,
1159                                    GtkWidget    *widget,
1160                                    const gchar  *first_prop_name,
1161                                    ...)
1162 {
1163   g_return_if_fail (GTK_IS_CONTAINER (container));
1164   g_return_if_fail (GTK_IS_WIDGET (widget));
1165   g_return_if_fail (gtk_widget_get_parent (widget) == NULL);
1166
1167   g_object_ref (container);
1168   g_object_ref (widget);
1169   gtk_widget_freeze_child_notify (widget);
1170
1171   g_signal_emit (container, container_signals[ADD], 0, widget);
1172   if (gtk_widget_get_parent (widget))
1173     {
1174       va_list var_args;
1175
1176       va_start (var_args, first_prop_name);
1177       gtk_container_child_set_valist (container, widget, first_prop_name, var_args);
1178       va_end (var_args);
1179     }
1180
1181   gtk_widget_thaw_child_notify (widget);
1182   g_object_unref (widget);
1183   g_object_unref (container);
1184 }
1185
1186 /**
1187  * gtk_container_child_set:
1188  * @container: a #GtkContainer
1189  * @child: a widget which is a child of @container
1190  * @first_prop_name: the name of the first property to set
1191  * @...: a %NULL-terminated list of property names and values, starting
1192  *     with @first_prop_name
1193  *
1194  * Sets one or more child properties for @child and @container.
1195  */
1196 void
1197 gtk_container_child_set (GtkContainer      *container,
1198                          GtkWidget         *child,
1199                          const gchar       *first_prop_name,
1200                          ...)
1201 {
1202   va_list var_args;
1203
1204   va_start (var_args, first_prop_name);
1205   gtk_container_child_set_valist (container, child, first_prop_name, var_args);
1206   va_end (var_args);
1207 }
1208
1209 /**
1210  * gtk_container_child_get:
1211  * @container: a #GtkContainer
1212  * @child: a widget which is a child of @container
1213  * @first_prop_name: the name of the first property to get
1214  * @...: return location for the first property, followed
1215  *     optionally by more name/return location pairs, followed by %NULL
1216  *
1217  * Gets the values of one or more child properties for @child and @container.
1218  */
1219 void
1220 gtk_container_child_get (GtkContainer      *container,
1221                          GtkWidget         *child,
1222                          const gchar       *first_prop_name,
1223                          ...)
1224 {
1225   va_list var_args;
1226
1227   va_start (var_args, first_prop_name);
1228   gtk_container_child_get_valist (container, child, first_prop_name, var_args);
1229   va_end (var_args);
1230 }
1231
1232 /**
1233  * gtk_container_class_install_child_property:
1234  * @cclass: a #GtkContainerClass
1235  * @property_id: the id for the property
1236  * @pspec: the #GParamSpec for the property
1237  *
1238  * Installs a child property on a container class.
1239  **/
1240 void
1241 gtk_container_class_install_child_property (GtkContainerClass *cclass,
1242                                             guint              property_id,
1243                                             GParamSpec        *pspec)
1244 {
1245   g_return_if_fail (GTK_IS_CONTAINER_CLASS (cclass));
1246   g_return_if_fail (G_IS_PARAM_SPEC (pspec));
1247   if (pspec->flags & G_PARAM_WRITABLE)
1248     g_return_if_fail (cclass->set_child_property != NULL);
1249   if (pspec->flags & G_PARAM_READABLE)
1250     g_return_if_fail (cclass->get_child_property != NULL);
1251   g_return_if_fail (property_id > 0);
1252   g_return_if_fail (PARAM_SPEC_PARAM_ID (pspec) == 0);  /* paranoid */
1253   if (pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY))
1254     g_return_if_fail ((pspec->flags & (G_PARAM_CONSTRUCT | G_PARAM_CONSTRUCT_ONLY)) == 0);
1255
1256   if (g_param_spec_pool_lookup (_gtk_widget_child_property_pool, pspec->name, G_OBJECT_CLASS_TYPE (cclass), FALSE))
1257     {
1258       g_warning (G_STRLOC ": class `%s' already contains a child property named `%s'",
1259                  G_OBJECT_CLASS_NAME (cclass),
1260                  pspec->name);
1261       return;
1262     }
1263   g_param_spec_ref (pspec);
1264   g_param_spec_sink (pspec);
1265   PARAM_SPEC_SET_PARAM_ID (pspec, property_id);
1266   g_param_spec_pool_insert (_gtk_widget_child_property_pool, pspec, G_OBJECT_CLASS_TYPE (cclass));
1267 }
1268
1269 /**
1270  * gtk_container_class_find_child_property:
1271  * @cclass: (type GtkContainerClass): a #GtkContainerClass
1272  * @property_name: the name of the child property to find
1273  *
1274  * Finds a child property of a container class by name.
1275  *
1276  * Returns: (transfer none): the #GParamSpec of the child property
1277  *     or %NULL if @class has no child property with that name.
1278  */
1279 GParamSpec*
1280 gtk_container_class_find_child_property (GObjectClass *cclass,
1281                                          const gchar  *property_name)
1282 {
1283   g_return_val_if_fail (GTK_IS_CONTAINER_CLASS (cclass), NULL);
1284   g_return_val_if_fail (property_name != NULL, NULL);
1285
1286   return g_param_spec_pool_lookup (_gtk_widget_child_property_pool,
1287                                    property_name,
1288                                    G_OBJECT_CLASS_TYPE (cclass),
1289                                    TRUE);
1290 }
1291
1292 /**
1293  * gtk_container_class_list_child_properties:
1294  * @cclass: (type GtkContainerClass): a #GtkContainerClass
1295  * @n_properties: location to return the number of child properties found
1296  *
1297  * Returns all child properties of a container class.
1298  *
1299  * Returns: (array length=n_properties) (transfer container):
1300  *     a newly allocated %NULL-terminated array of #GParamSpec*.
1301  *     The array must be freed with g_free().
1302  */
1303 GParamSpec**
1304 gtk_container_class_list_child_properties (GObjectClass *cclass,
1305                                            guint        *n_properties)
1306 {
1307   GParamSpec **pspecs;
1308   guint n;
1309
1310   g_return_val_if_fail (GTK_IS_CONTAINER_CLASS (cclass), NULL);
1311
1312   pspecs = g_param_spec_pool_list (_gtk_widget_child_property_pool,
1313                                    G_OBJECT_CLASS_TYPE (cclass),
1314                                    &n);
1315   if (n_properties)
1316     *n_properties = n;
1317
1318   return pspecs;
1319 }
1320
1321 static void
1322 gtk_container_add_unimplemented (GtkContainer     *container,
1323                                  GtkWidget        *widget)
1324 {
1325   g_warning ("GtkContainerClass::add not implemented for `%s'", g_type_name (G_TYPE_FROM_INSTANCE (container)));
1326 }
1327
1328 static void
1329 gtk_container_remove_unimplemented (GtkContainer     *container,
1330                                     GtkWidget        *widget)
1331 {
1332   g_warning ("GtkContainerClass::remove not implemented for `%s'", g_type_name (G_TYPE_FROM_INSTANCE (container)));
1333 }
1334
1335 static void
1336 gtk_container_init (GtkContainer *container)
1337 {
1338   GtkContainerPrivate *priv;
1339
1340   container->priv = G_TYPE_INSTANCE_GET_PRIVATE (container,
1341                                                  GTK_TYPE_CONTAINER,
1342                                                  GtkContainerPrivate);
1343   priv = container->priv;
1344
1345   priv->focus_child = NULL;
1346   priv->border_width = 0;
1347   priv->resize_mode = GTK_RESIZE_PARENT;
1348   priv->reallocate_redraws = FALSE;
1349 }
1350
1351 static void
1352 gtk_container_destroy (GtkWidget *widget)
1353 {
1354   GtkContainer *container = GTK_CONTAINER (widget);
1355   GtkContainerPrivate *priv = container->priv;
1356
1357   if (priv->resize_pending)
1358     _gtk_container_dequeue_resize_handler (container);
1359   if (priv->restyle_pending)
1360     {
1361       container_restyle_queue = g_slist_remove (container_restyle_queue, container);
1362       priv->restyle_pending = FALSE;
1363     }
1364
1365   if (priv->focus_child)
1366     {
1367       g_object_unref (priv->focus_child);
1368       priv->focus_child = NULL;
1369     }
1370
1371   /* do this before walking child widgets, to avoid
1372    * removing children from focus chain one by one.
1373    */
1374   if (priv->has_focus_chain)
1375     gtk_container_unset_focus_chain (container);
1376
1377   gtk_container_foreach (container, (GtkCallback) gtk_widget_destroy, NULL);
1378
1379   GTK_WIDGET_CLASS (parent_class)->destroy (widget);
1380 }
1381
1382 static void
1383 gtk_container_set_property (GObject         *object,
1384                             guint            prop_id,
1385                             const GValue    *value,
1386                             GParamSpec      *pspec)
1387 {
1388   GtkContainer *container = GTK_CONTAINER (object);
1389
1390   switch (prop_id)
1391     {
1392     case PROP_BORDER_WIDTH:
1393       gtk_container_set_border_width (container, g_value_get_uint (value));
1394       break;
1395     case PROP_RESIZE_MODE:
1396       gtk_container_set_resize_mode (container, g_value_get_enum (value));
1397       break;
1398     case PROP_CHILD:
1399       gtk_container_add (container, GTK_WIDGET (g_value_get_object (value)));
1400       break;
1401     default:
1402       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1403       break;
1404     }
1405 }
1406
1407 static void
1408 gtk_container_get_property (GObject         *object,
1409                             guint            prop_id,
1410                             GValue          *value,
1411                             GParamSpec      *pspec)
1412 {
1413   GtkContainer *container = GTK_CONTAINER (object);
1414   GtkContainerPrivate *priv = container->priv;
1415
1416   switch (prop_id)
1417     {
1418     case PROP_BORDER_WIDTH:
1419       g_value_set_uint (value, priv->border_width);
1420       break;
1421     case PROP_RESIZE_MODE:
1422       g_value_set_enum (value, priv->resize_mode);
1423       break;
1424     default:
1425       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
1426       break;
1427     }
1428 }
1429
1430 /**
1431  * gtk_container_set_border_width:
1432  * @container: a #GtkContainer
1433  * @border_width: amount of blank space to leave <emphasis>outside</emphasis>
1434  *   the container. Valid values are in the range 0-65535 pixels.
1435  *
1436  * Sets the border width of the container.
1437  *
1438  * The border width of a container is the amount of space to leave
1439  * around the outside of the container. The only exception to this is
1440  * #GtkWindow; because toplevel windows can't leave space outside,
1441  * they leave the space inside. The border is added on all sides of
1442  * the container. To add space to only one side, one approach is to
1443  * create a #GtkAlignment widget, call gtk_widget_set_size_request()
1444  * to give it a size, and place it on the side of the container as
1445  * a spacer.
1446  **/
1447 void
1448 gtk_container_set_border_width (GtkContainer *container,
1449                                 guint         border_width)
1450 {
1451   GtkContainerPrivate *priv;
1452
1453   g_return_if_fail (GTK_IS_CONTAINER (container));
1454
1455   priv = container->priv;
1456
1457   if (priv->border_width != border_width)
1458     {
1459       priv->border_width = border_width;
1460       g_object_notify (G_OBJECT (container), "border-width");
1461
1462       if (gtk_widget_get_realized (GTK_WIDGET (container)))
1463         gtk_widget_queue_resize (GTK_WIDGET (container));
1464     }
1465 }
1466
1467 /**
1468  * gtk_container_get_border_width:
1469  * @container: a #GtkContainer
1470  *
1471  * Retrieves the border width of the container. See
1472  * gtk_container_set_border_width().
1473  *
1474  * Return value: the current border width
1475  **/
1476 guint
1477 gtk_container_get_border_width (GtkContainer *container)
1478 {
1479   g_return_val_if_fail (GTK_IS_CONTAINER (container), 0);
1480
1481   return container->priv->border_width;
1482 }
1483
1484 /**
1485  * gtk_container_add:
1486  * @container: a #GtkContainer
1487  * @widget: a widget to be placed inside @container
1488  *
1489  * Adds @widget to @container. Typically used for simple containers
1490  * such as #GtkWindow, #GtkFrame, or #GtkButton; for more complicated
1491  * layout containers such as #GtkBox or #GtkGrid, this function will
1492  * pick default packing parameters that may not be correct.  So
1493  * consider functions such as gtk_box_pack_start() and
1494  * gtk_grid_attach() as an alternative to gtk_container_add() in
1495  * those cases. A widget may be added to only one container at a time;
1496  * you can't place the same widget inside two different containers.
1497  **/
1498 void
1499 gtk_container_add (GtkContainer *container,
1500                    GtkWidget    *widget)
1501 {
1502   GtkWidget *parent;
1503
1504   g_return_if_fail (GTK_IS_CONTAINER (container));
1505   g_return_if_fail (GTK_IS_WIDGET (widget));
1506
1507   parent = gtk_widget_get_parent (widget);
1508
1509   if (parent != NULL)
1510     {
1511       g_warning ("Attempting to add a widget with type %s to a container of "
1512                  "type %s, but the widget is already inside a container of type %s, "
1513                  "please use gtk_widget_reparent()" ,
1514                  g_type_name (G_OBJECT_TYPE (widget)),
1515                  g_type_name (G_OBJECT_TYPE (container)),
1516                  g_type_name (G_OBJECT_TYPE (parent)));
1517       return;
1518     }
1519
1520   g_signal_emit (container, container_signals[ADD], 0, widget);
1521 }
1522
1523 /**
1524  * gtk_container_remove:
1525  * @container: a #GtkContainer
1526  * @widget: a current child of @container
1527  *
1528  * Removes @widget from @container. @widget must be inside @container.
1529  * Note that @container will own a reference to @widget, and that this
1530  * may be the last reference held; so removing a widget from its
1531  * container can destroy that widget. If you want to use @widget
1532  * again, you need to add a reference to it while it's not inside
1533  * a container, using g_object_ref(). If you don't want to use @widget
1534  * again it's usually more efficient to simply destroy it directly
1535  * using gtk_widget_destroy() since this will remove it from the
1536  * container and help break any circular reference count cycles.
1537  **/
1538 void
1539 gtk_container_remove (GtkContainer *container,
1540                       GtkWidget    *widget)
1541 {
1542   g_return_if_fail (GTK_IS_CONTAINER (container));
1543   g_return_if_fail (GTK_IS_WIDGET (widget));
1544   g_return_if_fail (gtk_widget_get_parent (widget) == GTK_WIDGET (container) || GTK_IS_ASSISTANT (container));
1545
1546   g_signal_emit (container, container_signals[REMOVE], 0, widget);
1547 }
1548
1549 void
1550 _gtk_container_dequeue_resize_handler (GtkContainer *container)
1551 {
1552   g_return_if_fail (GTK_IS_CONTAINER (container));
1553   g_return_if_fail (container->priv->resize_pending);
1554
1555   container_resize_queue = g_slist_remove (container_resize_queue, container);
1556   container->priv->resize_pending = FALSE;
1557 }
1558
1559 /**
1560  * gtk_container_set_resize_mode:
1561  * @container: a #GtkContainer
1562  * @resize_mode: the new resize mode
1563  *
1564  * Sets the resize mode for the container.
1565  *
1566  * The resize mode of a container determines whether a resize request
1567  * will be passed to the container's parent, queued for later execution
1568  * or executed immediately.
1569  **/
1570 void
1571 gtk_container_set_resize_mode (GtkContainer  *container,
1572                                GtkResizeMode  resize_mode)
1573 {
1574   GtkContainerPrivate *priv;
1575
1576   g_return_if_fail (GTK_IS_CONTAINER (container));
1577   g_return_if_fail (resize_mode <= GTK_RESIZE_IMMEDIATE);
1578
1579   priv = container->priv;
1580
1581   if (gtk_widget_is_toplevel (GTK_WIDGET (container)) &&
1582       resize_mode == GTK_RESIZE_PARENT)
1583     {
1584       resize_mode = GTK_RESIZE_QUEUE;
1585     }
1586
1587   if (priv->resize_mode != resize_mode)
1588     {
1589       priv->resize_mode = resize_mode;
1590
1591       gtk_widget_queue_resize (GTK_WIDGET (container));
1592       g_object_notify (G_OBJECT (container), "resize-mode");
1593     }
1594 }
1595
1596 /**
1597  * gtk_container_get_resize_mode:
1598  * @container: a #GtkContainer
1599  *
1600  * Returns the resize mode for the container. See
1601  * gtk_container_set_resize_mode ().
1602  *
1603  * Return value: the current resize mode
1604  **/
1605 GtkResizeMode
1606 gtk_container_get_resize_mode (GtkContainer *container)
1607 {
1608   g_return_val_if_fail (GTK_IS_CONTAINER (container), GTK_RESIZE_PARENT);
1609
1610   return container->priv->resize_mode;
1611 }
1612
1613 /**
1614  * gtk_container_set_reallocate_redraws:
1615  * @container: a #GtkContainer
1616  * @needs_redraws: the new value for the container's @reallocate_redraws flag
1617  *
1618  * Sets the @reallocate_redraws flag of the container to the given value.
1619  *
1620  * Containers requesting reallocation redraws get automatically
1621  * redrawn if any of their children changed allocation.
1622  **/
1623 void
1624 gtk_container_set_reallocate_redraws (GtkContainer *container,
1625                                       gboolean      needs_redraws)
1626 {
1627   g_return_if_fail (GTK_IS_CONTAINER (container));
1628
1629   container->priv->reallocate_redraws = needs_redraws ? TRUE : FALSE;
1630 }
1631
1632 static gboolean
1633 gtk_container_idle_sizer (gpointer data)
1634 {
1635   GSList *slist;
1636   gint64 current_time;
1637
1638   /* We validate the style contexts in a single loop before even trying
1639    * to handle resizes instead of doing validations inline.
1640    * This is mostly necessary for compatibility reasons with old code,
1641    * because both style_updated and size_allocate functions often change
1642    * styles and so could cause infinite loops in this function.
1643    *
1644    * It's important to note that even an invalid style context returns
1645    * sane values. So the result of an invalid style context will never be
1646    * a program crash, but only a wrong layout or rendering.
1647    */
1648   current_time = g_get_monotonic_time ();
1649   slist = container_restyle_queue;
1650   container_restyle_queue = NULL;
1651   for (; slist; slist = slist->next)
1652     {
1653       GtkContainer *container = slist->data;
1654
1655       container->priv->restyle_pending = FALSE;
1656       _gtk_style_context_validate (gtk_widget_get_style_context (GTK_WIDGET (container)),
1657                                    current_time,
1658                                    0);
1659     }
1660
1661   /* we may be invoked with a container_resize_queue of NULL, because
1662    * queue_resize could have been adding an extra idle function while
1663    * the queue still got processed. we better just ignore such case
1664    * than trying to explicitely work around them with some extra flags,
1665    * since it doesn't cause any actual harm.
1666    */
1667   while (container_resize_queue)
1668     {
1669       GtkContainer *container;
1670
1671       slist = container_resize_queue;
1672       container_resize_queue = slist->next;
1673       container = slist->data;
1674       g_slist_free_1 (slist);
1675
1676       container->priv->resize_pending = FALSE;
1677       gtk_container_check_resize (container);
1678     }
1679
1680   gdk_window_process_all_updates ();
1681
1682   return container_resize_queue != NULL || container_restyle_queue != NULL;
1683 }
1684
1685 static void
1686 gtk_container_start_idle_sizer (GtkContainer *container)
1687 {
1688   /* already started */
1689   if (container_resize_queue != NULL ||
1690       container_restyle_queue != NULL)
1691     return;
1692
1693   gdk_threads_add_idle_full (GTK_PRIORITY_RESIZE,
1694                              gtk_container_idle_sizer,
1695                              NULL, NULL);
1696 }
1697
1698 static void
1699 gtk_container_queue_resize_handler (GtkContainer *container)
1700 {
1701   GtkWidget *widget;
1702
1703   g_return_if_fail (GTK_IS_RESIZE_CONTAINER (container));
1704
1705   widget = GTK_WIDGET (container);
1706
1707   if (gtk_widget_get_visible (widget) &&
1708       (gtk_widget_is_toplevel (widget) ||
1709        gtk_widget_get_realized (widget)))
1710     {
1711       switch (container->priv->resize_mode)
1712         {
1713         case GTK_RESIZE_QUEUE:
1714           if (!container->priv->resize_pending)
1715             {
1716               container->priv->resize_pending = TRUE;
1717               gtk_container_start_idle_sizer (container);
1718               container_resize_queue = g_slist_prepend (container_resize_queue, container);
1719             }
1720           break;
1721
1722         case GTK_RESIZE_IMMEDIATE:
1723           gtk_container_check_resize (container);
1724           break;
1725
1726         case GTK_RESIZE_PARENT:
1727         default:
1728           g_assert_not_reached ();
1729           break;
1730         }
1731     }
1732 }
1733
1734 static void
1735 _gtk_container_queue_resize_internal (GtkContainer *container,
1736                                       gboolean      invalidate_only)
1737 {
1738   GtkWidget *widget;
1739
1740   g_return_if_fail (GTK_IS_CONTAINER (container));
1741
1742   widget = GTK_WIDGET (container);
1743
1744   do
1745     {
1746       _gtk_widget_set_alloc_needed (widget, TRUE);
1747       _gtk_widget_set_width_request_needed (widget, TRUE);
1748       _gtk_widget_set_height_request_needed (widget, TRUE);
1749
1750       if (GTK_IS_RESIZE_CONTAINER (widget))
1751         break;
1752
1753       widget = gtk_widget_get_parent (widget);
1754     }
1755   while (widget);
1756
1757   if (widget && !invalidate_only)
1758     gtk_container_queue_resize_handler (GTK_CONTAINER (widget));
1759 }
1760
1761 void
1762 _gtk_container_queue_restyle (GtkContainer *container)
1763 {
1764   GtkContainerPrivate *priv;
1765
1766   g_return_if_fail (GTK_CONTAINER (container));
1767
1768   priv = container->priv;
1769
1770   if (priv->restyle_pending)
1771     return;
1772
1773   gtk_container_start_idle_sizer (container);
1774
1775   container_restyle_queue = g_slist_prepend (container_restyle_queue, container);
1776   priv->restyle_pending = TRUE;
1777 }
1778
1779 /**
1780  * _gtk_container_queue_resize:
1781  * @container: a #GtkContainer
1782  *
1783  * Determines the "resize container" in the hierarchy above this container
1784  * (typically the toplevel, but other containers can be set as resize
1785  * containers with gtk_container_set_resize_mode()), marks the container
1786  * and all parents up to and including the resize container as needing
1787  * to have sizes recompted, and if necessary adds the resize container
1788  * to the queue of containers that will be resized out at idle.
1789  */
1790 void
1791 _gtk_container_queue_resize (GtkContainer *container)
1792 {
1793   _gtk_container_queue_resize_internal (container, FALSE);
1794 }
1795
1796 /**
1797  * _gtk_container_resize_invalidate:
1798  * @container: a #GtkContainer
1799  *
1800  * Invalidates cached sizes like _gtk_container_queue_resize() but doesn't
1801  * actually queue the resize container for resize.
1802  */
1803 void
1804 _gtk_container_resize_invalidate (GtkContainer *container)
1805 {
1806   _gtk_container_queue_resize_internal (container, TRUE);
1807 }
1808
1809 void
1810 gtk_container_check_resize (GtkContainer *container)
1811 {
1812   g_return_if_fail (GTK_IS_CONTAINER (container));
1813
1814   g_signal_emit (container, container_signals[CHECK_RESIZE], 0);
1815 }
1816
1817 static void
1818 gtk_container_real_check_resize (GtkContainer *container)
1819 {
1820   GtkWidget *widget = GTK_WIDGET (container);
1821   GtkAllocation allocation;
1822   GtkRequisition requisition;
1823
1824   gtk_widget_get_preferred_size (widget,
1825                                  &requisition, NULL);
1826   gtk_widget_get_allocation (widget, &allocation);
1827
1828   if (requisition.width > allocation.width ||
1829       requisition.height > allocation.height)
1830     {
1831       if (GTK_IS_RESIZE_CONTAINER (container))
1832         {
1833           gtk_widget_size_allocate (widget, &allocation);
1834           gtk_widget_set_allocation (widget, &allocation);
1835         }
1836       else
1837         gtk_widget_queue_resize (widget);
1838     }
1839   else
1840     {
1841       gtk_container_resize_children (container);
1842     }
1843 }
1844
1845 /* The container hasn't changed size but one of its children
1846  *  queued a resize request. Which means that the allocation
1847  *  is not sufficient for the requisition of some child.
1848  *  We've already performed a size request at this point,
1849  *  so we simply need to reallocate and let the allocation
1850  *  trickle down via GTK_WIDGET_ALLOC_NEEDED flags.
1851  */
1852 void
1853 gtk_container_resize_children (GtkContainer *container)
1854 {
1855   GtkAllocation allocation;
1856   GtkWidget *widget;
1857
1858   /* resizing invariants:
1859    * toplevels have *always* resize_mode != GTK_RESIZE_PARENT set.
1860    * containers that have an idle sizer pending must be flagged with
1861    * RESIZE_PENDING.
1862    */
1863   g_return_if_fail (GTK_IS_CONTAINER (container));
1864
1865   widget = GTK_WIDGET (container);
1866   gtk_widget_get_allocation (widget, &allocation);
1867
1868   gtk_widget_size_allocate (widget, &allocation);
1869   gtk_widget_set_allocation (widget, &allocation);
1870 }
1871
1872 static void
1873 gtk_container_adjust_size_request (GtkWidget         *widget,
1874                                    GtkOrientation     orientation,
1875                                    gint              *minimum_size,
1876                                    gint              *natural_size)
1877 {
1878   GtkContainer *container;
1879
1880   container = GTK_CONTAINER (widget);
1881
1882   if (GTK_CONTAINER_GET_CLASS (widget)->_handle_border_width)
1883     {
1884       int border_width;
1885
1886       border_width = container->priv->border_width;
1887
1888       *minimum_size += border_width * 2;
1889       *natural_size += border_width * 2;
1890     }
1891
1892   /* chain up last so gtk_widget_set_size_request() values
1893    * will have a chance to overwrite our border width.
1894    */
1895   parent_class->adjust_size_request (widget, orientation,
1896                                      minimum_size, natural_size);
1897 }
1898
1899 static void
1900 gtk_container_adjust_size_allocation (GtkWidget         *widget,
1901                                       GtkOrientation     orientation,
1902                                       gint              *minimum_size,
1903                                       gint              *natural_size,
1904                                       gint              *allocated_pos,
1905                                       gint              *allocated_size)
1906 {
1907   GtkContainer *container;
1908   int border_width;
1909
1910   container = GTK_CONTAINER (widget);
1911
1912   if (!GTK_CONTAINER_GET_CLASS (widget)->_handle_border_width)
1913     {
1914       parent_class->adjust_size_allocation (widget, orientation,
1915                                             minimum_size, natural_size, allocated_pos,
1916                                             allocated_size);
1917       return;
1918     }
1919
1920   border_width = container->priv->border_width;
1921
1922   *allocated_size -= border_width * 2;
1923
1924   /* If we get a pathological too-small allocation to hold
1925    * even the border width, leave all allocation to the actual
1926    * widget, and leave x,y unchanged. (GtkWidget's min size is
1927    * 1x1 if you're wondering why <1 and not <0)
1928    *
1929    * As long as we have space, set x,y properly.
1930    */
1931
1932   if (*allocated_size < 1)
1933     {
1934       *allocated_size += border_width * 2;
1935     }
1936   else
1937     {
1938       *allocated_pos += border_width;
1939       *minimum_size -= border_width * 2;
1940       *natural_size -= border_width * 2;
1941     }
1942
1943   /* Chain up to GtkWidgetClass *after* removing our border width from
1944    * the proposed allocation size. This is because it's possible that the
1945    * widget was allocated more space than it needs in a said orientation,
1946    * if GtkWidgetClass does any alignments and thus limits the size to the
1947    * natural size... then we need that to be done *after* removing any margins
1948    * and padding values.
1949    */
1950   parent_class->adjust_size_allocation (widget, orientation,
1951                                         minimum_size, natural_size, allocated_pos,
1952                                         allocated_size);
1953 }
1954
1955 typedef struct {
1956   gint hfw;
1957   gint wfh;
1958 } RequestModeCount;
1959
1960 static void
1961 count_request_modes (GtkWidget        *widget,
1962                      RequestModeCount *count)
1963 {
1964   GtkSizeRequestMode mode = gtk_widget_get_request_mode (widget);
1965
1966   switch (mode)
1967     {
1968     case GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH:
1969       count->hfw++;
1970       break;
1971     case GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT:
1972       count->wfh++;
1973       break;
1974     case GTK_SIZE_REQUEST_CONSTANT_SIZE:
1975     default:
1976       break;
1977     }
1978 }
1979
1980 static GtkSizeRequestMode 
1981 gtk_container_get_request_mode (GtkWidget *widget)
1982 {
1983   GtkContainer        *container = GTK_CONTAINER (widget);
1984   GtkContainerPrivate *priv      = container->priv;
1985
1986   /* Recalculate the request mode of the children by majority
1987    * vote whenever the internal content changes */
1988   if (_gtk_widget_get_width_request_needed (widget) ||
1989       _gtk_widget_get_height_request_needed (widget))
1990     {
1991       RequestModeCount count = { 0, 0 };
1992
1993       gtk_container_forall (container, (GtkCallback)count_request_modes, &count);
1994
1995       if (!count.hfw && !count.wfh)
1996         priv->request_mode = GTK_SIZE_REQUEST_CONSTANT_SIZE;
1997       else
1998         priv->request_mode = count.wfh > count.hfw ? 
1999           GTK_SIZE_REQUEST_WIDTH_FOR_HEIGHT :
2000           GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH;
2001     }
2002
2003   return priv->request_mode;
2004 }
2005
2006 /**
2007  * gtk_container_class_handle_border_width:
2008  * @klass: the class struct of a #GtkContainer subclass
2009  *
2010  * Modifies a subclass of #GtkContainerClass to automatically add and
2011  * remove the border-width setting on GtkContainer.  This allows the
2012  * subclass to ignore the border width in its size request and
2013  * allocate methods. The intent is for a subclass to invoke this
2014  * in its class_init function.
2015  *
2016  * gtk_container_class_handle_border_width() is necessary because it
2017  * would break API too badly to make this behavior the default. So
2018  * subclasses must "opt in" to the parent class handling border_width
2019  * for them.
2020  */
2021 void
2022 gtk_container_class_handle_border_width (GtkContainerClass *klass)
2023 {
2024   g_return_if_fail (GTK_IS_CONTAINER_CLASS (klass));
2025
2026   klass->_handle_border_width = TRUE;
2027 }
2028
2029 /**
2030  * gtk_container_forall:
2031  * @container: a #GtkContainer
2032  * @callback: (scope call) (closure callback_data): a callback
2033  * @callback_data: callback user data
2034  *
2035  * Invokes @callback on each child of @container, including children
2036  * that are considered "internal" (implementation details of the
2037  * container). "Internal" children generally weren't added by the user
2038  * of the container, but were added by the container implementation
2039  * itself.  Most applications should use gtk_container_foreach(),
2040  * rather than gtk_container_forall().
2041  *
2042  * Virtual: forall
2043  **/
2044 void
2045 gtk_container_forall (GtkContainer *container,
2046                       GtkCallback   callback,
2047                       gpointer      callback_data)
2048 {
2049   GtkContainerClass *class;
2050
2051   g_return_if_fail (GTK_IS_CONTAINER (container));
2052   g_return_if_fail (callback != NULL);
2053
2054   class = GTK_CONTAINER_GET_CLASS (container);
2055
2056   if (class->forall)
2057     class->forall (container, TRUE, callback, callback_data);
2058 }
2059
2060 /**
2061  * gtk_container_foreach:
2062  * @container: a #GtkContainer
2063  * @callback: (scope call):  a callback
2064  * @callback_data: callback user data
2065  *
2066  * Invokes @callback on each non-internal child of @container. See
2067  * gtk_container_forall() for details on what constitutes an
2068  * "internal" child.  Most applications should use
2069  * gtk_container_foreach(), rather than gtk_container_forall().
2070  **/
2071 void
2072 gtk_container_foreach (GtkContainer *container,
2073                        GtkCallback   callback,
2074                        gpointer      callback_data)
2075 {
2076   GtkContainerClass *class;
2077
2078   g_return_if_fail (GTK_IS_CONTAINER (container));
2079   g_return_if_fail (callback != NULL);
2080
2081   class = GTK_CONTAINER_GET_CLASS (container);
2082
2083   if (class->forall)
2084     class->forall (container, FALSE, callback, callback_data);
2085 }
2086
2087 /**
2088  * gtk_container_set_focus_child:
2089  * @container: a #GtkContainer
2090  * @child: (allow-none): a #GtkWidget, or %NULL
2091  *
2092  * Sets, or unsets if @child is %NULL, the focused child of @container.
2093  *
2094  * This function emits the GtkContainer::set_focus_child signal of
2095  * @container. Implementations of #GtkContainer can override the
2096  * default behaviour by overriding the class closure of this signal.
2097  *
2098  * This is function is mostly meant to be used by widgets. Applications can use
2099  * gtk_widget_grab_focus() to manualy set the focus to a specific widget.
2100  */
2101 void
2102 gtk_container_set_focus_child (GtkContainer *container,
2103                                GtkWidget    *child)
2104 {
2105   g_return_if_fail (GTK_IS_CONTAINER (container));
2106   if (child)
2107     g_return_if_fail (GTK_IS_WIDGET (child));
2108
2109   g_signal_emit (container, container_signals[SET_FOCUS_CHILD], 0, child);
2110 }
2111
2112 /**
2113  * gtk_container_get_focus_child:
2114  * @container: a #GtkContainer
2115  *
2116  * Returns the current focus child widget inside @container. This is not the
2117  * currently focused widget. That can be obtained by calling
2118  * gtk_window_get_focus().
2119  *
2120  * Returns: (transfer none): The child widget which will receive the
2121  *          focus inside @container when the @conatiner is focussed,
2122  *          or %NULL if none is set.
2123  *
2124  * Since: 2.14
2125  **/
2126 GtkWidget *
2127 gtk_container_get_focus_child (GtkContainer *container)
2128 {
2129   g_return_val_if_fail (GTK_IS_CONTAINER (container), NULL);
2130
2131   return container->priv->focus_child;
2132 }
2133
2134 /**
2135  * gtk_container_get_children:
2136  * @container: a #GtkContainer
2137  *
2138  * Returns the container's non-internal children. See
2139  * gtk_container_forall() for details on what constitutes an "internal" child.
2140  *
2141  * Return value: (element-type GtkWidget) (transfer container): a newly-allocated list of the container's non-internal children.
2142  **/
2143 GList*
2144 gtk_container_get_children (GtkContainer *container)
2145 {
2146   GList *children = NULL;
2147
2148   gtk_container_foreach (container,
2149                          gtk_container_children_callback,
2150                          &children);
2151
2152   return g_list_reverse (children);
2153 }
2154
2155 static void
2156 gtk_container_child_position_callback (GtkWidget *widget,
2157                                        gpointer   client_data)
2158 {
2159   struct {
2160     GtkWidget *child;
2161     guint i;
2162     guint index;
2163   } *data = client_data;
2164
2165   data->i++;
2166   if (data->child == widget)
2167     data->index = data->i;
2168 }
2169
2170 static gchar*
2171 gtk_container_child_default_composite_name (GtkContainer *container,
2172                                             GtkWidget    *child)
2173 {
2174   struct {
2175     GtkWidget *child;
2176     guint i;
2177     guint index;
2178   } data;
2179   gchar *name;
2180
2181   /* fallback implementation */
2182   data.child = child;
2183   data.i = 0;
2184   data.index = 0;
2185   gtk_container_forall (container,
2186                         gtk_container_child_position_callback,
2187                         &data);
2188
2189   name = g_strdup_printf ("%s-%u",
2190                           g_type_name (G_TYPE_FROM_INSTANCE (child)),
2191                           data.index);
2192
2193   return name;
2194 }
2195
2196 gchar*
2197 _gtk_container_child_composite_name (GtkContainer *container,
2198                                     GtkWidget    *child)
2199 {
2200   gboolean composite_child;
2201
2202   g_return_val_if_fail (GTK_IS_CONTAINER (container), NULL);
2203   g_return_val_if_fail (GTK_IS_WIDGET (child), NULL);
2204   g_return_val_if_fail (gtk_widget_get_parent (child) == GTK_WIDGET (container), NULL);
2205
2206   g_object_get (child, "composite-child", &composite_child, NULL);
2207   if (composite_child)
2208     {
2209       static GQuark quark_composite_name = 0;
2210       gchar *name;
2211
2212       if (!quark_composite_name)
2213         quark_composite_name = g_quark_from_static_string ("gtk-composite-name");
2214
2215       name = g_object_get_qdata (G_OBJECT (child), quark_composite_name);
2216       if (!name)
2217         {
2218           GtkContainerClass *class;
2219
2220           class = GTK_CONTAINER_GET_CLASS (container);
2221           if (class->composite_name)
2222             name = class->composite_name (container, child);
2223         }
2224       else
2225         name = g_strdup (name);
2226
2227       return name;
2228     }
2229
2230   return NULL;
2231 }
2232
2233 typedef struct {
2234   gboolean hexpand;
2235   gboolean vexpand;
2236 } ComputeExpandData;
2237
2238 static void
2239 gtk_container_compute_expand_callback (GtkWidget *widget,
2240                                        gpointer   client_data)
2241 {
2242   ComputeExpandData *data = client_data;
2243
2244   /* note that we don't get_expand on the child if we already know we
2245    * have to expand, so we only recurse into children until we find
2246    * one that expands and then we basically don't do any more
2247    * work. This means that we can leave some children in a
2248    * need_compute_expand state, which is fine, as long as GtkWidget
2249    * doesn't rely on an invariant that "if a child has
2250    * need_compute_expand, its parents also do"
2251    *
2252    * gtk_widget_compute_expand() always returns FALSE if the
2253    * child is !visible so that's taken care of.
2254    */
2255   data->hexpand = data->hexpand ||
2256     gtk_widget_compute_expand (widget, GTK_ORIENTATION_HORIZONTAL);
2257
2258   data->vexpand = data->vexpand ||
2259     gtk_widget_compute_expand (widget, GTK_ORIENTATION_VERTICAL);
2260 }
2261
2262 static void
2263 gtk_container_compute_expand (GtkWidget         *widget,
2264                               gboolean          *hexpand_p,
2265                               gboolean          *vexpand_p)
2266 {
2267   ComputeExpandData data;
2268
2269   data.hexpand = FALSE;
2270   data.vexpand = FALSE;
2271
2272   gtk_container_forall (GTK_CONTAINER (widget),
2273                         gtk_container_compute_expand_callback,
2274                         &data);
2275
2276   *hexpand_p = data.hexpand;
2277   *vexpand_p = data.vexpand;
2278 }
2279
2280 static void
2281 gtk_container_real_set_focus_child (GtkContainer     *container,
2282                                     GtkWidget        *child)
2283 {
2284   GtkContainerPrivate *priv;
2285
2286   g_return_if_fail (GTK_IS_CONTAINER (container));
2287   g_return_if_fail (child == NULL || GTK_IS_WIDGET (child));
2288
2289   priv = container->priv;
2290
2291   if (child != priv->focus_child)
2292     {
2293       if (priv->focus_child)
2294         g_object_unref (priv->focus_child);
2295       priv->focus_child = child;
2296       if (priv->focus_child)
2297         g_object_ref (priv->focus_child);
2298     }
2299
2300
2301   /* check for h/v adjustments
2302    */
2303   if (priv->focus_child)
2304     {
2305       GtkAdjustment *hadj;
2306       GtkAdjustment *vadj;
2307       GtkAllocation allocation;
2308       GtkWidget *focus_child;
2309       gint x, y;
2310
2311       hadj = g_object_get_qdata (G_OBJECT (container), hadjustment_key_id);
2312       vadj = g_object_get_qdata (G_OBJECT (container), vadjustment_key_id);
2313       if (hadj || vadj)
2314         {
2315
2316           focus_child = priv->focus_child;
2317           while (GTK_IS_CONTAINER (focus_child) && gtk_container_get_focus_child (GTK_CONTAINER (focus_child)))
2318             {
2319               focus_child = gtk_container_get_focus_child (GTK_CONTAINER (focus_child));
2320             }
2321
2322           gtk_widget_translate_coordinates (focus_child, priv->focus_child,
2323                                             0, 0, &x, &y);
2324
2325           gtk_widget_get_allocation (priv->focus_child, &allocation);
2326           x += allocation.x;
2327           y += allocation.y;
2328
2329           gtk_widget_get_allocation (focus_child, &allocation);
2330
2331           if (vadj)
2332             gtk_adjustment_clamp_page (vadj, y, y + allocation.height);
2333
2334           if (hadj)
2335             gtk_adjustment_clamp_page (hadj, x, x + allocation.width);
2336         }
2337     }
2338 }
2339
2340 static GList*
2341 get_focus_chain (GtkContainer *container)
2342 {
2343   return g_object_get_data (G_OBJECT (container), "gtk-container-focus-chain");
2344 }
2345
2346 /* same as gtk_container_get_children, except it includes internals
2347  */
2348 GList *
2349 _gtk_container_get_all_children (GtkContainer *container)
2350 {
2351   GList *children = NULL;
2352
2353   gtk_container_forall (container,
2354                          gtk_container_children_callback,
2355                          &children);
2356
2357   return children;
2358 }
2359
2360 static GtkWidgetPath *
2361 gtk_container_real_get_path_for_child (GtkContainer *container,
2362                                        GtkWidget    *child)
2363 {
2364   GtkStyleContext *context;
2365   GtkWidgetPath *path;
2366   GList *classes;
2367
2368   context = gtk_widget_get_style_context (GTK_WIDGET (container));
2369   path = _gtk_widget_create_path (GTK_WIDGET (container));
2370
2371   /* Copy any permanent classes to the path */
2372   classes = gtk_style_context_list_classes (context);
2373
2374   while (classes)
2375     {
2376       GList *cur;
2377
2378       cur = classes;
2379       classes = classes->next;
2380
2381       gtk_widget_path_iter_add_class (path, -1, cur->data);
2382       g_list_free_1 (cur);
2383     }
2384
2385   gtk_widget_path_append_for_widget (path, child);
2386
2387   return path;
2388 }
2389
2390 static gboolean
2391 gtk_container_focus (GtkWidget        *widget,
2392                      GtkDirectionType  direction)
2393 {
2394   GList *children;
2395   GList *sorted_children;
2396   gint return_val;
2397   GtkContainer *container;
2398   GtkContainerPrivate *priv;
2399
2400   g_return_val_if_fail (GTK_IS_CONTAINER (widget), FALSE);
2401
2402   container = GTK_CONTAINER (widget);
2403   priv = container->priv;
2404
2405   return_val = FALSE;
2406
2407   if (gtk_widget_get_can_focus (widget))
2408     {
2409       if (!gtk_widget_has_focus (widget))
2410         {
2411           gtk_widget_grab_focus (widget);
2412           return_val = TRUE;
2413         }
2414     }
2415   else
2416     {
2417       /* Get a list of the containers children, allowing focus
2418        * chain to override.
2419        */
2420       if (priv->has_focus_chain)
2421         children = g_list_copy (get_focus_chain (container));
2422       else
2423         children = _gtk_container_get_all_children (container);
2424
2425       if (priv->has_focus_chain &&
2426           (direction == GTK_DIR_TAB_FORWARD ||
2427            direction == GTK_DIR_TAB_BACKWARD))
2428         {
2429           sorted_children = g_list_copy (children);
2430
2431           if (direction == GTK_DIR_TAB_BACKWARD)
2432             sorted_children = g_list_reverse (sorted_children);
2433         }
2434       else
2435         sorted_children = _gtk_container_focus_sort (container, children, direction, NULL);
2436
2437       return_val = gtk_container_focus_move (container, sorted_children, direction);
2438
2439       g_list_free (sorted_children);
2440       g_list_free (children);
2441     }
2442
2443   return return_val;
2444 }
2445
2446 static gint
2447 tab_compare (gconstpointer a,
2448              gconstpointer b,
2449              gpointer      data)
2450 {
2451   GtkAllocation child1_allocation, child2_allocation;
2452   const GtkWidget *child1 = a;
2453   const GtkWidget *child2 = b;
2454   GtkTextDirection text_direction = GPOINTER_TO_INT (data);
2455   gint y1, y2;
2456
2457   gtk_widget_get_allocation ((GtkWidget *) child1, &child1_allocation);
2458   gtk_widget_get_allocation ((GtkWidget *) child2, &child2_allocation);
2459
2460   y1 = child1_allocation.y + child1_allocation.height / 2;
2461   y2 = child2_allocation.y + child2_allocation.height / 2;
2462
2463   if (y1 == y2)
2464     {
2465       gint x1 = child1_allocation.x + child1_allocation.width / 2;
2466       gint x2 = child2_allocation.x + child2_allocation.width / 2;
2467
2468       if (text_direction == GTK_TEXT_DIR_RTL)
2469         return (x1 < x2) ? 1 : ((x1 == x2) ? 0 : -1);
2470       else
2471         return (x1 < x2) ? -1 : ((x1 == x2) ? 0 : 1);
2472     }
2473   else
2474     return (y1 < y2) ? -1 : 1;
2475 }
2476
2477 static GList *
2478 gtk_container_focus_sort_tab (GtkContainer     *container,
2479                               GList            *children,
2480                               GtkDirectionType  direction,
2481                               GtkWidget        *old_focus)
2482 {
2483   GtkTextDirection text_direction = gtk_widget_get_direction (GTK_WIDGET (container));
2484   children = g_list_sort_with_data (children, tab_compare, GINT_TO_POINTER (text_direction));
2485
2486   /* if we are going backwards then reverse the order
2487    *  of the children.
2488    */
2489   if (direction == GTK_DIR_TAB_BACKWARD)
2490     children = g_list_reverse (children);
2491
2492   return children;
2493 }
2494
2495 /* Get coordinates of @widget's allocation with respect to
2496  * allocation of @container.
2497  */
2498 static gboolean
2499 get_allocation_coords (GtkContainer  *container,
2500                        GtkWidget     *widget,
2501                        GdkRectangle  *allocation)
2502 {
2503   gtk_widget_get_allocation (widget, allocation);
2504
2505   return gtk_widget_translate_coordinates (widget, GTK_WIDGET (container),
2506                                            0, 0, &allocation->x, &allocation->y);
2507 }
2508
2509 /* Look for a child in @children that is intermediate between
2510  * the focus widget and container. This widget, if it exists,
2511  * acts as the starting widget for focus navigation.
2512  */
2513 static GtkWidget *
2514 find_old_focus (GtkContainer *container,
2515                 GList        *children)
2516 {
2517   GList *tmp_list = children;
2518   while (tmp_list)
2519     {
2520       GtkWidget *child = tmp_list->data;
2521       GtkWidget *widget = child;
2522
2523       while (widget && widget != (GtkWidget *)container)
2524         {
2525           GtkWidget *parent;
2526
2527           parent = gtk_widget_get_parent (widget);
2528
2529           if (parent && (gtk_container_get_focus_child (GTK_CONTAINER (parent)) != widget))
2530             goto next;
2531
2532           widget = parent;
2533         }
2534
2535       return child;
2536
2537     next:
2538       tmp_list = tmp_list->next;
2539     }
2540
2541   return NULL;
2542 }
2543
2544 static gboolean
2545 old_focus_coords (GtkContainer *container,
2546                   GdkRectangle *old_focus_rect)
2547 {
2548   GtkWidget *widget = GTK_WIDGET (container);
2549   GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
2550   GtkWidget *old_focus;
2551
2552   if (GTK_IS_WINDOW (toplevel))
2553     {
2554       old_focus = gtk_window_get_focus (GTK_WINDOW (toplevel));
2555       if (old_focus)
2556         return get_allocation_coords (container, old_focus, old_focus_rect);
2557     }
2558
2559   return FALSE;
2560 }
2561
2562 typedef struct _CompareInfo CompareInfo;
2563
2564 struct _CompareInfo
2565 {
2566   GtkContainer *container;
2567   gint x;
2568   gint y;
2569   gboolean reverse;
2570 };
2571
2572 static gint
2573 up_down_compare (gconstpointer a,
2574                  gconstpointer b,
2575                  gpointer      data)
2576 {
2577   GdkRectangle allocation1;
2578   GdkRectangle allocation2;
2579   CompareInfo *compare = data;
2580   gint y1, y2;
2581
2582   get_allocation_coords (compare->container, (GtkWidget *)a, &allocation1);
2583   get_allocation_coords (compare->container, (GtkWidget *)b, &allocation2);
2584
2585   y1 = allocation1.y + allocation1.height / 2;
2586   y2 = allocation2.y + allocation2.height / 2;
2587
2588   if (y1 == y2)
2589     {
2590       gint x1 = abs (allocation1.x + allocation1.width / 2 - compare->x);
2591       gint x2 = abs (allocation2.x + allocation2.width / 2 - compare->x);
2592
2593       if (compare->reverse)
2594         return (x1 < x2) ? 1 : ((x1 == x2) ? 0 : -1);
2595       else
2596         return (x1 < x2) ? -1 : ((x1 == x2) ? 0 : 1);
2597     }
2598   else
2599     return (y1 < y2) ? -1 : 1;
2600 }
2601
2602 static GList *
2603 gtk_container_focus_sort_up_down (GtkContainer     *container,
2604                                   GList            *children,
2605                                   GtkDirectionType  direction,
2606                                   GtkWidget        *old_focus)
2607 {
2608   CompareInfo compare;
2609   GList *tmp_list;
2610   GdkRectangle old_allocation;
2611
2612   compare.container = container;
2613   compare.reverse = (direction == GTK_DIR_UP);
2614
2615   if (!old_focus)
2616       old_focus = find_old_focus (container, children);
2617
2618   if (old_focus && get_allocation_coords (container, old_focus, &old_allocation))
2619     {
2620       gint compare_x1;
2621       gint compare_x2;
2622       gint compare_y;
2623
2624       /* Delete widgets from list that don't match minimum criteria */
2625
2626       compare_x1 = old_allocation.x;
2627       compare_x2 = old_allocation.x + old_allocation.width;
2628
2629       if (direction == GTK_DIR_UP)
2630         compare_y = old_allocation.y;
2631       else
2632         compare_y = old_allocation.y + old_allocation.height;
2633
2634       tmp_list = children;
2635       while (tmp_list)
2636         {
2637           GtkWidget *child = tmp_list->data;
2638           GList *next = tmp_list->next;
2639           gint child_x1, child_x2;
2640           GdkRectangle child_allocation;
2641
2642           if (child != old_focus)
2643             {
2644               if (get_allocation_coords (container, child, &child_allocation))
2645                 {
2646                   child_x1 = child_allocation.x;
2647                   child_x2 = child_allocation.x + child_allocation.width;
2648
2649                   if ((child_x2 <= compare_x1 || child_x1 >= compare_x2) /* No horizontal overlap */ ||
2650                       (direction == GTK_DIR_DOWN && child_allocation.y + child_allocation.height < compare_y) || /* Not below */
2651                       (direction == GTK_DIR_UP && child_allocation.y > compare_y)) /* Not above */
2652                     {
2653                       children = g_list_delete_link (children, tmp_list);
2654                     }
2655                 }
2656               else
2657                 children = g_list_delete_link (children, tmp_list);
2658             }
2659
2660           tmp_list = next;
2661         }
2662
2663       compare.x = (compare_x1 + compare_x2) / 2;
2664       compare.y = old_allocation.y + old_allocation.height / 2;
2665     }
2666   else
2667     {
2668       /* No old focus widget, need to figure out starting x,y some other way
2669        */
2670       GtkAllocation allocation;
2671       GtkWidget *widget = GTK_WIDGET (container);
2672       GdkRectangle old_focus_rect;
2673
2674       gtk_widget_get_allocation (widget, &allocation);
2675
2676       if (old_focus_coords (container, &old_focus_rect))
2677         {
2678           compare.x = old_focus_rect.x + old_focus_rect.width / 2;
2679         }
2680       else
2681         {
2682           if (!gtk_widget_get_has_window (widget))
2683             compare.x = allocation.x + allocation.width / 2;
2684           else
2685             compare.x = allocation.width / 2;
2686         }
2687
2688       if (!gtk_widget_get_has_window (widget))
2689         compare.y = (direction == GTK_DIR_DOWN) ? allocation.y : allocation.y + allocation.height;
2690       else
2691         compare.y = (direction == GTK_DIR_DOWN) ? 0 : + allocation.height;
2692     }
2693
2694   children = g_list_sort_with_data (children, up_down_compare, &compare);
2695
2696   if (compare.reverse)
2697     children = g_list_reverse (children);
2698
2699   return children;
2700 }
2701
2702 static gint
2703 left_right_compare (gconstpointer a,
2704                     gconstpointer b,
2705                     gpointer      data)
2706 {
2707   GdkRectangle allocation1;
2708   GdkRectangle allocation2;
2709   CompareInfo *compare = data;
2710   gint x1, x2;
2711
2712   get_allocation_coords (compare->container, (GtkWidget *)a, &allocation1);
2713   get_allocation_coords (compare->container, (GtkWidget *)b, &allocation2);
2714
2715   x1 = allocation1.x + allocation1.width / 2;
2716   x2 = allocation2.x + allocation2.width / 2;
2717
2718   if (x1 == x2)
2719     {
2720       gint y1 = abs (allocation1.y + allocation1.height / 2 - compare->y);
2721       gint y2 = abs (allocation2.y + allocation2.height / 2 - compare->y);
2722
2723       if (compare->reverse)
2724         return (y1 < y2) ? 1 : ((y1 == y2) ? 0 : -1);
2725       else
2726         return (y1 < y2) ? -1 : ((y1 == y2) ? 0 : 1);
2727     }
2728   else
2729     return (x1 < x2) ? -1 : 1;
2730 }
2731
2732 static GList *
2733 gtk_container_focus_sort_left_right (GtkContainer     *container,
2734                                      GList            *children,
2735                                      GtkDirectionType  direction,
2736                                      GtkWidget        *old_focus)
2737 {
2738   CompareInfo compare;
2739   GList *tmp_list;
2740   GdkRectangle old_allocation;
2741
2742   compare.container = container;
2743   compare.reverse = (direction == GTK_DIR_LEFT);
2744
2745   if (!old_focus)
2746     old_focus = find_old_focus (container, children);
2747
2748   if (old_focus && get_allocation_coords (container, old_focus, &old_allocation))
2749     {
2750       gint compare_y1;
2751       gint compare_y2;
2752       gint compare_x;
2753
2754       /* Delete widgets from list that don't match minimum criteria */
2755
2756       compare_y1 = old_allocation.y;
2757       compare_y2 = old_allocation.y + old_allocation.height;
2758
2759       if (direction == GTK_DIR_LEFT)
2760         compare_x = old_allocation.x;
2761       else
2762         compare_x = old_allocation.x + old_allocation.width;
2763
2764       tmp_list = children;
2765       while (tmp_list)
2766         {
2767           GtkWidget *child = tmp_list->data;
2768           GList *next = tmp_list->next;
2769           gint child_y1, child_y2;
2770           GdkRectangle child_allocation;
2771
2772           if (child != old_focus)
2773             {
2774               if (get_allocation_coords (container, child, &child_allocation))
2775                 {
2776                   child_y1 = child_allocation.y;
2777                   child_y2 = child_allocation.y + child_allocation.height;
2778
2779                   if ((child_y2 <= compare_y1 || child_y1 >= compare_y2) /* No vertical overlap */ ||
2780                       (direction == GTK_DIR_RIGHT && child_allocation.x + child_allocation.width < compare_x) || /* Not to left */
2781                       (direction == GTK_DIR_LEFT && child_allocation.x > compare_x)) /* Not to right */
2782                     {
2783                       children = g_list_delete_link (children, tmp_list);
2784                     }
2785                 }
2786               else
2787                 children = g_list_delete_link (children, tmp_list);
2788             }
2789
2790           tmp_list = next;
2791         }
2792
2793       compare.y = (compare_y1 + compare_y2) / 2;
2794       compare.x = old_allocation.x + old_allocation.width / 2;
2795     }
2796   else
2797     {
2798       /* No old focus widget, need to figure out starting x,y some other way
2799        */
2800       GtkAllocation allocation;
2801       GtkWidget *widget = GTK_WIDGET (container);
2802       GdkRectangle old_focus_rect;
2803
2804       gtk_widget_get_allocation (widget, &allocation);
2805
2806       if (old_focus_coords (container, &old_focus_rect))
2807         {
2808           compare.y = old_focus_rect.y + old_focus_rect.height / 2;
2809         }
2810       else
2811         {
2812           if (!gtk_widget_get_has_window (widget))
2813             compare.y = allocation.y + allocation.height / 2;
2814           else
2815             compare.y = allocation.height / 2;
2816         }
2817
2818       if (!gtk_widget_get_has_window (widget))
2819         compare.x = (direction == GTK_DIR_RIGHT) ? allocation.x : allocation.x + allocation.width;
2820       else
2821         compare.x = (direction == GTK_DIR_RIGHT) ? 0 : allocation.width;
2822     }
2823
2824   children = g_list_sort_with_data (children, left_right_compare, &compare);
2825
2826   if (compare.reverse)
2827     children = g_list_reverse (children);
2828
2829   return children;
2830 }
2831
2832 /**
2833  * gtk_container_focus_sort:
2834  * @container: a #GtkContainer
2835  * @children:  a list of descendents of @container (they don't
2836  *             have to be direct children)
2837  * @direction: focus direction
2838  * @old_focus: (allow-none): widget to use for the starting position, or %NULL
2839  *             to determine this automatically.
2840  *             (Note, this argument isn't used for GTK_DIR_TAB_*,
2841  *              which is the only @direction we use currently,
2842  *              so perhaps this argument should be removed)
2843  *
2844  * Sorts @children in the correct order for focusing with
2845  * direction type @direction.
2846  *
2847  * Return value: a copy of @children, sorted in correct focusing order,
2848  *   with children that aren't suitable for focusing in this direction
2849  *   removed.
2850  **/
2851 GList *
2852 _gtk_container_focus_sort (GtkContainer     *container,
2853                            GList            *children,
2854                            GtkDirectionType  direction,
2855                            GtkWidget        *old_focus)
2856 {
2857   GList *visible_children = NULL;
2858
2859   while (children)
2860     {
2861       if (gtk_widget_get_realized (children->data))
2862         visible_children = g_list_prepend (visible_children, children->data);
2863       children = children->next;
2864     }
2865
2866   switch (direction)
2867     {
2868     case GTK_DIR_TAB_FORWARD:
2869     case GTK_DIR_TAB_BACKWARD:
2870       return gtk_container_focus_sort_tab (container, visible_children, direction, old_focus);
2871     case GTK_DIR_UP:
2872     case GTK_DIR_DOWN:
2873       return gtk_container_focus_sort_up_down (container, visible_children, direction, old_focus);
2874     case GTK_DIR_LEFT:
2875     case GTK_DIR_RIGHT:
2876       return gtk_container_focus_sort_left_right (container, visible_children, direction, old_focus);
2877     }
2878
2879   g_assert_not_reached ();
2880
2881   return NULL;
2882 }
2883
2884 static gboolean
2885 gtk_container_focus_move (GtkContainer     *container,
2886                           GList            *children,
2887                           GtkDirectionType  direction)
2888 {
2889   GtkContainerPrivate *priv = container->priv;
2890   GtkWidget *focus_child;
2891   GtkWidget *child;
2892
2893   focus_child = priv->focus_child;
2894
2895   while (children)
2896     {
2897       child = children->data;
2898       children = children->next;
2899
2900       if (!child)
2901         continue;
2902
2903       if (focus_child)
2904         {
2905           if (focus_child == child)
2906             {
2907               focus_child = NULL;
2908
2909                 if (gtk_widget_child_focus (child, direction))
2910                   return TRUE;
2911             }
2912         }
2913       else if (gtk_widget_is_drawable (child) &&
2914                gtk_widget_is_ancestor (child, GTK_WIDGET (container)))
2915         {
2916           if (gtk_widget_child_focus (child, direction))
2917             return TRUE;
2918         }
2919     }
2920
2921   return FALSE;
2922 }
2923
2924
2925 static void
2926 gtk_container_children_callback (GtkWidget *widget,
2927                                  gpointer   client_data)
2928 {
2929   GList **children;
2930
2931   children = (GList**) client_data;
2932   *children = g_list_prepend (*children, widget);
2933 }
2934
2935 static void
2936 chain_widget_destroyed (GtkWidget *widget,
2937                         gpointer   user_data)
2938 {
2939   GtkContainer *container;
2940   GList *chain;
2941
2942   container = GTK_CONTAINER (user_data);
2943
2944   chain = g_object_get_data (G_OBJECT (container),
2945                              "gtk-container-focus-chain");
2946
2947   chain = g_list_remove (chain, widget);
2948
2949   g_signal_handlers_disconnect_by_func (widget,
2950                                         chain_widget_destroyed,
2951                                         user_data);
2952
2953   g_object_set_data (G_OBJECT (container),
2954                      I_("gtk-container-focus-chain"),
2955                      chain);
2956 }
2957
2958 /**
2959  * gtk_container_set_focus_chain:
2960  * @container: a #GtkContainer
2961  * @focusable_widgets: (transfer none) (element-type GtkWidget):
2962  *     the new focus chain
2963  *
2964  * Sets a focus chain, overriding the one computed automatically by GTK+.
2965  *
2966  * In principle each widget in the chain should be a descendant of the
2967  * container, but this is not enforced by this method, since it's allowed
2968  * to set the focus chain before you pack the widgets, or have a widget
2969  * in the chain that isn't always packed. The necessary checks are done
2970  * when the focus chain is actually traversed.
2971  **/
2972 void
2973 gtk_container_set_focus_chain (GtkContainer *container,
2974                                GList        *focusable_widgets)
2975 {
2976   GList *chain;
2977   GList *tmp_list;
2978   GtkContainerPrivate *priv;
2979
2980   g_return_if_fail (GTK_IS_CONTAINER (container));
2981
2982   priv = container->priv;
2983
2984   if (priv->has_focus_chain)
2985     gtk_container_unset_focus_chain (container);
2986
2987   priv->has_focus_chain = TRUE;
2988
2989   chain = NULL;
2990   tmp_list = focusable_widgets;
2991   while (tmp_list != NULL)
2992     {
2993       g_return_if_fail (GTK_IS_WIDGET (tmp_list->data));
2994
2995       /* In principle each widget in the chain should be a descendant
2996        * of the container, but we don't want to check that here. It's
2997        * expensive and also it's allowed to set the focus chain before
2998        * you pack the widgets, or have a widget in the chain that isn't
2999        * always packed. So we check for ancestor during actual traversal.
3000        */
3001
3002       chain = g_list_prepend (chain, tmp_list->data);
3003
3004       g_signal_connect (tmp_list->data,
3005                         "destroy",
3006                         G_CALLBACK (chain_widget_destroyed),
3007                         container);
3008
3009       tmp_list = g_list_next (tmp_list);
3010     }
3011
3012   chain = g_list_reverse (chain);
3013
3014   g_object_set_data (G_OBJECT (container),
3015                      I_("gtk-container-focus-chain"),
3016                      chain);
3017 }
3018
3019 /**
3020  * gtk_container_get_focus_chain:
3021  * @container:         a #GtkContainer
3022  * @focusable_widgets: (element-type GtkWidget) (out) (transfer container): location
3023  *                     to store the focus chain of the
3024  *                     container, or %NULL. You should free this list
3025  *                     using g_list_free() when you are done with it, however
3026  *                     no additional reference count is added to the
3027  *                     individual widgets in the focus chain.
3028  *
3029  * Retrieves the focus chain of the container, if one has been
3030  * set explicitly. If no focus chain has been explicitly
3031  * set, GTK+ computes the focus chain based on the positions
3032  * of the children. In that case, GTK+ stores %NULL in
3033  * @focusable_widgets and returns %FALSE.
3034  *
3035  * Return value: %TRUE if the focus chain of the container
3036  * has been set explicitly.
3037  **/
3038 gboolean
3039 gtk_container_get_focus_chain (GtkContainer *container,
3040                                GList       **focus_chain)
3041 {
3042   GtkContainerPrivate *priv;
3043
3044   g_return_val_if_fail (GTK_IS_CONTAINER (container), FALSE);
3045
3046   priv = container->priv;
3047
3048   if (focus_chain)
3049     {
3050       if (priv->has_focus_chain)
3051         *focus_chain = g_list_copy (get_focus_chain (container));
3052       else
3053         *focus_chain = NULL;
3054     }
3055
3056   return priv->has_focus_chain;
3057 }
3058
3059 /**
3060  * gtk_container_unset_focus_chain:
3061  * @container: a #GtkContainer
3062  *
3063  * Removes a focus chain explicitly set with gtk_container_set_focus_chain().
3064  **/
3065 void
3066 gtk_container_unset_focus_chain (GtkContainer  *container)
3067 {
3068   GtkContainerPrivate *priv;
3069
3070   g_return_if_fail (GTK_IS_CONTAINER (container));
3071
3072   priv = container->priv;
3073
3074   if (priv->has_focus_chain)
3075     {
3076       GList *chain;
3077       GList *tmp_list;
3078
3079       chain = get_focus_chain (container);
3080
3081       priv->has_focus_chain = FALSE;
3082
3083       g_object_set_data (G_OBJECT (container),
3084                          I_("gtk-container-focus-chain"),
3085                          NULL);
3086
3087       tmp_list = chain;
3088       while (tmp_list != NULL)
3089         {
3090           g_signal_handlers_disconnect_by_func (tmp_list->data,
3091                                                 chain_widget_destroyed,
3092                                                 container);
3093
3094           tmp_list = g_list_next (tmp_list);
3095         }
3096
3097       g_list_free (chain);
3098     }
3099 }
3100
3101 /**
3102  * gtk_container_set_focus_vadjustment:
3103  * @container: a #GtkContainer
3104  * @adjustment: an adjustment which should be adjusted when the focus
3105  *   is moved among the descendents of @container
3106  *
3107  * Hooks up an adjustment to focus handling in a container, so when a
3108  * child of the container is focused, the adjustment is scrolled to
3109  * show that widget. This function sets the vertical alignment. See
3110  * gtk_scrolled_window_get_vadjustment() for a typical way of obtaining
3111  * the adjustment and gtk_container_set_focus_hadjustment() for setting
3112  * the horizontal adjustment.
3113  *
3114  * The adjustments have to be in pixel units and in the same coordinate
3115  * system as the allocation for immediate children of the container.
3116  */
3117 void
3118 gtk_container_set_focus_vadjustment (GtkContainer  *container,
3119                                      GtkAdjustment *adjustment)
3120 {
3121   g_return_if_fail (GTK_IS_CONTAINER (container));
3122   if (adjustment)
3123     g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
3124
3125   if (adjustment)
3126     g_object_ref (adjustment);
3127
3128   g_object_set_qdata_full (G_OBJECT (container),
3129                            vadjustment_key_id,
3130                            adjustment,
3131                            g_object_unref);
3132 }
3133
3134 /**
3135  * gtk_container_get_focus_vadjustment:
3136  * @container: a #GtkContainer
3137  *
3138  * Retrieves the vertical focus adjustment for the container. See
3139  * gtk_container_set_focus_vadjustment().
3140  *
3141  * Return value: (transfer none): the vertical focus adjustment, or %NULL if
3142  *   none has been set.
3143  **/
3144 GtkAdjustment *
3145 gtk_container_get_focus_vadjustment (GtkContainer *container)
3146 {
3147   GtkAdjustment *vadjustment;
3148
3149   g_return_val_if_fail (GTK_IS_CONTAINER (container), NULL);
3150
3151   vadjustment = g_object_get_qdata (G_OBJECT (container), vadjustment_key_id);
3152
3153   return vadjustment;
3154 }
3155
3156 /**
3157  * gtk_container_set_focus_hadjustment:
3158  * @container: a #GtkContainer
3159  * @adjustment: an adjustment which should be adjusted when the focus is
3160  *   moved among the descendents of @container
3161  *
3162  * Hooks up an adjustment to focus handling in a container, so when a child
3163  * of the container is focused, the adjustment is scrolled to show that
3164  * widget. This function sets the horizontal alignment.
3165  * See gtk_scrolled_window_get_hadjustment() for a typical way of obtaining
3166  * the adjustment and gtk_container_set_focus_vadjustment() for setting
3167  * the vertical adjustment.
3168  *
3169  * The adjustments have to be in pixel units and in the same coordinate
3170  * system as the allocation for immediate children of the container.
3171  */
3172 void
3173 gtk_container_set_focus_hadjustment (GtkContainer  *container,
3174                                      GtkAdjustment *adjustment)
3175 {
3176   g_return_if_fail (GTK_IS_CONTAINER (container));
3177   if (adjustment)
3178     g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
3179
3180   if (adjustment)
3181     g_object_ref (adjustment);
3182
3183   g_object_set_qdata_full (G_OBJECT (container),
3184                            hadjustment_key_id,
3185                            adjustment,
3186                            g_object_unref);
3187 }
3188
3189 /**
3190  * gtk_container_get_focus_hadjustment:
3191  * @container: a #GtkContainer
3192  *
3193  * Retrieves the horizontal focus adjustment for the container. See
3194  * gtk_container_set_focus_hadjustment ().
3195  *
3196  * Return value: (transfer none): the horizontal focus adjustment, or %NULL if
3197  *   none has been set.
3198  **/
3199 GtkAdjustment *
3200 gtk_container_get_focus_hadjustment (GtkContainer *container)
3201 {
3202   GtkAdjustment *hadjustment;
3203
3204   g_return_val_if_fail (GTK_IS_CONTAINER (container), NULL);
3205
3206   hadjustment = g_object_get_qdata (G_OBJECT (container), hadjustment_key_id);
3207
3208   return hadjustment;
3209 }
3210
3211
3212 static void
3213 gtk_container_show_all (GtkWidget *widget)
3214 {
3215   g_return_if_fail (GTK_IS_CONTAINER (widget));
3216
3217   gtk_container_foreach (GTK_CONTAINER (widget),
3218                          (GtkCallback) gtk_widget_show_all,
3219                          NULL);
3220   gtk_widget_show (widget);
3221 }
3222
3223 static void
3224 gtk_container_draw_child (GtkWidget *child,
3225                           gpointer   client_data)
3226 {
3227   struct {
3228     GtkWidget *container;
3229     cairo_t *cr;
3230   } *data = client_data;
3231
3232   gtk_container_propagate_draw (GTK_CONTAINER (data->container),
3233                                 child,
3234                                 data->cr);
3235 }
3236
3237 static gint
3238 gtk_container_draw (GtkWidget *widget,
3239                     cairo_t   *cr)
3240 {
3241   struct {
3242     GtkWidget *container;
3243     cairo_t *cr;
3244   } data;
3245
3246   data.container = widget;
3247   data.cr = cr;
3248
3249   gtk_container_forall (GTK_CONTAINER (widget),
3250                         gtk_container_draw_child,
3251                         &data);
3252
3253   return FALSE;
3254 }
3255
3256 static void
3257 gtk_container_map_child (GtkWidget *child,
3258                          gpointer   client_data)
3259 {
3260   if (gtk_widget_get_visible (child) &&
3261       gtk_widget_get_child_visible (child) &&
3262       !gtk_widget_get_mapped (child))
3263     gtk_widget_map (child);
3264 }
3265
3266 static void
3267 gtk_container_map (GtkWidget *widget)
3268 {
3269   gtk_widget_set_mapped (widget, TRUE);
3270
3271   gtk_container_forall (GTK_CONTAINER (widget),
3272                         gtk_container_map_child,
3273                         NULL);
3274
3275   if (gtk_widget_get_has_window (widget))
3276     gdk_window_show (gtk_widget_get_window (widget));
3277 }
3278
3279 static void
3280 gtk_container_unmap (GtkWidget *widget)
3281 {
3282   gtk_widget_set_mapped (widget, FALSE);
3283
3284   /* hide our window first so user doesn't see all the child windows
3285    * vanishing one by one.  (only matters these days if one of the
3286    * children has an actual native window instead of client-side
3287    * window, e.g. a GtkSocket would)
3288    */
3289   if (gtk_widget_get_has_window (widget))
3290     gdk_window_hide (gtk_widget_get_window (widget));
3291
3292   gtk_container_forall (GTK_CONTAINER (widget),
3293                         (GtkCallback)gtk_widget_unmap,
3294                         NULL);
3295 }
3296
3297 /**
3298  * gtk_container_propagate_draw:
3299  * @container: a #GtkContainer
3300  * @child: a child of @container
3301  * @cr: Cairo context as passed to the container. If you want to use @cr
3302  *   in container's draw function, consider using cairo_save() and
3303  *   cairo_restore() before calling this function.
3304  *
3305  * When a container receives a call to the draw function, it must send
3306  * synthetic #GtkWidget::draw calls to all children that don't have their
3307  * own #GdkWindows. This function provides a convenient way of doing this.
3308  * A container, when it receives a call to its #GtkWidget::draw function,
3309  * calls gtk_container_propagate_draw() once for each child, passing in
3310  * the @cr the container received.
3311  *
3312  * gtk_container_propagate_draw() takes care of translating the origin of @cr,
3313  * and deciding whether the draw needs to be sent to the child. It is a
3314  * convenient and optimized way of getting the same effect as calling
3315  * gtk_widget_draw() on the child directly.
3316  *
3317  * In most cases, a container can simply either inherit the
3318  * #GtkWidget::draw implementation from #GtkContainer, or do some drawing
3319  * and then chain to the ::draw implementation from #GtkContainer.
3320  **/
3321 void
3322 gtk_container_propagate_draw (GtkContainer   *container,
3323                               GtkWidget      *child,
3324                               cairo_t        *cr)
3325 {
3326   GdkEventExpose *event;
3327   GtkAllocation allocation;
3328   GdkWindow *window, *w;
3329   int x, y;
3330
3331   g_return_if_fail (GTK_IS_CONTAINER (container));
3332   g_return_if_fail (GTK_IS_WIDGET (child));
3333   g_return_if_fail (cr != NULL);
3334
3335   g_assert (gtk_widget_get_parent (child) == GTK_WIDGET (container));
3336
3337   event = _gtk_cairo_get_event (cr);
3338   if (event)
3339     {
3340       if (gtk_widget_get_has_window (child) ||
3341           gtk_widget_get_window (child) != event->window)
3342         return;
3343     }
3344
3345   cairo_save (cr);
3346
3347   /* translate coordinates. Ugly business, that. */
3348   if (!gtk_widget_get_has_window (GTK_WIDGET (container)))
3349     {
3350       gtk_widget_get_allocation (GTK_WIDGET (container), &allocation);
3351       x = -allocation.x;
3352       y = -allocation.y;
3353     }
3354   else
3355     {
3356       x = 0;
3357       y = 0;
3358     }
3359
3360   window = gtk_widget_get_window (GTK_WIDGET (container));
3361
3362   for (w = gtk_widget_get_window (child); w && w != window; w = gdk_window_get_parent (w))
3363     {
3364       int wx, wy;
3365       gdk_window_get_position (w, &wx, &wy);
3366       x += wx;
3367       y += wy;
3368     }
3369
3370   if (w == NULL)
3371     {
3372       x = 0;
3373       y = 0;
3374     }
3375
3376   if (!gtk_widget_get_has_window (child))
3377     {
3378       gtk_widget_get_allocation (child, &allocation);
3379       x += allocation.x;
3380       y += allocation.y;
3381     }
3382
3383   cairo_translate (cr, x, y);
3384
3385   _gtk_widget_draw_internal (child, cr, TRUE);
3386
3387   cairo_restore (cr);
3388 }
3389
3390 gboolean
3391 _gtk_container_get_reallocate_redraws (GtkContainer *container)
3392 {
3393   return container->priv->reallocate_redraws;
3394 }
3395
3396 /**
3397  * gtk_container_get_path_for_child:
3398  * @container: a #GtkContainer
3399  * @child: a child of @container
3400  *
3401  * Returns a newly created widget path representing all the widget hierarchy
3402  * from the toplevel down to and including @child.
3403  *
3404  * Returns: A newly created #GtkWidgetPath
3405  **/
3406 GtkWidgetPath *
3407 gtk_container_get_path_for_child (GtkContainer *container,
3408                                   GtkWidget    *child)
3409 {
3410   GtkWidgetPath *path;
3411
3412   g_return_val_if_fail (GTK_IS_CONTAINER (container), NULL);
3413   g_return_val_if_fail (GTK_IS_WIDGET (child), NULL);
3414   g_return_val_if_fail (container == (GtkContainer *) gtk_widget_get_parent (child), NULL);
3415
3416   path = GTK_CONTAINER_GET_CLASS (container)->get_path_for_child (container, child);
3417   if (gtk_widget_path_get_object_type (path) != G_OBJECT_TYPE (child))
3418     {
3419       g_critical ("%s %p returned a widget path for type %s, but child is %s",
3420                   G_OBJECT_TYPE_NAME (container),
3421                   container,
3422                   g_type_name (gtk_widget_path_get_object_type (path)),
3423                   G_OBJECT_TYPE_NAME (child));
3424     }
3425
3426   return path;
3427 }