]> Pileus Git - ~andy/gtk/blob - gtk/gtkbox.c
Factor out gtk_box_pack from gtk_box_pack_start and gtk_box_pack_end to reduce code...
[~andy/gtk] / gtk / gtkbox.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28 #include "gtkbox.h"
29 #include "gtkprivate.h"
30 #include "gtkintl.h"
31 #include "gtkalias.h"
32
33 enum {
34   PROP_0,
35   PROP_SPACING,
36   PROP_HOMOGENEOUS
37 };
38
39 enum {
40   CHILD_PROP_0,
41   CHILD_PROP_EXPAND,
42   CHILD_PROP_FILL,
43   CHILD_PROP_PADDING,
44   CHILD_PROP_PACK_TYPE,
45   CHILD_PROP_POSITION
46 };
47
48 static void gtk_box_set_property (GObject         *object,
49                                   guint            prop_id,
50                                   const GValue    *value,
51                                   GParamSpec      *pspec);
52 static void gtk_box_get_property (GObject         *object,
53                                   guint            prop_id,
54                                   GValue          *value,
55                                   GParamSpec      *pspec);
56 static void gtk_box_add        (GtkContainer   *container,
57                                 GtkWidget      *widget);
58 static void gtk_box_remove     (GtkContainer   *container,
59                                 GtkWidget      *widget);
60 static void gtk_box_forall     (GtkContainer   *container,
61                                 gboolean        include_internals,
62                                 GtkCallback     callback,
63                                 gpointer        callback_data);
64 static void gtk_box_set_child_property (GtkContainer    *container,
65                                         GtkWidget       *child,
66                                         guint            property_id,
67                                         const GValue    *value,
68                                         GParamSpec      *pspec);
69 static void gtk_box_get_child_property (GtkContainer    *container,
70                                         GtkWidget       *child,
71                                         guint            property_id,
72                                         GValue          *value,
73                                         GParamSpec      *pspec);
74 static GType gtk_box_child_type (GtkContainer   *container);
75      
76
77 G_DEFINE_ABSTRACT_TYPE (GtkBox, gtk_box, GTK_TYPE_CONTAINER)
78
79 static void
80 gtk_box_class_init (GtkBoxClass *class)
81 {
82   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
83   GtkContainerClass *container_class = GTK_CONTAINER_CLASS (class);
84
85   gobject_class->set_property = gtk_box_set_property;
86   gobject_class->get_property = gtk_box_get_property;
87    
88   container_class->add = gtk_box_add;
89   container_class->remove = gtk_box_remove;
90   container_class->forall = gtk_box_forall;
91   container_class->child_type = gtk_box_child_type;
92   container_class->set_child_property = gtk_box_set_child_property;
93   container_class->get_child_property = gtk_box_get_child_property;
94
95   g_object_class_install_property (gobject_class,
96                                    PROP_SPACING,
97                                    g_param_spec_int ("spacing",
98                                                      P_("Spacing"),
99                                                      P_("The amount of space between children"),
100                                                      0,
101                                                      G_MAXINT,
102                                                      0,
103                                                      GTK_PARAM_READWRITE));
104   
105   g_object_class_install_property (gobject_class,
106                                    PROP_HOMOGENEOUS,
107                                    g_param_spec_boolean ("homogeneous",
108                                                          P_("Homogeneous"),
109                                                          P_("Whether the children should all be the same size"),
110                                                          FALSE,
111                                                          GTK_PARAM_READWRITE));
112
113   gtk_container_class_install_child_property (container_class,
114                                               CHILD_PROP_EXPAND,
115                                               g_param_spec_boolean ("expand", 
116                                                                     P_("Expand"), 
117                                                                     P_("Whether the child should receive extra space when the parent grows"),
118                                                                     TRUE,
119                                                                     GTK_PARAM_READWRITE));
120   gtk_container_class_install_child_property (container_class,
121                                               CHILD_PROP_FILL,
122                                               g_param_spec_boolean ("fill", 
123                                                                     P_("Fill"), 
124                                                                     P_("Whether extra space given to the child should be allocated to the child or used as padding"),
125                                                                     TRUE,
126                                                                     GTK_PARAM_READWRITE));
127   gtk_container_class_install_child_property (container_class,
128                                               CHILD_PROP_PADDING,
129                                               g_param_spec_uint ("padding", 
130                                                                  P_("Padding"), 
131                                                                  P_("Extra space to put between the child and its neighbors, in pixels"),
132                                                                  0, G_MAXINT, 0,
133                                                                  GTK_PARAM_READWRITE));
134   gtk_container_class_install_child_property (container_class,
135                                               CHILD_PROP_PACK_TYPE,
136                                               g_param_spec_enum ("pack-type", 
137                                                                  P_("Pack type"), 
138                                                                  P_("A GtkPackType indicating whether the child is packed with reference to the start or end of the parent"),
139                                                                  GTK_TYPE_PACK_TYPE, GTK_PACK_START,
140                                                                  GTK_PARAM_READWRITE));
141   gtk_container_class_install_child_property (container_class,
142                                               CHILD_PROP_POSITION,
143                                               g_param_spec_int ("position", 
144                                                                 P_("Position"), 
145                                                                 P_("The index of the child in the parent"),
146                                                                 -1, G_MAXINT, 0,
147                                                                 GTK_PARAM_READWRITE));
148 }
149
150 static void
151 gtk_box_init (GtkBox *box)
152 {
153   GTK_WIDGET_SET_FLAGS (box, GTK_NO_WINDOW);
154   gtk_widget_set_redraw_on_allocate (GTK_WIDGET (box), FALSE);
155   
156   box->children = NULL;
157   box->spacing = 0;
158   box->homogeneous = FALSE;
159 }
160
161 static void 
162 gtk_box_set_property (GObject         *object,
163                       guint            prop_id,
164                       const GValue    *value,
165                       GParamSpec      *pspec)
166 {
167   GtkBox *box;
168
169   box = GTK_BOX (object);
170
171   switch (prop_id)
172     {
173     case PROP_SPACING:
174       gtk_box_set_spacing (box, g_value_get_int (value));
175       break;
176     case PROP_HOMOGENEOUS:
177       gtk_box_set_homogeneous (box, g_value_get_boolean (value));
178       break;
179     default:
180       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
181       break;
182     }
183 }
184
185 static void gtk_box_get_property (GObject         *object,
186                                   guint            prop_id,
187                                   GValue          *value,
188                                   GParamSpec      *pspec)
189 {
190   GtkBox *box;
191
192   box = GTK_BOX (object);
193
194   switch (prop_id)
195     {
196     case PROP_SPACING:
197       g_value_set_int (value, box->spacing);
198       break;
199     case PROP_HOMOGENEOUS:
200       g_value_set_boolean (value, box->homogeneous);
201       break;
202     default:
203       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
204       break;
205     }
206 }
207
208 static GType
209 gtk_box_child_type (GtkContainer   *container)
210 {
211   return GTK_TYPE_WIDGET;
212 }
213
214 static void
215 gtk_box_set_child_property (GtkContainer    *container,
216                             GtkWidget       *child,
217                             guint            property_id,
218                             const GValue    *value,
219                             GParamSpec      *pspec)
220 {
221   gboolean expand = 0;
222   gboolean fill = 0;
223   guint padding = 0;
224   GtkPackType pack_type = 0;
225
226   if (property_id != CHILD_PROP_POSITION)
227     gtk_box_query_child_packing (GTK_BOX (container),
228                                  child,
229                                  &expand,
230                                  &fill,
231                                  &padding,
232                                  &pack_type);
233   switch (property_id)
234     {
235     case CHILD_PROP_EXPAND:
236       gtk_box_set_child_packing (GTK_BOX (container),
237                                  child,
238                                  g_value_get_boolean (value),
239                                  fill,
240                                  padding,
241                                  pack_type);
242       break;
243     case CHILD_PROP_FILL:
244       gtk_box_set_child_packing (GTK_BOX (container),
245                                  child,
246                                  expand,
247                                  g_value_get_boolean (value),
248                                  padding,
249                                  pack_type);
250       break;
251     case CHILD_PROP_PADDING:
252       gtk_box_set_child_packing (GTK_BOX (container),
253                                  child,
254                                  expand,
255                                  fill,
256                                  g_value_get_uint (value),
257                                  pack_type);
258       break;
259     case CHILD_PROP_PACK_TYPE:
260       gtk_box_set_child_packing (GTK_BOX (container),
261                                  child,
262                                  expand,
263                                  fill,
264                                  padding,
265                                  g_value_get_enum (value));
266       break;
267     case CHILD_PROP_POSITION:
268       gtk_box_reorder_child (GTK_BOX (container),
269                              child,
270                              g_value_get_int (value));
271       break;
272     default:
273       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
274       break;
275     }
276 }
277
278 static void
279 gtk_box_get_child_property (GtkContainer *container,
280                             GtkWidget    *child,
281                             guint         property_id,
282                             GValue       *value,
283                             GParamSpec   *pspec)
284 {
285   gboolean expand = 0;
286   gboolean fill = 0;
287   guint padding = 0;
288   GtkPackType pack_type = 0;
289   GList *list;
290
291   if (property_id != CHILD_PROP_POSITION)
292     gtk_box_query_child_packing (GTK_BOX (container),
293                                  child,
294                                  &expand,
295                                  &fill,
296                                  &padding,
297                                  &pack_type);
298   switch (property_id)
299     {
300       guint i;
301     case CHILD_PROP_EXPAND:
302       g_value_set_boolean (value, expand);
303       break;
304     case CHILD_PROP_FILL:
305       g_value_set_boolean (value, fill);
306       break;
307     case CHILD_PROP_PADDING:
308       g_value_set_uint (value, padding);
309       break;
310     case CHILD_PROP_PACK_TYPE:
311       g_value_set_enum (value, pack_type);
312       break;
313     case CHILD_PROP_POSITION:
314       i = 0;
315       for (list = GTK_BOX (container)->children; list; list = list->next)
316         {
317           GtkBoxChild *child_entry;
318
319           child_entry = list->data;
320           if (child_entry->widget == child)
321             break;
322           i++;
323         }
324       g_value_set_int (value, list ? i : -1);
325       break;
326     default:
327       GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, property_id, pspec);
328       break;
329     }
330 }
331
332 static void
333 gtk_box_pack (GtkBox      *box,
334               GtkWidget   *child,
335               gboolean     expand,
336               gboolean     fill,
337               guint        padding,
338               GtkPackType  pack_type)
339 {
340   GtkBoxChild *child_info;
341
342   g_return_if_fail (GTK_IS_BOX (box));
343   g_return_if_fail (GTK_IS_WIDGET (child));
344   g_return_if_fail (child->parent == NULL);
345
346   child_info = g_new (GtkBoxChild, 1);
347   child_info->widget = child;
348   child_info->padding = padding;
349   child_info->expand = expand ? TRUE : FALSE;
350   child_info->fill = fill ? TRUE : FALSE;
351   child_info->pack = pack_type;
352   child_info->is_secondary = FALSE;
353
354   box->children = g_list_append (box->children, child_info);
355
356   gtk_widget_freeze_child_notify (child);
357
358   gtk_widget_set_parent (child, GTK_WIDGET (box));
359   
360   gtk_widget_child_notify (child, "expand");
361   gtk_widget_child_notify (child, "fill");
362   gtk_widget_child_notify (child, "padding");
363   gtk_widget_child_notify (child, "pack-type");
364   gtk_widget_child_notify (child, "position");
365   gtk_widget_thaw_child_notify (child);
366              
367 }
368
369 /**
370  * gtk_box_pack_start:
371  * @box: a #GtkBox
372  * @child: the #GtkWidget to be added to @box
373  * @expand: %TRUE if the new child is to be given extra space allocated to
374  * @box.  The extra space will be divided evenly between all children of
375  * @box that use this option
376  * @fill: %TRUE if space given to @child by the @expand option is
377  *   actually allocated to @child, rather than just padding it.  This
378  *   parameter has no effect if @expand is set to %FALSE.  A child is
379  *   always allocated the full height of a #GtkHBox and the full width 
380  *   of a #GtkVBox. This option affects the other dimension
381  * @padding: extra space in pixels to put between this child and its
382  *   neighbors, over and above the global amount specified by
383  *   #GtkBox:spacing property.  If @child is a widget at one of the 
384  *   reference ends of @box, then @padding pixels are also put between 
385  *   @child and the reference edge of @box
386  *
387  * Adds @child to @box, packed with reference to the start of @box.
388  * The @child is packed after any other child packed with reference 
389  * to the start of @box.
390  */
391 void
392 gtk_box_pack_start (GtkBox    *box,
393                     GtkWidget *child,
394                     gboolean   expand,
395                     gboolean   fill,
396                     guint      padding)
397 {
398   gtk_box_pack (box, child, expand, fill, padding, GTK_PACK_START);
399 }
400
401 /**
402  * gtk_box_pack_end:
403  * @box: a #GtkBox
404  * @child: the #GtkWidget to be added to @box
405  * @expand: %TRUE if the new child is to be given extra space allocated 
406  *   to @box. The extra space will be divided evenly between all children 
407  *   of @box that use this option
408  * @fill: %TRUE if space given to @child by the @expand option is
409  *   actually allocated to @child, rather than just padding it.  This
410  *   parameter has no effect if @expand is set to %FALSE.  A child is
411  *   always allocated the full height of a #GtkHBox and the full width 
412  *   of a #GtkVBox.  This option affects the other dimension
413  * @padding: extra space in pixels to put between this child and its
414  *   neighbors, over and above the global amount specified by
415  *   #GtkBox:spacing property.  If @child is a widget at one of the 
416  *   reference ends of @box, then @padding pixels are also put between 
417  *   @child and the reference edge of @box
418  *
419  * Adds @child to @box, packed with reference to the end of @box.  
420  * The @child is packed after (away from end of) any other child 
421  * packed with reference to the end of @box.
422  */
423 void
424 gtk_box_pack_end (GtkBox    *box,
425                   GtkWidget *child,
426                   gboolean   expand,
427                   gboolean   fill,
428                   guint      padding)
429 {
430   gtk_box_pack (box, child, expand, fill, padding, GTK_PACK_END);
431 }
432
433 /**
434  * gtk_box_pack_start_defaults:
435  * @box: a #GtkBox
436  * @widget: the #GtkWidget to be added to @box
437  *
438  * Adds @widget to @box, packed with reference to the start of @box.
439  * The child is packed after any other child packed with reference 
440  * to the start of @box. 
441  * 
442  * Parameters for how to pack the child @widget, #GtkBox:expand, 
443  * #GtkBox:fill and #GtkBox:padding, are given their default
444  * values, %TRUE, %TRUE, and 0, respectively.
445  */
446 void
447 gtk_box_pack_start_defaults (GtkBox    *box,
448                              GtkWidget *child)
449 {
450   gtk_box_pack_start (box, child, TRUE, TRUE, 0);
451 }
452
453 /**
454  * gtk_box_pack_end_defaults:
455  * @box: a #GtkBox
456  * @widget: the #GtkWidget to be added to @box
457  *
458  * Adds @widget to @box, packed with reference to the end of @box.
459  * The child is packed after any other child packed with reference 
460  * to the start of @box. 
461  * 
462  * Parameters for how to pack the child @widget, #GtkBox:expand, 
463  * #GtkBox:fill and #GtkBox:padding, are given their default
464  * values, %TRUE, %TRUE, and 0, respectively.
465  */
466 void
467 gtk_box_pack_end_defaults (GtkBox    *box,
468                            GtkWidget *child)
469 {
470   gtk_box_pack_end (box, child, TRUE, TRUE, 0);
471 }
472
473 /**
474  * gtk_box_set_homogeneous:
475  * @box: a #GtkBox
476  * @homogeneous: a boolean value, %TRUE to create equal allotments,
477  *   %FALSE for variable allotments
478  * 
479  * Sets the #GtkBox:homogeneous property of @box, controlling 
480  * whether or not all children of @box are given equal space 
481  * in the box.
482  */
483 void
484 gtk_box_set_homogeneous (GtkBox  *box,
485                          gboolean homogeneous)
486 {
487   g_return_if_fail (GTK_IS_BOX (box));
488
489   if ((homogeneous ? TRUE : FALSE) != box->homogeneous)
490     {
491       box->homogeneous = homogeneous ? TRUE : FALSE;
492       g_object_notify (G_OBJECT (box), "homogeneous");
493       gtk_widget_queue_resize (GTK_WIDGET (box));
494     }
495 }
496
497 /**
498  * gtk_box_get_homogeneous:
499  * @box: a #GtkBox
500  *
501  * Returns whether the box is homogeneous (all children are the
502  * same size). See gtk_box_set_homogeneous().
503  *
504  * Return value: %TRUE if the box is homogeneous.
505  **/
506 gboolean
507 gtk_box_get_homogeneous (GtkBox *box)
508 {
509   g_return_val_if_fail (GTK_IS_BOX (box), FALSE);
510
511   return box->homogeneous;
512 }
513
514 /**
515  * gtk_box_set_spacing:
516  * @box: a #GtkBox
517  * @spacing: the number of pixels to put between children
518  *
519  * Sets the #GtkBox:spacing property of @box, which is the 
520  * number of pixels to place between children of @box.
521  */
522 void
523 gtk_box_set_spacing (GtkBox *box,
524                      gint    spacing)
525 {
526   g_return_if_fail (GTK_IS_BOX (box));
527
528   if (spacing != box->spacing)
529     {
530       box->spacing = spacing;
531       g_object_notify (G_OBJECT (box), "spacing");
532       gtk_widget_queue_resize (GTK_WIDGET (box));
533     }
534 }
535
536 /**
537  * gtk_box_get_spacing:
538  * @box: a #GtkBox
539  * 
540  * Gets the value set by gtk_box_set_spacing().
541  * 
542  * Return value: spacing between children
543  **/
544 gint
545 gtk_box_get_spacing (GtkBox *box)
546 {
547   g_return_val_if_fail (GTK_IS_BOX (box), 0);
548
549   return box->spacing;
550 }
551
552 /**
553  * gtk_box_reorder_child:
554  * @box: a #GtkBox
555  * @child: the #GtkWidget to move
556  * @position: the new position for @child in the list of children 
557  *   of @box, starting from 0. If negative, indicates the end of 
558  *   the list
559  *
560  * Moves @child to a new @position in the list of @box children.  
561  * The list is the <structfield>children</structfield> field of
562  * #GtkBox-struct, and contains both widgets packed #GTK_PACK_START 
563  * as well as widgets packed #GTK_PACK_END, in the order that these 
564  * widgets were added to @box.
565  * 
566  * A widget's position in the @box children list determines where 
567  * the widget is packed into @box.  A child widget at some position 
568  * in the list will be packed just after all other widgets of the 
569  * same packing type that appear earlier in the list.
570  */ 
571 void
572 gtk_box_reorder_child (GtkBox    *box,
573                        GtkWidget *child,
574                        gint       position)
575 {
576   GList *old_link;
577   GList *new_link;
578   GtkBoxChild *child_info = NULL;
579   gint old_position;
580
581   g_return_if_fail (GTK_IS_BOX (box));
582   g_return_if_fail (GTK_IS_WIDGET (child));
583
584   old_link = box->children;
585   old_position = 0;
586   while (old_link)
587     {
588       child_info = old_link->data;
589       if (child_info->widget == child)
590         break;
591
592       old_link = old_link->next;
593       old_position++;
594     }
595
596   g_return_if_fail (old_link != NULL);
597
598   if (position == old_position)
599     return;
600
601   box->children = g_list_delete_link (box->children, old_link);
602
603   if (position < 0)
604     new_link = NULL;
605   else
606     new_link = g_list_nth (box->children, position);
607
608   box->children = g_list_insert_before (box->children, new_link, child_info);
609
610   gtk_widget_child_notify (child, "position");
611   if (GTK_WIDGET_VISIBLE (child) && GTK_WIDGET_VISIBLE (box))
612     gtk_widget_queue_resize (child);
613 }
614
615 /**
616  * gtk_box_query_child_packing:
617  * @box: a #GtkBox
618  * @child: the #GtkWidget of the child to query
619  * @expand: pointer to return location for #GtkBox:expand child property 
620  * @fill: pointer to return location for #GtkBox:fill child property 
621  * @padding: pointer to return location for #GtkBox:padding child property 
622  * @pack_type: pointer to return location for #GtkBox:pack-type child property 
623  * 
624  * Obtains information about how @child is packed into @box.
625  */
626 void
627 gtk_box_query_child_packing (GtkBox      *box,
628                              GtkWidget   *child,
629                              gboolean    *expand,
630                              gboolean    *fill,
631                              guint       *padding,
632                              GtkPackType *pack_type)
633 {
634   GList *list;
635   GtkBoxChild *child_info = NULL;
636
637   g_return_if_fail (GTK_IS_BOX (box));
638   g_return_if_fail (GTK_IS_WIDGET (child));
639
640   list = box->children;
641   while (list)
642     {
643       child_info = list->data;
644       if (child_info->widget == child)
645         break;
646
647       list = list->next;
648     }
649
650   if (list)
651     {
652       if (expand)
653         *expand = child_info->expand;
654       if (fill)
655         *fill = child_info->fill;
656       if (padding)
657         *padding = child_info->padding;
658       if (pack_type)
659         *pack_type = child_info->pack;
660     }
661 }
662
663 /**
664  * gtk_box_set_child_packing:
665  * @box: a #GtkBox
666  * @child: the #GtkWidget of the child to set
667  * @expand: the new value of the #GtkBox:expand child property 
668  * @fill: the new value of the #GtkBox:fill child property
669  * @padding: the new value of the #GtkBox:padding child property
670  * @pack_type: the new value of the #GtkBox:pack-type child property
671  *
672  * Sets the way @child is packed into @box.
673  */
674 void
675 gtk_box_set_child_packing (GtkBox      *box,
676                            GtkWidget   *child,
677                            gboolean     expand,
678                            gboolean     fill,
679                            guint        padding,
680                            GtkPackType  pack_type)
681 {
682   GList *list;
683   GtkBoxChild *child_info = NULL;
684
685   g_return_if_fail (GTK_IS_BOX (box));
686   g_return_if_fail (GTK_IS_WIDGET (child));
687
688   list = box->children;
689   while (list)
690     {
691       child_info = list->data;
692       if (child_info->widget == child)
693         break;
694
695       list = list->next;
696     }
697
698   gtk_widget_freeze_child_notify (child);
699   if (list)
700     {
701       child_info->expand = expand != FALSE;
702       gtk_widget_child_notify (child, "expand");
703       child_info->fill = fill != FALSE;
704       gtk_widget_child_notify (child, "fill");
705       child_info->padding = padding;
706       gtk_widget_child_notify (child, "padding");
707       if (pack_type == GTK_PACK_END)
708         child_info->pack = GTK_PACK_END;
709       else
710         child_info->pack = GTK_PACK_START;
711       gtk_widget_child_notify (child, "pack-type");
712
713       if (GTK_WIDGET_VISIBLE (child) && GTK_WIDGET_VISIBLE (box))
714         gtk_widget_queue_resize (child);
715     }
716   gtk_widget_thaw_child_notify (child);
717 }
718
719 static void
720 gtk_box_add (GtkContainer *container,
721              GtkWidget    *widget)
722 {
723   gtk_box_pack_start_defaults (GTK_BOX (container), widget);
724 }
725
726 static void
727 gtk_box_remove (GtkContainer *container,
728                 GtkWidget    *widget)
729 {
730   GtkBox *box = GTK_BOX (container);
731   GtkBoxChild *child;
732   GList *children;
733
734   children = box->children;
735   while (children)
736     {
737       child = children->data;
738
739       if (child->widget == widget)
740         {
741           gboolean was_visible;
742
743           was_visible = GTK_WIDGET_VISIBLE (widget);
744           gtk_widget_unparent (widget);
745
746           box->children = g_list_remove_link (box->children, children);
747           g_list_free (children);
748           g_free (child);
749
750           /* queue resize regardless of GTK_WIDGET_VISIBLE (container),
751            * since that's what is needed by toplevels.
752            */
753           if (was_visible)
754             gtk_widget_queue_resize (GTK_WIDGET (container));
755
756           break;
757         }
758
759       children = children->next;
760     }
761 }
762
763 static void
764 gtk_box_forall (GtkContainer *container,
765                 gboolean      include_internals,
766                 GtkCallback   callback,
767                 gpointer      callback_data)
768 {
769   GtkBox *box = GTK_BOX (container);
770   GtkBoxChild *child;
771   GList *children;
772
773   children = box->children;
774   while (children)
775     {
776       child = children->data;
777       children = children->next;
778
779       if (child->pack == GTK_PACK_START)
780         (* callback) (child->widget, callback_data);
781     }
782
783   children = g_list_last (box->children);
784   while (children)
785     {
786       child = children->data;
787       children = children->prev;
788
789       if (child->pack == GTK_PACK_END)
790         (* callback) (child->widget, callback_data);
791     }
792 }
793
794 #define __GTK_BOX_C__
795 #include "gtkaliasdef.c"