2008-07-01 22:57:50 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-10-07 07:44:06 +00:00
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2010-03-09 22:51:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkbox
|
Box, Grid: Improve various bits of documentation
Issue #1495 showed that the docs of GtkGrid retain outdated implications
that (as was once, but is no longer, the case) it is intended to replace
GtkBox, by discussing HfW and widget properties in a way that suggests
GtkBox can't handle them. But of course it does, and it's preferable for
simple single-row/column cases. Worse, we said GtkGrid “provides exactly
the same functionality” for the latter case, but the original point of
that Issues was that it doesn’t, at least for CSS positional selectors!
Box:
• Use an actually meaningful @Short_description.
• Remove unhelpful @See_also references to unrelated containers.
• Remove references to “rectangular area”: it might be another shape
via CSS, or “rectangular” might falsely imply 2 dimensions of children.
• Mention Orientable:orientation.
• Emphasise usefulness of :[hv]align for allocating in the other axis.
• Don’t say that Grid “provides exactly the same functionality” for a
single row or column, since (A) it is overkill for that case and (B)
said Issue proved that it *doesn’t* for CSS child order, for example.
Grid:
• Don’t dwell on widget properties and height-for-width in a way that
wrongly implies that Box can’t handle those (or Grid can better). In
fact, just get rid of that bit altogether: Box handles them fine, and
such wording was only needed years ago for migration from GTK+ 2 to 3.
• Point to GtkBox as being preferred for the simple row/column use case.
2018-12-04 20:37:08 +00:00
|
|
|
|
* @Short_description: A container for packing widgets in a single row or column
|
2010-03-09 22:51:03 +00:00
|
|
|
|
* @Title: GtkBox
|
Box, Grid: Improve various bits of documentation
Issue #1495 showed that the docs of GtkGrid retain outdated implications
that (as was once, but is no longer, the case) it is intended to replace
GtkBox, by discussing HfW and widget properties in a way that suggests
GtkBox can't handle them. But of course it does, and it's preferable for
simple single-row/column cases. Worse, we said GtkGrid “provides exactly
the same functionality” for the latter case, but the original point of
that Issues was that it doesn’t, at least for CSS positional selectors!
Box:
• Use an actually meaningful @Short_description.
• Remove unhelpful @See_also references to unrelated containers.
• Remove references to “rectangular area”: it might be another shape
via CSS, or “rectangular” might falsely imply 2 dimensions of children.
• Mention Orientable:orientation.
• Emphasise usefulness of :[hv]align for allocating in the other axis.
• Don’t say that Grid “provides exactly the same functionality” for a
single row or column, since (A) it is overkill for that case and (B)
said Issue proved that it *doesn’t* for CSS child order, for example.
Grid:
• Don’t dwell on widget properties and height-for-width in a way that
wrongly implies that Box can’t handle those (or Grid can better). In
fact, just get rid of that bit altogether: Box handles them fine, and
such wording was only needed years ago for migration from GTK+ 2 to 3.
• Point to GtkBox as being preferred for the simple row/column use case.
2018-12-04 20:37:08 +00:00
|
|
|
|
* @See_also: #GtkGrid
|
2010-03-09 22:51:03 +00:00
|
|
|
|
*
|
Box, Grid: Improve various bits of documentation
Issue #1495 showed that the docs of GtkGrid retain outdated implications
that (as was once, but is no longer, the case) it is intended to replace
GtkBox, by discussing HfW and widget properties in a way that suggests
GtkBox can't handle them. But of course it does, and it's preferable for
simple single-row/column cases. Worse, we said GtkGrid “provides exactly
the same functionality” for the latter case, but the original point of
that Issues was that it doesn’t, at least for CSS positional selectors!
Box:
• Use an actually meaningful @Short_description.
• Remove unhelpful @See_also references to unrelated containers.
• Remove references to “rectangular area”: it might be another shape
via CSS, or “rectangular” might falsely imply 2 dimensions of children.
• Mention Orientable:orientation.
• Emphasise usefulness of :[hv]align for allocating in the other axis.
• Don’t say that Grid “provides exactly the same functionality” for a
single row or column, since (A) it is overkill for that case and (B)
said Issue proved that it *doesn’t* for CSS child order, for example.
Grid:
• Don’t dwell on widget properties and height-for-width in a way that
wrongly implies that Box can’t handle those (or Grid can better). In
fact, just get rid of that bit altogether: Box handles them fine, and
such wording was only needed years ago for migration from GTK+ 2 to 3.
• Point to GtkBox as being preferred for the simple row/column use case.
2018-12-04 20:37:08 +00:00
|
|
|
|
* The GtkBox widget arranges child widgets into a single row or column,
|
|
|
|
|
* depending upon the value of its #GtkOrientable:orientation property. Within
|
|
|
|
|
* the other dimension, all children are allocated the same size. Of course,
|
|
|
|
|
* the #GtkWidget:halign and #GtkWidget:valign properties can be used on
|
|
|
|
|
* the children to influence their allocation.
|
2010-03-09 22:51:03 +00:00
|
|
|
|
*
|
2018-12-28 16:51:39 +00:00
|
|
|
|
* Use repeated calls to gtk_container_add() to pack widgets into a
|
2019-01-22 23:44:34 +00:00
|
|
|
|
* GtkBox from start to end. Use gtk_container_remove() to remove widgets
|
|
|
|
|
* from the GtkBox. gtk_box_insert_child_after() can be used to add a child
|
|
|
|
|
* at a particular position.
|
2010-03-09 22:51:03 +00:00
|
|
|
|
*
|
|
|
|
|
* Use gtk_box_set_homogeneous() to specify whether or not all children
|
|
|
|
|
* of the GtkBox are forced to get the same amount of space.
|
|
|
|
|
*
|
|
|
|
|
* Use gtk_box_set_spacing() to determine how much space will be
|
2010-10-15 14:58:35 +00:00
|
|
|
|
* minimally placed between all children in the GtkBox. Note that
|
2016-10-02 15:37:22 +00:00
|
|
|
|
* spacing is added between the children.
|
2010-03-09 22:51:03 +00:00
|
|
|
|
*
|
2019-01-22 23:44:34 +00:00
|
|
|
|
* Use gtk_box_reorder_child_after() to move a child to a different
|
2010-03-09 22:51:03 +00:00
|
|
|
|
* place in the box.
|
|
|
|
|
*
|
2015-12-06 06:53:29 +00:00
|
|
|
|
* # CSS nodes
|
2015-11-19 12:07:26 +00:00
|
|
|
|
*
|
2016-01-13 05:39:53 +00:00
|
|
|
|
* GtkBox uses a single CSS node with name box.
|
2010-03-09 22:51:03 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2008-10-07 07:44:06 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
#include "gtkbox.h"
|
2019-01-25 12:19:34 +00:00
|
|
|
|
#include "gtkboxlayout.h"
|
2016-12-10 02:47:53 +00:00
|
|
|
|
#include "gtkcsspositionvalueprivate.h"
|
2012-03-16 19:01:50 +00:00
|
|
|
|
#include "gtkintl.h"
|
2008-10-07 07:44:06 +00:00
|
|
|
|
#include "gtkorientable.h"
|
2012-05-11 15:36:05 +00:00
|
|
|
|
#include "gtkorientableprivate.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2012-03-16 19:01:50 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
|
|
|
|
#include "gtksizerequest.h"
|
2016-12-10 02:47:53 +00:00
|
|
|
|
#include "gtkstylecontextprivate.h"
|
2012-03-16 19:01:50 +00:00
|
|
|
|
#include "gtkwidgetpath.h"
|
2012-03-21 08:37:09 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2012-11-08 01:17:30 +00:00
|
|
|
|
#include "a11y/gtkcontaineraccessible.h"
|
2010-07-09 17:22:23 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
1998-01-17 07:52:38 +00:00
|
|
|
|
enum {
|
2001-03-23 23:39:24 +00:00
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_SPACING,
|
2013-03-05 14:20:20 +00:00
|
|
|
|
PROP_HOMOGENEOUS,
|
2014-06-07 14:49:38 +00:00
|
|
|
|
PROP_BASELINE_POSITION,
|
|
|
|
|
|
|
|
|
|
/* orientable */
|
2014-06-07 14:59:14 +00:00
|
|
|
|
PROP_ORIENTATION,
|
|
|
|
|
LAST_PROP = PROP_ORIENTATION
|
1998-01-17 07:52:38 +00:00
|
|
|
|
};
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2018-12-28 16:17:16 +00:00
|
|
|
|
typedef struct
|
2008-10-07 07:44:06 +00:00
|
|
|
|
{
|
2011-04-12 16:24:56 +00:00
|
|
|
|
GtkOrientation orientation;
|
2010-05-24 23:11:54 +00:00
|
|
|
|
gint16 spacing;
|
|
|
|
|
|
|
|
|
|
guint homogeneous : 1;
|
2013-03-05 14:20:20 +00:00
|
|
|
|
guint baseline_pos : 2;
|
2018-12-28 16:17:16 +00:00
|
|
|
|
} GtkBoxPrivate;
|
2008-10-07 07:44:06 +00:00
|
|
|
|
|
2014-06-07 14:59:14 +00:00
|
|
|
|
static GParamSpec *props[LAST_PROP] = { NULL, };
|
|
|
|
|
|
2008-10-07 07:50:04 +00:00
|
|
|
|
static void gtk_box_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_box_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
static void gtk_box_add (GtkContainer *container,
|
|
|
|
|
GtkWidget *widget);
|
|
|
|
|
static void gtk_box_remove (GtkContainer *container,
|
|
|
|
|
GtkWidget *widget);
|
|
|
|
|
static void gtk_box_forall (GtkContainer *container,
|
|
|
|
|
GtkCallback callback,
|
|
|
|
|
gpointer callback_data);
|
|
|
|
|
static GType gtk_box_child_type (GtkContainer *container);
|
2016-08-02 17:44:06 +00:00
|
|
|
|
|
2010-05-25 22:55:15 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkBox, gtk_box, GTK_TYPE_CONTAINER,
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_ADD_PRIVATE (GtkBox)
|
2017-04-23 07:30:17 +00:00
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE, NULL))
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_box_class_init (GtkBoxClass *class)
|
|
|
|
|
{
|
2008-10-07 07:44:06 +00:00
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
|
fix PROP_EVENTS.
Mon Jun 18 02:00:49 2001 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_get_property): fix PROP_EVENTS.
* gtk/Makefile.am:
* gtk/gtk.h: disabled GtkPacker compilation.
* gtk/gtkarg.[hc], gtk/gtkargcollector.c: got rid of these.
* gtk/gtknotebook.c:
* gtk/gtktable.c:
* gtk/gtkbox.c: ported this over to child properties.
* gtk/gtksettings.c: fetch class properties via
g_object_class_list_properties().
* gtk/gtkcontainer.[hc]: implemented child properties, got rid of the
child arg interface. use gobjectnotifyqueue.c for child property
notification.
* gtk/gtkwidget.[hc]: provide necessary means for container child
properties, i.e. ::child_notify signal,
gtk_widget_freeze_child_notify(),
gtk_widget_child_notify(),
gtk_widget_thaw_child_notify().
* tests/testgtk.c: removed inferior property handling code, for
property editing, a generic module should be used, and GLE
coincidentally fullfills that purpose.
* docs/reference/Makefile.am: disabled gtk docs building, gtk-doc
needs to be adapted to g_object_class_list_properties() before this
builds again.
2001-06-19 12:54:10 +00:00
|
|
|
|
GtkContainerClass *container_class = GTK_CONTAINER_CLASS (class);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2008-10-07 07:44:06 +00:00
|
|
|
|
object_class->set_property = gtk_box_set_property;
|
|
|
|
|
object_class->get_property = gtk_box_get_property;
|
|
|
|
|
|
fix PROP_EVENTS.
Mon Jun 18 02:00:49 2001 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_get_property): fix PROP_EVENTS.
* gtk/Makefile.am:
* gtk/gtk.h: disabled GtkPacker compilation.
* gtk/gtkarg.[hc], gtk/gtkargcollector.c: got rid of these.
* gtk/gtknotebook.c:
* gtk/gtktable.c:
* gtk/gtkbox.c: ported this over to child properties.
* gtk/gtksettings.c: fetch class properties via
g_object_class_list_properties().
* gtk/gtkcontainer.[hc]: implemented child properties, got rid of the
child arg interface. use gobjectnotifyqueue.c for child property
notification.
* gtk/gtkwidget.[hc]: provide necessary means for container child
properties, i.e. ::child_notify signal,
gtk_widget_freeze_child_notify(),
gtk_widget_child_notify(),
gtk_widget_thaw_child_notify().
* tests/testgtk.c: removed inferior property handling code, for
property editing, a generic module should be used, and GLE
coincidentally fullfills that purpose.
* docs/reference/Makefile.am: disabled gtk docs building, gtk-doc
needs to be adapted to g_object_class_list_properties() before this
builds again.
2001-06-19 12:54:10 +00:00
|
|
|
|
container_class->add = gtk_box_add;
|
|
|
|
|
container_class->remove = gtk_box_remove;
|
|
|
|
|
container_class->forall = gtk_box_forall;
|
|
|
|
|
container_class->child_type = gtk_box_child_type;
|
|
|
|
|
|
2008-10-07 07:44:06 +00:00
|
|
|
|
g_object_class_override_property (object_class,
|
|
|
|
|
PROP_ORIENTATION,
|
|
|
|
|
"orientation");
|
|
|
|
|
|
2014-06-07 14:59:14 +00:00
|
|
|
|
props[PROP_SPACING] =
|
|
|
|
|
g_param_spec_int ("spacing",
|
|
|
|
|
P_("Spacing"),
|
|
|
|
|
P_("The amount of space between children"),
|
|
|
|
|
0, G_MAXINT, 0,
|
2014-06-07 15:00:36 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2014-06-07 14:59:14 +00:00
|
|
|
|
|
|
|
|
|
props[PROP_HOMOGENEOUS] =
|
|
|
|
|
g_param_spec_boolean ("homogeneous",
|
|
|
|
|
P_("Homogeneous"),
|
|
|
|
|
P_("Whether the children should all be the same size"),
|
|
|
|
|
FALSE,
|
2014-06-07 15:00:36 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2014-06-07 14:59:14 +00:00
|
|
|
|
|
|
|
|
|
props[PROP_BASELINE_POSITION] =
|
|
|
|
|
g_param_spec_enum ("baseline-position",
|
|
|
|
|
P_("Baseline position"),
|
|
|
|
|
P_("The position of the baseline aligned widgets if extra space is available"),
|
|
|
|
|
GTK_TYPE_BASELINE_POSITION,
|
|
|
|
|
GTK_BASELINE_POSITION_CENTER,
|
2014-06-07 15:00:36 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY);
|
2014-06-07 14:59:14 +00:00
|
|
|
|
|
|
|
|
|
g_object_class_install_properties (object_class, LAST_PROP, props);
|
2013-03-05 14:20:20 +00:00
|
|
|
|
|
2019-05-06 11:06:27 +00:00
|
|
|
|
gtk_widget_class_set_layout_manager_type (widget_class, GTK_TYPE_BOX_LAYOUT);
|
2012-11-08 01:17:30 +00:00
|
|
|
|
gtk_widget_class_set_accessible_role (widget_class, ATK_ROLE_FILLER);
|
2017-11-18 03:49:57 +00:00
|
|
|
|
gtk_widget_class_set_css_name (widget_class, I_("box"));
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-07 07:44:06 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_box_set_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
1998-01-17 07:52:38 +00:00
|
|
|
|
{
|
2008-10-07 07:44:06 +00:00
|
|
|
|
GtkBox *box = GTK_BOX (object);
|
2018-02-07 19:03:25 +00:00
|
|
|
|
GtkBoxPrivate *priv = gtk_box_get_instance_private (box);
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkLayoutManager *box_layout = gtk_widget_get_layout_manager (GTK_WIDGET (box));
|
1998-06-28 07:46:10 +00:00
|
|
|
|
|
2001-03-23 23:39:24 +00:00
|
|
|
|
switch (prop_id)
|
1998-01-17 07:52:38 +00:00
|
|
|
|
{
|
2008-10-07 07:44:06 +00:00
|
|
|
|
case PROP_ORIENTATION:
|
2014-06-07 14:59:14 +00:00
|
|
|
|
{
|
|
|
|
|
GtkOrientation orientation = g_value_get_enum (value);
|
2018-02-07 19:03:25 +00:00
|
|
|
|
if (priv->orientation != orientation)
|
2014-06-07 14:59:14 +00:00
|
|
|
|
{
|
2018-02-07 19:03:25 +00:00
|
|
|
|
priv->orientation = orientation;
|
2019-01-25 12:19:34 +00:00
|
|
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (box_layout),
|
|
|
|
|
priv->orientation);
|
2014-06-07 14:59:14 +00:00
|
|
|
|
_gtk_orientable_set_style_classes (GTK_ORIENTABLE (box));
|
|
|
|
|
g_object_notify (object, "orientation");
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-10-07 07:44:06 +00:00
|
|
|
|
break;
|
2001-03-23 23:39:24 +00:00
|
|
|
|
case PROP_SPACING:
|
|
|
|
|
gtk_box_set_spacing (box, g_value_get_int (value));
|
1998-01-17 07:52:38 +00:00
|
|
|
|
break;
|
2013-03-05 14:20:20 +00:00
|
|
|
|
case PROP_BASELINE_POSITION:
|
|
|
|
|
gtk_box_set_baseline_position (box, g_value_get_enum (value));
|
|
|
|
|
break;
|
2001-03-23 23:39:24 +00:00
|
|
|
|
case PROP_HOMOGENEOUS:
|
|
|
|
|
gtk_box_set_homogeneous (box, g_value_get_boolean (value));
|
1998-01-17 07:52:38 +00:00
|
|
|
|
break;
|
1998-01-21 23:03:11 +00:00
|
|
|
|
default:
|
2001-03-23 23:39:24 +00:00
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-01-21 23:03:11 +00:00
|
|
|
|
break;
|
1998-01-17 07:52:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-07 07:44:06 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_box_get_property (GObject *object,
|
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
1998-01-17 07:52:38 +00:00
|
|
|
|
{
|
2008-10-07 07:44:06 +00:00
|
|
|
|
GtkBox *box = GTK_BOX (object);
|
2018-02-07 19:03:25 +00:00
|
|
|
|
GtkBoxPrivate *priv = gtk_box_get_instance_private (box);
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkBoxLayout *box_layout = GTK_BOX_LAYOUT (gtk_widget_get_layout_manager (GTK_WIDGET (box)));
|
1998-06-28 07:46:10 +00:00
|
|
|
|
|
2001-03-23 23:39:24 +00:00
|
|
|
|
switch (prop_id)
|
1998-01-17 07:52:38 +00:00
|
|
|
|
{
|
2008-10-07 07:44:06 +00:00
|
|
|
|
case PROP_ORIENTATION:
|
2018-02-07 19:03:25 +00:00
|
|
|
|
g_value_set_enum (value, priv->orientation);
|
2008-10-07 07:44:06 +00:00
|
|
|
|
break;
|
2001-03-23 23:39:24 +00:00
|
|
|
|
case PROP_SPACING:
|
2019-01-25 12:19:34 +00:00
|
|
|
|
g_value_set_int (value, gtk_box_layout_get_spacing (box_layout));
|
1998-01-17 07:52:38 +00:00
|
|
|
|
break;
|
2013-03-05 14:20:20 +00:00
|
|
|
|
case PROP_BASELINE_POSITION:
|
2019-01-25 12:19:34 +00:00
|
|
|
|
g_value_set_enum (value, gtk_box_layout_get_baseline_position (box_layout));
|
2013-03-05 14:20:20 +00:00
|
|
|
|
break;
|
2001-03-23 23:39:24 +00:00
|
|
|
|
case PROP_HOMOGENEOUS:
|
2019-01-25 12:19:34 +00:00
|
|
|
|
g_value_set_boolean (value, gtk_box_layout_get_homogeneous (box_layout));
|
1998-01-17 07:52:38 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2001-03-23 23:39:24 +00:00
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-01-17 07:52:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-10-07 04:29:52 +00:00
|
|
|
|
static GType
|
|
|
|
|
gtk_box_child_type (GtkContainer *container)
|
1998-06-16 05:20:05 +00:00
|
|
|
|
{
|
|
|
|
|
return GTK_TYPE_WIDGET;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-18 00:47:53 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_box_init (GtkBox *box)
|
|
|
|
|
{
|
2018-02-07 19:03:25 +00:00
|
|
|
|
GtkBoxPrivate *priv = gtk_box_get_instance_private (box);
|
2015-11-18 00:47:53 +00:00
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
priv->orientation = GTK_ORIENTATION_HORIZONTAL;
|
2015-11-18 00:47:53 +00:00
|
|
|
|
_gtk_orientable_set_style_classes (GTK_ORIENTABLE (box));
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-07 07:44:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_new:
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* @orientation: the box’s orientation.
|
2008-10-07 07:44:06 +00:00
|
|
|
|
* @spacing: the number of pixels to place by default between children.
|
|
|
|
|
*
|
2010-05-30 03:31:50 +00:00
|
|
|
|
* Creates a new #GtkBox.
|
2008-10-07 07:44:06 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: a new #GtkBox.
|
2008-10-07 07:44:06 +00:00
|
|
|
|
**/
|
2008-10-07 09:07:27 +00:00
|
|
|
|
GtkWidget*
|
2010-05-25 22:55:15 +00:00
|
|
|
|
gtk_box_new (GtkOrientation orientation,
|
|
|
|
|
gint spacing)
|
2008-10-07 07:44:06 +00:00
|
|
|
|
{
|
|
|
|
|
return g_object_new (GTK_TYPE_BOX,
|
|
|
|
|
"orientation", orientation,
|
2019-01-25 12:19:34 +00:00
|
|
|
|
"spacing", spacing,
|
2008-10-07 07:44:06 +00:00
|
|
|
|
NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-10 02:53:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_set_homogeneous:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
* @homogeneous: a boolean value, %TRUE to create equal allotments,
|
|
|
|
|
* %FALSE for variable allotments
|
2010-11-02 09:43:42 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the #GtkBox:homogeneous property of @box, controlling
|
|
|
|
|
* whether or not all children of @box are given equal space
|
2007-06-10 02:53:17 +00:00
|
|
|
|
* in the box.
|
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
|
void
|
1998-06-16 05:20:05 +00:00
|
|
|
|
gtk_box_set_homogeneous (GtkBox *box,
|
|
|
|
|
gboolean homogeneous)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkBoxLayout *box_layout;
|
2010-05-24 23:11:54 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_BOX (box));
|
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
homogeneous = !!homogeneous;
|
2014-06-07 14:59:14 +00:00
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
box_layout = GTK_BOX_LAYOUT (gtk_widget_get_layout_manager (GTK_WIDGET (box)));
|
|
|
|
|
if (homogeneous == gtk_box_layout_get_homogeneous (box_layout))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gtk_box_layout_set_homogeneous (box_layout, homogeneous);
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (box), props[PROP_HOMOGENEOUS]);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_get_homogeneous:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
*
|
|
|
|
|
* Returns whether the box is homogeneous (all children are the
|
2007-05-26 06:59:36 +00:00
|
|
|
|
* same size). See gtk_box_set_homogeneous().
|
2001-06-24 15:34:48 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the box is homogeneous.
|
2001-06-24 15:34:48 +00:00
|
|
|
|
**/
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_box_get_homogeneous (GtkBox *box)
|
|
|
|
|
{
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkLayoutManager *box_layout;
|
2017-10-06 12:24:52 +00:00
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_BOX (box), FALSE);
|
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
box_layout = gtk_widget_get_layout_manager (GTK_WIDGET (box));
|
|
|
|
|
|
|
|
|
|
return gtk_box_layout_get_homogeneous (GTK_BOX_LAYOUT (box_layout));
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-06-10 02:53:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_set_spacing:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
* @spacing: the number of pixels to put between children
|
|
|
|
|
*
|
2010-11-02 09:43:42 +00:00
|
|
|
|
* Sets the #GtkBox:spacing property of @box, which is the
|
2007-06-10 02:53:17 +00:00
|
|
|
|
* number of pixels to place between children of @box.
|
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_box_set_spacing (GtkBox *box,
|
|
|
|
|
gint spacing)
|
|
|
|
|
{
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkBoxLayout *box_layout;
|
2010-05-24 23:11:54 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_BOX (box));
|
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
box_layout = GTK_BOX_LAYOUT (gtk_widget_get_layout_manager (GTK_WIDGET (box)));
|
|
|
|
|
if (spacing == gtk_box_layout_get_spacing (box_layout))
|
|
|
|
|
return;
|
2008-09-24 08:41:46 +00:00
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
gtk_box_layout_set_spacing (box_layout, spacing);
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (box), props[PROP_SPACING]);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-07 21:10:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_get_spacing:
|
|
|
|
|
* @box: a #GtkBox
|
2010-11-02 09:43:42 +00:00
|
|
|
|
*
|
2001-03-07 21:10:44 +00:00
|
|
|
|
* Gets the value set by gtk_box_set_spacing().
|
2010-11-02 09:43:42 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: spacing between children
|
2001-03-07 21:10:44 +00:00
|
|
|
|
**/
|
|
|
|
|
gint
|
|
|
|
|
gtk_box_get_spacing (GtkBox *box)
|
|
|
|
|
{
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkLayoutManager *box_layout;
|
|
|
|
|
|
2001-03-09 14:49:00 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_BOX (box), 0);
|
2001-03-07 21:10:44 +00:00
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
box_layout = gtk_widget_get_layout_manager (GTK_WIDGET (box));
|
|
|
|
|
|
|
|
|
|
return gtk_box_layout_get_spacing (GTK_BOX_LAYOUT (box_layout));
|
2001-03-07 21:10:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-05 14:20:20 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_set_baseline_position:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
* @position: a #GtkBaselinePosition
|
|
|
|
|
*
|
|
|
|
|
* Sets the baseline position of a box. This affects
|
|
|
|
|
* only horizontal boxes with at least one baseline aligned
|
2014-01-28 04:30:28 +00:00
|
|
|
|
* child. If there is more vertical space available than requested,
|
2013-03-05 14:20:20 +00:00
|
|
|
|
* and the baseline is not allocated by the parent then
|
|
|
|
|
* @position is used to allocate the baseline wrt the
|
|
|
|
|
* extra space available.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_box_set_baseline_position (GtkBox *box,
|
|
|
|
|
GtkBaselinePosition position)
|
|
|
|
|
{
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkBoxLayout *box_layout;
|
2013-03-05 14:20:20 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BOX (box));
|
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
box_layout = GTK_BOX_LAYOUT (gtk_widget_get_layout_manager (GTK_WIDGET (box)));
|
|
|
|
|
if (position == gtk_box_layout_get_baseline_position (box_layout))
|
|
|
|
|
return;
|
2013-03-05 14:20:20 +00:00
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
gtk_box_layout_set_baseline_position (box_layout, position);
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (box), props[PROP_BASELINE_POSITION]);
|
2013-03-05 14:20:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_box_get_baseline_position:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
*
|
|
|
|
|
* Gets the value set by gtk_box_set_baseline_position().
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the baseline position
|
2013-03-05 14:20:20 +00:00
|
|
|
|
**/
|
|
|
|
|
GtkBaselinePosition
|
2014-06-07 14:59:14 +00:00
|
|
|
|
gtk_box_get_baseline_position (GtkBox *box)
|
2013-03-05 14:20:20 +00:00
|
|
|
|
{
|
2019-01-25 12:19:34 +00:00
|
|
|
|
GtkLayoutManager *box_layout;
|
2017-10-06 12:24:52 +00:00
|
|
|
|
|
2013-03-05 14:20:20 +00:00
|
|
|
|
g_return_val_if_fail (GTK_IS_BOX (box), GTK_BASELINE_POSITION_CENTER);
|
|
|
|
|
|
2019-01-25 12:19:34 +00:00
|
|
|
|
box_layout = gtk_widget_get_layout_manager (GTK_WIDGET (box));
|
|
|
|
|
|
|
|
|
|
return gtk_box_layout_get_baseline_position (GTK_BOX_LAYOUT (box_layout));
|
2013-03-05 14:20:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_box_add (GtkContainer *container,
|
2018-12-29 08:49:24 +00:00
|
|
|
|
GtkWidget *child)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
2018-12-29 08:49:24 +00:00
|
|
|
|
gtk_widget_set_parent (child, GTK_WIDGET (container));
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_box_remove (GtkContainer *container,
|
|
|
|
|
GtkWidget *widget)
|
|
|
|
|
{
|
2018-12-28 16:17:16 +00:00
|
|
|
|
gtk_widget_unparent (widget);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
GTK_MENU_DIR_CHILD: check for the existance of
Thu Sep 3 04:22:20 1998 Tim Janik <timj@gtk.org>
* gtk/gtkmenushell.c (gtk_real_menu_shell_move_current):
GTK_MENU_DIR_CHILD: check for the existance of
menu_shell->active_menu_item before accessing its child.
GTK_MENU_DIR_PREV:
GTK_MENU_DIR_NEXT: if we haven't had an active item and still
don't, make a default selection.
Wed Sep 2 00:28:58 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_propagate_state): iterate
the children with _forall for sensitivity changes and with
_foreach on pure state changes. this fixes a lot of the
old inclusions of internal widgets into _foreach calls.
* gtk/gtktree.c: removed gtk_tree_foreach, let gtk_tree_forall
do the work. don't walk the subtrees of first level children.
* gtk/gtktreeitem.c: provide a _forall implementation,
which walks the subtrees as well for include_internals.
* gtk/gtkmenuitem.c: provide a _forall implementation, which walks
the submenus as well for include_internals.
* gtk/gtkscrolledwindow.c: removed gtk_scrolled_window_foreach and
implemented gtk_scrolled_window_forall, which will iterate over
the viewport and the scrollbars for gtk_container_forall or
iterate over the viewports children for gtk_container_foreach.
* gtk/gtktoolbar.c:
* gtk/gtktable.c:
* gtk/gtkpaned.c:
* gtk/gtkpacker.c:
* gtk/gtkmenushell.c:
* gtk/gtklist.c:
* gtk/gtkfixed.c:
* gtk/gtkclist.c:
* gtk/gtkbox.c:
* gtk/gtkbin.c:
* gtk/gtknotebook.c:
removed the old gtk_*_foreach functions and provided gtk_*_forall.
* gtk/gtknotebook.c:
(gtk_notebook_real_switch_page): expose tabs.
(gtk_notebook_page_num): new function to return the page number
of a distinct child.
(gtk_notebook_focus): minor fixups. foxus handling is still screwed
under some circumstances.
* gtk/gtktreeitem.c:
(gtk_real_tree_item_select):
(gtk_real_tree_item_deselect): major fixes.
some general fixups wrt queue_redraw, and tree items not being
NO_WINDOW widgets.
* gtk/gtklistitem.c:
(gtk_real_list_item_select):
(gtk_real_list_item_deselect):
(gtk_real_list_item_toggle):
removed unneccessary queue_redraw calls.
Wed Aug 30 09:42:07 1998 Tim Janik <timj@gtk.org>
* gtk/gtkoptionmenu.c: allow optionmenus to have the focus and
automatically popup the menu on space bar.
Wed Aug 26 06:40:34 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: implemented gtk_container_forall() (as a class
method), which acts similar to gtk_container_foreach(), but iterates
over internal children. the GtkContainer::foreach signal vanished in
favour of a new class method ->forall() that optionally includes
internal widgets.
* gtk/gtkclist.c (gtk_clist_init): provide no _foreach implementation
but a _forall implementation, since all child widgets we have are
internal ones.
(column_button_create): set the parent window prior
to gtk_widget_set_parent().
* gtk/gtkwidget.c:
exchanged all calls to gtk_container_foreach() with
gtk_container_forall().
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: added the GTK_COMPOSITE_CHILD, exported through
the GtkWidget::composite_child argument. to have a widget created
with the flag initially, two new functions got added to wrap a widgets
creation:
gtk_widget_push_composite_flag() and gtk_widget_pop_composite_flag().
Wed Aug 25 23:37:39 1998 Tim Janik <timj@gtk.org>
* gtk/gtktooltips.h:
* gtk/gtktooltips.c: exported gtk_tooltips_create_window() as
gtk_tooltips_force_window(), so tooltips->tip_window can be accessed
prior to the first tip being set.
don't put an extra reference on the window, since it is a toplevel,
it wont get destroyed from anywhere else.
* overall macro and GtkType fixups.
1998-09-03 02:38:53 +00:00
|
|
|
|
gtk_box_forall (GtkContainer *container,
|
|
|
|
|
GtkCallback callback,
|
|
|
|
|
gpointer callback_data)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
2018-12-28 16:17:16 +00:00
|
|
|
|
GtkWidget *child;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2018-12-28 16:17:16 +00:00
|
|
|
|
child = _gtk_widget_get_first_child (GTK_WIDGET (container));
|
|
|
|
|
while (child)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
{
|
2018-12-28 16:17:16 +00:00
|
|
|
|
GtkWidget *next = _gtk_widget_get_next_sibling (child);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2018-12-28 16:17:16 +00:00
|
|
|
|
(* callback) (child, callback_data);
|
2014-02-17 03:57:24 +00:00
|
|
|
|
|
2018-12-28 16:17:16 +00:00
|
|
|
|
child = next;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
2018-12-28 16:17:16 +00:00
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
2010-07-26 13:24:15 +00:00
|
|
|
|
|
2019-01-22 23:44:34 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_box_insert_child_after:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
* @child: the #GtkWidget to insert
|
|
|
|
|
* @sibling: (nullable): the sibling to move @child after, or %NULL
|
|
|
|
|
*
|
|
|
|
|
* Inserts @child in the position after @sibling in the list
|
2019-08-28 07:26:29 +00:00
|
|
|
|
* of @box children. If @sibling is %NULL, insert @child at
|
2019-01-22 23:44:34 +00:00
|
|
|
|
* the first position.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_box_insert_child_after (GtkBox *box,
|
|
|
|
|
GtkWidget *child,
|
|
|
|
|
GtkWidget *sibling)
|
|
|
|
|
{
|
2019-08-28 07:26:29 +00:00
|
|
|
|
GtkWidget *widget;
|
2019-01-22 23:44:34 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BOX (box));
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (child));
|
|
|
|
|
g_return_if_fail (gtk_widget_get_parent (child) == NULL);
|
2019-08-28 07:26:29 +00:00
|
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (box);
|
|
|
|
|
|
2019-01-22 23:44:34 +00:00
|
|
|
|
if (sibling)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (sibling));
|
|
|
|
|
g_return_if_fail (gtk_widget_get_parent (sibling) == widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (child == sibling)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gtk_widget_insert_after (child, widget, sibling);
|
|
|
|
|
gtk_css_node_insert_after (gtk_widget_get_css_node (widget),
|
|
|
|
|
gtk_widget_get_css_node (child),
|
|
|
|
|
sibling ? gtk_widget_get_css_node (sibling) : NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_box_reorder_child_after:
|
|
|
|
|
* @box: a #GtkBox
|
|
|
|
|
* @child: the #GtkWidget to move, must be a child of @box
|
|
|
|
|
* @sibling: (nullable): the sibling to move @child after, or %NULL
|
|
|
|
|
*
|
|
|
|
|
* Moves @child to the position after @sibling in the list
|
|
|
|
|
* of @box children. If @sibling is %NULL, move @child to
|
|
|
|
|
* the first position.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_box_reorder_child_after (GtkBox *box,
|
|
|
|
|
GtkWidget *child,
|
|
|
|
|
GtkWidget *sibling)
|
|
|
|
|
{
|
2019-08-28 07:26:29 +00:00
|
|
|
|
GtkWidget *widget;
|
2019-01-22 23:44:34 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_BOX (box));
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (child));
|
2019-08-28 07:26:29 +00:00
|
|
|
|
g_return_if_fail (gtk_widget_get_parent (child) == (GtkWidget *)box);
|
|
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (box);
|
|
|
|
|
|
2019-01-22 23:44:34 +00:00
|
|
|
|
if (sibling)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (sibling));
|
|
|
|
|
g_return_if_fail (gtk_widget_get_parent (sibling) == widget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (child == sibling)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gtk_widget_insert_after (child, widget, sibling);
|
|
|
|
|
gtk_css_node_insert_after (gtk_widget_get_css_node (widget),
|
|
|
|
|
gtk_widget_get_css_node (child),
|
|
|
|
|
sibling ? gtk_widget_get_css_node (sibling) : NULL);
|
|
|
|
|
}
|