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
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
1997-11-24 22:37:52 +00:00
|
|
|
|
#include "gtkadjustment.h"
|
2014-09-06 01:21:49 +00:00
|
|
|
|
#include "gtkadjustmentprivate.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.
|
2015-05-10 06:35:52 +00:00
|
|
|
|
* It is used within several GTK+ widgets, including #GtkSpinButton, #GtkViewport,
|
|
|
|
|
* and #GtkRange (which is a base class for #GtkScrollbar and #GtkScale).
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
|
|
|
|
* The #GtkAdjustment object does not update the value itself. Instead
|
|
|
|
|
* it is left up to the owner of the #GtkAdjustment to control the value.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
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;
|
2014-06-30 22:09:50 +00:00
|
|
|
|
|
|
|
|
|
gdouble source;
|
|
|
|
|
gdouble target;
|
|
|
|
|
|
|
|
|
|
guint duration;
|
|
|
|
|
gint64 start_time;
|
|
|
|
|
gint64 end_time;
|
|
|
|
|
guint tick_id;
|
|
|
|
|
GdkFrameClock *clock;
|
2011-01-05 22:03:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
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 */
|
|
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkAdjustment, gtk_adjustment, G_TYPE_INITIALLY_UNOWNED)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
2014-06-30 22:09:50 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_adjustment_finalize (GObject *object)
|
|
|
|
|
{
|
|
|
|
|
GtkAdjustment *adjustment = GTK_ADJUSTMENT (object);
|
|
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->tick_id)
|
|
|
|
|
g_signal_handler_disconnect (priv->clock, priv->tick_id);
|
|
|
|
|
if (priv->clock)
|
|
|
|
|
g_object_unref (priv->clock);
|
|
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_adjustment_parent_class)->finalize (object);
|
|
|
|
|
}
|
|
|
|
|
|
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);
|
|
|
|
|
|
2014-06-30 22:09:50 +00:00
|
|
|
|
gobject_class->finalize = gtk_adjustment_finalize;
|
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:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* The value of the adjustment.
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* 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"),
|
2015-05-10 06:10:21 +00:00
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
2015-05-10 06:10:21 +00:00
|
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkAdjustment:lower:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* The minimum value of the adjustment.
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* 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"),
|
2015-05-10 06:10:21 +00:00
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
|
G_MAXDOUBLE,
|
2004-01-29 23:49:25 +00:00
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
2015-05-10 06:10:21 +00:00
|
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkAdjustment:upper:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
|
|
|
|
* The maximum value of the adjustment.
|
|
|
|
|
* Note that values will be restricted by
|
|
|
|
|
* `upper - page-size` if the page-size
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* 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"),
|
2015-05-10 06:10:21 +00:00
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
2015-05-10 06:10:21 +00:00
|
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkAdjustment:step-increment:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* The step increment of the adjustment.
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* 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"),
|
2015-05-10 06:10:21 +00:00
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
2015-05-10 06:10:21 +00:00
|
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkAdjustment:page-increment:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* The page increment of the adjustment.
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* 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"),
|
2015-05-10 06:10:21 +00:00
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
|
0.0,
|
2005-03-22 02:14:55 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
2015-05-10 06:10:21 +00:00
|
|
|
|
|
2004-12-27 06:34:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkAdjustment:page-size:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
|
|
|
|
* The page size of the adjustment.
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* Note that the page-size is irrelevant and should be set to zero
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* if the adjustment is used for a simple scalar value, e.g. in a
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* #GtkSpinButton.
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
2004-12-27 06:34:10 +00:00
|
|
|
|
* 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"),
|
2015-05-10 06:10:21 +00:00
|
|
|
|
-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:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* @adjustment: the object which received the signal
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
2012-08-06 18:19:38 +00:00
|
|
|
|
* Emitted when one or more of the #GtkAdjustment properties have been
|
|
|
|
|
* changed, other than the #GtkAdjustment:value property.
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* @adjustment: the object which received the signal
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
2012-08-06 18:19:38 +00:00
|
|
|
|
* Emitted when the #GtkAdjustment:value property has been changed.
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_adjustment_init (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
|
adjustment->priv = gtk_adjustment_get_instance_private (adjustment);
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-10 06:35:52 +00:00
|
|
|
|
static inline void
|
|
|
|
|
emit_changed (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
g_signal_emit (adjustment, adjustment_signals[CHANGED], 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
emit_value_changed (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
g_signal_emit (adjustment, adjustment_signals[VALUE_CHANGED], 0);
|
|
|
|
|
g_object_notify (G_OBJECT (adjustment), "value");
|
|
|
|
|
}
|
|
|
|
|
|
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++;
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_changed (GTK_ADJUSTMENT (object));
|
2008-08-05 14:46:26 +00:00
|
|
|
|
}
|
2008-03-14 17:26:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_adjustment_new:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* @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
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkAdjustment.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Returns: a new #GtkAdjustment
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Gets the current value of the adjustment.
|
|
|
|
|
* See gtk_adjustment_set_value().
|
2001-06-24 15:34:48 +00:00
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Returns: The current value of the adjustment
|
2001-06-24 15:34:48 +00:00
|
|
|
|
**/
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2014-07-08 13:13:31 +00:00
|
|
|
|
gdouble
|
|
|
|
|
gtk_adjustment_get_target_value (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0.0);
|
|
|
|
|
|
|
|
|
|
if (adjustment->priv->tick_id)
|
|
|
|
|
return adjustment->priv->target;
|
|
|
|
|
else
|
|
|
|
|
return adjustment->priv->value;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 22:09:50 +00:00
|
|
|
|
static void
|
|
|
|
|
adjustment_set_value (GtkAdjustment *adjustment,
|
|
|
|
|
gdouble value)
|
|
|
|
|
{
|
2014-07-02 21:55:20 +00:00
|
|
|
|
if (adjustment->priv->value != value)
|
2014-06-30 22:09:50 +00:00
|
|
|
|
{
|
|
|
|
|
adjustment->priv->value = value;
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_value_changed (adjustment);
|
2014-06-30 22:09:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-10 06:10:21 +00:00
|
|
|
|
static void gtk_adjustment_on_frame_clock_update (GdkFrameClock *clock,
|
2014-07-02 21:55:20 +00:00
|
|
|
|
GtkAdjustment *adjustment);
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_adjustment_begin_updating (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->tick_id == 0)
|
|
|
|
|
{
|
|
|
|
|
priv->tick_id = g_signal_connect (priv->clock, "update",
|
|
|
|
|
G_CALLBACK (gtk_adjustment_on_frame_clock_update), adjustment);
|
|
|
|
|
gdk_frame_clock_begin_updating (priv->clock);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_adjustment_end_updating (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->tick_id != 0)
|
|
|
|
|
{
|
|
|
|
|
g_signal_handler_disconnect (priv->clock, priv->tick_id);
|
|
|
|
|
priv->tick_id = 0;
|
|
|
|
|
gdk_frame_clock_end_updating (priv->clock);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 22:09:50 +00:00
|
|
|
|
/* From clutter-easing.c, based on Robert Penner's
|
|
|
|
|
* infamous easing equations, MIT license.
|
|
|
|
|
*/
|
|
|
|
|
static gdouble
|
|
|
|
|
ease_out_cubic (gdouble t)
|
|
|
|
|
{
|
|
|
|
|
gdouble p = t - 1;
|
|
|
|
|
|
|
|
|
|
return p * p * p + 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-02 21:55:20 +00:00
|
|
|
|
static void
|
2015-05-10 06:10:21 +00:00
|
|
|
|
gtk_adjustment_on_frame_clock_update (GdkFrameClock *clock,
|
2014-07-02 21:55:20 +00:00
|
|
|
|
GtkAdjustment *adjustment)
|
2014-06-30 22:09:50 +00:00
|
|
|
|
{
|
|
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
2014-07-02 21:55:20 +00:00
|
|
|
|
gint64 now;
|
|
|
|
|
|
|
|
|
|
now = gdk_frame_clock_get_frame_time (clock);
|
2014-06-30 22:09:50 +00:00
|
|
|
|
|
|
|
|
|
if (now < priv->end_time)
|
|
|
|
|
{
|
|
|
|
|
gdouble t;
|
|
|
|
|
|
|
|
|
|
t = (now - priv->start_time) / (gdouble) (priv->end_time - priv->start_time);
|
|
|
|
|
t = ease_out_cubic (t);
|
|
|
|
|
adjustment_set_value (adjustment, priv->source + t * (priv->target - priv->source));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
adjustment_set_value (adjustment, priv->target);
|
2014-07-02 21:55:20 +00:00
|
|
|
|
gtk_adjustment_end_updating (adjustment);
|
2014-06-30 22:09:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2014-07-02 21:55:20 +00:00
|
|
|
|
gtk_adjustment_set_value_internal (GtkAdjustment *adjustment,
|
|
|
|
|
gdouble value,
|
|
|
|
|
gboolean animate)
|
2014-06-30 22:09:50 +00:00
|
|
|
|
{
|
|
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
|
|
|
|
|
2014-07-02 21:55:20 +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, priv->upper - priv->page_size);
|
|
|
|
|
value = MAX (value, priv->lower);
|
2014-06-30 22:09:50 +00:00
|
|
|
|
|
2014-07-02 21:55:20 +00:00
|
|
|
|
if (animate && priv->duration != 0 && priv->clock != NULL)
|
2014-06-30 22:09:50 +00:00
|
|
|
|
{
|
2014-09-08 02:45:08 +00:00
|
|
|
|
if (priv->tick_id && priv->target == value)
|
2014-07-02 21:55:20 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2014-06-30 22:09:50 +00:00
|
|
|
|
priv->source = priv->value;
|
2014-07-02 21:55:20 +00:00
|
|
|
|
priv->target = value;
|
2014-06-30 22:09:50 +00:00
|
|
|
|
priv->start_time = gdk_frame_clock_get_frame_time (priv->clock);
|
|
|
|
|
priv->end_time = priv->start_time + 1000 * priv->duration;
|
2014-07-02 21:55:20 +00:00
|
|
|
|
gtk_adjustment_begin_updating (adjustment);
|
2014-06-30 22:09:50 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2014-07-02 21:55:20 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_adjustment_end_updating (adjustment);
|
|
|
|
|
adjustment_set_value (adjustment, value);
|
|
|
|
|
}
|
2014-06-30 22:09:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_adjustment_set_value:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
|
* @value: the new value
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the #GtkAdjustment value. The value is clamped to lie between
|
2012-07-02 06:19:06 +00:00
|
|
|
|
* #GtkAdjustment:lower and #GtkAdjustment:upper.
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* 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.
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
|
|
|
|
|
2014-07-02 21:55:20 +00:00
|
|
|
|
gtk_adjustment_set_value_internal (adjustment, value, FALSE);
|
|
|
|
|
}
|
2011-01-05 22:03:57 +00:00
|
|
|
|
|
2014-07-02 21:55:20 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_adjustment_animate_to_value (GtkAdjustment *adjustment,
|
|
|
|
|
gdouble value)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
1998-05-02 18:35:23 +00:00
|
|
|
|
|
2014-07-02 21:55:20 +00:00
|
|
|
|
gtk_adjustment_set_value_internal (adjustment, value, TRUE);
|
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.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Returns: The current minimum value of the adjustment
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* setters, multiple #GtkAdjustment::changed signals will be emitted.
|
|
|
|
|
* However, since the emission of the #GtkAdjustment::changed signal
|
|
|
|
|
* is tied to the emission of the #GObject::notify signals of the changed
|
|
|
|
|
* properties, it’s possible to compress the #GtkAdjustment::changed
|
|
|
|
|
* signals into one by calling g_object_freeze_notify() and
|
|
|
|
|
* g_object_thaw_notify() around the calls to the individual setters.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* Alternatively, using a single g_object_set() for all the properties
|
|
|
|
|
* to change, or using gtk_adjustment_configure() has the same effect
|
2012-08-06 18:19:38 +00:00
|
|
|
|
* of compressing #GtkAdjustment::changed emissions.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Returns: The current maximum value of the adjustment
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Note that values will be restricted by `upper - page-size`
|
|
|
|
|
* if the page-size property is nonzero.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* See gtk_adjustment_set_lower() about how to compress multiple
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* emissions of the #GtkAdjustment::changed signal when setting
|
|
|
|
|
* multiple adjustment properties.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: The current step increment of the adjustment.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* emissions of the #GtkAdjustment::changed signal when setting
|
|
|
|
|
* multiple adjustment properties.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Returns: The current page increment of the adjustment
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* emissions of the #GtkAdjustment::changed signal when setting
|
|
|
|
|
* multiple adjustment properties.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Returns: The current page size of the adjustment
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* emissions of the GtkAdjustment::changed signal when setting
|
|
|
|
|
* multiple adjustment properties.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Use this function to avoid multiple emissions of the
|
|
|
|
|
* #GtkAdjustment::changed signal. See gtk_adjustment_set_lower()
|
|
|
|
|
* for an alternative way of compressing multiple emissions of
|
|
|
|
|
* #GtkAdjustment::changed into one.
|
2008-08-05 14:46:26 +00:00
|
|
|
|
*
|
|
|
|
|
* 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)
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_changed (adjustment); /* force emission before ::value-changed */
|
2008-08-05 14:46:26 +00:00
|
|
|
|
|
|
|
|
|
if (value_changed)
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_value_changed (adjustment);
|
2008-08-05 14:46:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
2012-08-06 18:19:38 +00:00
|
|
|
|
* changed any of the #GtkAdjustment properties other than the value.
|
2015-05-10 06:35:52 +00:00
|
|
|
|
*
|
|
|
|
|
* Deprecated: 3.18: GTK+ emits #GtkAdjustment::changed itself whenever any
|
|
|
|
|
* of the properties (other than value) change
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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));
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_changed (adjustment);
|
1998-05-02 18:35:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-22 22:16:27 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_adjustment_value_changed:
|
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
|
*
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* Emits a #GtkAdjustment::value-changed signal from the #GtkAdjustment.
|
2010-10-22 22:16:27 +00:00
|
|
|
|
* This is typically called by the owner of the #GtkAdjustment after it has
|
2012-08-06 18:19:38 +00:00
|
|
|
|
* changed the #GtkAdjustment:value property.
|
2015-05-10 06:35:52 +00:00
|
|
|
|
*
|
|
|
|
|
* Deprecated: 3.18: GTK+ emits #GtkAdjustment::value-changed itself whenever
|
|
|
|
|
* the value changes
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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));
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_value_changed (adjustment);
|
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:
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
|
* @lower: the lower value
|
|
|
|
|
* @upper: the upper value
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*
|
2012-08-06 18:19:38 +00:00
|
|
|
|
* Updates the #GtkAdjustment:value property to ensure that the range
|
2010-10-22 22:16:27 +00:00
|
|
|
|
* between @lower and @upper is in the current page (i.e. between
|
2015-05-10 06:10:21 +00:00
|
|
|
|
* #GtkAdjustment:value and #GtkAdjustment:value + #GtkAdjustment:page-size).
|
2010-10-22 22:16:27 +00:00
|
|
|
|
* If the range is larger than the page size, then only the start of it will
|
|
|
|
|
* be in the current page.
|
2015-05-10 06:10:21 +00:00
|
|
|
|
*
|
|
|
|
|
* A #GtkAdjustment::value-changed signal will be emitted if the value is changed.
|
2010-10-22 22:16:27 +00:00
|
|
|
|
*/
|
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)
|
2015-05-10 06:35:52 +00:00
|
|
|
|
emit_value_changed (adjustment);
|
1998-05-01 04:23:59 +00:00
|
|
|
|
}
|
2011-06-28 04:38:20 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_adjustment_get_minimum_increment:
|
|
|
|
|
* @adjustment: a #GtkAdjustment
|
|
|
|
|
*
|
|
|
|
|
* Gets the smaller of step increment and page increment.
|
|
|
|
|
*
|
|
|
|
|
* Returns: the minimum increment of @adjustment
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.2
|
|
|
|
|
*/
|
|
|
|
|
gdouble
|
|
|
|
|
gtk_adjustment_get_minimum_increment (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
GtkAdjustmentPrivate *priv;
|
|
|
|
|
gdouble minimum_increment;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), 0);
|
|
|
|
|
|
|
|
|
|
priv = adjustment->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->step_increment != 0 && priv->page_increment != 0)
|
|
|
|
|
{
|
|
|
|
|
if (ABS (priv->step_increment) < ABS (priv->page_increment))
|
|
|
|
|
minimum_increment = priv->step_increment;
|
|
|
|
|
else
|
|
|
|
|
minimum_increment = priv->page_increment;
|
|
|
|
|
}
|
|
|
|
|
else if (priv->step_increment == 0 && priv->page_increment == 0)
|
|
|
|
|
{
|
|
|
|
|
minimum_increment = 0;
|
|
|
|
|
}
|
|
|
|
|
else if (priv->step_increment == 0)
|
|
|
|
|
{
|
|
|
|
|
minimum_increment = priv->page_increment;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
minimum_increment = priv->step_increment;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return minimum_increment;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-30 22:09:50 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_adjustment_enable_animation (GtkAdjustment *adjustment,
|
|
|
|
|
GdkFrameClock *clock,
|
|
|
|
|
guint duration)
|
|
|
|
|
{
|
|
|
|
|
GtkAdjustmentPrivate *priv = adjustment->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->clock != clock)
|
|
|
|
|
{
|
|
|
|
|
if (priv->tick_id)
|
|
|
|
|
{
|
|
|
|
|
adjustment_set_value (adjustment, priv->target);
|
|
|
|
|
|
|
|
|
|
g_signal_handler_disconnect (priv->clock, priv->tick_id);
|
|
|
|
|
priv->tick_id = 0;
|
|
|
|
|
gdk_frame_clock_end_updating (priv->clock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (priv->clock)
|
|
|
|
|
g_object_unref (priv->clock);
|
|
|
|
|
|
|
|
|
|
priv->clock = clock;
|
|
|
|
|
|
|
|
|
|
if (priv->clock)
|
|
|
|
|
g_object_ref (priv->clock);
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-10 06:10:21 +00:00
|
|
|
|
priv->duration = duration;
|
2014-06-30 22:09:50 +00:00
|
|
|
|
}
|
2014-07-14 02:00:30 +00:00
|
|
|
|
|
2014-07-14 03:04:08 +00:00
|
|
|
|
guint
|
2014-07-14 02:00:30 +00:00
|
|
|
|
gtk_adjustment_get_animation_duration (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
return adjustment->priv->duration;
|
|
|
|
|
}
|
2014-07-21 19:16:32 +00:00
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
|
gtk_adjustment_is_animating (GtkAdjustment *adjustment)
|
|
|
|
|
{
|
|
|
|
|
return adjustment->priv->tick_id != 0;
|
|
|
|
|
}
|