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
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
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
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
2010-03-05 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkalignment
|
|
|
|
* @Short_description: A widget which controls the alignment and size of its child
|
|
|
|
* @Title: GtkAlignment
|
|
|
|
*
|
|
|
|
* The #GtkAlignment widget controls the alignment and size of its child widget.
|
|
|
|
* It has four settings: xscale, yscale, xalign, and yalign.
|
|
|
|
*
|
|
|
|
* The scale settings are used to specify how much the child widget should
|
|
|
|
* expand to fill the space allocated to the #GtkAlignment.
|
|
|
|
* The values can range from 0 (meaning the child doesn't expand at all) to
|
|
|
|
* 1 (meaning the child expands to fill all of the available space).
|
|
|
|
*
|
|
|
|
* The align settings are used to place the child widget within the available
|
|
|
|
* area. The values range from 0 (top or left) to 1 (bottom or right).
|
|
|
|
* Of course, if the scale settings are both set to 1, the alignment settings
|
|
|
|
* have no effect.
|
2010-09-19 05:01:09 +00:00
|
|
|
*
|
2010-10-22 15:56:00 +00:00
|
|
|
* <note>
|
|
|
|
* <para>
|
2010-09-19 05:01:09 +00:00
|
|
|
* Note that the desired effect can in most cases be achieved by using the
|
|
|
|
* #GtkWidget:halign, #GtkWidget:valign and #GtkWidget:margin properties
|
2010-10-22 14:52:08 +00:00
|
|
|
* on the child widget, so #GtkAlignment should not be used in new code.
|
2010-10-22 15:56:00 +00:00
|
|
|
* </para>
|
|
|
|
* </note>
|
2010-03-05 22:38:44 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkalignment.h"
|
2010-06-18 04:11:26 +00:00
|
|
|
#include "gtksizerequest.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
2001-02-17 00:11:03 +00:00
|
|
|
#include "gtkintl.h"
|
2010-07-09 17:22:23 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
struct _GtkAlignmentPrivate
|
2010-07-13 23:38:00 +00:00
|
|
|
{
|
|
|
|
gfloat xalign;
|
|
|
|
gfloat yalign;
|
|
|
|
gfloat xscale;
|
|
|
|
gfloat yscale;
|
|
|
|
|
|
|
|
guint padding_bottom;
|
|
|
|
guint padding_top;
|
|
|
|
guint padding_left;
|
|
|
|
guint padding_right;
|
|
|
|
};
|
|
|
|
|
1998-06-28 10:07:37 +00:00
|
|
|
enum {
|
2001-02-17 00:11:03 +00:00
|
|
|
PROP_0,
|
|
|
|
|
|
|
|
PROP_XALIGN,
|
|
|
|
PROP_YALIGN,
|
|
|
|
PROP_XSCALE,
|
|
|
|
PROP_YSCALE,
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2004-08-22 14:58:15 +00:00
|
|
|
PROP_TOP_PADDING,
|
|
|
|
PROP_BOTTOM_PADDING,
|
|
|
|
PROP_LEFT_PADDING,
|
2008-05-21 11:30:06 +00:00
|
|
|
PROP_RIGHT_PADDING
|
1998-06-28 10:07:37 +00:00
|
|
|
};
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
static void gtk_alignment_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
2001-02-17 00:11:03 +00:00
|
|
|
static void gtk_alignment_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
2001-03-07 14:49:21 +00:00
|
|
|
GParamSpec *pspec);
|
2001-02-17 00:11:03 +00:00
|
|
|
static void gtk_alignment_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
2001-03-07 14:49:21 +00:00
|
|
|
GParamSpec *pspec);
|
1998-06-28 10:07:37 +00:00
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
static void gtk_alignment_get_preferred_width (GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
static void gtk_alignment_get_preferred_height (GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
2010-12-29 07:18:04 +00:00
|
|
|
static void gtk_alignment_get_preferred_width_for_height (GtkWidget *widget,
|
|
|
|
gint for_size,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
|
|
|
static void gtk_alignment_get_preferred_height_for_width (GtkWidget *widget,
|
|
|
|
gint for_size,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size);
|
2010-09-21 14:35:17 +00:00
|
|
|
|
|
|
|
G_DEFINE_TYPE (GtkAlignment, gtk_alignment, GTK_TYPE_BIN)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_alignment_class_init (GtkAlignmentClass *class)
|
|
|
|
{
|
2001-02-18 01:59:18 +00:00
|
|
|
GObjectClass *gobject_class;
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
|
2001-02-18 01:59:18 +00:00
|
|
|
gobject_class = (GObjectClass*) class;
|
1997-11-24 22:37:52 +00:00
|
|
|
widget_class = (GtkWidgetClass*) class;
|
2001-02-18 01:59:18 +00:00
|
|
|
|
|
|
|
gobject_class->set_property = gtk_alignment_set_property;
|
|
|
|
gobject_class->get_property = gtk_alignment_get_property;
|
1998-06-28 10:07:37 +00:00
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
widget_class->size_allocate = gtk_alignment_size_allocate;
|
|
|
|
widget_class->get_preferred_width = gtk_alignment_get_preferred_width;
|
|
|
|
widget_class->get_preferred_height = gtk_alignment_get_preferred_height;
|
2010-12-29 07:18:04 +00:00
|
|
|
widget_class->get_preferred_width_for_height = gtk_alignment_get_preferred_width_for_height;
|
|
|
|
widget_class->get_preferred_height_for_width = gtk_alignment_get_preferred_height_for_width;
|
2003-06-14 22:27:14 +00:00
|
|
|
|
2001-02-18 01:59:18 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_XALIGN,
|
|
|
|
g_param_spec_float("xalign",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Horizontal alignment"),
|
|
|
|
P_("Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned"),
|
2001-02-18 01:59:18 +00:00
|
|
|
0.0,
|
|
|
|
1.0,
|
|
|
|
0.5,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2001-02-18 01:59:18 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_YALIGN,
|
|
|
|
g_param_spec_float("yalign",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Vertical alignment"),
|
|
|
|
P_("Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned"),
|
2001-02-18 01:59:18 +00:00
|
|
|
0.0,
|
|
|
|
1.0,
|
|
|
|
0.5,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2001-02-18 01:59:18 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_XSCALE,
|
|
|
|
g_param_spec_float("xscale",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Horizontal scale"),
|
|
|
|
P_("If available horizontal space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
|
2001-02-18 01:59:18 +00:00
|
|
|
0.0,
|
|
|
|
1.0,
|
2001-09-10 14:59:49 +00:00
|
|
|
1.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2001-02-18 01:59:18 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_YSCALE,
|
|
|
|
g_param_spec_float("yscale",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Vertical scale"),
|
|
|
|
P_("If available vertical space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
|
2001-02-18 01:59:18 +00:00
|
|
|
0.0,
|
|
|
|
1.0,
|
2001-09-10 14:59:49 +00:00
|
|
|
1.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
|
2003-06-14 22:27:14 +00:00
|
|
|
/**
|
|
|
|
* GtkAlignment:top-padding:
|
|
|
|
*
|
|
|
|
* The padding to insert at the top of the widget.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2003-05-30 18:29:32 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2004-08-22 14:58:15 +00:00
|
|
|
PROP_TOP_PADDING,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_uint("top-padding",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Top Padding"),
|
|
|
|
P_("The padding to insert at the top of the widget."),
|
2003-05-30 18:29:32 +00:00
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2003-06-14 22:27:14 +00:00
|
|
|
/**
|
2005-03-21 06:02:43 +00:00
|
|
|
* GtkAlignment:bottom-padding:
|
2003-06-14 22:27:14 +00:00
|
|
|
*
|
|
|
|
* The padding to insert at the bottom of the widget.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2003-05-30 18:29:32 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2004-08-22 14:58:15 +00:00
|
|
|
PROP_BOTTOM_PADDING,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_uint("bottom-padding",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Bottom Padding"),
|
|
|
|
P_("The padding to insert at the bottom of the widget."),
|
2003-05-30 18:29:32 +00:00
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2003-06-14 22:27:14 +00:00
|
|
|
/**
|
2005-03-21 06:02:43 +00:00
|
|
|
* GtkAlignment:left-padding:
|
2003-06-14 22:27:14 +00:00
|
|
|
*
|
|
|
|
* The padding to insert at the left of the widget.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2003-05-30 18:29:32 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2004-08-22 14:58:15 +00:00
|
|
|
PROP_LEFT_PADDING,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_uint("left-padding",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Left Padding"),
|
|
|
|
P_("The padding to insert at the left of the widget."),
|
2003-05-30 18:29:32 +00:00
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2003-06-14 22:27:14 +00:00
|
|
|
/**
|
2005-03-21 06:02:43 +00:00
|
|
|
* GtkAlignment:right-padding:
|
2003-06-14 22:27:14 +00:00
|
|
|
*
|
|
|
|
* The padding to insert at the right of the widget.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2003-05-30 18:29:32 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
2004-08-22 14:58:15 +00:00
|
|
|
PROP_RIGHT_PADDING,
|
2005-03-09 04:04:40 +00:00
|
|
|
g_param_spec_uint("right-padding",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Right Padding"),
|
|
|
|
P_("The padding to insert at the right of the widget."),
|
2003-05-30 18:29:32 +00:00
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
g_type_class_add_private (gobject_class, sizeof (GtkAlignmentPrivate));
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_alignment_init (GtkAlignment *alignment)
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv;
|
2010-07-13 23:38:00 +00:00
|
|
|
|
|
|
|
alignment->priv = G_TYPE_INSTANCE_GET_PRIVATE (alignment,
|
|
|
|
GTK_TYPE_ALIGNMENT,
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate);
|
2010-07-13 23:38:00 +00:00
|
|
|
priv = alignment->priv;
|
|
|
|
|
2010-03-06 10:29:31 +00:00
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (alignment), FALSE);
|
2001-11-04 22:57:03 +00:00
|
|
|
gtk_widget_set_redraw_on_allocate (GTK_WIDGET (alignment), FALSE);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xalign = 0.5;
|
|
|
|
priv->yalign = 0.5;
|
|
|
|
priv->xscale = 1.0;
|
|
|
|
priv->yscale = 1.0;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
/* Initialize padding with default values: */
|
|
|
|
priv->padding_top = 0;
|
|
|
|
priv->padding_bottom = 0;
|
|
|
|
priv->padding_left = 0;
|
|
|
|
priv->padding_right = 0;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2010-03-05 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gtk_alignment_new:
|
|
|
|
* @xalign: the horizontal alignment of the child widget, from 0 (left) to 1
|
|
|
|
* (right).
|
|
|
|
* @yalign: the vertical alignment of the child widget, from 0 (top) to 1
|
|
|
|
* (bottom).
|
|
|
|
* @xscale: the amount that the child widget expands horizontally to fill up
|
|
|
|
* unused space, from 0 to 1.
|
|
|
|
* A value of 0 indicates that the child widget should never expand.
|
|
|
|
* A value of 1 indicates that the child widget will expand to fill all of the
|
|
|
|
* space allocated for the #GtkAlignment.
|
|
|
|
* @yscale: the amount that the child widget expands vertically to fill up
|
|
|
|
* unused space, from 0 to 1. The values are similar to @xscale.
|
|
|
|
*
|
|
|
|
* Creates a new #GtkAlignment.
|
|
|
|
*
|
|
|
|
* Returns: the new #GtkAlignment.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkWidget*
|
|
|
|
gtk_alignment_new (gfloat xalign,
|
|
|
|
gfloat yalign,
|
|
|
|
gfloat xscale,
|
|
|
|
gfloat yscale)
|
|
|
|
{
|
|
|
|
GtkAlignment *alignment;
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2002-10-09 22:25:18 +00:00
|
|
|
alignment = g_object_new (GTK_TYPE_ALIGNMENT, NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
priv = alignment->priv;
|
|
|
|
|
|
|
|
priv->xalign = CLAMP (xalign, 0.0, 1.0);
|
|
|
|
priv->yalign = CLAMP (yalign, 0.0, 1.0);
|
|
|
|
priv->xscale = CLAMP (xscale, 0.0, 1.0);
|
|
|
|
priv->yscale = CLAMP (yscale, 0.0, 1.0);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
return GTK_WIDGET (alignment);
|
|
|
|
}
|
|
|
|
|
2001-03-07 14:49:21 +00:00
|
|
|
static void
|
|
|
|
gtk_alignment_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
1998-06-28 10:07:37 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
GtkAlignment *alignment = GTK_ALIGNMENT (object);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv = alignment->priv;
|
2010-07-13 23:38:00 +00:00
|
|
|
|
2001-02-17 00:11:03 +00:00
|
|
|
switch (prop_id)
|
1998-06-28 10:07:37 +00:00
|
|
|
{
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_XALIGN:
|
1998-06-28 10:07:37 +00:00
|
|
|
gtk_alignment_set (alignment,
|
2001-09-08 19:33:06 +00:00
|
|
|
g_value_get_float (value),
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->yalign,
|
|
|
|
priv->xscale,
|
|
|
|
priv->yscale);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_YALIGN:
|
1998-06-28 10:07:37 +00:00
|
|
|
gtk_alignment_set (alignment,
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xalign,
|
2001-09-08 19:33:06 +00:00
|
|
|
g_value_get_float (value),
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xscale,
|
|
|
|
priv->yscale);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_XSCALE:
|
1998-06-28 10:07:37 +00:00
|
|
|
gtk_alignment_set (alignment,
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xalign,
|
|
|
|
priv->yalign,
|
2001-09-08 19:33:06 +00:00
|
|
|
g_value_get_float (value),
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->yscale);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_YSCALE:
|
1998-06-28 10:07:37 +00:00
|
|
|
gtk_alignment_set (alignment,
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xalign,
|
|
|
|
priv->yalign,
|
|
|
|
priv->xscale,
|
2001-09-08 19:33:06 +00:00
|
|
|
g_value_get_float (value));
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
/* Padding: */
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_TOP_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
gtk_alignment_set_padding (alignment,
|
|
|
|
g_value_get_uint (value),
|
|
|
|
priv->padding_bottom,
|
|
|
|
priv->padding_left,
|
|
|
|
priv->padding_right);
|
|
|
|
break;
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_BOTTOM_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
gtk_alignment_set_padding (alignment,
|
|
|
|
priv->padding_top,
|
|
|
|
g_value_get_uint (value),
|
|
|
|
priv->padding_left,
|
|
|
|
priv->padding_right);
|
|
|
|
break;
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_LEFT_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
gtk_alignment_set_padding (alignment,
|
|
|
|
priv->padding_top,
|
|
|
|
priv->padding_bottom,
|
|
|
|
g_value_get_uint (value),
|
|
|
|
priv->padding_right);
|
|
|
|
break;
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_RIGHT_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
gtk_alignment_set_padding (alignment,
|
|
|
|
priv->padding_top,
|
|
|
|
priv->padding_bottom,
|
|
|
|
priv->padding_left,
|
|
|
|
g_value_get_uint (value));
|
|
|
|
break;
|
|
|
|
|
1998-06-28 10:07:37 +00:00
|
|
|
default:
|
2001-02-17 00:11:03 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-07 14:49:21 +00:00
|
|
|
static void
|
|
|
|
gtk_alignment_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
1998-06-28 10:07:37 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
GtkAlignment *alignment = GTK_ALIGNMENT (object);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv = alignment->priv;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2001-02-17 00:11:03 +00:00
|
|
|
switch (prop_id)
|
1998-06-28 10:07:37 +00:00
|
|
|
{
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_XALIGN:
|
2010-07-13 23:38:00 +00:00
|
|
|
g_value_set_float(value, priv->xalign);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_YALIGN:
|
2010-07-13 23:38:00 +00:00
|
|
|
g_value_set_float(value, priv->yalign);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_XSCALE:
|
2010-07-13 23:38:00 +00:00
|
|
|
g_value_set_float(value, priv->xscale);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2001-02-17 00:11:03 +00:00
|
|
|
case PROP_YSCALE:
|
2010-07-13 23:38:00 +00:00
|
|
|
g_value_set_float(value, priv->yscale);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
/* Padding: */
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_TOP_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
g_value_set_uint (value, priv->padding_top);
|
|
|
|
break;
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_BOTTOM_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
g_value_set_uint (value, priv->padding_bottom);
|
|
|
|
break;
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_LEFT_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
g_value_set_uint (value, priv->padding_left);
|
|
|
|
break;
|
2004-08-22 14:58:15 +00:00
|
|
|
case PROP_RIGHT_PADDING:
|
2003-05-30 18:29:32 +00:00
|
|
|
g_value_set_uint (value, priv->padding_right);
|
|
|
|
break;
|
|
|
|
|
1998-06-28 10:07:37 +00:00
|
|
|
default:
|
2001-02-17 00:11:03 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-06-28 10:07:37 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-05 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gtk_alignment_set:
|
|
|
|
* @alignment: a #GtkAlignment.
|
|
|
|
* @xalign: the horizontal alignment of the child widget, from 0 (left) to 1
|
|
|
|
* (right).
|
|
|
|
* @yalign: the vertical alignment of the child widget, from 0 (top) to 1
|
|
|
|
* (bottom).
|
|
|
|
* @xscale: the amount that the child widget expands horizontally to fill up
|
|
|
|
* unused space, from 0 to 1.
|
|
|
|
* A value of 0 indicates that the child widget should never expand.
|
|
|
|
* A value of 1 indicates that the child widget will expand to fill all of the
|
|
|
|
* space allocated for the #GtkAlignment.
|
|
|
|
* @yscale: the amount that the child widget expands vertically to fill up
|
|
|
|
* unused space, from 0 to 1. The values are similar to @xscale.
|
|
|
|
*
|
|
|
|
* Sets the #GtkAlignment values.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
|
|
|
gtk_alignment_set (GtkAlignment *alignment,
|
|
|
|
gfloat xalign,
|
|
|
|
gfloat yalign,
|
|
|
|
gfloat xscale,
|
|
|
|
gfloat yscale)
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv;
|
2010-05-24 20:31:36 +00:00
|
|
|
GtkWidget *child;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
g_return_if_fail (GTK_IS_ALIGNMENT (alignment));
|
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
priv = alignment->priv;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
xalign = CLAMP (xalign, 0.0, 1.0);
|
|
|
|
yalign = CLAMP (yalign, 0.0, 1.0);
|
|
|
|
xscale = CLAMP (xscale, 0.0, 1.0);
|
|
|
|
yscale = CLAMP (yscale, 0.0, 1.0);
|
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
if ( (priv->xalign != xalign)
|
|
|
|
|| (priv->yalign != yalign)
|
|
|
|
|| (priv->xscale != xscale)
|
|
|
|
|| (priv->yscale != yscale))
|
2001-02-17 00:11:03 +00:00
|
|
|
{
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
g_object_freeze_notify (G_OBJECT (alignment));
|
2010-07-13 23:38:00 +00:00
|
|
|
if (priv->xalign != xalign)
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xalign = xalign;
|
2002-01-28 18:52:49 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "xalign");
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
}
|
2010-07-13 23:38:00 +00:00
|
|
|
if (priv->yalign != yalign)
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->yalign = yalign;
|
2002-01-28 18:52:49 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "yalign");
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
}
|
2010-07-13 23:38:00 +00:00
|
|
|
if (priv->xscale != xscale)
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->xscale = xscale;
|
2002-01-28 18:52:49 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "xscale");
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
}
|
2010-07-13 23:38:00 +00:00
|
|
|
if (priv->yscale != yscale)
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
priv->yscale = yscale;
|
2002-01-28 18:52:49 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "yscale");
|
coalescing property notifies
2001-08-11 Hans Breuer <hans@breuer.org>
* gtk/gtkalignment.c, gtk/gtkarrow.c, gtk/gtkaspectframe.c,
gtk/gtkcellrenderer.c, gtk/gtkcellrenderertext.c,
gtk/gtkcombo.c, gtk/gtkcurve.c, gtk/gtkfontsel.c,
gtk/gtklayout.c, gtk/gtkmisc.c, gtk/gtkpacker.c,
gtk/gtkprogress.c, gtk/gtkruler.c,, gtk/gtksettings.c,
gtk/gtkspinbutton.c, gtk/gtktexttag.c : coalescing property notifies
* gtk/gtkclist.c, gtk/gtktipsquery.c, gtk/gtktexttag.c,
gtk/gtkwidget.c : added G_SIGNAL_TYPE_STATIC_SCOPE to all
GDK_TYPE_EVENT signals
* gtk/gtkalignment.c : removed 'direct allocation bug',
which Tim discovered while reading the patch
2001-08-11 20:27:36 +00:00
|
|
|
}
|
|
|
|
g_object_thaw_notify (G_OBJECT (alignment));
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-05-24 20:31:36 +00:00
|
|
|
child = gtk_bin_get_child (GTK_BIN (alignment));
|
|
|
|
if (child)
|
|
|
|
gtk_widget_queue_resize (child);
|
1997-11-24 22:37:52 +00:00
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (alignment));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_alignment_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
GtkAlignment *alignment = GTK_ALIGNMENT (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv = alignment->priv;
|
1997-11-24 22:37:52 +00:00
|
|
|
GtkBin *bin;
|
|
|
|
GtkAllocation child_allocation;
|
2010-09-21 14:35:17 +00:00
|
|
|
GtkWidget *child;
|
1997-11-24 22:37:52 +00:00
|
|
|
gint width, height;
|
2010-06-02 04:28:22 +00:00
|
|
|
guint border_width;
|
2003-05-30 18:29:32 +00:00
|
|
|
gint padding_horizontal, padding_vertical;
|
|
|
|
|
|
|
|
padding_horizontal = 0;
|
|
|
|
padding_vertical = 0;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-08-11 21:19:15 +00:00
|
|
|
gtk_widget_set_allocation (widget, allocation);
|
1997-11-24 22:37:52 +00:00
|
|
|
bin = GTK_BIN (widget);
|
2010-05-24 20:31:36 +00:00
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
child = gtk_bin_get_child (bin);
|
|
|
|
if (child && gtk_widget_get_visible (child))
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2010-04-20 05:22:31 +00:00
|
|
|
gint child_nat_width;
|
|
|
|
gint child_nat_height;
|
|
|
|
gint child_width, child_height;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
border_width = gtk_container_get_border_width (GTK_CONTAINER (alignment));
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
padding_horizontal = priv->padding_left + priv->padding_right;
|
|
|
|
padding_vertical = priv->padding_top + priv->padding_bottom;
|
|
|
|
|
2008-11-24 19:20:16 +00:00
|
|
|
width = MAX (1, allocation->width - padding_horizontal - 2 * border_width);
|
|
|
|
height = MAX (1, allocation->height - padding_vertical - 2 * border_width);
|
2009-12-02 08:48:42 +00:00
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
if (gtk_widget_get_request_mode (child) == GTK_SIZE_REQUEST_HEIGHT_FOR_WIDTH)
|
2010-04-20 05:22:31 +00:00
|
|
|
{
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_widget_get_preferred_width (child, NULL, &child_nat_width);
|
2010-04-20 05:22:31 +00:00
|
|
|
|
|
|
|
child_width = MIN (width, child_nat_width);
|
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_widget_get_preferred_height_for_width (child, child_width, NULL, &child_nat_height);
|
2010-04-20 05:22:31 +00:00
|
|
|
|
|
|
|
child_height = MIN (height, child_nat_height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_widget_get_preferred_height (child, NULL, &child_nat_height);
|
2010-04-20 05:22:31 +00:00
|
|
|
|
|
|
|
child_height = MIN (height, child_nat_height);
|
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_widget_get_preferred_width_for_height (child, child_height, NULL, &child_nat_width);
|
2010-04-20 05:22:31 +00:00
|
|
|
|
|
|
|
child_width = MIN (width, child_nat_width);
|
|
|
|
}
|
2009-12-02 08:48:42 +00:00
|
|
|
|
2010-04-20 05:22:31 +00:00
|
|
|
if (width > child_width)
|
|
|
|
child_allocation.width = (child_width *
|
2010-07-13 23:38:00 +00:00
|
|
|
(1.0 - priv->xscale) +
|
|
|
|
width * priv->xscale);
|
1997-11-24 22:37:52 +00:00
|
|
|
else
|
|
|
|
child_allocation.width = width;
|
2009-12-02 08:48:42 +00:00
|
|
|
|
2010-04-20 05:22:31 +00:00
|
|
|
if (height > child_height)
|
|
|
|
child_allocation.height = (child_height *
|
2010-07-13 23:38:00 +00:00
|
|
|
(1.0 - priv->yscale) +
|
|
|
|
height * priv->yscale);
|
1997-11-24 22:37:52 +00:00
|
|
|
else
|
|
|
|
child_allocation.height = height;
|
|
|
|
|
2003-12-06 00:41:38 +00:00
|
|
|
if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
|
2010-07-13 23:38:00 +00:00
|
|
|
child_allocation.x = (1.0 - priv->xalign) * (width - child_allocation.width) + allocation->x + border_width + priv->padding_right;
|
2005-05-10 03:44:02 +00:00
|
|
|
else
|
2010-07-13 23:38:00 +00:00
|
|
|
child_allocation.x = priv->xalign * (width - child_allocation.width) + allocation->x + border_width + priv->padding_left;
|
2003-12-06 00:41:38 +00:00
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
child_allocation.y = priv->yalign * (height - child_allocation.height) + allocation->y + border_width + priv->padding_top;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_widget_size_allocate (child, &child_allocation);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
2003-05-30 18:29:32 +00:00
|
|
|
|
2010-04-07 00:47:15 +00:00
|
|
|
|
|
|
|
static void
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_alignment_get_preferred_size (GtkWidget *widget,
|
|
|
|
GtkOrientation orientation,
|
2010-12-29 07:18:04 +00:00
|
|
|
gint for_size,
|
2010-09-21 14:35:17 +00:00
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size)
|
2010-04-07 00:47:15 +00:00
|
|
|
{
|
2010-07-13 23:38:00 +00:00
|
|
|
GtkAlignment *alignment = GTK_ALIGNMENT (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv = alignment->priv;
|
2010-04-07 00:47:15 +00:00
|
|
|
GtkWidget *child;
|
2010-06-02 04:28:22 +00:00
|
|
|
guint minimum, natural;
|
2010-04-07 00:47:15 +00:00
|
|
|
|
2010-06-02 04:28:22 +00:00
|
|
|
natural = minimum = gtk_container_get_border_width (GTK_CONTAINER (widget)) * 2;
|
2010-04-07 00:47:15 +00:00
|
|
|
|
2010-06-18 04:11:26 +00:00
|
|
|
if ((child = gtk_bin_get_child (GTK_BIN (widget))) && gtk_widget_get_visible (child))
|
2010-04-07 00:47:15 +00:00
|
|
|
{
|
2010-04-13 02:21:46 +00:00
|
|
|
gint child_min, child_nat;
|
2010-04-07 00:47:15 +00:00
|
|
|
|
|
|
|
/* Request extra space for the padding: */
|
2010-04-13 02:21:46 +00:00
|
|
|
if (orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
|
|
{
|
|
|
|
minimum += (priv->padding_left + priv->padding_right);
|
2010-12-29 07:18:04 +00:00
|
|
|
|
|
|
|
if (for_size < 0)
|
|
|
|
gtk_widget_get_preferred_width (child, &child_min, &child_nat);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gint min_height;
|
|
|
|
|
|
|
|
gtk_widget_get_preferred_height (child, &min_height, NULL);
|
|
|
|
|
|
|
|
for_size -= (priv->padding_top + priv->padding_bottom);
|
|
|
|
|
|
|
|
if (for_size > min_height)
|
|
|
|
for_size = (min_height * (1.0 - priv->yscale) +
|
|
|
|
for_size * priv->yscale);
|
|
|
|
|
|
|
|
gtk_widget_get_preferred_width_for_height (child, for_size, &child_min, &child_nat);
|
|
|
|
}
|
2010-04-13 02:21:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
minimum += (priv->padding_top + priv->padding_bottom);
|
2010-12-29 07:18:04 +00:00
|
|
|
|
|
|
|
if (for_size < 0)
|
|
|
|
gtk_widget_get_preferred_height (child, &child_min, &child_nat);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gint min_width;
|
|
|
|
|
|
|
|
gtk_widget_get_preferred_width (child, &min_width, NULL);
|
|
|
|
|
|
|
|
for_size -= (priv->padding_left + priv->padding_right);
|
|
|
|
|
|
|
|
if (for_size > min_width)
|
|
|
|
for_size = (min_width * (1.0 - priv->xscale) +
|
|
|
|
for_size * priv->xscale);
|
|
|
|
|
|
|
|
gtk_widget_get_preferred_height_for_width (child, for_size, &child_min, &child_nat);
|
|
|
|
}
|
2010-04-13 02:21:46 +00:00
|
|
|
}
|
2010-04-07 00:47:15 +00:00
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
natural = minimum;
|
2010-04-07 00:47:15 +00:00
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
minimum += child_min;
|
|
|
|
natural += child_nat;
|
2010-04-07 00:47:15 +00:00
|
|
|
}
|
2010-04-13 02:21:46 +00:00
|
|
|
|
|
|
|
if (minimum_size)
|
|
|
|
*minimum_size = minimum;
|
|
|
|
|
|
|
|
if (natural_size)
|
|
|
|
*natural_size = natural;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_alignment_get_preferred_width (GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size)
|
2010-04-13 02:21:46 +00:00
|
|
|
{
|
2010-12-29 07:18:04 +00:00
|
|
|
gtk_alignment_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, -1, minimum_size, natural_size);
|
2010-04-13 02:21:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-09-21 14:35:17 +00:00
|
|
|
gtk_alignment_get_preferred_height (GtkWidget *widget,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size)
|
2010-04-13 02:21:46 +00:00
|
|
|
{
|
2010-12-29 07:18:04 +00:00
|
|
|
gtk_alignment_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, -1, minimum_size, natural_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_alignment_get_preferred_width_for_height (GtkWidget *widget,
|
|
|
|
gint for_size,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size)
|
|
|
|
{
|
|
|
|
gtk_alignment_get_preferred_size (widget, GTK_ORIENTATION_HORIZONTAL, for_size, minimum_size, natural_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_alignment_get_preferred_height_for_width (GtkWidget *widget,
|
|
|
|
gint for_size,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size)
|
|
|
|
{
|
|
|
|
gtk_alignment_get_preferred_size (widget, GTK_ORIENTATION_VERTICAL, for_size, minimum_size, natural_size);
|
2010-04-07 00:47:15 +00:00
|
|
|
}
|
|
|
|
|
2003-05-30 18:29:32 +00:00
|
|
|
/**
|
|
|
|
* gtk_alignment_set_padding:
|
2003-06-24 21:55:40 +00:00
|
|
|
* @alignment: a #GtkAlignment
|
2003-05-30 18:29:32 +00:00
|
|
|
* @padding_top: the padding at the top of the widget
|
|
|
|
* @padding_bottom: the padding at the bottom of the widget
|
|
|
|
* @padding_left: the padding at the left of the widget
|
|
|
|
* @padding_right: the padding at the right of the widget.
|
|
|
|
*
|
|
|
|
* Sets the padding on the different sides of the widget.
|
|
|
|
* The padding adds blank space to the sides of the widget. For instance,
|
|
|
|
* this can be used to indent the child widget towards the right by adding
|
|
|
|
* padding on the left.
|
2003-05-31 23:39:02 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2003-05-30 18:29:32 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_alignment_set_padding (GtkAlignment *alignment,
|
|
|
|
guint padding_top,
|
|
|
|
guint padding_bottom,
|
|
|
|
guint padding_left,
|
|
|
|
guint padding_right)
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv;
|
2010-05-24 20:31:36 +00:00
|
|
|
GtkWidget *child;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ALIGNMENT (alignment));
|
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
priv = alignment->priv;
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (alignment));
|
|
|
|
|
|
|
|
if (priv->padding_top != padding_top)
|
|
|
|
{
|
|
|
|
priv->padding_top = padding_top;
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "top-padding");
|
2003-05-30 18:29:32 +00:00
|
|
|
}
|
|
|
|
if (priv->padding_bottom != padding_bottom)
|
|
|
|
{
|
|
|
|
priv->padding_bottom = padding_bottom;
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "bottom-padding");
|
2003-05-30 18:29:32 +00:00
|
|
|
}
|
|
|
|
if (priv->padding_left != padding_left)
|
|
|
|
{
|
|
|
|
priv->padding_left = padding_left;
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "left-padding");
|
2003-05-30 18:29:32 +00:00
|
|
|
}
|
|
|
|
if (priv->padding_right != padding_right)
|
|
|
|
{
|
|
|
|
priv->padding_right = padding_right;
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (alignment), "right-padding");
|
2003-05-30 18:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (alignment));
|
|
|
|
|
|
|
|
/* Make sure that the widget and children are redrawn with the new setting: */
|
2010-05-24 20:31:36 +00:00
|
|
|
child = gtk_bin_get_child (GTK_BIN (alignment));
|
|
|
|
if (child)
|
|
|
|
gtk_widget_queue_resize (child);
|
2003-05-30 18:29:32 +00:00
|
|
|
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (alignment));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_alignment_get_padding:
|
2003-06-24 21:55:40 +00:00
|
|
|
* @alignment: a #GtkAlignment
|
2011-01-18 09:10:30 +00:00
|
|
|
* @padding_top: (out) (allow-none): location to store the padding for
|
|
|
|
* the top of the widget, or %NULL
|
|
|
|
* @padding_bottom: (out) (allow-none): location to store the padding
|
|
|
|
* for the bottom of the widget, or %NULL
|
|
|
|
* @padding_left: (out) (allow-none): location to store the padding
|
|
|
|
* for the left of the widget, or %NULL
|
|
|
|
* @padding_right: (out) (allow-none): location to store the padding
|
|
|
|
* for the right of the widget, or %NULL
|
2003-05-30 18:29:32 +00:00
|
|
|
*
|
|
|
|
* Gets the padding on the different sides of the widget.
|
|
|
|
* See gtk_alignment_set_padding ().
|
2003-05-31 23:39:02 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2003-05-30 18:29:32 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_alignment_get_padding (GtkAlignment *alignment,
|
|
|
|
guint *padding_top,
|
|
|
|
guint *padding_bottom,
|
|
|
|
guint *padding_left,
|
|
|
|
guint *padding_right)
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkAlignmentPrivate *priv;
|
2010-07-13 23:38:00 +00:00
|
|
|
|
2003-05-30 18:29:32 +00:00
|
|
|
g_return_if_fail (GTK_IS_ALIGNMENT (alignment));
|
|
|
|
|
2010-07-13 23:38:00 +00:00
|
|
|
priv = alignment->priv;
|
|
|
|
|
2003-05-30 18:29:32 +00:00
|
|
|
if(padding_top)
|
|
|
|
*padding_top = priv->padding_top;
|
|
|
|
if(padding_bottom)
|
|
|
|
*padding_bottom = priv->padding_bottom;
|
|
|
|
if(padding_left)
|
|
|
|
*padding_left = priv->padding_left;
|
|
|
|
if(padding_right)
|
|
|
|
*padding_right = priv->padding_right;
|
|
|
|
}
|