2008-07-01 22:57:50 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
1998-02-25 22:03:10 +00:00
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
|
*
|
1998-03-11 06:11:52 +00:00
|
|
|
|
* GtkSpinButton widget for GTK+
|
|
|
|
|
* Copyright (C) 1998 Lars Hamann and Stefan Jeske
|
|
|
|
|
*
|
1998-02-25 22:03:10 +00:00
|
|
|
|
* 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
|
1998-02-25 22:03:10 +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.
|
1998-02-25 22:03:10 +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/>.
|
1998-02-25 22:03:10 +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
|
2011-01-03 04:30:02 +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"
|
2011-01-04 17:21:41 +00:00
|
|
|
|
|
2012-03-03 18:41:55 +00:00
|
|
|
|
#include "gtkspinbutton.h"
|
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <math.h>
|
1998-03-11 06:11:52 +00:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <locale.h>
|
2011-01-04 17:21:41 +00:00
|
|
|
|
|
2012-03-03 18:41:55 +00:00
|
|
|
|
#include "gtkadjustment.h"
|
2002-02-08 00:02:52 +00:00
|
|
|
|
#include "gtkbindings.h"
|
2006-08-15 18:52:14 +00:00
|
|
|
|
#include "gtkentryprivate.h"
|
2011-11-23 03:08:59 +00:00
|
|
|
|
#include "gtkicontheme.h"
|
2012-03-16 19:01:50 +00:00
|
|
|
|
#include "gtkintl.h"
|
2001-11-17 23:28:51 +00:00
|
|
|
|
#include "gtkmarshalers.h"
|
2012-09-01 16:49:02 +00:00
|
|
|
|
#include "gtkorientable.h"
|
|
|
|
|
#include "gtkorientableprivate.h"
|
2012-03-16 19:01:50 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2001-03-18 04:50:34 +00:00
|
|
|
|
#include "gtksettings.h"
|
2011-01-04 19:51:19 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
2012-03-16 19:01:50 +00:00
|
|
|
|
#include "gtkwidgetpath.h"
|
2012-04-07 12:15:35 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2015-10-29 01:55:07 +00:00
|
|
|
|
#include "gtkstylecontextprivate.h"
|
|
|
|
|
#include "gtkcssstylepropertyprivate.h"
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
2011-06-25 02:12:55 +00:00
|
|
|
|
#include "a11y/gtkspinbuttonaccessible.h"
|
|
|
|
|
|
2005-11-22 12:40:15 +00:00
|
|
|
|
#define MIN_SPIN_BUTTON_WIDTH 30
|
|
|
|
|
#define MAX_TIMER_CALLS 5
|
|
|
|
|
#define EPSILON 1e-10
|
2011-01-03 04:30:02 +00:00
|
|
|
|
#define MAX_DIGITS 20
|
2013-07-09 20:44:04 +00:00
|
|
|
|
#define TIMEOUT_INITIAL 500
|
|
|
|
|
#define TIMEOUT_REPEAT 50
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtkspinbutton
|
|
|
|
|
* @Title: GtkSpinButton
|
|
|
|
|
* @Short_description: Retrieve an integer or floating-point number from
|
|
|
|
|
* the user
|
|
|
|
|
* @See_also: #GtkEntry
|
|
|
|
|
*
|
|
|
|
|
* A #GtkSpinButton is an ideal way to allow the user to set the value of
|
|
|
|
|
* some attribute. Rather than having to directly type a number into a
|
|
|
|
|
* #GtkEntry, GtkSpinButton allows the user to click on one of two arrows
|
|
|
|
|
* to increment or decrement the displayed value. A value can still be
|
|
|
|
|
* typed in, with the bonus that it can be checked to ensure it is in a
|
|
|
|
|
* given range.
|
|
|
|
|
*
|
|
|
|
|
* The main properties of a GtkSpinButton are through an adjustment.
|
|
|
|
|
* See the #GtkAdjustment section for more details about an adjustment's
|
2016-01-28 04:30:25 +00:00
|
|
|
|
* properties. Note that GtkSpinButton will by default make its entry
|
|
|
|
|
* large enough to accomodate the lower and upper bounds of the adjustment,
|
|
|
|
|
* which can lead to surprising results. Best practice is to set both
|
2016-02-08 21:49:01 +00:00
|
|
|
|
* the #GtkEntry:width-chars and #GtkEntry:max-width-chars poperties
|
2016-01-28 04:30:25 +00:00
|
|
|
|
* to the desired number of characters to display in the entry.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2015-10-29 03:32:57 +00:00
|
|
|
|
* # CSS nodes
|
|
|
|
|
*
|
2015-11-03 18:36:26 +00:00
|
|
|
|
* |[<!-- language="plain" -->
|
|
|
|
|
* spinbutton.horizontal
|
2017-07-16 13:46:09 +00:00
|
|
|
|
* ╰── box.horizontal
|
|
|
|
|
* ├── entry
|
|
|
|
|
* │ ├── undershoot.left
|
|
|
|
|
* │ ╰── undershoot.right
|
|
|
|
|
* ├── button.down
|
|
|
|
|
* ╰── button.up
|
2015-11-03 18:36:26 +00:00
|
|
|
|
* ]|
|
|
|
|
|
*
|
|
|
|
|
* |[<!-- language="plain" -->
|
|
|
|
|
* spinbutton.vertical
|
2017-07-16 13:46:09 +00:00
|
|
|
|
* ╰── box.vertical
|
|
|
|
|
* ├── button.up
|
|
|
|
|
* ├── entry
|
|
|
|
|
* │ ├── undershoot.left
|
|
|
|
|
* │ ╰── undershoot.right
|
|
|
|
|
* ╰── button.up
|
2015-11-03 18:36:26 +00:00
|
|
|
|
* ]|
|
|
|
|
|
*
|
2015-10-29 03:32:57 +00:00
|
|
|
|
* GtkSpinButtons main CSS node has the name spinbutton. It creates subnodes
|
|
|
|
|
* for the entry and the two buttons, with these names. The button nodes have
|
|
|
|
|
* the style classes .up and .down. The GtkEntry subnodes (if present) are put
|
|
|
|
|
* below the entry node. The orientation of the spin button is reflected in
|
|
|
|
|
* the .vertical or .horizontal style class on the main node.
|
|
|
|
|
*
|
2014-02-04 21:57:57 +00:00
|
|
|
|
* ## Using a GtkSpinButton to get an integer
|
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Provides a function to retrieve an integer value from a GtkSpinButton
|
|
|
|
|
* // and creates a spin button to model percentage values.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* gint
|
|
|
|
|
* grab_int_value (GtkSpinButton *button,
|
|
|
|
|
* gpointer user_data)
|
|
|
|
|
* {
|
|
|
|
|
* return gtk_spin_button_get_value_as_int (button);
|
|
|
|
|
* }
|
|
|
|
|
*
|
|
|
|
|
* void
|
|
|
|
|
* create_integer_spin_button (void)
|
|
|
|
|
* {
|
|
|
|
|
*
|
|
|
|
|
* GtkWidget *window, *button;
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* GtkAdjustment *adjustment;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* adjustment = gtk_adjustment_new (50.0, 0.0, 100.0, 1.0, 5.0, 0.0);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // creates the spinbutton, with no decimal places
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* button = gtk_spin_button_new (adjustment, 1.0, 0);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* gtk_container_add (GTK_CONTAINER (window), button);
|
|
|
|
|
*
|
2017-01-19 09:02:04 +00:00
|
|
|
|
* gtk_widget_show (window);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* }
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2014-02-04 21:57:57 +00:00
|
|
|
|
* ## Using a GtkSpinButton to get a floating point value
|
|
|
|
|
*
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // Provides a function to retrieve a floating point value from a
|
|
|
|
|
* // GtkSpinButton, and creates a high precision spin button.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* gfloat
|
|
|
|
|
* grab_float_value (GtkSpinButton *button,
|
|
|
|
|
* gpointer user_data)
|
|
|
|
|
* {
|
|
|
|
|
* return gtk_spin_button_get_value (button);
|
|
|
|
|
* }
|
|
|
|
|
*
|
|
|
|
|
* void
|
|
|
|
|
* create_floating_spin_button (void)
|
|
|
|
|
* {
|
|
|
|
|
* GtkWidget *window, *button;
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* GtkAdjustment *adjustment;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* adjustment = gtk_adjustment_new (2.500, 0.0, 5.0, 0.001, 0.1, 0.0);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
|
|
|
*
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // creates the spinbutton, with three decimal places
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* button = gtk_spin_button_new (adjustment, 0.001, 3);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* gtk_container_add (GTK_CONTAINER (window), button);
|
|
|
|
|
*
|
2017-01-19 09:02:04 +00:00
|
|
|
|
* gtk_widget_show (window);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* }
|
2014-01-27 17:12:55 +00:00
|
|
|
|
* ]|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
|
struct _GtkSpinButtonPrivate
|
2010-07-12 21:43:18 +00:00
|
|
|
|
{
|
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkWidget *box;
|
|
|
|
|
GtkWidget *entry;
|
2013-04-23 17:12:07 +00:00
|
|
|
|
|
2016-11-22 21:14:45 +00:00
|
|
|
|
GtkWidget *up_button;
|
|
|
|
|
GtkGesture *up_click_gesture;
|
|
|
|
|
GtkWidget *down_button;
|
|
|
|
|
GtkGesture *down_click_gesture;
|
|
|
|
|
|
|
|
|
|
GtkWidget *click_child;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
|
|
|
|
guint32 timer;
|
|
|
|
|
|
2011-04-12 16:45:28 +00:00
|
|
|
|
GtkSpinButtonUpdatePolicy update_policy;
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
gdouble climb_rate;
|
|
|
|
|
gdouble timer_step;
|
|
|
|
|
|
2012-09-01 16:49:02 +00:00
|
|
|
|
GtkOrientation orientation;
|
|
|
|
|
|
2014-04-08 19:24:54 +00:00
|
|
|
|
GtkGesture *swipe_gesture;
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
guint digits : 10;
|
|
|
|
|
guint need_timer : 1;
|
|
|
|
|
guint numeric : 1;
|
|
|
|
|
guint snap_to_ticks : 1;
|
|
|
|
|
guint timer_calls : 3;
|
|
|
|
|
guint wrap : 1;
|
|
|
|
|
};
|
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
|
enum {
|
2001-05-18 22:31:02 +00:00
|
|
|
|
PROP_0,
|
|
|
|
|
PROP_ADJUSTMENT,
|
|
|
|
|
PROP_CLIMB_RATE,
|
|
|
|
|
PROP_DIGITS,
|
|
|
|
|
PROP_SNAP_TO_TICKS,
|
|
|
|
|
PROP_NUMERIC,
|
|
|
|
|
PROP_WRAP,
|
|
|
|
|
PROP_UPDATE_POLICY,
|
2012-09-01 16:49:02 +00:00
|
|
|
|
PROP_VALUE,
|
2017-05-04 16:31:41 +00:00
|
|
|
|
PROP_WIDTH_CHARS,
|
|
|
|
|
PROP_MAX_WIDTH_CHARS,
|
2017-05-04 18:48:50 +00:00
|
|
|
|
PROP_TEXT,
|
2017-05-04 16:31:41 +00:00
|
|
|
|
PROP_ORIENTATION,
|
1998-09-26 03:12:03 +00:00
|
|
|
|
};
|
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
/* Signals */
|
|
|
|
|
enum
|
|
|
|
|
{
|
|
|
|
|
INPUT,
|
|
|
|
|
OUTPUT,
|
2001-03-30 03:35:47 +00:00
|
|
|
|
VALUE_CHANGED,
|
2002-02-08 00:02:52 +00:00
|
|
|
|
CHANGE_VALUE,
|
2006-01-30 17:35:49 +00:00
|
|
|
|
WRAPPED,
|
1999-02-28 16:04:47 +00:00
|
|
|
|
LAST_SIGNAL
|
|
|
|
|
};
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
2010-09-11 02:12:42 +00:00
|
|
|
|
static void gtk_spin_button_editable_init (GtkEditableInterface *iface);
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
static void gtk_spin_button_finalize (GObject *object);
|
2001-05-18 22:31:02 +00:00
|
|
|
|
static void gtk_spin_button_set_property (GObject *object,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
2001-05-18 22:31:02 +00:00
|
|
|
|
static void gtk_spin_button_get_property (GObject *object,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec);
|
2010-09-18 23:55:42 +00:00
|
|
|
|
static void gtk_spin_button_destroy (GtkWidget *widget);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
static void gtk_spin_button_realize (GtkWidget *widget);
|
2016-10-22 14:06:14 +00:00
|
|
|
|
static void gtk_spin_button_measure (GtkWidget *widget,
|
|
|
|
|
GtkOrientation orientation,
|
|
|
|
|
int for_size,
|
|
|
|
|
int *minimum,
|
|
|
|
|
int *natural,
|
|
|
|
|
int *minimum_baseline,
|
|
|
|
|
int *natural_baseline);
|
2017-07-11 07:58:21 +00:00
|
|
|
|
static void gtk_spin_button_size_allocate (GtkWidget *widget,
|
|
|
|
|
const GtkAllocation *allocation,
|
|
|
|
|
int baseline,
|
|
|
|
|
GtkAllocation *out_clip);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
static gint gtk_spin_button_focus_out (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventFocus *event);
|
2002-01-16 01:07:11 +00:00
|
|
|
|
static void gtk_spin_button_grab_notify (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gboolean was_grabbed);
|
2010-12-13 12:46:21 +00:00
|
|
|
|
static void gtk_spin_button_state_flags_changed (GtkWidget *widget,
|
|
|
|
|
GtkStateFlags previous_state);
|
2006-12-22 19:10:43 +00:00
|
|
|
|
static gboolean gtk_spin_button_timer (GtkSpinButton *spin_button);
|
2011-02-05 22:42:37 +00:00
|
|
|
|
static gboolean gtk_spin_button_stop_spinning (GtkSpinButton *spin);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
static void gtk_spin_button_value_changed (GtkAdjustment *adjustment,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkSpinButton *spin_button);
|
1998-06-17 20:07:31 +00:00
|
|
|
|
static gint gtk_spin_button_key_release (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventKey *event);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
static gint gtk_spin_button_motion_notify (GtkWidget *widget,
|
|
|
|
|
GdkEventMotion *event);
|
|
|
|
|
|
2000-02-18 20:02:24 +00:00
|
|
|
|
static gint gtk_spin_button_scroll (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventScroll *event);
|
2017-05-06 14:56:21 +00:00
|
|
|
|
static void gtk_spin_button_activate (GtkEntry *entry,
|
|
|
|
|
gpointer user_data);
|
2014-08-12 11:44:34 +00:00
|
|
|
|
static void gtk_spin_button_unset_adjustment (GtkSpinButton *spin_button);
|
2012-09-01 16:49:02 +00:00
|
|
|
|
static void gtk_spin_button_set_orientation (GtkSpinButton *spin_button,
|
|
|
|
|
GtkOrientation orientation);
|
1998-03-11 06:11:52 +00:00
|
|
|
|
static void gtk_spin_button_snap (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble val);
|
2001-10-03 21:50:58 +00:00
|
|
|
|
static void gtk_spin_button_insert_text (GtkEditable *editable,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
const gchar *new_text,
|
|
|
|
|
gint new_text_length,
|
|
|
|
|
gint *position);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
static void gtk_spin_button_real_spin (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble step);
|
2002-02-08 00:02:52 +00:00
|
|
|
|
static void gtk_spin_button_real_change_value (GtkSpinButton *spin,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkScrollType scroll);
|
2002-02-08 00:02:52 +00:00
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
static gint gtk_spin_button_default_input (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble *new_val);
|
2012-09-02 23:14:04 +00:00
|
|
|
|
static void gtk_spin_button_default_output (GtkSpinButton *spin_button);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
|
2002-02-08 00:02:52 +00:00
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
static guint spinbutton_signals[LAST_SIGNAL] = {0};
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkSpinButton, gtk_spin_button, GTK_TYPE_WIDGET,
|
2013-06-27 19:02:52 +00:00
|
|
|
|
G_ADD_PRIVATE (GtkSpinButton)
|
2012-09-01 16:49:02 +00:00
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE, NULL)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE,
|
|
|
|
|
gtk_spin_button_editable_init))
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
2002-02-08 00:02:52 +00:00
|
|
|
|
#define add_spin_binding(binding_set, keyval, mask, scroll) \
|
|
|
|
|
gtk_binding_entry_add_signal (binding_set, keyval, mask, \
|
2014-07-19 22:27:27 +00:00
|
|
|
|
"change-value", 1, \
|
2002-02-08 00:02:52 +00:00
|
|
|
|
GTK_TYPE_SCROLL_TYPE, scroll)
|
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_class_init (GtkSpinButtonClass *class)
|
|
|
|
|
{
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
|
2008-07-21 09:41:28 +00:00
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
|
2002-02-08 00:02:52 +00:00
|
|
|
|
GtkBindingSet *binding_set;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
gobject_class->finalize = gtk_spin_button_finalize;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
gobject_class->set_property = gtk_spin_button_set_property;
|
|
|
|
|
gobject_class->get_property = gtk_spin_button_get_property;
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
|
2010-09-18 23:55:42 +00:00
|
|
|
|
widget_class->destroy = gtk_spin_button_destroy;
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
widget_class->realize = gtk_spin_button_realize;
|
2016-10-22 14:06:14 +00:00
|
|
|
|
widget_class->measure = gtk_spin_button_measure;
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
widget_class->size_allocate = gtk_spin_button_size_allocate;
|
|
|
|
|
widget_class->scroll_event = gtk_spin_button_scroll;
|
|
|
|
|
widget_class->motion_notify_event = gtk_spin_button_motion_notify;
|
|
|
|
|
widget_class->key_release_event = gtk_spin_button_key_release;
|
|
|
|
|
widget_class->focus_out_event = gtk_spin_button_focus_out;
|
2002-01-16 01:07:11 +00:00
|
|
|
|
widget_class->grab_notify = gtk_spin_button_grab_notify;
|
2010-12-13 12:46:21 +00:00
|
|
|
|
widget_class->state_flags_changed = gtk_spin_button_state_flags_changed;
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
|
|
|
|
|
class->input = NULL;
|
|
|
|
|
class->output = NULL;
|
2002-02-08 00:02:52 +00:00
|
|
|
|
class->change_value = gtk_spin_button_real_change_value;
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_ADJUSTMENT,
|
|
|
|
|
g_param_spec_object ("adjustment",
|
2004-01-16 23:10:05 +00:00
|
|
|
|
P_("Adjustment"),
|
2010-08-10 08:23:49 +00:00
|
|
|
|
P_("The adjustment that holds the value of the spin button"),
|
2001-05-18 22:31:02 +00:00
|
|
|
|
GTK_TYPE_ADJUSTMENT,
|
2005-03-22 02:14:55 +00:00
|
|
|
|
GTK_PARAM_READWRITE));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_CLIMB_RATE,
|
2005-03-09 06:15:13 +00:00
|
|
|
|
g_param_spec_double ("climb-rate",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Climb Rate"),
|
|
|
|
|
P_("The acceleration rate when you hold down a button"),
|
2014-06-09 13:41:09 +00:00
|
|
|
|
0.0, G_MAXDOUBLE, 0.0,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_DIGITS,
|
|
|
|
|
g_param_spec_uint ("digits",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Digits"),
|
|
|
|
|
P_("The number of decimal places to display"),
|
2014-06-09 13:41:09 +00:00
|
|
|
|
0, MAX_DIGITS, 0,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_SNAP_TO_TICKS,
|
2005-03-09 06:15:13 +00:00
|
|
|
|
g_param_spec_boolean ("snap-to-ticks",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Snap to Ticks"),
|
2016-10-03 16:20:03 +00:00
|
|
|
|
P_("Whether erroneous values are automatically changed to a spin button’s nearest step increment"),
|
2011-01-03 04:30:02 +00:00
|
|
|
|
FALSE,
|
2014-06-09 13:41:09 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_NUMERIC,
|
|
|
|
|
g_param_spec_boolean ("numeric",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Numeric"),
|
|
|
|
|
P_("Whether non-numeric characters should be ignored"),
|
|
|
|
|
FALSE,
|
2014-06-09 13:41:09 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_WRAP,
|
|
|
|
|
g_param_spec_boolean ("wrap",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Wrap"),
|
|
|
|
|
P_("Whether a spin button should wrap upon reaching its limits"),
|
|
|
|
|
FALSE,
|
2014-06-09 13:41:09 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_UPDATE_POLICY,
|
2005-03-09 06:15:13 +00:00
|
|
|
|
g_param_spec_enum ("update-policy",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Update Policy"),
|
|
|
|
|
P_("Whether the spin button should update always, or only when the value is legal"),
|
|
|
|
|
GTK_TYPE_SPIN_BUTTON_UPDATE_POLICY,
|
|
|
|
|
GTK_UPDATE_ALWAYS,
|
2014-06-09 13:41:09 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_VALUE,
|
|
|
|
|
g_param_spec_double ("value",
|
2011-01-03 04:30:02 +00:00
|
|
|
|
P_("Value"),
|
|
|
|
|
P_("Reads the current value, or sets a new value"),
|
2014-06-09 13:41:09 +00:00
|
|
|
|
-G_MAXDOUBLE, G_MAXDOUBLE, 0.0,
|
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_WIDTH_CHARS,
|
|
|
|
|
g_param_spec_int ("width-chars",
|
|
|
|
|
P_("Width in chars"),
|
|
|
|
|
P_("Number of characters to leave space for in the entry"),
|
|
|
|
|
-1, G_MAXINT,
|
2017-05-13 20:05:27 +00:00
|
|
|
|
0,
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
|
|
|
|
|
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_MAX_WIDTH_CHARS,
|
|
|
|
|
g_param_spec_int ("max-width-chars",
|
|
|
|
|
P_("Maximum width in characters"),
|
|
|
|
|
P_("The desired maximum width of the entry, in characters"),
|
|
|
|
|
-1, G_MAXINT,
|
2017-05-13 20:05:27 +00:00
|
|
|
|
0,
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
|
|
|
|
|
2017-05-04 18:48:50 +00:00
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
|
PROP_TEXT,
|
|
|
|
|
g_param_spec_string ("text",
|
|
|
|
|
P_("Text"),
|
|
|
|
|
P_("The contents of the entry"),
|
2017-07-13 14:28:49 +00:00
|
|
|
|
"0", /* Default value of the default adjustment */
|
2017-05-04 18:48:50 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
|
|
|
|
|
2012-09-01 16:49:02 +00:00
|
|
|
|
g_object_class_override_property (gobject_class,
|
|
|
|
|
PROP_ORIENTATION,
|
|
|
|
|
"orientation");
|
|
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkSpinButton::input:
|
|
|
|
|
* @spin_button: the object on which the signal was emitted
|
2011-01-18 09:10:30 +00:00
|
|
|
|
* @new_value: (out) (type double): return location for the new value
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* The ::input signal can be used to influence the conversion of
|
|
|
|
|
* the users input into a double value. The signal handler is
|
2017-07-13 14:28:49 +00:00
|
|
|
|
* expected to use gtk_spin_button_get_text() to retrieve the text of
|
|
|
|
|
* the spinbutton and set @new_value to the new value.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* The default conversion uses g_strtod().
|
|
|
|
|
*
|
|
|
|
|
* Returns: %TRUE for a successful conversion, %FALSE if the input
|
|
|
|
|
* was not handled, and %GTK_INPUT_ERROR if the conversion failed.
|
|
|
|
|
*/
|
1999-02-28 16:04:47 +00:00
|
|
|
|
spinbutton_signals[INPUT] =
|
2005-09-01 05:11:46 +00:00
|
|
|
|
g_signal_new (I_("input"),
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (gobject_class),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkSpinButtonClass, input),
|
|
|
|
|
NULL, NULL,
|
|
|
|
|
_gtk_marshal_INT__POINTER,
|
|
|
|
|
G_TYPE_INT, 1,
|
|
|
|
|
G_TYPE_POINTER);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
|
2008-01-06 06:35:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkSpinButton::output:
|
2014-07-17 06:41:00 +00:00
|
|
|
|
* @spin_button: the object on which the signal was emitted
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2008-01-06 06:35:49 +00:00
|
|
|
|
* The ::output signal can be used to change to formatting
|
|
|
|
|
* of the value that is displayed in the spin buttons entry.
|
2014-01-27 19:55:18 +00:00
|
|
|
|
* |[<!-- language="C" -->
|
2014-02-15 04:34:22 +00:00
|
|
|
|
* // show leading zeros
|
2008-01-06 06:35:49 +00:00
|
|
|
|
* static gboolean
|
|
|
|
|
* on_output (GtkSpinButton *spin,
|
|
|
|
|
* gpointer data)
|
|
|
|
|
* {
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* GtkAdjustment *adjustment;
|
2008-01-06 06:35:49 +00:00
|
|
|
|
* gchar *text;
|
2008-01-07 01:26:39 +00:00
|
|
|
|
* int value;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2011-01-05 15:54:12 +00:00
|
|
|
|
* adjustment = gtk_spin_button_get_adjustment (spin);
|
|
|
|
|
* value = (int)gtk_adjustment_get_value (adjustment);
|
2008-01-06 06:35:49 +00:00
|
|
|
|
* text = g_strdup_printf ("%02d", value);
|
|
|
|
|
* gtk_entry_set_text (GTK_ENTRY (spin), text);
|
|
|
|
|
* g_free (text);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2008-01-06 06:35:49 +00:00
|
|
|
|
* return TRUE;
|
|
|
|
|
* }
|
|
|
|
|
* ]|
|
|
|
|
|
*
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* Returns: %TRUE if the value has been displayed
|
2008-01-06 06:35:49 +00:00
|
|
|
|
*/
|
1999-02-28 16:04:47 +00:00
|
|
|
|
spinbutton_signals[OUTPUT] =
|
2005-09-01 05:11:46 +00:00
|
|
|
|
g_signal_new (I_("output"),
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (gobject_class),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkSpinButtonClass, output),
|
|
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
|
|
|
|
_gtk_marshal_BOOLEAN__VOID,
|
|
|
|
|
G_TYPE_BOOLEAN, 0);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
|
2014-07-17 06:41:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkSpinButton::value-changed:
|
|
|
|
|
* @spin_button: the object on which the signal was emitted
|
|
|
|
|
*
|
|
|
|
|
* The ::value-changed signal is emitted when the value represented by
|
|
|
|
|
* @spinbutton changes. Also see the #GtkSpinButton::output signal.
|
|
|
|
|
*/
|
2001-03-30 03:35:47 +00:00
|
|
|
|
spinbutton_signals[VALUE_CHANGED] =
|
2008-08-08 13:25:18 +00:00
|
|
|
|
g_signal_new (I_("value-changed"),
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (gobject_class),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkSpinButtonClass, value_changed),
|
|
|
|
|
NULL, NULL,
|
2016-08-29 14:00:17 +00:00
|
|
|
|
NULL,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_TYPE_NONE, 0);
|
2002-02-08 00:02:52 +00:00
|
|
|
|
|
2006-01-30 17:35:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkSpinButton::wrapped:
|
2014-07-17 06:41:00 +00:00
|
|
|
|
* @spin_button: the object on which the signal was emitted
|
2006-01-30 17:35:49 +00:00
|
|
|
|
*
|
2014-07-17 06:41:00 +00:00
|
|
|
|
* The ::wrapped signal is emitted right after the spinbutton wraps
|
2006-01-30 17:35:49 +00:00
|
|
|
|
* from its maximum to minimum value or vice-versa.
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.10
|
|
|
|
|
*/
|
|
|
|
|
spinbutton_signals[WRAPPED] =
|
|
|
|
|
g_signal_new (I_("wrapped"),
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (gobject_class),
|
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
|
G_STRUCT_OFFSET (GtkSpinButtonClass, wrapped),
|
|
|
|
|
NULL, NULL,
|
2016-08-29 14:00:17 +00:00
|
|
|
|
NULL,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
G_TYPE_NONE, 0);
|
2006-01-30 17:35:49 +00:00
|
|
|
|
|
2002-02-08 00:02:52 +00:00
|
|
|
|
/* Action signals */
|
2014-07-17 06:41:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkSpinButton::change-value:
|
|
|
|
|
* @spin_button: the object on which the signal was emitted
|
|
|
|
|
* @scroll: a #GtkScrollType to specify the speed and amount of change
|
|
|
|
|
*
|
|
|
|
|
* The ::change-value signal is a [keybinding signal][GtkBindingSignal]
|
|
|
|
|
* which gets emitted when the user initiates a value change.
|
|
|
|
|
*
|
|
|
|
|
* Applications should not connect to it, but may emit it with
|
|
|
|
|
* g_signal_emit_by_name() if they need to control the cursor
|
|
|
|
|
* programmatically.
|
|
|
|
|
*
|
|
|
|
|
* The default bindings for this signal are Up/Down and PageUp and/PageDown.
|
|
|
|
|
*/
|
2002-02-08 00:02:52 +00:00
|
|
|
|
spinbutton_signals[CHANGE_VALUE] =
|
2008-08-08 14:36:41 +00:00
|
|
|
|
g_signal_new (I_("change-value"),
|
2002-10-10 01:02:25 +00:00
|
|
|
|
G_TYPE_FROM_CLASS (gobject_class),
|
2002-02-08 00:02:52 +00:00
|
|
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
|
|
|
|
G_STRUCT_OFFSET (GtkSpinButtonClass, change_value),
|
|
|
|
|
NULL, NULL,
|
2016-08-29 14:00:17 +00:00
|
|
|
|
NULL,
|
2002-02-08 00:02:52 +00:00
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
|
GTK_TYPE_SCROLL_TYPE);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-02-08 00:02:52 +00:00
|
|
|
|
binding_set = gtk_binding_set_by_class (class);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2010-09-08 17:35:51 +00:00
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Up, 0, GTK_SCROLL_STEP_UP);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_KP_Up, 0, GTK_SCROLL_STEP_UP);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Down, 0, GTK_SCROLL_STEP_DOWN);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_KP_Down, 0, GTK_SCROLL_STEP_DOWN);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Page_Up, 0, GTK_SCROLL_PAGE_UP);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Page_Down, 0, GTK_SCROLL_PAGE_DOWN);
|
2016-02-21 16:45:44 +00:00
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_End, GDK_CONTROL_MASK, GTK_SCROLL_END);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Home, GDK_CONTROL_MASK, GTK_SCROLL_START);
|
2010-09-08 17:35:51 +00:00
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Page_Up, GDK_CONTROL_MASK, GTK_SCROLL_END);
|
|
|
|
|
add_spin_binding (binding_set, GDK_KEY_Page_Down, GDK_CONTROL_MASK, GTK_SCROLL_START);
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2011-06-25 02:12:55 +00:00
|
|
|
|
gtk_widget_class_set_accessible_type (widget_class, GTK_TYPE_SPIN_BUTTON_ACCESSIBLE);
|
2015-10-29 01:55:07 +00:00
|
|
|
|
gtk_widget_class_set_css_name (widget_class, "spinbutton");
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-03 21:50:58 +00:00
|
|
|
|
static void
|
2010-09-11 02:12:42 +00:00
|
|
|
|
gtk_spin_button_editable_init (GtkEditableInterface *iface)
|
2001-10-03 21:50:58 +00:00
|
|
|
|
{
|
|
|
|
|
iface->insert_text = gtk_spin_button_insert_text;
|
|
|
|
|
}
|
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
|
static void
|
2001-05-18 22:31:02 +00:00
|
|
|
|
gtk_spin_button_set_property (GObject *object,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
guint prop_id,
|
|
|
|
|
const GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
1998-09-26 03:12:03 +00:00
|
|
|
|
{
|
2008-07-21 09:41:28 +00:00
|
|
|
|
GtkSpinButton *spin_button = GTK_SPIN_BUTTON (object);
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
1998-09-26 03:12:03 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
switch (prop_id)
|
1998-09-26 03:12:03 +00:00
|
|
|
|
{
|
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_ADJUSTMENT:
|
|
|
|
|
adjustment = GTK_ADJUSTMENT (g_value_get_object (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
gtk_spin_button_set_adjustment (spin_button, adjustment);
|
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_CLIMB_RATE:
|
1998-09-26 03:12:03 +00:00
|
|
|
|
gtk_spin_button_configure (spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
priv->adjustment,
|
|
|
|
|
g_value_get_double (value),
|
|
|
|
|
priv->digits);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_DIGITS:
|
1998-09-26 03:12:03 +00:00
|
|
|
|
gtk_spin_button_configure (spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
priv->adjustment,
|
|
|
|
|
priv->climb_rate,
|
|
|
|
|
g_value_get_uint (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_SNAP_TO_TICKS:
|
|
|
|
|
gtk_spin_button_set_snap_to_ticks (spin_button, g_value_get_boolean (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_NUMERIC:
|
|
|
|
|
gtk_spin_button_set_numeric (spin_button, g_value_get_boolean (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_WRAP:
|
|
|
|
|
gtk_spin_button_set_wrap (spin_button, g_value_get_boolean (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_UPDATE_POLICY:
|
|
|
|
|
gtk_spin_button_set_update_policy (spin_button, g_value_get_enum (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_VALUE:
|
|
|
|
|
gtk_spin_button_set_value (spin_button, g_value_get_double (value));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2012-09-01 16:49:02 +00:00
|
|
|
|
case PROP_ORIENTATION:
|
|
|
|
|
gtk_spin_button_set_orientation (spin_button, g_value_get_enum (value));
|
|
|
|
|
break;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
case PROP_WIDTH_CHARS:
|
2017-06-16 12:33:58 +00:00
|
|
|
|
gtk_spin_button_set_width_chars (spin_button, g_value_get_int (value));
|
2017-05-04 16:31:41 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_MAX_WIDTH_CHARS:
|
2017-06-16 12:33:58 +00:00
|
|
|
|
gtk_spin_button_set_max_width_chars (spin_button, g_value_get_int (value));
|
2017-05-04 16:31:41 +00:00
|
|
|
|
break;
|
2017-05-04 18:48:50 +00:00
|
|
|
|
case PROP_TEXT:
|
2017-06-16 12:33:58 +00:00
|
|
|
|
gtk_spin_button_set_text (spin_button, g_value_get_string (value));
|
2017-05-04 18:48:50 +00:00
|
|
|
|
break;
|
1998-09-26 03:12:03 +00:00
|
|
|
|
default:
|
2008-01-06 03:28:40 +00:00
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2001-05-18 22:31:02 +00:00
|
|
|
|
gtk_spin_button_get_property (GObject *object,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
guint prop_id,
|
|
|
|
|
GValue *value,
|
|
|
|
|
GParamSpec *pspec)
|
1998-09-26 03:12:03 +00:00
|
|
|
|
{
|
2008-07-21 09:41:28 +00:00
|
|
|
|
GtkSpinButton *spin_button = GTK_SPIN_BUTTON (object);
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
1998-09-26 03:12:03 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
switch (prop_id)
|
1998-09-26 03:12:03 +00:00
|
|
|
|
{
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_ADJUSTMENT:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_object (value, priv->adjustment);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_CLIMB_RATE:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_double (value, priv->climb_rate);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_DIGITS:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_uint (value, priv->digits);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_SNAP_TO_TICKS:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_boolean (value, priv->snap_to_ticks);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_NUMERIC:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_boolean (value, priv->numeric);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_WRAP:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_boolean (value, priv->wrap);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_UPDATE_POLICY:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
g_value_set_enum (value, priv->update_policy);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
case PROP_VALUE:
|
2011-01-05 15:54:12 +00:00
|
|
|
|
g_value_set_double (value, gtk_adjustment_get_value (priv->adjustment));
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
2012-09-01 16:49:02 +00:00
|
|
|
|
case PROP_ORIENTATION:
|
|
|
|
|
g_value_set_enum (value, priv->orientation);
|
|
|
|
|
break;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
case PROP_WIDTH_CHARS:
|
2017-06-16 12:33:58 +00:00
|
|
|
|
g_value_set_int (value, gtk_spin_button_get_width_chars (spin_button));
|
2017-05-04 16:31:41 +00:00
|
|
|
|
break;
|
|
|
|
|
case PROP_MAX_WIDTH_CHARS:
|
2017-06-16 12:33:58 +00:00
|
|
|
|
g_value_set_int (value, gtk_spin_button_get_max_width_chars (spin_button));
|
2017-05-04 16:31:41 +00:00
|
|
|
|
break;
|
2017-05-04 18:48:50 +00:00
|
|
|
|
case PROP_TEXT:
|
2017-06-16 12:33:58 +00:00
|
|
|
|
g_value_set_string (value, gtk_spin_button_get_text (spin_button));
|
|
|
|
|
break;
|
1998-09-26 03:12:03 +00:00
|
|
|
|
default:
|
2001-05-18 22:31:02 +00:00
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
1998-09-26 03:12:03 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-08 19:24:54 +00:00
|
|
|
|
static void
|
2014-05-22 14:04:03 +00:00
|
|
|
|
swipe_gesture_begin (GtkGesture *gesture,
|
|
|
|
|
GdkEventSequence *sequence,
|
|
|
|
|
GtkSpinButton *spin_button)
|
2014-04-08 19:24:54 +00:00
|
|
|
|
{
|
2014-05-22 14:04:03 +00:00
|
|
|
|
gtk_gesture_set_state (gesture, GTK_EVENT_SEQUENCE_CLAIMED);
|
|
|
|
|
gtk_widget_grab_focus (GTK_WIDGET (spin_button));
|
2014-04-08 19:24:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
swipe_gesture_update (GtkGesture *gesture,
|
|
|
|
|
GdkEventSequence *sequence,
|
|
|
|
|
GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
gdouble vel_y;
|
|
|
|
|
|
|
|
|
|
gtk_gesture_swipe_get_velocity (GTK_GESTURE_SWIPE (gesture), NULL, &vel_y);
|
|
|
|
|
gtk_spin_button_real_spin (spin_button, -vel_y / 20);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-29 01:55:07 +00:00
|
|
|
|
static void
|
|
|
|
|
update_node_ordering (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
|
|
|
|
|
g_assert (priv->orientation != gtk_orientable_get_orientation (GTK_ORIENTABLE (priv->box)));
|
2015-10-29 01:55:07 +00:00
|
|
|
|
|
|
|
|
|
if (priv->orientation == GTK_ORIENTATION_HORIZONTAL)
|
|
|
|
|
{
|
2017-05-04 16:31:41 +00:00
|
|
|
|
/* Current orientation of the box is vertical! */
|
|
|
|
|
gtk_box_reorder_child (GTK_BOX (priv->box), priv->entry, 0);
|
|
|
|
|
gtk_box_reorder_child (GTK_BOX (priv->box), priv->down_button, 1);
|
2015-10-29 01:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2017-05-04 16:31:41 +00:00
|
|
|
|
/* Current orientation of the box is horizontal! */
|
|
|
|
|
gtk_box_reorder_child (GTK_BOX (priv->box), priv->up_button, 0);
|
2015-10-29 01:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->box), priv->orientation);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gtk_spin_button_stop_spinning (GtkSpinButton *spin)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
|
|
|
|
gboolean did_spin = FALSE;
|
|
|
|
|
|
|
|
|
|
if (priv->timer)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (priv->timer);
|
|
|
|
|
priv->timer = 0;
|
|
|
|
|
priv->need_timer = FALSE;
|
|
|
|
|
|
|
|
|
|
did_spin = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
|
|
|
|
|
priv->timer_calls = 0;
|
|
|
|
|
|
|
|
|
|
priv->click_child = NULL;
|
|
|
|
|
|
|
|
|
|
return did_spin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
start_spinning (GtkSpinButton *spin,
|
|
|
|
|
GtkWidget *click_child,
|
|
|
|
|
gdouble step)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
|
|
|
|
|
|
|
|
|
priv->click_child = click_child;
|
|
|
|
|
|
|
|
|
|
if (!priv->timer)
|
|
|
|
|
{
|
|
|
|
|
priv->timer_step = step;
|
|
|
|
|
priv->need_timer = TRUE;
|
|
|
|
|
priv->timer = gdk_threads_add_timeout (TIMEOUT_INITIAL,
|
|
|
|
|
(GSourceFunc) gtk_spin_button_timer,
|
|
|
|
|
(gpointer) spin);
|
|
|
|
|
g_source_set_name_by_id (priv->timer, "[gtk+] gtk_spin_button_timer");
|
|
|
|
|
}
|
|
|
|
|
gtk_spin_button_real_spin (spin, click_child == priv->up_button ? step : -step);
|
|
|
|
|
|
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
button_pressed_cb (GtkGestureMultiPress *gesture,
|
|
|
|
|
int n_pressses,
|
|
|
|
|
double x,
|
|
|
|
|
double y,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButton *spin_button = user_data;
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
|
|
|
|
GtkWidget *pressed_button = GTK_GESTURE (gesture) == priv->up_click_gesture ?
|
|
|
|
|
priv->up_button : priv->down_button;
|
|
|
|
|
|
2017-01-13 14:24:44 +00:00
|
|
|
|
gtk_widget_grab_focus (GTK_WIDGET (spin_button));
|
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
if (gtk_editable_get_editable (GTK_EDITABLE (priv->entry)))
|
2016-11-22 21:14:45 +00:00
|
|
|
|
{
|
|
|
|
|
int button = gtk_gesture_single_get_current_button (GTK_GESTURE_SINGLE (gesture));
|
|
|
|
|
gtk_spin_button_update (spin_button);
|
|
|
|
|
|
|
|
|
|
if (button == GDK_BUTTON_PRIMARY)
|
|
|
|
|
start_spinning (spin_button, pressed_button, gtk_adjustment_get_step_increment (priv->adjustment));
|
|
|
|
|
else if (button == GDK_BUTTON_MIDDLE)
|
|
|
|
|
start_spinning (spin_button, pressed_button, gtk_adjustment_get_page_increment (priv->adjustment));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gtk_widget_error_bell (GTK_WIDGET (spin_button));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
button_released_cb (GtkGestureMultiPress *gesture,
|
|
|
|
|
int n_pressses,
|
|
|
|
|
double x,
|
|
|
|
|
double y,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButton *spin_button = user_data;
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
|
|
|
|
int button = gtk_gesture_single_get_current_button (GTK_GESTURE_SINGLE (gesture));
|
|
|
|
|
|
|
|
|
|
gtk_spin_button_stop_spinning (spin_button);
|
|
|
|
|
|
|
|
|
|
if (button == GDK_BUTTON_SECONDARY)
|
|
|
|
|
{
|
|
|
|
|
double diff;
|
|
|
|
|
if (GTK_GESTURE (gesture) == priv->down_click_gesture)
|
|
|
|
|
{
|
|
|
|
|
diff = gtk_adjustment_get_value (priv->adjustment) - gtk_adjustment_get_lower (priv->adjustment);
|
|
|
|
|
if (diff > EPSILON)
|
|
|
|
|
gtk_spin_button_real_spin (spin_button, -diff);
|
|
|
|
|
}
|
|
|
|
|
else if (GTK_GESTURE (gesture) == priv->up_click_gesture)
|
|
|
|
|
{
|
|
|
|
|
diff = gtk_adjustment_get_upper (priv->adjustment) - gtk_adjustment_get_value (priv->adjustment);
|
|
|
|
|
if (diff > EPSILON)
|
|
|
|
|
gtk_spin_button_real_spin (spin_button, diff);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-29 01:55:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_init (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_set_has_window (GTK_WIDGET (spin_button), FALSE);
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
|
spin_button->priv = gtk_spin_button_get_instance_private (spin_button);
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
|
|
|
|
priv->adjustment = NULL;
|
|
|
|
|
priv->timer = 0;
|
|
|
|
|
priv->climb_rate = 0.0;
|
|
|
|
|
priv->timer_step = 0.0;
|
|
|
|
|
priv->update_policy = GTK_UPDATE_ALWAYS;
|
2011-11-23 03:08:59 +00:00
|
|
|
|
priv->click_child = NULL;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->need_timer = FALSE;
|
|
|
|
|
priv->timer_calls = 0;
|
|
|
|
|
priv->digits = 0;
|
|
|
|
|
priv->numeric = FALSE;
|
|
|
|
|
priv->wrap = FALSE;
|
|
|
|
|
priv->snap_to_ticks = FALSE;
|
2002-02-20 23:36:28 +00:00
|
|
|
|
|
2012-09-01 16:49:02 +00:00
|
|
|
|
priv->orientation = GTK_ORIENTATION_HORIZONTAL;
|
|
|
|
|
|
2014-07-18 23:39:56 +00:00
|
|
|
|
_gtk_orientable_set_style_classes (GTK_ORIENTABLE (spin_button));
|
2016-11-22 21:14:45 +00:00
|
|
|
|
gtk_widget_set_focus_on_click (GTK_WIDGET (spin_button), TRUE);
|
2012-02-23 13:46:47 +00:00
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
priv->box = gtk_box_new (priv->orientation, 0);
|
|
|
|
|
gtk_widget_set_parent (priv->box, GTK_WIDGET (spin_button));
|
|
|
|
|
priv->entry = gtk_entry_new ();
|
2017-05-13 20:05:27 +00:00
|
|
|
|
gtk_entry_set_width_chars (GTK_ENTRY (priv->entry), 0);
|
|
|
|
|
gtk_entry_set_max_width_chars (GTK_ENTRY (priv->entry), 0);
|
2017-07-15 06:44:09 +00:00
|
|
|
|
gtk_widget_set_hexpand (priv->entry, TRUE);
|
|
|
|
|
gtk_widget_set_vexpand (priv->entry, TRUE);
|
2017-05-06 14:56:21 +00:00
|
|
|
|
g_signal_connect (priv->entry, "activate", G_CALLBACK (gtk_spin_button_activate), spin_button);
|
2017-05-04 16:31:41 +00:00
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->box), priv->entry);
|
2015-10-29 01:55:07 +00:00
|
|
|
|
|
2016-11-22 21:14:45 +00:00
|
|
|
|
priv->down_button = gtk_button_new_from_icon_name ("list-remove-symbolic", GTK_ICON_SIZE_BUTTON);
|
2017-01-13 14:24:44 +00:00
|
|
|
|
gtk_widget_set_can_focus (priv->down_button, FALSE);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
gtk_style_context_add_class (gtk_widget_get_style_context (priv->down_button), "down");
|
2017-05-04 16:31:41 +00:00
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->box), priv->down_button);
|
|
|
|
|
|
2016-11-22 21:14:45 +00:00
|
|
|
|
priv->down_click_gesture = gtk_gesture_multi_press_new (GTK_WIDGET (priv->down_button));
|
2017-02-01 20:03:39 +00:00
|
|
|
|
gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (priv->down_click_gesture), 0);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
gtk_gesture_single_set_touch_only (GTK_GESTURE_SINGLE (priv->down_click_gesture), FALSE);
|
|
|
|
|
gtk_event_controller_set_propagation_phase (GTK_EVENT_CONTROLLER (priv->down_click_gesture),
|
|
|
|
|
GTK_PHASE_CAPTURE);
|
|
|
|
|
g_signal_connect (priv->down_click_gesture, "pressed", G_CALLBACK (button_pressed_cb), spin_button);
|
|
|
|
|
g_signal_connect (priv->down_click_gesture, "released", G_CALLBACK (button_released_cb), spin_button);
|
|
|
|
|
|
|
|
|
|
priv->up_button = gtk_button_new_from_icon_name ("list-add-symbolic", GTK_ICON_SIZE_BUTTON);
|
2017-01-13 14:24:44 +00:00
|
|
|
|
gtk_widget_set_can_focus (priv->up_button, FALSE);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
gtk_style_context_add_class (gtk_widget_get_style_context (priv->up_button), "up");
|
2017-05-04 16:31:41 +00:00
|
|
|
|
gtk_container_add (GTK_CONTAINER (priv->box), priv->up_button);
|
|
|
|
|
|
2016-11-22 21:14:45 +00:00
|
|
|
|
priv->up_click_gesture = gtk_gesture_multi_press_new (GTK_WIDGET (priv->up_button));
|
2017-02-01 20:03:39 +00:00
|
|
|
|
gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (priv->up_click_gesture), 0);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
gtk_gesture_single_set_touch_only (GTK_GESTURE_SINGLE (priv->up_click_gesture), FALSE);
|
|
|
|
|
gtk_event_controller_set_propagation_phase (GTK_EVENT_CONTROLLER (priv->up_click_gesture),
|
|
|
|
|
GTK_PHASE_CAPTURE);
|
|
|
|
|
g_signal_connect (priv->up_click_gesture, "pressed", G_CALLBACK (button_pressed_cb), spin_button);
|
|
|
|
|
g_signal_connect (priv->up_click_gesture, "released", G_CALLBACK (button_released_cb), spin_button);
|
2015-10-29 01:55:07 +00:00
|
|
|
|
|
|
|
|
|
gtk_spin_button_set_adjustment (spin_button, NULL);
|
|
|
|
|
|
2014-04-08 19:24:54 +00:00
|
|
|
|
priv->swipe_gesture = gtk_gesture_swipe_new (GTK_WIDGET (spin_button));
|
2014-08-11 19:54:39 +00:00
|
|
|
|
gtk_gesture_single_set_touch_only (GTK_GESTURE_SINGLE (priv->swipe_gesture), TRUE);
|
2014-05-26 12:02:30 +00:00
|
|
|
|
gtk_event_controller_set_propagation_phase (GTK_EVENT_CONTROLLER (priv->swipe_gesture),
|
|
|
|
|
GTK_PHASE_CAPTURE);
|
2014-05-22 14:04:03 +00:00
|
|
|
|
g_signal_connect (priv->swipe_gesture, "begin",
|
|
|
|
|
G_CALLBACK (swipe_gesture_begin), spin_button);
|
2014-04-08 19:24:54 +00:00
|
|
|
|
g_signal_connect (priv->swipe_gesture, "update",
|
|
|
|
|
G_CALLBACK (swipe_gesture_update), spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
|
gtk_spin_button_finalize (GObject *object)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2013-04-23 17:12:07 +00:00
|
|
|
|
GtkSpinButton *spin_button = GTK_SPIN_BUTTON (object);
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
|
|
|
|
|
2014-08-12 11:44:34 +00:00
|
|
|
|
gtk_spin_button_unset_adjustment (spin_button);
|
2013-04-23 17:12:07 +00:00
|
|
|
|
|
2014-05-02 02:05:42 +00:00
|
|
|
|
g_object_unref (priv->swipe_gesture);
|
2016-11-22 21:14:45 +00:00
|
|
|
|
g_object_unref (priv->up_click_gesture);
|
|
|
|
|
g_object_unref (priv->down_click_gesture);
|
2014-05-02 02:05:42 +00:00
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
gtk_widget_unparent (priv->box);
|
2017-01-07 14:58:55 +00:00
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_spin_button_parent_class)->finalize (object);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-01-16 01:07:11 +00:00
|
|
|
|
static void
|
2010-09-18 23:55:42 +00:00
|
|
|
|
gtk_spin_button_destroy (GtkWidget *widget)
|
2002-01-16 01:07:11 +00:00
|
|
|
|
{
|
2010-09-18 23:55:42 +00:00
|
|
|
|
gtk_spin_button_stop_spinning (GTK_SPIN_BUTTON (widget));
|
2010-09-18 23:54:31 +00:00
|
|
|
|
|
2010-09-18 23:55:42 +00:00
|
|
|
|
GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->destroy (widget);
|
2002-01-16 01:07:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-23 03:08:59 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_realize (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButton *spin_button = GTK_SPIN_BUTTON (widget);
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
2011-11-23 03:08:59 +00:00
|
|
|
|
gboolean return_val;
|
2010-09-07 22:25:47 +00:00
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
|
GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->realize (widget);
|
1998-06-17 20:07:31 +00:00
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
return_val = FALSE;
|
2002-10-10 01:02:25 +00:00
|
|
|
|
g_signal_emit (spin_button, spinbutton_signals[OUTPUT], 0, &return_val);
|
2013-03-06 18:16:25 +00:00
|
|
|
|
|
|
|
|
|
/* If output wasn't processed explicitly by the method connected to the
|
|
|
|
|
* 'output' signal; and if we don't have any explicit 'text' set initially,
|
|
|
|
|
* fallback to the default output. */
|
|
|
|
|
if (!return_val &&
|
2017-05-04 16:31:41 +00:00
|
|
|
|
(spin_button->priv->numeric || gtk_entry_get_text (GTK_ENTRY (priv->entry)) == NULL))
|
1999-02-28 16:04:47 +00:00
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
2002-02-20 23:36:28 +00:00
|
|
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (spin_button));
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-12 11:44:34 +00:00
|
|
|
|
/* Callback used when the spin button's adjustment changes.
|
|
|
|
|
* We need to redraw the arrows when the adjustment’s range
|
|
|
|
|
* changes, and reevaluate our size request.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
adjustment_changed_cb (GtkAdjustment *adjustment, gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButton *spin_button = GTK_SPIN_BUTTON (data);
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
|
|
|
|
|
|
|
|
|
priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (spin_button));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_unset_adjustment (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->adjustment)
|
|
|
|
|
{
|
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->adjustment,
|
|
|
|
|
gtk_spin_button_value_changed,
|
|
|
|
|
spin_button);
|
|
|
|
|
g_signal_handlers_disconnect_by_func (priv->adjustment,
|
|
|
|
|
adjustment_changed_cb,
|
|
|
|
|
spin_button);
|
|
|
|
|
g_clear_object (&priv->adjustment);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-01 16:49:02 +00:00
|
|
|
|
static void
|
2015-10-29 01:55:07 +00:00
|
|
|
|
gtk_spin_button_set_orientation (GtkSpinButton *spin,
|
|
|
|
|
GtkOrientation orientation)
|
2012-09-01 16:49:02 +00:00
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkEntry *entry = GTK_ENTRY (priv->entry);
|
2012-09-01 16:49:02 +00:00
|
|
|
|
|
|
|
|
|
if (priv->orientation == orientation)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
priv->orientation = orientation;
|
|
|
|
|
_gtk_orientable_set_style_classes (GTK_ORIENTABLE (spin));
|
|
|
|
|
|
|
|
|
|
/* change alignment if it's the default */
|
|
|
|
|
if (priv->orientation == GTK_ORIENTATION_VERTICAL &&
|
|
|
|
|
gtk_entry_get_alignment (entry) == 0.0)
|
|
|
|
|
gtk_entry_set_alignment (entry, 0.5);
|
|
|
|
|
else if (priv->orientation == GTK_ORIENTATION_HORIZONTAL &&
|
|
|
|
|
gtk_entry_get_alignment (entry) == 0.5)
|
|
|
|
|
gtk_entry_set_alignment (entry, 0.0);
|
|
|
|
|
|
2015-10-29 01:55:07 +00:00
|
|
|
|
update_node_ordering (spin);
|
|
|
|
|
|
2012-09-01 16:49:02 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin), "orientation");
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (spin));
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-08 03:04:40 +00:00
|
|
|
|
static gchar *
|
2016-08-10 10:29:01 +00:00
|
|
|
|
weed_out_neg_zero (gchar *str,
|
|
|
|
|
gint digits)
|
2016-06-08 03:04:40 +00:00
|
|
|
|
{
|
|
|
|
|
if (str[0] == '-')
|
|
|
|
|
{
|
|
|
|
|
gchar neg_zero[8];
|
2016-06-27 03:53:30 +00:00
|
|
|
|
g_snprintf (neg_zero, 8, "%0.*f", digits, -0.0);
|
2016-06-08 03:04:40 +00:00
|
|
|
|
if (strcmp (neg_zero, str) == 0)
|
|
|
|
|
memmove (str, str + 1, strlen (str) - 1);
|
|
|
|
|
}
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-02 23:14:04 +00:00
|
|
|
|
static gchar *
|
|
|
|
|
gtk_spin_button_format_for_value (GtkSpinButton *spin_button,
|
|
|
|
|
gdouble value)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
|
|
|
|
gchar *buf = g_strdup_printf ("%0.*f", priv->digits, value);
|
2001-05-18 22:31:02 +00:00
|
|
|
|
|
2016-06-08 03:04:40 +00:00
|
|
|
|
return weed_out_neg_zero (buf, priv->digits);
|
2001-05-18 22:31:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-25 14:42:18 +00:00
|
|
|
|
static void
|
2016-10-22 14:06:14 +00:00
|
|
|
|
gtk_spin_button_measure (GtkWidget *widget,
|
|
|
|
|
GtkOrientation orientation,
|
|
|
|
|
int for_size,
|
|
|
|
|
int *minimum,
|
|
|
|
|
int *natural,
|
|
|
|
|
int *minimum_baseline,
|
|
|
|
|
int *natural_baseline)
|
2016-01-25 14:42:18 +00:00
|
|
|
|
{
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (GTK_SPIN_BUTTON (widget));
|
|
|
|
|
|
|
|
|
|
gtk_widget_measure (priv->box, orientation, for_size,
|
|
|
|
|
minimum, natural,
|
|
|
|
|
minimum_baseline, natural_baseline);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-07-11 07:58:21 +00:00
|
|
|
|
gtk_spin_button_size_allocate (GtkWidget *widget,
|
|
|
|
|
const GtkAllocation *allocation,
|
|
|
|
|
int baseline,
|
|
|
|
|
GtkAllocation *out_clip)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (GTK_SPIN_BUTTON (widget));
|
2010-09-07 22:25:47 +00:00
|
|
|
|
|
2017-07-11 07:58:21 +00:00
|
|
|
|
gtk_widget_size_allocate (priv->box, allocation, baseline, out_clip);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
gtk_spin_button_focus_out (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventFocus *event)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkSpinButton *spin_button = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
|
|
if (gtk_editable_get_editable (GTK_EDITABLE (spin_button->priv->entry)))
|
|
|
|
|
gtk_spin_button_update (spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
|
return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->focus_out_event (widget, event);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-01-16 01:07:11 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_grab_notify (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gboolean was_grabbed)
|
2002-01-16 01:07:11 +00:00
|
|
|
|
{
|
2003-03-29 00:11:32 +00:00
|
|
|
|
GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
2002-01-16 01:07:11 +00:00
|
|
|
|
if (!was_grabbed)
|
2003-03-29 00:11:32 +00:00
|
|
|
|
{
|
2011-02-05 22:42:37 +00:00
|
|
|
|
if (gtk_spin_button_stop_spinning (spin))
|
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin));
|
2003-03-29 00:11:32 +00:00
|
|
|
|
}
|
2002-01-16 01:07:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-01-23 20:15:48 +00:00
|
|
|
|
static void
|
2010-12-13 12:46:21 +00:00
|
|
|
|
gtk_spin_button_state_flags_changed (GtkWidget *widget,
|
|
|
|
|
GtkStateFlags previous_state)
|
2002-01-23 20:15:48 +00:00
|
|
|
|
{
|
2003-03-29 00:11:32 +00:00
|
|
|
|
GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
2010-02-27 04:24:24 +00:00
|
|
|
|
if (!gtk_widget_is_sensitive (widget))
|
2003-03-29 00:11:32 +00:00
|
|
|
|
{
|
2011-02-05 22:42:37 +00:00
|
|
|
|
if (gtk_spin_button_stop_spinning (spin))
|
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin));
|
2003-03-29 00:11:32 +00:00
|
|
|
|
}
|
2002-01-23 20:15:48 +00:00
|
|
|
|
|
2015-12-02 03:36:31 +00:00
|
|
|
|
GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->state_flags_changed (widget, previous_state);
|
2013-04-23 17:12:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-18 20:02:24 +00:00
|
|
|
|
static gint
|
|
|
|
|
gtk_spin_button_scroll (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventScroll *event)
|
2000-02-18 20:02:24 +00:00
|
|
|
|
{
|
2002-01-30 22:29:03 +00:00
|
|
|
|
GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
2000-02-18 20:02:24 +00:00
|
|
|
|
|
|
|
|
|
if (event->direction == GDK_SCROLL_UP)
|
|
|
|
|
{
|
2010-03-01 03:21:41 +00:00
|
|
|
|
if (!gtk_widget_has_focus (widget))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_widget_grab_focus (widget);
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin, gtk_adjustment_get_step_increment (priv->adjustment));
|
2000-02-18 20:02:24 +00:00
|
|
|
|
}
|
|
|
|
|
else if (event->direction == GDK_SCROLL_DOWN)
|
|
|
|
|
{
|
2010-03-01 03:21:41 +00:00
|
|
|
|
if (!gtk_widget_has_focus (widget))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_widget_grab_focus (widget);
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin, -gtk_adjustment_get_step_increment (priv->adjustment));
|
2000-02-18 20:02:24 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
static gint
|
|
|
|
|
gtk_spin_button_motion_notify (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventMotion *event)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2002-01-30 22:29:03 +00:00
|
|
|
|
GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
2014-05-14 11:05:41 +00:00
|
|
|
|
if (gtk_gesture_is_recognized (priv->swipe_gesture))
|
2014-04-08 19:24:54 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
|
return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->motion_notify_event (widget, event);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
gtk_spin_button_timer (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
1998-12-15 07:32:11 +00:00
|
|
|
|
gboolean retval = FALSE;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
|
|
|
|
if (priv->timer)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2016-11-22 21:14:45 +00:00
|
|
|
|
if (priv->click_child == priv->up_button)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, priv->timer_step);
|
1998-06-24 07:59:05 +00:00
|
|
|
|
else
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, -priv->timer_step);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->need_timer)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
|
|
|
|
priv->need_timer = FALSE;
|
2013-07-09 20:44:04 +00:00
|
|
|
|
priv->timer = gdk_threads_add_timeout (TIMEOUT_REPEAT,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
(GSourceFunc) gtk_spin_button_timer,
|
|
|
|
|
(gpointer) spin_button);
|
2013-10-22 13:43:43 +00:00
|
|
|
|
g_source_set_name_by_id (priv->timer, "[gtk+] gtk_spin_button_timer");
|
2011-01-03 04:30:02 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (priv->climb_rate > 0.0 && priv->timer_step
|
2011-01-05 15:54:12 +00:00
|
|
|
|
< gtk_adjustment_get_page_increment (priv->adjustment))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
|
|
|
|
if (priv->timer_calls < MAX_TIMER_CALLS)
|
|
|
|
|
priv->timer_calls++;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
priv->timer_calls = 0;
|
|
|
|
|
priv->timer_step += priv->climb_rate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
retval = TRUE;
|
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
1998-12-15 07:32:11 +00:00
|
|
|
|
|
|
|
|
|
return retval;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1998-06-19 17:33:51 +00:00
|
|
|
|
gtk_spin_button_value_changed (GtkAdjustment *adjustment,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkSpinButton *spin_button)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2002-10-10 01:02:25 +00:00
|
|
|
|
gboolean return_val;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
return_val = FALSE;
|
2002-10-10 01:02:25 +00:00
|
|
|
|
g_signal_emit (spin_button, spinbutton_signals[OUTPUT], 0, &return_val);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
if (return_val == FALSE)
|
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
2000-11-27 17:47:52 +00:00
|
|
|
|
|
2002-10-10 01:02:25 +00:00
|
|
|
|
g_signal_emit (spin_button, spinbutton_signals[VALUE_CHANGED], 0);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
|
Reorder strange window hierarchy of the GtkSpinButton (#466000).
2008-05-25 Jan Arne Petersen <jpetersen@jpetersen.org>
* gtk/gtkentry.c: (gtk_entry_class_init), (get_text_area_size),
(gtk_entry_get_text_area_size), (gtk_entry_draw_frame):
* gtk/gtkentry.h:
* gtk/gtkspinbutton.c: (gtk_spin_button_class_init),
(gtk_spin_button_realize), (gtk_spin_button_size_allocate),
(gtk_spin_button_expose), (gtk_spin_button_draw_arrow),
(gtk_spin_button_enter_notify), (gtk_spin_button_leave_notify),
(gtk_spin_button_grab_notify), (gtk_spin_button_state_changed),
(start_spinning), (gtk_spin_button_button_release),
(gtk_spin_button_motion_notify), (gtk_spin_button_value_changed),
(gtk_spin_button_get_text_area_size), (gtk_spin_button_real_spin),
(gtk_spin_button_update): Reorder strange window hierarchy of the
GtkSpinButton (#466000).
svn path=/trunk/; revision=20147
2008-05-25 12:46:26 +00:00
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin_button));
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "value");
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
1998-03-11 06:11:52 +00:00
|
|
|
|
|
2002-02-08 00:02:52 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_real_change_value (GtkSpinButton *spin,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkScrollType scroll)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
2008-05-27 22:50:49 +00:00
|
|
|
|
gdouble old_value;
|
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
if (!gtk_editable_get_editable (GTK_EDITABLE (priv->entry)))
|
2012-01-05 01:09:06 +00:00
|
|
|
|
{
|
|
|
|
|
gtk_widget_error_bell (GTK_WIDGET (spin));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-27 22:50:49 +00:00
|
|
|
|
/* When the key binding is activated, there may be an outstanding
|
|
|
|
|
* value, so we first have to commit what is currently written in
|
|
|
|
|
* the spin buttons text entry. See #106574
|
|
|
|
|
*/
|
|
|
|
|
gtk_spin_button_update (spin);
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
old_value = gtk_adjustment_get_value (priv->adjustment);
|
2006-11-16 12:56:30 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
switch (scroll)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2002-09-24 10:39:23 +00:00
|
|
|
|
case GTK_SCROLL_STEP_BACKWARD:
|
|
|
|
|
case GTK_SCROLL_STEP_DOWN:
|
|
|
|
|
case GTK_SCROLL_STEP_LEFT:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin, -priv->timer_step);
|
|
|
|
|
|
|
|
|
|
if (priv->climb_rate > 0.0 && priv->timer_step
|
2011-01-05 15:54:12 +00:00
|
|
|
|
< gtk_adjustment_get_page_increment (priv->adjustment))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
|
|
|
|
if (priv->timer_calls < MAX_TIMER_CALLS)
|
|
|
|
|
priv->timer_calls++;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
priv->timer_calls = 0;
|
|
|
|
|
priv->timer_step += priv->climb_rate;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-09-24 10:39:23 +00:00
|
|
|
|
break;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
case GTK_SCROLL_STEP_FORWARD:
|
|
|
|
|
case GTK_SCROLL_STEP_UP:
|
|
|
|
|
case GTK_SCROLL_STEP_RIGHT:
|
2010-07-12 21:43:18 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin, priv->timer_step);
|
|
|
|
|
|
|
|
|
|
if (priv->climb_rate > 0.0 && priv->timer_step
|
2011-01-05 15:54:12 +00:00
|
|
|
|
< gtk_adjustment_get_page_increment (priv->adjustment))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
|
|
|
|
if (priv->timer_calls < MAX_TIMER_CALLS)
|
|
|
|
|
priv->timer_calls++;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
priv->timer_calls = 0;
|
|
|
|
|
priv->timer_step += priv->climb_rate;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-09-24 10:39:23 +00:00
|
|
|
|
break;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
case GTK_SCROLL_PAGE_BACKWARD:
|
|
|
|
|
case GTK_SCROLL_PAGE_DOWN:
|
|
|
|
|
case GTK_SCROLL_PAGE_LEFT:
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin, -gtk_adjustment_get_page_increment (priv->adjustment));
|
2002-09-24 10:39:23 +00:00
|
|
|
|
break;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
case GTK_SCROLL_PAGE_FORWARD:
|
|
|
|
|
case GTK_SCROLL_PAGE_UP:
|
|
|
|
|
case GTK_SCROLL_PAGE_RIGHT:
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin, gtk_adjustment_get_page_increment (priv->adjustment));
|
2002-09-24 10:39:23 +00:00
|
|
|
|
break;
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
case GTK_SCROLL_START:
|
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gdouble diff = gtk_adjustment_get_value (priv->adjustment) - gtk_adjustment_get_lower (priv->adjustment);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
if (diff > EPSILON)
|
|
|
|
|
gtk_spin_button_real_spin (spin, -diff);
|
|
|
|
|
break;
|
2002-09-24 10:39:23 +00:00
|
|
|
|
}
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
case GTK_SCROLL_END:
|
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gdouble diff = gtk_adjustment_get_upper (priv->adjustment) - gtk_adjustment_get_value (priv->adjustment);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
if (diff > EPSILON)
|
|
|
|
|
gtk_spin_button_real_spin (spin, diff);
|
|
|
|
|
break;
|
2002-09-24 10:39:23 +00:00
|
|
|
|
}
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
default:
|
|
|
|
|
g_warning ("Invalid scroll type %d for GtkSpinButton::change-value", scroll);
|
|
|
|
|
break;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2002-09-24 10:39:23 +00:00
|
|
|
|
gtk_spin_button_update (spin);
|
2006-11-16 12:56:30 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (gtk_adjustment_get_value (priv->adjustment) == old_value)
|
2006-11-16 12:56:30 +00:00
|
|
|
|
gtk_widget_error_bell (GTK_WIDGET (spin));
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-06-17 20:07:31 +00:00
|
|
|
|
static gint
|
|
|
|
|
gtk_spin_button_key_release (GtkWidget *widget,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GdkEventKey *event)
|
1998-06-17 20:07:31 +00:00
|
|
|
|
{
|
2002-01-30 22:29:03 +00:00
|
|
|
|
GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
2002-02-08 00:02:52 +00:00
|
|
|
|
|
|
|
|
|
/* We only get a release at the end of a key repeat run, so reset the timer_step */
|
2011-01-05 15:54:12 +00:00
|
|
|
|
priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->timer_calls = 0;
|
|
|
|
|
|
1998-06-17 20:07:31 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_snap (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble val)
|
1998-03-11 06:11:52 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
2001-03-19 21:06:38 +00:00
|
|
|
|
gdouble inc;
|
|
|
|
|
gdouble tmp;
|
2002-02-26 23:50:14 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
inc = gtk_adjustment_get_step_increment (priv->adjustment);
|
2002-06-12 19:42:48 +00:00
|
|
|
|
if (inc == 0)
|
|
|
|
|
return;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
tmp = (val - gtk_adjustment_get_lower (priv->adjustment)) / inc;
|
1998-03-11 06:11:52 +00:00
|
|
|
|
if (tmp - floor (tmp) < ceil (tmp) - tmp)
|
2011-01-05 15:54:12 +00:00
|
|
|
|
val = gtk_adjustment_get_lower (priv->adjustment) + floor (tmp) * inc;
|
1998-03-11 06:11:52 +00:00
|
|
|
|
else
|
2011-01-05 15:54:12 +00:00
|
|
|
|
val = gtk_adjustment_get_lower (priv->adjustment) + ceil (tmp) * inc;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
2008-05-20 17:29:34 +00:00
|
|
|
|
gtk_spin_button_set_value (spin_button, val);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-05-06 14:56:21 +00:00
|
|
|
|
gtk_spin_button_activate (GtkEntry *entry,
|
|
|
|
|
gpointer user_data)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2017-05-06 14:56:21 +00:00
|
|
|
|
GtkSpinButton *spin_button = user_data;
|
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
2002-09-24 08:57:57 +00:00
|
|
|
|
|
2017-05-06 14:56:21 +00:00
|
|
|
|
if (gtk_editable_get_editable (GTK_EDITABLE (priv->entry)))
|
|
|
|
|
gtk_spin_button_update (spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
static void
|
2001-10-03 21:50:58 +00:00
|
|
|
|
gtk_spin_button_insert_text (GtkEditable *editable,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
const gchar *new_text,
|
|
|
|
|
gint new_text_length,
|
|
|
|
|
gint *position)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
Make parent_class static.
Sun Nov 5 04:24:53 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcellrenderertextpixbuf.c: Make parent_class
static.
Tue Sep 19 10:54:22 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext*.[ch] gtk/gtkimmulticontext.[ch]
gtk/gtktextlayout.[ch] gtk/gtktextview.c gtk/gtkentry.c:
Add support for positioning the cursor within the preedit string.
Mon Sep 18 23:56:32 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextview.c: Check for bindings after passing
events to im context filter.
Mon Sep 18 11:50:51 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (add_preedit_attrs): Handle
empty attribute lists properly.
Sun Sep 17 10:08:16 2000 Owen Taylor <otaylor@redhat.com>
* gtk/queryimmodules.c (main): Return non-zero exit
status if errors were encountered querying any
modules.
Sat Sep 16 14:01:52 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtk.h: include gtkmodule.h gtkoldeditable.h,
don't include gtkthemes.h.
* gtk/testgtk.c gtk/testtext.c: Set environment variables
to point
* gtk/Makefile.am: Add new .c and .h files, build
gtk-query-immodules and use it to create a gtk.immodules
file for use of test programs.
* gtk/gtkpreview.c: remove extra blank line.
Sat Sep 16 13:21:04 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontextsimple.c (gtk_im_context_simple_add_table):
Add the ability to add extra tables beyond the default
one, and also the ability to have compose sequences
that are prefixes of other compose sequences.
* gtk/gtkimcontextsimple.c: Export a preedit string which
consists of possible candidates for keystrokes that have
been entered but not yet committed.
* gtk/gtkimcontext.[ch] gtk/immulticontext.[ch]
gtk/gtkimcontextsimple.[ch]: add gtk_im_context_reset()
* gtk/gtkmulticontext.[ch] (gtk_im_multicontext_append_menuitems):
Add a function to add input-method switching menu items
to a menu.
* gtk/gtkimmulticontext.[ch]: Properly handly set_client_window
when switching input methods.
* gtk/gtkimcontextsimple.[ch]: Change the format of
the compose table to allow compose tables of different
lengths / sequence.
Sat Sep 16 13:05:48 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmodule.[ch]: Support routines for loading
GtkIMContext implementations dynamically at runtime.
* gtk/queryimmodules.c: Program to query the available
input modules and write the results into a file.
* gtk/gtkrc.[ch] (gtk_rc_get_im_module_file): Add
extra config options "im_module_file" (cache file for
input method modules), and "im_module_path" - path
to look for modules when generating cache file.
This doesn't scale.
Sat Sep 16 13:09:06 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkthemes.[ch] gtk/gtkmodule.[ch]: Move most of the
generic code from gtkthemes into a new abstraction
GtkModule which has the logic for implementing
a loadable module which implements a number of
GObject types.
Sat Sep 16 13:07:13 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkeditable.[ch]: Convert GtkEditable from
a class into an interface
* gtk/gtkoldeditable.[ch]: Move the old editable
implementation into here, so legacy widgets can
still rely on the implemenation. GtkOldEditable
exports GtkEditable. Make selection handling
code use new text conversion functions (and
handle UTF-8 as a side-effect). Use GtkClipboard
for CLIPBOARD.
* gtk/gtktext.[ch] gtk/gtkcombo.c gtk/gtkspinbutton.c:
Adopt to match above changes.
* gtk/gtkentry.[ch]: Implement GtkEditable directly,
avoid GtkOldEditable implementation. Restructure
to reduce number of places that modify state directly.
Move to GtkBindingSet. Display the preedit string.
Queue recomputation of PangoLayout and scroll position
to improve effiency of doing complex changes naively.
Add a menu with cut/copy/paste and input method selection.
Thu Sep 14 22:11:05 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch]: Add gtk_text_layout_set_preedit_string()
to set preedit string and attributes; display preedit string by
inserting string and attributes at cursor when creating the
GtkTextLineDisplay.
* gtk/gtktextlayout.c: Move all conversions between byte
positions in PangoLayout and GtkTextIter into new functions
line_display_iter_to_index/index_to_iter that properly
handle the preedit string.
* gtk/gtktextmark.[ch]: Restore gtk_text_mark_get_name, modify
it to return const char * (eventually will end up
as GCONST char *, most likely.)
* gtk/gtktextview.[ch]: Handle the preedit string, call
gtk_im_context_reset() as necessary, add a menu to switch
input methods.
* gtk/gtktextlayout.[ch]: Remove useless
gtk_text_layout_get_log_attrs() function.
2000-11-12 03:43:24 +00:00
|
|
|
|
GtkSpinButton *spin = GTK_SPIN_BUTTON (editable);
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin->priv;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
GtkEntry *entry = GTK_ENTRY (priv->entry);
|
2010-09-11 02:12:42 +00:00
|
|
|
|
GtkEditableInterface *parent_editable_iface;
|
|
|
|
|
|
|
|
|
|
parent_editable_iface = g_type_interface_peek (gtk_spin_button_parent_class,
|
|
|
|
|
GTK_TYPE_EDITABLE);
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
|
|
|
|
if (priv->numeric)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
|
|
|
|
struct lconv *lc;
|
|
|
|
|
gboolean sign;
|
|
|
|
|
gint dotpos = -1;
|
|
|
|
|
gint i;
|
2010-06-19 21:01:14 +00:00
|
|
|
|
guint32 pos_sign;
|
|
|
|
|
guint32 neg_sign;
|
2000-12-05 20:53:30 +00:00
|
|
|
|
gint entry_length;
|
2009-03-27 05:22:23 +00:00
|
|
|
|
const gchar *entry_text;
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
|
2009-03-27 05:22:23 +00:00
|
|
|
|
entry_length = gtk_entry_get_text_length (entry);
|
|
|
|
|
entry_text = gtk_entry_get_text (entry);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
lc = localeconv ();
|
|
|
|
|
|
|
|
|
|
if (*(lc->negative_sign))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
neg_sign = *(lc->negative_sign);
|
|
|
|
|
else
|
|
|
|
|
neg_sign = '-';
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
if (*(lc->positive_sign))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
pos_sign = *(lc->positive_sign);
|
|
|
|
|
else
|
|
|
|
|
pos_sign = '+';
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
2008-04-03 12:44:29 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
/* Workaround for bug caused by some Windows application messing
|
|
|
|
|
* up the positive sign of the current locale, more specifically
|
|
|
|
|
* HKEY_CURRENT_USER\Control Panel\International\sPositiveSign.
|
|
|
|
|
* See bug #330743 and for instance
|
|
|
|
|
* http://www.msnewsgroups.net/group/microsoft.public.dotnet.languages.csharp/topic36024.aspx
|
|
|
|
|
*
|
|
|
|
|
* I don't know if the positive sign always gets bogusly set to
|
|
|
|
|
* a digit when the above Registry value is corrupted as
|
|
|
|
|
* described. (In my test case, it got set to "8", and in the
|
|
|
|
|
* bug report above it presumably was set ot "0".) Probably it
|
|
|
|
|
* might get set to almost anything? So how to distinguish a
|
|
|
|
|
* bogus value from some correct one for some locale? That is
|
|
|
|
|
* probably hard, but at least we should filter out the
|
|
|
|
|
* digits...
|
|
|
|
|
*/
|
|
|
|
|
if (pos_sign >= '0' && pos_sign <= '9')
|
2011-01-03 04:30:02 +00:00
|
|
|
|
pos_sign = '+';
|
2008-04-03 12:44:29 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
for (sign=0, i=0; i<entry_length; i++)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
if ((entry_text[i] == neg_sign) ||
|
|
|
|
|
(entry_text[i] == pos_sign))
|
|
|
|
|
{
|
|
|
|
|
sign = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
if (sign && !(*position))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
return;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
for (dotpos=-1, i=0; i<entry_length; i++)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
if (entry_text[i] == *(lc->decimal_point))
|
|
|
|
|
{
|
|
|
|
|
dotpos = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
if (dotpos > -1 && *position > dotpos &&
|
2011-01-03 04:30:02 +00:00
|
|
|
|
(gint)priv->digits - entry_length
|
|
|
|
|
+ dotpos - new_text_length + 1 < 0)
|
|
|
|
|
return;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < new_text_length; i++)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
|
|
|
|
if (new_text[i] == neg_sign || new_text[i] == pos_sign)
|
|
|
|
|
{
|
|
|
|
|
if (sign || (*position) || i)
|
|
|
|
|
return;
|
|
|
|
|
sign = TRUE;
|
|
|
|
|
}
|
|
|
|
|
else if (new_text[i] == *(lc->decimal_point))
|
|
|
|
|
{
|
|
|
|
|
if (!priv->digits || dotpos > -1 ||
|
|
|
|
|
(new_text_length - 1 - i + entry_length
|
|
|
|
|
- *position > (gint)priv->digits))
|
|
|
|
|
return;
|
|
|
|
|
dotpos = *position + i;
|
|
|
|
|
}
|
|
|
|
|
else if (new_text[i] < 0x30 || new_text[i] > 0x39)
|
|
|
|
|
return;
|
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-10-03 21:50:58 +00:00
|
|
|
|
parent_editable_iface->insert_text (editable, new_text,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
new_text_length, position);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_spin_button_real_spin (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble increment)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
2011-01-05 15:54:12 +00:00
|
|
|
|
GtkAdjustment *adjustment;
|
2001-03-19 21:06:38 +00:00
|
|
|
|
gdouble new_value = 0.0;
|
2006-01-30 17:35:49 +00:00
|
|
|
|
gboolean wrapped = FALSE;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
adjustment = priv->adjustment;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
new_value = gtk_adjustment_get_value (adjustment) + increment;
|
1998-06-24 07:59:05 +00:00
|
|
|
|
|
|
|
|
|
if (increment > 0)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->wrap)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (fabs (gtk_adjustment_get_value (adjustment) - gtk_adjustment_get_upper (adjustment)) < EPSILON)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
new_value = gtk_adjustment_get_lower (adjustment);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
wrapped = TRUE;
|
|
|
|
|
}
|
2011-01-05 15:54:12 +00:00
|
|
|
|
else if (new_value > gtk_adjustment_get_upper (adjustment))
|
|
|
|
|
new_value = gtk_adjustment_get_upper (adjustment);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
else
|
2011-01-05 15:54:12 +00:00
|
|
|
|
new_value = MIN (new_value, gtk_adjustment_get_upper (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
2011-01-03 04:30:02 +00:00
|
|
|
|
else if (increment < 0)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->wrap)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (fabs (gtk_adjustment_get_value (adjustment) - gtk_adjustment_get_lower (adjustment)) < EPSILON)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
new_value = gtk_adjustment_get_upper (adjustment);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
wrapped = TRUE;
|
|
|
|
|
}
|
2011-01-05 15:54:12 +00:00
|
|
|
|
else if (new_value < gtk_adjustment_get_lower (adjustment))
|
|
|
|
|
new_value = gtk_adjustment_get_lower (adjustment);
|
2011-01-03 04:30:02 +00:00
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
else
|
2011-01-05 15:54:12 +00:00
|
|
|
|
new_value = MAX (new_value, gtk_adjustment_get_lower (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (fabs (new_value - gtk_adjustment_get_value (adjustment)) > EPSILON)
|
|
|
|
|
gtk_adjustment_set_value (adjustment, new_value);
|
2002-02-20 23:36:28 +00:00
|
|
|
|
|
2006-01-30 17:35:49 +00:00
|
|
|
|
if (wrapped)
|
|
|
|
|
g_signal_emit (spin_button, spinbutton_signals[WRAPPED], 0);
|
|
|
|
|
|
Reorder strange window hierarchy of the GtkSpinButton (#466000).
2008-05-25 Jan Arne Petersen <jpetersen@jpetersen.org>
* gtk/gtkentry.c: (gtk_entry_class_init), (get_text_area_size),
(gtk_entry_get_text_area_size), (gtk_entry_draw_frame):
* gtk/gtkentry.h:
* gtk/gtkspinbutton.c: (gtk_spin_button_class_init),
(gtk_spin_button_realize), (gtk_spin_button_size_allocate),
(gtk_spin_button_expose), (gtk_spin_button_draw_arrow),
(gtk_spin_button_enter_notify), (gtk_spin_button_leave_notify),
(gtk_spin_button_grab_notify), (gtk_spin_button_state_changed),
(start_spinning), (gtk_spin_button_button_release),
(gtk_spin_button_motion_notify), (gtk_spin_button_value_changed),
(gtk_spin_button_get_text_area_size), (gtk_spin_button_real_spin),
(gtk_spin_button_update): Reorder strange window hierarchy of the
GtkSpinButton (#466000).
svn path=/trunk/; revision=20147
2008-05-25 12:46:26 +00:00
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin_button));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
static gint
|
|
|
|
|
gtk_spin_button_default_input (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble *new_val)
|
1999-02-28 16:04:47 +00:00
|
|
|
|
{
|
|
|
|
|
gchar *err = NULL;
|
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
*new_val = g_strtod (gtk_entry_get_text (GTK_ENTRY (spin_button->priv->entry)), &err);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
if (*err)
|
2000-09-07 18:07:59 +00:00
|
|
|
|
return GTK_INPUT_ERROR;
|
1999-02-28 16:04:47 +00:00
|
|
|
|
else
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-02 23:14:04 +00:00
|
|
|
|
static void
|
1999-02-28 16:04:47 +00:00
|
|
|
|
gtk_spin_button_default_output (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv = spin_button->priv;
|
2012-09-02 23:14:04 +00:00
|
|
|
|
gchar *buf = gtk_spin_button_format_for_value (spin_button,
|
|
|
|
|
gtk_adjustment_get_value (priv->adjustment));
|
1999-02-28 16:04:47 +00:00
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
|
if (strcmp (buf, gtk_entry_get_text (GTK_ENTRY (priv->entry))))
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (priv->entry), buf);
|
2012-09-02 23:14:04 +00:00
|
|
|
|
|
2001-06-20 04:13:37 +00:00
|
|
|
|
g_free (buf);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************
|
|
|
|
|
***********************************************************
|
|
|
|
|
*** Public interface ***
|
|
|
|
|
***********************************************************
|
|
|
|
|
***********************************************************/
|
|
|
|
|
|
|
|
|
|
|
2009-12-10 10:23:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_configure:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @adjustment: (allow-none): a #GtkAdjustment
|
|
|
|
|
* @climb_rate: the new climb rate
|
|
|
|
|
* @digits: the number of decimal places to display in the spin button
|
2009-12-10 10:23:40 +00:00
|
|
|
|
*
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* Changes the properties of an existing spin button. The adjustment,
|
|
|
|
|
* climb rate, and number of decimal places are all changed accordingly,
|
|
|
|
|
* after this function call.
|
2009-12-10 10:23:40 +00:00
|
|
|
|
*/
|
1998-06-19 17:33:51 +00:00
|
|
|
|
void
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_configure (GtkSpinButton *spin_button,
|
|
|
|
|
GtkAdjustment *adjustment,
|
|
|
|
|
gdouble climb_rate,
|
|
|
|
|
guint digits)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2014-08-12 11:44:34 +00:00
|
|
|
|
if (!adjustment)
|
2010-07-12 21:43:18 +00:00
|
|
|
|
adjustment = priv->adjustment;
|
1998-06-19 17:33:51 +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 (spin_button));
|
2015-05-10 06:34:33 +00:00
|
|
|
|
|
2014-08-12 11:44:34 +00:00
|
|
|
|
if (priv->adjustment != adjustment)
|
|
|
|
|
{
|
|
|
|
|
gtk_spin_button_unset_adjustment (spin_button);
|
|
|
|
|
|
|
|
|
|
priv->adjustment = adjustment;
|
|
|
|
|
g_object_ref_sink (adjustment);
|
|
|
|
|
g_signal_connect (adjustment, "value-changed",
|
|
|
|
|
G_CALLBACK (gtk_spin_button_value_changed),
|
|
|
|
|
spin_button);
|
|
|
|
|
g_signal_connect (adjustment, "changed",
|
|
|
|
|
G_CALLBACK (adjustment_changed_cb),
|
|
|
|
|
spin_button);
|
|
|
|
|
priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
|
|
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "adjustment");
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (spin_button));
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
if (priv->digits != digits)
|
2001-05-18 22:31:02 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->digits = digits;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "digits");
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->climb_rate != climb_rate)
|
2001-05-18 22:31:02 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->climb_rate = climb_rate;
|
2005-03-26 05:49:15 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "climb-rate");
|
2001-05-18 22:31:02 +00:00
|
|
|
|
}
|
2015-05-10 06:34:33 +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_thaw_notify (G_OBJECT (spin_button));
|
2001-05-18 22:31:02 +00:00
|
|
|
|
|
2015-05-10 06:34:33 +00:00
|
|
|
|
gtk_spin_button_value_changed (adjustment, spin_button);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_new:
|
|
|
|
|
* @adjustment: (allow-none): the #GtkAdjustment object that this spin
|
|
|
|
|
* button should use, or %NULL
|
|
|
|
|
* @climb_rate: specifies how much the spin button changes when an arrow
|
|
|
|
|
* is clicked on
|
|
|
|
|
* @digits: the number of decimal places to display
|
|
|
|
|
*
|
|
|
|
|
* Creates a new #GtkSpinButton.
|
|
|
|
|
*
|
|
|
|
|
* Returns: The new spin button as a #GtkWidget
|
|
|
|
|
*/
|
1998-06-19 17:33:51 +00:00
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_spin_button_new (GtkAdjustment *adjustment,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble climb_rate,
|
|
|
|
|
guint digits)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
|
if (adjustment)
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), NULL);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
2002-10-10 01:02:25 +00:00
|
|
|
|
spin = g_object_new (GTK_TYPE_SPIN_BUTTON, NULL);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
|
gtk_spin_button_configure (spin, adjustment, climb_rate, digits);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (spin);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_new_with_range:
|
|
|
|
|
* @min: Minimum allowable value
|
|
|
|
|
* @max: Maximum allowable value
|
|
|
|
|
* @step: Increment added or subtracted by spinning the widget
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* This is a convenience constructor that allows creation of a numeric
|
|
|
|
|
* #GtkSpinButton without manually creating an adjustment. The value is
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* initially set to the minimum value and a page increment of 10 * @step
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* is the default. The precision of the spin button is equivalent to the
|
|
|
|
|
* precision of @step.
|
|
|
|
|
*
|
|
|
|
|
* Note that the way in which the precision is derived works best if @step
|
|
|
|
|
* is a power of ten. If the resulting precision is not suitable for your
|
2005-07-06 03:45:13 +00:00
|
|
|
|
* needs, use gtk_spin_button_set_digits() to correct it.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: The new spin button as a #GtkWidget
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-03-30 03:35:47 +00:00
|
|
|
|
GtkWidget *
|
|
|
|
|
gtk_spin_button_new_with_range (gdouble min,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble max,
|
|
|
|
|
gdouble step)
|
2001-03-30 03:35:47 +00:00
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
GtkAdjustment *adjustment;
|
2001-03-30 03:35:47 +00:00
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
gint digits;
|
|
|
|
|
|
2004-11-14 01:25:35 +00:00
|
|
|
|
g_return_val_if_fail (min <= max, NULL);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
g_return_val_if_fail (step != 0.0, NULL);
|
|
|
|
|
|
2002-10-10 01:02:25 +00:00
|
|
|
|
spin = g_object_new (GTK_TYPE_SPIN_BUTTON, NULL);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
adjustment = gtk_adjustment_new (min, min, max, step, 10 * step, 0);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
|
2001-06-04 22:32:10 +00:00
|
|
|
|
if (fabs (step) >= 1.0 || step == 0.0)
|
2001-03-30 03:35:47 +00:00
|
|
|
|
digits = 0;
|
|
|
|
|
else {
|
|
|
|
|
digits = abs ((gint) floor (log10 (fabs (step))));
|
2001-06-20 04:13:37 +00:00
|
|
|
|
if (digits > MAX_DIGITS)
|
|
|
|
|
digits = MAX_DIGITS;
|
2001-03-30 03:35:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_configure (spin, adjustment, step, digits);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
|
|
|
|
|
gtk_spin_button_set_numeric (spin, TRUE);
|
|
|
|
|
|
|
|
|
|
return GTK_WIDGET (spin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_adjustment:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @adjustment: a #GtkAdjustment to replace the existing adjustment
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* Replaces the #GtkAdjustment associated with @spin_button.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
1998-02-25 22:03:10 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_adjustment (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkAdjustment *adjustment)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2014-08-12 15:45:53 +00:00
|
|
|
|
if (!adjustment)
|
|
|
|
|
adjustment = gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
|
|
|
|
|
|
2014-08-12 11:44:34 +00:00
|
|
|
|
gtk_spin_button_configure (spin_button,
|
|
|
|
|
adjustment,
|
|
|
|
|
priv->climb_rate,
|
|
|
|
|
priv->digits);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_adjustment:
|
2005-06-10 04:45:40 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* Get the adjustment associated with a #GtkSpinButton
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: (transfer none): the #GtkAdjustment of @spin_button
|
2001-03-30 03:35:47 +00:00
|
|
|
|
**/
|
1998-02-25 22:03:10 +00:00
|
|
|
|
GtkAdjustment *
|
|
|
|
|
gtk_spin_button_get_adjustment (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), NULL);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
return spin_button->priv->adjustment;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_digits:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* @digits: the number of digits after the decimal point to be displayed for the spin button’s value
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2001-06-20 04:13:37 +00:00
|
|
|
|
* Set the precision to be displayed by @spin_button. Up to 20 digit precision
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* is allowed.
|
|
|
|
|
**/
|
1998-02-25 22:03:10 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_digits (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
guint digits)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->digits != digits)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->digits = digits;
|
|
|
|
|
gtk_spin_button_value_changed (priv->adjustment, spin_button);
|
2001-05-18 22:31:02 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "digits");
|
2011-01-03 04:30:02 +00:00
|
|
|
|
|
2001-03-08 01:55:28 +00:00
|
|
|
|
/* since lower/upper may have changed */
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (spin_button));
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_digits:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
|
|
|
|
* Fetches the precision of @spin_button. See gtk_spin_button_set_digits().
|
|
|
|
|
*
|
|
|
|
|
* Returns: the current precision
|
|
|
|
|
**/
|
|
|
|
|
guint
|
|
|
|
|
gtk_spin_button_get_digits (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
return spin_button->priv->digits;
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_increments:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @step: increment applied for a button 1 press.
|
|
|
|
|
* @page: increment applied for a button 2 press.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the step and page increments for spin_button. This affects how
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* quickly the value changes when the spin button’s arrows are activated.
|
2001-03-30 03:35:47 +00:00
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_increments (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble step,
|
|
|
|
|
gdouble page)
|
2001-03-30 03:35:47 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_adjustment_configure (priv->adjustment,
|
|
|
|
|
gtk_adjustment_get_value (priv->adjustment),
|
|
|
|
|
gtk_adjustment_get_lower (priv->adjustment),
|
|
|
|
|
gtk_adjustment_get_upper (priv->adjustment),
|
|
|
|
|
step,
|
|
|
|
|
page,
|
|
|
|
|
gtk_adjustment_get_page_size (priv->adjustment));
|
2001-03-30 03:35:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_increments:
|
2001-09-08 06:24:46 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2011-01-18 09:10:30 +00:00
|
|
|
|
* @step: (out) (allow-none): location to store step increment, or %NULL
|
|
|
|
|
* @page: (out) (allow-none): location to store page increment, or %NULL
|
2001-06-24 15:34:48 +00:00
|
|
|
|
*
|
|
|
|
|
* Gets the current step and page the increments used by @spin_button. See
|
|
|
|
|
* gtk_spin_button_set_increments().
|
|
|
|
|
**/
|
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_get_increments (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble *step,
|
|
|
|
|
gdouble *page)
|
2001-06-24 15:34:48 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
if (step)
|
2011-01-05 15:54:12 +00:00
|
|
|
|
*step = gtk_adjustment_get_step_increment (priv->adjustment);
|
2001-06-24 15:34:48 +00:00
|
|
|
|
if (page)
|
2011-01-05 15:54:12 +00:00
|
|
|
|
*page = gtk_adjustment_get_page_increment (priv->adjustment);
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_range:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @min: minimum allowable value
|
|
|
|
|
* @max: maximum allowable value
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the minimum and maximum allowable values for @spin_button.
|
2011-11-14 09:59:10 +00:00
|
|
|
|
*
|
|
|
|
|
* If the current value is outside this range, it will be adjusted
|
|
|
|
|
* to fit within the range, otherwise it will remain unchanged.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-03-30 03:35:47 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_range (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble min,
|
|
|
|
|
gdouble max)
|
2001-03-30 03:35:47 +00:00
|
|
|
|
{
|
2011-01-04 02:51:58 +00:00
|
|
|
|
GtkAdjustment *adjustment;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2011-01-04 02:51:58 +00:00
|
|
|
|
adjustment = spin_button->priv->adjustment;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_adjustment_configure (adjustment,
|
|
|
|
|
CLAMP (gtk_adjustment_get_value (adjustment), min, max),
|
|
|
|
|
min,
|
|
|
|
|
max,
|
|
|
|
|
gtk_adjustment_get_step_increment (adjustment),
|
|
|
|
|
gtk_adjustment_get_page_increment (adjustment),
|
|
|
|
|
gtk_adjustment_get_page_size (adjustment));
|
2001-03-30 03:35:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_range:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2011-01-18 09:10:30 +00:00
|
|
|
|
* @min: (out) (allow-none): location to store minimum allowed value, or %NULL
|
|
|
|
|
* @max: (out) (allow-none): location to store maximum allowed value, or %NULL
|
2001-06-24 15:34:48 +00:00
|
|
|
|
*
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* Gets the range allowed for @spin_button.
|
|
|
|
|
* See gtk_spin_button_set_range().
|
|
|
|
|
*/
|
2001-06-24 15:34:48 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_get_range (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gdouble *min,
|
|
|
|
|
gdouble *max)
|
2001-06-24 15:34:48 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
if (min)
|
2011-01-05 15:54:12 +00:00
|
|
|
|
*min = gtk_adjustment_get_lower (priv->adjustment);
|
2001-06-24 15:34:48 +00:00
|
|
|
|
if (max)
|
2011-01-05 15:54:12 +00:00
|
|
|
|
*max = gtk_adjustment_get_upper (priv->adjustment);
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
2001-06-05 20:07:02 +00:00
|
|
|
|
* gtk_spin_button_get_value:
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2001-06-05 20:07:02 +00:00
|
|
|
|
* Get the value in the @spin_button.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the value of @spin_button
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-03-19 21:06:38 +00:00
|
|
|
|
gdouble
|
2001-06-05 20:07:02 +00:00
|
|
|
|
gtk_spin_button_get_value (GtkSpinButton *spin_button)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0.0);
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
return gtk_adjustment_get_value (spin_button->priv->adjustment);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_value_as_int:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* Get the value @spin_button represented as an integer.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the value of @spin_button
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
1998-02-25 22:03:10 +00:00
|
|
|
|
gint
|
|
|
|
|
gtk_spin_button_get_value_as_int (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2001-03-19 21:06:38 +00:00
|
|
|
|
gdouble val;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
val = gtk_adjustment_get_value (priv->adjustment);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
if (val - floor (val) < ceil (val) - val)
|
|
|
|
|
return floor (val);
|
|
|
|
|
else
|
|
|
|
|
return ceil (val);
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_value:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @value: the new value
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the value of @spin_button.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_value (GtkSpinButton *spin_button,
|
|
|
|
|
gdouble value)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (fabs (value - gtk_adjustment_get_value (priv->adjustment)) > EPSILON)
|
2010-07-12 21:43:18 +00:00
|
|
|
|
gtk_adjustment_set_value (priv->adjustment, value);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
1999-02-28 16:04:47 +00:00
|
|
|
|
gint return_val = FALSE;
|
2002-10-10 01:02:25 +00:00
|
|
|
|
g_signal_emit (spin_button, spinbutton_signals[OUTPUT], 0, &return_val);
|
2014-06-09 13:41:09 +00:00
|
|
|
|
if (!return_val)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_update_policy:
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* @policy: a #GtkSpinButtonUpdatePolicy value
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the update behavior of a spin button.
|
2012-02-29 17:19:55 +00:00
|
|
|
|
* This determines whether the spin button is always updated
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* or only when a valid value is set.
|
|
|
|
|
*/
|
1998-02-25 22:03:10 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_update_policy (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkSpinButtonUpdatePolicy policy)
|
1998-02-25 22:03:10 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
|
|
|
|
if (priv->update_policy != policy)
|
2001-05-18 22:31:02 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->update_policy = policy;
|
2005-03-26 05:49:15 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "update-policy");
|
2001-05-18 22:31:02 +00:00
|
|
|
|
}
|
1998-03-11 06:11:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_update_policy:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* Gets the update behavior of a spin button.
|
|
|
|
|
* See gtk_spin_button_set_update_policy().
|
2001-06-24 15:34:48 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: the current update policy
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-06-24 15:34:48 +00:00
|
|
|
|
GtkSpinButtonUpdatePolicy
|
|
|
|
|
gtk_spin_button_get_update_policy (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), GTK_UPDATE_ALWAYS);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
return spin_button->priv->update_policy;
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_numeric:
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @numeric: flag indicating if only numeric entry is allowed
|
|
|
|
|
*
|
|
|
|
|
* Sets the flag that determines if non-numeric text can be typed
|
|
|
|
|
* into the spin button.
|
|
|
|
|
*/
|
1998-03-11 06:11:52 +00:00
|
|
|
|
void
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_set_numeric (GtkSpinButton *spin_button,
|
|
|
|
|
gboolean numeric)
|
1998-03-11 06:11:52 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2002-01-28 18:52:49 +00:00
|
|
|
|
numeric = numeric != FALSE;
|
2001-05-18 22:31:02 +00:00
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->numeric != numeric)
|
2002-01-28 18:52:49 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->numeric = numeric;
|
2002-01-28 18:52:49 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "numeric");
|
|
|
|
|
}
|
1998-03-11 06:11:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_numeric:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
|
|
|
|
* Returns whether non-numeric text can be typed into the spin button.
|
|
|
|
|
* See gtk_spin_button_set_numeric().
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if only numeric text can be entered
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-06-24 15:34:48 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_spin_button_get_numeric (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), FALSE);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
return spin_button->priv->numeric;
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_wrap:
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @wrap: a flag indicating if wrapping behavior is performed
|
|
|
|
|
*
|
|
|
|
|
* Sets the flag that determines if a spin button value wraps
|
|
|
|
|
* around to the opposite limit when the upper or lower limit
|
|
|
|
|
* of the range is exceeded.
|
|
|
|
|
*/
|
1998-03-29 20:40:10 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_wrap (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gboolean wrap)
|
1998-03-29 20:40:10 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
|
wrap = wrap != FALSE;
|
2002-01-28 18:52:49 +00:00
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->wrap != wrap)
|
2002-01-28 18:52:49 +00:00
|
|
|
|
{
|
2011-01-03 04:30:02 +00:00
|
|
|
|
priv->wrap = wrap;
|
|
|
|
|
|
2002-01-28 18:52:49 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "wrap");
|
|
|
|
|
}
|
1998-03-29 20:40:10 +00:00
|
|
|
|
}
|
1998-06-13 08:56:27 +00:00
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_wrap:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* Returns whether the spin button’s value wraps around to the
|
2001-06-24 15:34:48 +00:00
|
|
|
|
* opposite limit when the upper or lower limit of the range is
|
|
|
|
|
* exceeded. See gtk_spin_button_set_wrap().
|
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if the spin button wraps around
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-06-24 15:34:48 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_spin_button_get_wrap (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), FALSE);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
return spin_button->priv->wrap;
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_snap_to_ticks:
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @snap_to_ticks: a flag indicating if invalid values should be corrected
|
|
|
|
|
*
|
|
|
|
|
* Sets the policy as to whether values are corrected to the
|
|
|
|
|
* nearest step increment when a spin button is activated after
|
|
|
|
|
* providing an invalid value.
|
|
|
|
|
*/
|
1998-06-17 20:07:31 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_snap_to_ticks (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gboolean snap_to_ticks)
|
1998-06-17 20:07:31 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
1998-06-17 20:07:31 +00:00
|
|
|
|
guint new_val;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
1998-06-17 20:07:31 +00:00
|
|
|
|
new_val = (snap_to_ticks != 0);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (new_val != priv->snap_to_ticks)
|
1998-06-17 20:07:31 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv->snap_to_ticks = new_val;
|
2017-05-04 16:31:41 +00:00
|
|
|
|
if (new_val && gtk_editable_get_editable (GTK_EDITABLE (priv->entry)))
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_update (spin_button);
|
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "snap-to-ticks");
|
1998-06-17 20:07:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
2001-06-24 15:34:48 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_snap_to_ticks:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* Returns whether the values are corrected to the nearest step.
|
|
|
|
|
* See gtk_spin_button_set_snap_to_ticks().
|
2001-06-24 15:34:48 +00:00
|
|
|
|
*
|
2014-02-19 23:49:43 +00:00
|
|
|
|
* Returns: %TRUE if values are snapped to the nearest step
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
2001-06-24 15:34:48 +00:00
|
|
|
|
gboolean
|
|
|
|
|
gtk_spin_button_get_snap_to_ticks (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), FALSE);
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
return spin_button->priv->snap_to_ticks;
|
2001-06-24 15:34:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_spin:
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @direction: a #GtkSpinType indicating the direction to spin
|
|
|
|
|
* @increment: step increment to apply in the specified direction
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* Increment or decrement a spin button’s value in a specified
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* direction by a specified amount.
|
|
|
|
|
*/
|
1998-06-19 17:33:51 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_spin (GtkSpinButton *spin_button,
|
2011-01-03 04:30:02 +00:00
|
|
|
|
GtkSpinType direction,
|
|
|
|
|
gdouble increment)
|
1998-06-19 17:33:51 +00:00
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2011-01-05 15:54:12 +00:00
|
|
|
|
GtkAdjustment *adjustment;
|
2001-03-19 21:06:38 +00:00
|
|
|
|
gdouble diff;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
2010-07-12 21:43:18 +00:00
|
|
|
|
|
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
adjustment = priv->adjustment;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
|
/* for compatibility with the 1.0.x version of this function */
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (increment != 0 && increment != gtk_adjustment_get_step_increment (adjustment) &&
|
1998-06-25 07:43:27 +00:00
|
|
|
|
(direction == GTK_SPIN_STEP_FORWARD ||
|
|
|
|
|
direction == GTK_SPIN_STEP_BACKWARD))
|
1998-06-24 07:59:05 +00:00
|
|
|
|
{
|
|
|
|
|
if (direction == GTK_SPIN_STEP_BACKWARD && increment > 0)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
increment = -increment;
|
1998-06-24 07:59:05 +00:00
|
|
|
|
direction = GTK_SPIN_USER_DEFINED;
|
|
|
|
|
}
|
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
switch (direction)
|
|
|
|
|
{
|
|
|
|
|
case GTK_SPIN_STEP_FORWARD:
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, gtk_adjustment_get_step_increment (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_SPIN_STEP_BACKWARD:
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, -gtk_adjustment_get_step_increment (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_SPIN_PAGE_FORWARD:
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, gtk_adjustment_get_page_increment (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_SPIN_PAGE_BACKWARD:
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, -gtk_adjustment_get_page_increment (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_SPIN_HOME:
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
diff = gtk_adjustment_get_value (adjustment) - gtk_adjustment_get_lower (adjustment);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
if (diff > EPSILON)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, -diff);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_SPIN_END:
|
|
|
|
|
|
2011-01-05 15:54:12 +00:00
|
|
|
|
diff = gtk_adjustment_get_upper (adjustment) - gtk_adjustment_get_value (adjustment);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
if (diff > EPSILON)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, diff);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GTK_SPIN_USER_DEFINED:
|
|
|
|
|
|
|
|
|
|
if (increment != 0)
|
2011-01-03 04:30:02 +00:00
|
|
|
|
gtk_spin_button_real_spin (spin_button, increment);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-02-28 16:04:47 +00:00
|
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_update:
|
2011-01-03 04:30:02 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
2001-03-30 03:35:47 +00:00
|
|
|
|
* Manually force an update of the spin button.
|
2011-01-03 04:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
1999-02-28 16:04:47 +00:00
|
|
|
|
gtk_spin_button_update (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
2010-08-26 17:15:37 +00:00
|
|
|
|
GtkSpinButtonPrivate *priv;
|
2001-03-19 21:06:38 +00:00
|
|
|
|
gdouble val;
|
1999-02-28 16:04:47 +00:00
|
|
|
|
gint error = 0;
|
|
|
|
|
gint return_val;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
priv = spin_button->priv;
|
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
|
return_val = FALSE;
|
2002-10-10 01:02:25 +00:00
|
|
|
|
g_signal_emit (spin_button, spinbutton_signals[INPUT], 0, &val, &return_val);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
if (return_val == FALSE)
|
|
|
|
|
{
|
|
|
|
|
return_val = gtk_spin_button_default_input (spin_button, &val);
|
2000-09-07 18:07:59 +00:00
|
|
|
|
error = (return_val == GTK_INPUT_ERROR);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
}
|
2000-09-07 18:07:59 +00:00
|
|
|
|
else if (return_val == GTK_INPUT_ERROR)
|
1999-02-28 16:04:47 +00:00
|
|
|
|
error = 1;
|
|
|
|
|
|
Reorder strange window hierarchy of the GtkSpinButton (#466000).
2008-05-25 Jan Arne Petersen <jpetersen@jpetersen.org>
* gtk/gtkentry.c: (gtk_entry_class_init), (get_text_area_size),
(gtk_entry_get_text_area_size), (gtk_entry_draw_frame):
* gtk/gtkentry.h:
* gtk/gtkspinbutton.c: (gtk_spin_button_class_init),
(gtk_spin_button_realize), (gtk_spin_button_size_allocate),
(gtk_spin_button_expose), (gtk_spin_button_draw_arrow),
(gtk_spin_button_enter_notify), (gtk_spin_button_leave_notify),
(gtk_spin_button_grab_notify), (gtk_spin_button_state_changed),
(start_spinning), (gtk_spin_button_button_release),
(gtk_spin_button_motion_notify), (gtk_spin_button_value_changed),
(gtk_spin_button_get_text_area_size), (gtk_spin_button_real_spin),
(gtk_spin_button_update): Reorder strange window hierarchy of the
GtkSpinButton (#466000).
svn path=/trunk/; revision=20147
2008-05-25 12:46:26 +00:00
|
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin_button));
|
2002-02-20 23:36:28 +00:00
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->update_policy == GTK_UPDATE_ALWAYS)
|
1999-02-28 16:04:47 +00:00
|
|
|
|
{
|
2011-01-05 15:54:12 +00:00
|
|
|
|
if (val < gtk_adjustment_get_lower (priv->adjustment))
|
|
|
|
|
val = gtk_adjustment_get_lower (priv->adjustment);
|
|
|
|
|
else if (val > gtk_adjustment_get_upper (priv->adjustment))
|
|
|
|
|
val = gtk_adjustment_get_upper (priv->adjustment);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
}
|
2011-01-03 04:30:02 +00:00
|
|
|
|
else if ((priv->update_policy == GTK_UPDATE_IF_VALID) &&
|
|
|
|
|
(error ||
|
2011-01-05 15:54:12 +00:00
|
|
|
|
val < gtk_adjustment_get_lower (priv->adjustment) ||
|
|
|
|
|
val > gtk_adjustment_get_upper (priv->adjustment)))
|
1999-02-28 16:04:47 +00:00
|
|
|
|
{
|
2010-07-12 21:43:18 +00:00
|
|
|
|
gtk_spin_button_value_changed (priv->adjustment, spin_button);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-07-12 21:43:18 +00:00
|
|
|
|
if (priv->snap_to_ticks)
|
1999-02-28 16:04:47 +00:00
|
|
|
|
gtk_spin_button_snap (spin_button, val);
|
|
|
|
|
else
|
2008-05-20 17:29:34 +00:00
|
|
|
|
gtk_spin_button_set_value (spin_button, val);
|
1999-02-28 16:04:47 +00:00
|
|
|
|
}
|
2017-05-04 18:48:50 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_text:
|
2017-05-22 11:21:09 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
|
|
|
|
* Returns: (transfer none): The current text shown in the entry area of @spin_button.
|
2017-05-04 18:48:50 +00:00
|
|
|
|
*
|
2017-05-22 11:21:09 +00:00
|
|
|
|
* Since: 3.92
|
2017-05-04 18:48:50 +00:00
|
|
|
|
*/
|
|
|
|
|
const char *
|
|
|
|
|
gtk_spin_button_get_text (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (spin_button);
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), NULL);
|
|
|
|
|
|
|
|
|
|
return gtk_entry_get_text (GTK_ENTRY (priv->entry));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_text:
|
2017-05-22 11:21:09 +00:00
|
|
|
|
* @spin_button: a #GtkSpinButton
|
2017-07-05 12:13:41 +00:00
|
|
|
|
* @text: The text to set
|
2017-05-04 18:48:50 +00:00
|
|
|
|
*
|
2017-05-22 11:21:09 +00:00
|
|
|
|
* Sets the current text of the spinbutton. Note that setting this will not change
|
|
|
|
|
* the value of the adjustment @spin_button.
|
2017-05-04 18:48:50 +00:00
|
|
|
|
*
|
2017-05-22 11:21:09 +00:00
|
|
|
|
* Since: 3.92
|
2017-05-04 18:48:50 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_text (GtkSpinButton *spin_button,
|
|
|
|
|
const char *text)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (spin_button);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (priv->entry), text);
|
|
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "text");
|
|
|
|
|
}
|
2017-05-06 15:05:58 +00:00
|
|
|
|
|
2017-05-22 11:21:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_max_width_chars:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
|
|
|
|
* Retrieves the desired maximum width of @spin_button, in characters.
|
|
|
|
|
* Note that this only applies to the entry area of @spin_button, not the
|
|
|
|
|
* spin button. This is especially important for horizontal spinbuttons.
|
|
|
|
|
*
|
|
|
|
|
* See also #GtkEntry:max-width-chars
|
|
|
|
|
*
|
|
|
|
|
* Returns: the maximum width of the spin button, in characters
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.92
|
|
|
|
|
*/
|
2017-05-06 15:05:58 +00:00
|
|
|
|
int
|
|
|
|
|
gtk_spin_button_get_max_width_chars (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (spin_button);
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), -1);
|
|
|
|
|
|
2017-06-16 12:33:58 +00:00
|
|
|
|
return gtk_entry_get_max_width_chars (GTK_ENTRY (priv->entry));
|
2017-05-06 15:05:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-22 11:21:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_max_width_chars:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @max_width_chars: new desired maximum width in chars
|
|
|
|
|
*
|
|
|
|
|
* Sets the desired maximum width of @spin_button, in characters.
|
|
|
|
|
* Note that this only applies to the entry area of @spin_button, not the
|
|
|
|
|
* spin button. This is especially important for horizontal spinbuttons.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.92
|
|
|
|
|
*/
|
2017-05-06 15:05:58 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_max_width_chars (GtkSpinButton *spin_button,
|
|
|
|
|
int max_width_chars)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (spin_button);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2017-06-16 12:33:58 +00:00
|
|
|
|
if (max_width_chars != gtk_entry_get_max_width_chars (GTK_ENTRY (priv->entry)))
|
|
|
|
|
{
|
|
|
|
|
gtk_entry_set_max_width_chars (GTK_ENTRY (priv->entry), max_width_chars);
|
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "max-width-chars");
|
|
|
|
|
}
|
2017-05-06 15:05:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-22 11:21:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_get_width_chars:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
*
|
|
|
|
|
* Get the value set by gtk_spin_button_set_width_chars(). Note that this
|
|
|
|
|
* value only applies to the entry area of @spin_button.
|
|
|
|
|
*
|
|
|
|
|
* Returns: The number of characters to request space for in the entry
|
|
|
|
|
* area of @spin_button
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.92
|
|
|
|
|
*/
|
2017-05-06 15:05:58 +00:00
|
|
|
|
int
|
|
|
|
|
gtk_spin_button_get_width_chars (GtkSpinButton *spin_button)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (spin_button);
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), -1);
|
|
|
|
|
|
|
|
|
|
return gtk_entry_get_width_chars (GTK_ENTRY (priv->entry));
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-22 11:21:09 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_spin_button_set_width_chars:
|
|
|
|
|
* @spin_button: a #GtkSpinButton
|
|
|
|
|
* @width_chars: desired width in characters
|
|
|
|
|
*
|
|
|
|
|
* Changes the size request of the entry area of @spin_button
|
|
|
|
|
* to be about the right size for @width_chars characters.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.92
|
|
|
|
|
*/
|
2017-05-06 15:05:58 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_spin_button_set_width_chars (GtkSpinButton *spin_button,
|
|
|
|
|
int width_chars)
|
|
|
|
|
{
|
|
|
|
|
GtkSpinButtonPrivate *priv = gtk_spin_button_get_instance_private (spin_button);
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
2017-06-16 12:33:58 +00:00
|
|
|
|
if (width_chars != gtk_entry_get_width_chars (GTK_ENTRY (priv->entry)))
|
|
|
|
|
{
|
|
|
|
|
gtk_entry_set_width_chars (GTK_ENTRY (priv->entry), width_chars);
|
|
|
|
|
g_object_notify (G_OBJECT (spin_button), "width-chars");
|
|
|
|
|
}
|
2017-05-06 15:05:58 +00:00
|
|
|
|
}
|