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/.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkadjustment.h"
|
2001-11-17 23:28:51 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
|
|
|
#include "gtkintl.h"
|
2010-07-09 17:22:23 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkadjustment
|
|
|
|
* @Short_description: A representation of an adjustable bounded value
|
|
|
|
* @Title: GtkAdjustment
|
|
|
|
*
|
|
|
|
* The #GtkAdjustment object represents a value which has an associated lower
|
|
|
|
* and upper bound, together with step and page increments, and a page size.
|
|
|
|
* It is used within several GTK+ widgets, including
|
|
|
|
* #GtkSpinButton, #GtkViewport, and #GtkRange (which is a base class for
|
|
|
|
* #GtkHScrollbar, #GtkVScrollbar, #GtkHScale, and #GtkVScale).
|
|
|
|
*
|
|
|
|
* The #GtkAdjustment object does not update the value itself. Instead
|
|
|
|
* it is left up to the owner of the #GtkAdjustment to control the value.
|
|
|
|
*
|
|
|
|
* The owner of the #GtkAdjustment typically calls the
|
|
|
|
* gtk_adjustment_value_changed() and gtk_adjustment_changed() functions
|
|
|
|
* after changing the value and its bounds. This results in the emission of the
|
|
|
|
* #GtkAdjustment::value_changed or #GtkAdjustment::changed signal respectively.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
struct _GtkAdjustmentPrivate {
|
|
|
|
gdouble lower;
|
|
|
|
gdouble upper;
|
|
|
|
gdouble value;
|
|
|
|
gdouble step_increment;
|
|
|
|
gdouble page_increment;
|
|
|
|
gdouble page_size;
|
|
|
|
};
|
|
|
|
|
2004-01-29 23:49:25 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_VALUE,
|
|
|
|
PROP_LOWER,
|
|
|
|
PROP_UPPER,
|
|
|
|
PROP_STEP_INCREMENT,
|
|
|
|
PROP_PAGE_INCREMENT,
|
|
|
|
PROP_PAGE_SIZE
|
|
|
|
};
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2008-03-14 17:26:12 +00:00
|
|
|
enum
|
|
|
|
{
|
1997-11-24 22:37:52 +00:00
|
|
|
CHANGED,
|
|
|
|
VALUE_CHANGED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-14 17:26:12 +00:00
|
|
|
static void gtk_adjustment_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_adjustment_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_adjustment_dispatch_properties_changed (GObject *object,
|
|
|
|
guint n_pspecs,
|
|
|
|
GParamSpec **pspecs);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-03-09 15:16:28 +00:00
|
|
|
static guint adjustment_signals[LAST_SIGNAL] = { 0 };
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2008-08-05 14:46:26 +00:00
|
|
|
static guint64 adjustment_changed_stamp = 0; /* protected by global gdk lock */
|
|
|
|
|
2010-09-18 23:54:31 +00:00
|
|
|
G_DEFINE_TYPE (GtkAdjustment, gtk_adjustment, G_TYPE_INITIALLY_UNOWNED)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_adjustment_class_init (GtkAdjustmentClass *class)
|
|
|
|
{
|
2004-01-29 23:49:25 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
|
|
|
|
|
2008-03-14 17:26:12 +00:00
|
|
|
gobject_class->set_property = gtk_adjustment_set_property;
|
|
|
|
gobject_class->get_property = gtk_adjustment_get_property;
|
|
|
|
gobject_class->dispatch_properties_changed = gtk_adjustment_dispatch_properties_changed;
|
2004-01-29 23:49:25 +00:00
|
|
|
|
doh, this was broken beyond believe.
Tue Dec 12 23:46:44 2000 Tim Janik <timj@gtk.org>
* gtk/stock-icons/Makefile.am: doh, this was broken beyond believe.
* gtk/gtkbox.c: change property types from (u)long to (u)int for
::position and ::padding.
* gtk/gtkcontainer.c: make ::border_width an INT property.
* gtk/gtkpacker.c: make ::position an INT property.
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_adjustment_changed):
guard against NULL h/v scrollbars, since this is used at construction
time.
* gtk/gtkclist.[hc]: nuked gtk_clist_construct(), implemented
internal gtk_clist_constructor().
* gtk/gtkctree.[hc]: nuked gtk_ctree_construct(), implemented
gtk_ctree_constructor().
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): property
::pulse_step should use ARG_PULSE_STEP, not ARG_FRACTION.
* docs/reference/Makefile.am: fun stuff, disabled docs generation
again, gtk-scan.c needs to introspec paramspecs, not GtkAgs.
* gtk/gtkwidget.[hc]:
removed gtk_widget_setv(), gtk_widget_getv(), gtk_widget_newv()
and gtk_widget_get().
(gtk_widget_new): use g_object_new_valist().
(gtk_widget_set): use g_object_set_valist().
* gtk/gtkobject.[hc]:
removed gtk_object_arg_get_info(), gtk_object_getv(),
gtk_object_query_args(), gtk_object_newv(),
gtk_object_class_add_signals(),
gtk_object_class_user_signal_new(),
gtk_object_class_user_signal_newv(),
gtk_object_arg_set(), gtk_object_arg_get(),
gtk_object_args_collect(),
gtk_object_default_construct(),
gtk_object_constructed(),
GTK_CONSTRUCTED and GTK_OBJECT_CONSTRUCTED().
removed nsignals, signals and n_args members from GtkObjectClass.
(gtk_object_new): use g_object_new_valist().
(gtk_object_set): use g_object_set_valist().
(gtk_object_get): use g_object_get_valist().
* gtk/gtkcompat.h: define gtk_object_default_construct().
* gtk/gtktypeutils.c (gtk_type_new): create constructed objects via
g_object_new().
* gtk/*.c: removed gtk_object_class_add_signals() from class_init()
fucntions, cleaned up method assignments (make sure your structures
are setup properly before calling out). removed all GTK_CONSTRUCTED
hacks ;)
2000-12-13 01:34:41 +00:00
|
|
|
class->changed = NULL;
|
|
|
|
class->value_changed = NULL;
|
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment:value:
|
|
|
|
*
|
|
|
|
* The value of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_VALUE,
|
|
|
|
g_param_spec_double ("value",
|
|
|
|
P_("Value"),
|
|
|
|
P_("The value of the adjustment"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-29 23:49:25 +00:00
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment:lower:
|
|
|
|
*
|
|
|
|
* The minimum value of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_LOWER,
|
|
|
|
g_param_spec_double ("lower",
|
|
|
|
P_("Minimum Value"),
|
|
|
|
P_("The minimum value of the adjustment"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-29 23:49:25 +00:00
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment:upper:
|
|
|
|
*
|
|
|
|
* The maximum value of the adjustment.
|
|
|
|
* Note that values will be restricted by
|
|
|
|
* <literal>upper - page-size</literal> if the page-size
|
|
|
|
* property is nonzero.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_UPPER,
|
|
|
|
g_param_spec_double ("upper",
|
|
|
|
P_("Maximum Value"),
|
|
|
|
P_("The maximum value of the adjustment"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-29 23:49:25 +00:00
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment:step-increment:
|
|
|
|
*
|
|
|
|
* The step increment of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_STEP_INCREMENT,
|
|
|
|
g_param_spec_double ("step-increment",
|
|
|
|
P_("Step Increment"),
|
|
|
|
P_("The step increment of the adjustment"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-29 23:49:25 +00:00
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment:page-increment:
|
|
|
|
*
|
|
|
|
* The page increment of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_PAGE_INCREMENT,
|
|
|
|
g_param_spec_double ("page-increment",
|
|
|
|
P_("Page Increment"),
|
|
|
|
P_("The page increment of the adjustment"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-29 23:49:25 +00:00
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment:page-size:
|
|
|
|
*
|
|
|
|
* The page size of the adjustment.
|
|
|
|
* Note that the page-size is irrelevant and should be set to zero
|
|
|
|
* if the adjustment is used for a simple scalar value, e.g. in a
|
|
|
|
* #GtkSpinButton.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
*/
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_PAGE_SIZE,
|
|
|
|
g_param_spec_double ("page-size",
|
|
|
|
P_("Page Size"),
|
|
|
|
P_("The page size of the adjustment"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2004-01-29 23:49:25 +00:00
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment::changed:
|
|
|
|
* @adjustment: the object which received the signal.
|
|
|
|
*
|
|
|
|
* Emitted when one or more of the #GtkAdjustment fields have been changed,
|
|
|
|
* other than the value field.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
adjustment_signals[CHANGED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("changed"),
|
2002-10-09 22:25:18 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (class),
|
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE,
|
|
|
|
G_STRUCT_OFFSET (GtkAdjustmentClass, changed),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2008-03-14 17:26:12 +00:00
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* GtkAdjustment::value-changed:
|
|
|
|
* @adjustment: the object which received the signal.
|
|
|
|
*
|
|
|
|
* Emitted when the #GtkAdjustment value field has been changed.
|
|
|
|
*/
|
1997-11-24 22:37:52 +00:00
|
|
|
adjustment_signals[VALUE_CHANGED] =
|
2008-08-08 13:25:18 +00:00
|
|
|
g_signal_new (I_("value-changed"),
|
2002-10-09 22:25:18 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (class),
|
|
|
|
G_SIGNAL_RUN_FIRST | G_SIGNAL_NO_RECURSE,
|
|
|
|
G_STRUCT_OFFSET (GtkAdjustmentClass, value_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2011-01-05 22:03:57 +00:00
|
|
|
|
|
|
|
g_type_class_add_private (class, sizeof (GtkAdjustmentPrivate));
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_adjustment_init (GtkAdjustment *adjustment)
|
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
adjustment->priv = G_TYPE_INSTANCE_GET_PRIVATE (adjustment,
|
|
|
|
GTK_TYPE_ADJUSTMENT,
|
|
|
|
GtkAdjustmentPrivate);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2004-01-29 23:49:25 +00:00
|
|
|
static void
|
2008-03-14 17:26:12 +00:00
|
|
|
gtk_adjustment_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2004-01-29 23:49:25 +00:00
|
|
|
{
|
|
|
|
GtkAdjustment *adjustment = GTK_ADJUSTMENT (object);
|
2011-01-05 22:03:57 +00:00
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
2004-01-29 23:49:25 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_VALUE:
|
2011-01-05 22:03:57 +00:00
|
|
|
g_value_set_double (value, priv->value);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_LOWER:
|
2011-01-05 22:03:57 +00:00
|
|
|
g_value_set_double (value, priv->lower);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_UPPER:
|
2011-01-05 22:03:57 +00:00
|
|
|
g_value_set_double (value, priv->upper);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_STEP_INCREMENT:
|
2011-01-05 22:03:57 +00:00
|
|
|
g_value_set_double (value, priv->step_increment);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_PAGE_INCREMENT:
|
2011-01-05 22:03:57 +00:00
|
|
|
g_value_set_double (value, priv->page_increment);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_PAGE_SIZE:
|
2011-01-05 22:03:57 +00:00
|
|
|
g_value_set_double (value, priv->page_size);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2008-03-14 17:26:12 +00:00
|
|
|
gtk_adjustment_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2004-01-29 23:49:25 +00:00
|
|
|
{
|
|
|
|
GtkAdjustment *adjustment = GTK_ADJUSTMENT (object);
|
|
|
|
gdouble double_value = g_value_get_double (value);
|
2011-01-05 22:03:57 +00:00
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
2004-01-29 23:49:25 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_VALUE:
|
2008-03-14 17:26:12 +00:00
|
|
|
gtk_adjustment_set_value (adjustment, double_value);
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_LOWER:
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->lower = double_value;
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_UPPER:
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->upper = double_value;
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_STEP_INCREMENT:
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->step_increment = double_value;
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_PAGE_INCREMENT:
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->page_increment = double_value;
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
case PROP_PAGE_SIZE:
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->page_size = double_value;
|
2004-01-29 23:49:25 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-14 17:26:12 +00:00
|
|
|
static void
|
|
|
|
gtk_adjustment_dispatch_properties_changed (GObject *object,
|
|
|
|
guint n_pspecs,
|
|
|
|
GParamSpec **pspecs)
|
|
|
|
{
|
|
|
|
gboolean changed = FALSE;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_adjustment_parent_class)->dispatch_properties_changed (object, n_pspecs, pspecs);
|
|
|
|
|
|
|
|
for (i = 0; i < n_pspecs; i++)
|
|
|
|
switch (pspecs[i]->param_id)
|
|
|
|
{
|
|
|
|
case PROP_LOWER:
|
|
|
|
case PROP_UPPER:
|
|
|
|
case PROP_STEP_INCREMENT:
|
|
|
|
case PROP_PAGE_INCREMENT:
|
|
|
|
case PROP_PAGE_SIZE:
|
|
|
|
changed = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (changed)
|
2008-08-05 14:46:26 +00:00
|
|
|
{
|
|
|
|
adjustment_changed_stamp++;
|
|
|
|
gtk_adjustment_changed (GTK_ADJUSTMENT (object));
|
|
|
|
}
|
2008-03-14 17:26:12 +00:00
|
|
|
}
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_new:
|
|
|
|
* @value: the initial value.
|
|
|
|
* @lower: the minimum value.
|
|
|
|
* @upper: the maximum value.
|
|
|
|
* @step_increment: the step increment.
|
|
|
|
* @page_increment: the page increment.
|
|
|
|
* @page_size: the page size.
|
|
|
|
*
|
|
|
|
* Creates a new #GtkAdjustment.
|
|
|
|
*
|
|
|
|
* Returns: a new #GtkAdjustment.
|
|
|
|
*/
|
2010-09-27 12:48:26 +00:00
|
|
|
GtkAdjustment *
|
2001-03-19 21:06:38 +00:00
|
|
|
gtk_adjustment_new (gdouble value,
|
|
|
|
gdouble lower,
|
|
|
|
gdouble upper,
|
|
|
|
gdouble step_increment,
|
|
|
|
gdouble page_increment,
|
|
|
|
gdouble page_size)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2008-08-05 14:46:26 +00:00
|
|
|
return g_object_new (GTK_TYPE_ADJUSTMENT,
|
2004-01-29 23:49:25 +00:00
|
|
|
"lower", lower,
|
|
|
|
"upper", upper,
|
|
|
|
"step-increment", step_increment,
|
|
|
|
"page-increment", page_increment,
|
2005-03-26 05:49:15 +00:00
|
|
|
"page-size", page_size,
|
2004-02-03 21:43:10 +00:00
|
|
|
"value", value,
|
2004-01-29 23:49:25 +00:00
|
|
|
NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
1998-01-30 23:47:09 +00:00
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_get_value:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Gets the current value of the adjustment. See
|
|
|
|
* gtk_adjustment_set_value ().
|
|
|
|
*
|
|
|
|
* Return value: The current value of the adjustment.
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gtk_adjustment_get_value (GtkAdjustment *adjustment)
|
|
|
|
{
|
2008-03-14 17:26:12 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
2001-06-24 15:34:48 +00:00
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
return adjustment->priv->value;
|
2001-06-24 15:34:48 +00:00
|
|
|
}
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_set_value:
|
|
|
|
* @adjustment: a #GtkAdjustment.
|
|
|
|
* @value: the new value.
|
|
|
|
*
|
|
|
|
* Sets the #GtkAdjustment value. The value is clamped to lie between
|
|
|
|
* #GtkAdjustment.lower and #GtkAdjustment.upper.
|
|
|
|
*
|
|
|
|
* Note that for adjustments which are used in a #GtkScrollbar, the effective
|
|
|
|
* range of allowed values goes from #GtkAdjustment.lower to
|
|
|
|
* #GtkAdjustment.upper - #GtkAdjustment.page_size.
|
|
|
|
*/
|
1998-01-30 23:47:09 +00:00
|
|
|
void
|
2008-03-14 17:26:12 +00:00
|
|
|
gtk_adjustment_set_value (GtkAdjustment *adjustment,
|
|
|
|
gdouble value)
|
1998-01-30 23:47:09 +00:00
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
GtkAdjustmentPrivate *priv;
|
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
priv = adjustment->priv;
|
|
|
|
|
2010-05-24 02:04:10 +00:00
|
|
|
/* don't use CLAMP() so we don't end up below lower if upper - page_size
|
|
|
|
* is smaller than lower
|
|
|
|
*/
|
2011-01-05 22:03:57 +00:00
|
|
|
value = MIN (value, priv->upper - priv->page_size);
|
|
|
|
value = MAX (value, priv->lower);
|
1998-05-02 18:35:23 +00:00
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (value != priv->value)
|
1998-05-02 18:35:23 +00:00
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->value = value;
|
1998-05-02 18:35:23 +00:00
|
|
|
|
1998-05-03 19:13:24 +00:00
|
|
|
gtk_adjustment_value_changed (adjustment);
|
1998-05-02 18:35:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-05 14:46:26 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_get_lower:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Retrieves the minimum value of the adjustment.
|
|
|
|
*
|
|
|
|
* Return value: The current minimum value of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gtk_adjustment_get_lower (GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
return adjustment->priv->lower;
|
2008-08-05 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_set_lower:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
* @lower: the new minimum value
|
|
|
|
*
|
|
|
|
* Sets the minimum value of the adjustment.
|
|
|
|
*
|
|
|
|
* When setting multiple adjustment properties via their individual
|
|
|
|
* setters, multiple "changed" signals will be emitted. However, since
|
|
|
|
* the emission of the "changed" signal is tied to the emission of the
|
|
|
|
* "GObject::notify" signals of the changed properties, it's possible
|
|
|
|
* to compress the "changed" signals into one by calling
|
|
|
|
* g_object_freeze_notify() and g_object_thaw_notify() around the
|
|
|
|
* calls to the individual setters.
|
|
|
|
*
|
|
|
|
* Alternatively, using a single g_object_set() for all the properties
|
|
|
|
* to change, or using gtk_adjustment_configure() has the same effect
|
|
|
|
* of compressing "changed" emissions.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_adjustment_set_lower (GtkAdjustment *adjustment,
|
|
|
|
gdouble lower)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (lower != adjustment->priv->lower)
|
2008-08-05 14:46:26 +00:00
|
|
|
g_object_set (adjustment, "lower", lower, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_get_upper:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Retrieves the maximum value of the adjustment.
|
|
|
|
*
|
|
|
|
* Return value: The current maximum value of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gtk_adjustment_get_upper (GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
return adjustment->priv->upper;
|
2008-08-05 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_set_upper:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
* @upper: the new maximum value
|
|
|
|
*
|
|
|
|
* Sets the maximum value of the adjustment.
|
|
|
|
*
|
|
|
|
* Note that values will be restricted by
|
|
|
|
* <literal>upper - page-size</literal> if the page-size
|
|
|
|
* property is nonzero.
|
|
|
|
*
|
|
|
|
* See gtk_adjustment_set_lower() about how to compress multiple
|
|
|
|
* emissions of the "changed" signal when setting multiple adjustment
|
|
|
|
* properties.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_adjustment_set_upper (GtkAdjustment *adjustment,
|
|
|
|
gdouble upper)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (upper != adjustment->priv->upper)
|
2008-08-05 14:46:26 +00:00
|
|
|
g_object_set (adjustment, "upper", upper, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_get_step_increment:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Retrieves the step increment of the adjustment.
|
|
|
|
*
|
|
|
|
* Return value: The current step increment of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gtk_adjustment_get_step_increment (GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
return adjustment->priv->step_increment;
|
2008-08-05 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_set_step_increment:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
* @step_increment: the new step increment
|
|
|
|
*
|
|
|
|
* Sets the step increment of the adjustment.
|
|
|
|
*
|
|
|
|
* See gtk_adjustment_set_lower() about how to compress multiple
|
|
|
|
* emissions of the "changed" signal when setting multiple adjustment
|
|
|
|
* properties.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_adjustment_set_step_increment (GtkAdjustment *adjustment,
|
|
|
|
gdouble step_increment)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (step_increment != adjustment->priv->step_increment)
|
2008-08-05 14:46:26 +00:00
|
|
|
g_object_set (adjustment, "step-increment", step_increment, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_get_page_increment:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Retrieves the page increment of the adjustment.
|
|
|
|
*
|
|
|
|
* Return value: The current page increment of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gtk_adjustment_get_page_increment (GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
return adjustment->priv->page_increment;
|
2008-08-05 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_set_page_increment:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
* @page_increment: the new page increment
|
|
|
|
*
|
|
|
|
* Sets the page increment of the adjustment.
|
|
|
|
*
|
|
|
|
* See gtk_adjustment_set_lower() about how to compress multiple
|
|
|
|
* emissions of the "changed" signal when setting multiple adjustment
|
|
|
|
* properties.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_adjustment_set_page_increment (GtkAdjustment *adjustment,
|
|
|
|
gdouble page_increment)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (page_increment != adjustment->priv->page_increment)
|
2008-08-05 14:46:26 +00:00
|
|
|
g_object_set (adjustment, "page-increment", page_increment, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_get_page_size:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Retrieves the page size of the adjustment.
|
|
|
|
*
|
|
|
|
* Return value: The current page size of the adjustment.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gtk_adjustment_get_page_size (GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
return adjustment->priv->page_size;
|
2008-08-05 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_set_page_size:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
* @page_size: the new page size
|
|
|
|
*
|
|
|
|
* Sets the page size of the adjustment.
|
|
|
|
*
|
|
|
|
* See gtk_adjustment_set_lower() about how to compress multiple
|
|
|
|
* emissions of the "changed" signal when setting multiple adjustment
|
|
|
|
* properties.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_adjustment_set_page_size (GtkAdjustment *adjustment,
|
|
|
|
gdouble page_size)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (page_size != adjustment->priv->page_size)
|
2008-08-05 14:46:26 +00:00
|
|
|
g_object_set (adjustment, "page-size", page_size, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_adjustment_configure:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
* @value: the new value
|
|
|
|
* @lower: the new minimum value
|
|
|
|
* @upper: the new maximum value
|
|
|
|
* @step_increment: the new step increment
|
|
|
|
* @page_increment: the new page increment
|
|
|
|
* @page_size: the new page size
|
|
|
|
*
|
|
|
|
* Sets all properties of the adjustment at once.
|
|
|
|
*
|
|
|
|
* Use this function to avoid multiple emissions of the "changed"
|
|
|
|
* signal. See gtk_adjustment_set_lower() for an alternative way
|
|
|
|
* of compressing multiple emissions of "changed" into one.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_adjustment_configure (GtkAdjustment *adjustment,
|
|
|
|
gdouble value,
|
|
|
|
gdouble lower,
|
|
|
|
gdouble upper,
|
|
|
|
gdouble step_increment,
|
|
|
|
gdouble page_increment,
|
|
|
|
gdouble page_size)
|
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
GtkAdjustmentPrivate *priv;
|
2008-08-05 14:46:26 +00:00
|
|
|
gboolean value_changed = FALSE;
|
|
|
|
guint64 old_stamp = adjustment_changed_stamp;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
priv = adjustment->priv;
|
|
|
|
|
2008-08-05 14:46:26 +00:00
|
|
|
g_object_freeze_notify (G_OBJECT (adjustment));
|
|
|
|
|
|
|
|
g_object_set (adjustment,
|
|
|
|
"lower", lower,
|
|
|
|
"upper", upper,
|
|
|
|
"step-increment", step_increment,
|
|
|
|
"page-increment", page_increment,
|
|
|
|
"page-size", page_size,
|
|
|
|
NULL);
|
|
|
|
|
2008-08-11 21:07:36 +00:00
|
|
|
/* don't use CLAMP() so we don't end up below lower if upper - page_size
|
|
|
|
* is smaller than lower
|
|
|
|
*/
|
|
|
|
value = MIN (value, upper - page_size);
|
|
|
|
value = MAX (value, lower);
|
2008-08-05 14:46:26 +00:00
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (value != priv->value)
|
2008-08-05 14:46:26 +00:00
|
|
|
{
|
|
|
|
/* set value manually to make sure "changed" is emitted with the
|
|
|
|
* new value in place and is emitted before "value-changed"
|
|
|
|
*/
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->value = value;
|
2008-08-05 14:46:26 +00:00
|
|
|
value_changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (adjustment));
|
|
|
|
|
|
|
|
if (old_stamp == adjustment_changed_stamp)
|
|
|
|
gtk_adjustment_changed (adjustment); /* force emission before ::value-changed */
|
|
|
|
|
|
|
|
if (value_changed)
|
|
|
|
gtk_adjustment_value_changed (adjustment);
|
|
|
|
}
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_changed:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Emits a #GtkAdjustment::changed signal from the #GtkAdjustment.
|
|
|
|
* This is typically called by the owner of the #GtkAdjustment after it has
|
|
|
|
* changed any of the #GtkAdjustment fields other than the value.
|
|
|
|
*/
|
1998-05-02 18:35:23 +00:00
|
|
|
void
|
2008-03-14 17:26:12 +00:00
|
|
|
gtk_adjustment_changed (GtkAdjustment *adjustment)
|
1998-05-02 18:35:23 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2002-10-09 22:25:18 +00:00
|
|
|
g_signal_emit (adjustment, adjustment_signals[CHANGED], 0);
|
1998-05-02 18:35:23 +00:00
|
|
|
}
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_value_changed:
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
*
|
|
|
|
* Emits a #GtkAdjustment::value_changed signal from the #GtkAdjustment.
|
|
|
|
* This is typically called by the owner of the #GtkAdjustment after it has
|
|
|
|
* changed the #GtkAdjustment value field.
|
|
|
|
*/
|
1998-05-02 18:35:23 +00:00
|
|
|
void
|
2008-03-14 17:26:12 +00:00
|
|
|
gtk_adjustment_value_changed (GtkAdjustment *adjustment)
|
1998-05-02 18:35:23 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
1998-01-30 23:47:09 +00:00
|
|
|
|
2002-10-09 22:25:18 +00:00
|
|
|
g_signal_emit (adjustment, adjustment_signals[VALUE_CHANGED], 0);
|
2004-01-29 23:49:25 +00:00
|
|
|
g_object_notify (G_OBJECT (adjustment), "value");
|
1998-01-30 23:47:09 +00:00
|
|
|
}
|
1998-05-01 04:23:59 +00:00
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
/**
|
|
|
|
* gtk_adjustment_clamp_page:
|
|
|
|
* @adjustment: a #GtkAdjustment.
|
|
|
|
* @lower: the lower value.
|
|
|
|
* @upper: the upper value.
|
|
|
|
*
|
|
|
|
* Updates the #GtkAdjustment #GtkAdjustment.value to ensure that the range
|
|
|
|
* between @lower and @upper is in the current page (i.e. between
|
|
|
|
* #GtkAdjustment.value and #GtkAdjustment.value + #GtkAdjustment.page_size).
|
|
|
|
* If the range is larger than the page size, then only the start of it will
|
|
|
|
* be in the current page.
|
|
|
|
* A #GtkAdjustment::changed signal will be emitted if the value is changed.
|
|
|
|
*/
|
1998-05-01 04:23:59 +00:00
|
|
|
void
|
|
|
|
gtk_adjustment_clamp_page (GtkAdjustment *adjustment,
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble lower,
|
|
|
|
gdouble upper)
|
1998-05-01 04:23:59 +00:00
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
GtkAdjustmentPrivate *priv;
|
2001-03-16 20:12:40 +00:00
|
|
|
gboolean need_emission;
|
1998-05-01 04:23:59 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
priv = adjustment->priv;
|
|
|
|
|
|
|
|
lower = CLAMP (lower, priv->lower, priv->upper);
|
|
|
|
upper = CLAMP (upper, priv->lower, priv->upper);
|
1998-05-01 04:23:59 +00:00
|
|
|
|
|
|
|
need_emission = FALSE;
|
|
|
|
|
2011-01-05 22:03:57 +00:00
|
|
|
if (priv->value + priv->page_size < upper)
|
1998-05-01 04:23:59 +00:00
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->value = upper - priv->page_size;
|
1998-05-01 04:23:59 +00:00
|
|
|
need_emission = TRUE;
|
|
|
|
}
|
2011-01-05 22:03:57 +00:00
|
|
|
if (priv->value > lower)
|
1998-05-01 04:23:59 +00:00
|
|
|
{
|
2011-01-05 22:03:57 +00:00
|
|
|
priv->value = lower;
|
1998-05-01 04:23:59 +00:00
|
|
|
need_emission = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_emission)
|
1998-05-03 19:13:24 +00:00
|
|
|
gtk_adjustment_value_changed (adjustment);
|
1998-05-01 04:23:59 +00:00
|
|
|
}
|