]> Pileus Git - ~andy/gtk/blob - gtk/gtkspinbutton.c
[GI] Add missing (out) and (array) annotations
[~andy/gtk] / gtk / gtkspinbutton.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * GtkSpinButton widget for GTK+
5  * Copyright (C) 1998 Lars Hamann and Stefan Jeske
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
25  * file for a list of people on the GTK+ Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
28  */
29
30 #include "config.h"
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <math.h>
35 #include <string.h>
36 #include <locale.h>
37
38 #include "gtkbindings.h"
39 #include "gtkspinbutton.h"
40 #include "gtkentryprivate.h"
41 #include "gtkmainprivate.h"
42 #include "gtkmarshalers.h"
43 #include "gtksettings.h"
44 #include "gtkprivate.h"
45 #include "gtkintl.h"
46 #include "gtktypebuiltins.h"
47
48 #define MIN_SPIN_BUTTON_WIDTH 30
49 #define MAX_TIMER_CALLS       5
50 #define EPSILON               1e-10
51 #define MAX_DIGITS            20
52 #define MIN_ARROW_WIDTH       6
53
54
55 /**
56  * SECTION:gtkspinbutton
57  * @Title: GtkSpinButton
58  * @Short_description: Retrieve an integer or floating-point number from
59  *     the user
60  * @See_also: #GtkEntry
61  *
62  * A #GtkSpinButton is an ideal way to allow the user to set the value of
63  * some attribute. Rather than having to directly type a number into a
64  * #GtkEntry, GtkSpinButton allows the user to click on one of two arrows
65  * to increment or decrement the displayed value. A value can still be
66  * typed in, with the bonus that it can be checked to ensure it is in a
67  * given range.
68  *
69  * The main properties of a GtkSpinButton are through an adjustment.
70  * See the #GtkAdjustment section for more details about an adjustment's
71  * properties.
72  *
73  * <example>
74  * <title>Using a GtkSpinButton to get an integer</title>
75  * <programlisting>
76  * /&ast; Provides a function to retrieve an integer value from a
77  *  &ast; GtkSpinButton and creates a spin button to model percentage
78  *  &ast; values.
79  *  &ast;/
80  *
81  * gint
82  * grab_int_value (GtkSpinButton *button,
83  *                 gpointer       user_data)
84  * {
85  *   return gtk_spin_button_get_value_as_int (button);
86  * }
87  *
88  * void
89  * create_integer_spin_button (void)
90  * {
91  *
92  *   GtkWidget *window, *button;
93  *   GtkAdjustment *adjustment;
94  *
95  *   adjustment = gtk_adjustment_new (50.0, 0.0, 100.0, 1.0, 5.0, 0.0);
96  *
97  *   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
98  *   gtk_container_set_border_width (GTK_CONTAINER (window), 5);
99  *
100  *   /&ast; creates the spinbutton, with no decimal places &ast;/
101  *   button = gtk_spin_button_new (adjustment, 1.0, 0);
102  *   gtk_container_add (GTK_CONTAINER (window), button);
103  *
104  *   gtk_widget_show_all (window);
105  * }
106  * </programlisting>
107  * </example>
108  *
109  * <example>
110  * <title>Using a GtkSpinButton to get a floating point value</title>
111  * <programlisting>
112  * /&ast; Provides a function to retrieve a floating point value from a
113  *  &ast; GtkSpinButton, and creates a high precision spin button.
114  *  &ast;/
115  *
116  * gfloat
117  * grab_float_value (GtkSpinButton *button,
118  *                   gpointer       user_data)
119  * {
120  *   return gtk_spin_button_get_value (button);
121  * }
122  *
123  * void
124  * create_floating_spin_button (void)
125  * {
126  *   GtkWidget *window, *button;
127  *   GtkAdjustment *adjustment;
128  *
129  *   adjustment = gtk_adjustment_new (2.500, 0.0, 5.0, 0.001, 0.1, 0.0);
130  *
131  *   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
132  *   gtk_container_set_border_width (GTK_CONTAINER (window), 5);
133  *
134  *   /&ast; creates the spinbutton, with three decimal places &ast;/
135  *   button = gtk_spin_button_new (adjustment, 0.001, 3);
136  *   gtk_container_add (GTK_CONTAINER (window), button);
137  *
138  *   gtk_widget_show_all (window);
139  * }
140  * </programlisting>
141  * </example>
142  */
143
144 struct _GtkSpinButtonPrivate
145 {
146   GtkSpinButtonUpdatePolicy update_policy;
147   GtkAdjustment *adjustment;
148
149   GdkWindow     *panel;
150
151   guint32        timer;
152
153   gdouble        climb_rate;
154   gdouble        timer_step;
155
156   guint          button        : 2;
157   guint          click_child   : 2; /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
158   guint          digits        : 10;
159   guint          in_child      : 2;
160   guint          need_timer    : 1;
161   guint          numeric       : 1;
162   guint          snap_to_ticks : 1;
163   guint          timer_calls   : 3;
164   guint          wrap          : 1;
165 };
166
167 enum {
168   PROP_0,
169   PROP_ADJUSTMENT,
170   PROP_CLIMB_RATE,
171   PROP_DIGITS,
172   PROP_SNAP_TO_TICKS,
173   PROP_NUMERIC,
174   PROP_WRAP,
175   PROP_UPDATE_POLICY,
176   PROP_VALUE
177 };
178
179 /* Signals */
180 enum
181 {
182   INPUT,
183   OUTPUT,
184   VALUE_CHANGED,
185   CHANGE_VALUE,
186   WRAPPED,
187   LAST_SIGNAL
188 };
189
190 static void gtk_spin_button_editable_init  (GtkEditableInterface *iface);
191 static void gtk_spin_button_finalize       (GObject            *object);
192 static void gtk_spin_button_set_property   (GObject         *object,
193                                             guint            prop_id,
194                                             const GValue    *value,
195                                             GParamSpec      *pspec);
196 static void gtk_spin_button_get_property   (GObject         *object,
197                                             guint            prop_id,
198                                             GValue          *value,
199                                             GParamSpec      *pspec);
200 static void gtk_spin_button_destroy        (GtkWidget          *widget);
201 static void gtk_spin_button_map            (GtkWidget          *widget);
202 static void gtk_spin_button_unmap          (GtkWidget          *widget);
203 static void gtk_spin_button_realize        (GtkWidget          *widget);
204 static void gtk_spin_button_unrealize      (GtkWidget          *widget);
205 static void gtk_spin_button_get_preferred_width  (GtkWidget          *widget,
206                                                   gint               *minimum,
207                                                   gint               *natural);
208
209 static void gtk_spin_button_size_allocate  (GtkWidget          *widget,
210                                             GtkAllocation      *allocation);
211 static gint gtk_spin_button_draw           (GtkWidget          *widget,
212                                             cairo_t            *cr);
213 static gint gtk_spin_button_button_press   (GtkWidget          *widget,
214                                             GdkEventButton     *event);
215 static gint gtk_spin_button_button_release (GtkWidget          *widget,
216                                             GdkEventButton     *event);
217 static gint gtk_spin_button_motion_notify  (GtkWidget          *widget,
218                                             GdkEventMotion     *event);
219 static gint gtk_spin_button_enter_notify   (GtkWidget          *widget,
220                                             GdkEventCrossing   *event);
221 static gint gtk_spin_button_leave_notify   (GtkWidget          *widget,
222                                             GdkEventCrossing   *event);
223 static gint gtk_spin_button_focus_out      (GtkWidget          *widget,
224                                             GdkEventFocus      *event);
225 static void gtk_spin_button_grab_notify    (GtkWidget          *widget,
226                                             gboolean            was_grabbed);
227 static void gtk_spin_button_state_flags_changed  (GtkWidget     *widget,
228                                                   GtkStateFlags  previous_state);
229 static void gtk_spin_button_style_updated  (GtkWidget          *widget);
230 static void gtk_spin_button_draw_arrow     (GtkSpinButton      *spin_button,
231                                             GtkStyleContext    *context,
232                                             cairo_t            *cr,
233                                             GtkArrowType        arrow_type);
234 static gboolean gtk_spin_button_timer          (GtkSpinButton      *spin_button);
235 static void gtk_spin_button_stop_spinning  (GtkSpinButton      *spin);
236 static void gtk_spin_button_value_changed  (GtkAdjustment      *adjustment,
237                                             GtkSpinButton      *spin_button);
238 static gint gtk_spin_button_key_release    (GtkWidget          *widget,
239                                             GdkEventKey        *event);
240 static gint gtk_spin_button_scroll         (GtkWidget          *widget,
241                                             GdkEventScroll     *event);
242 static void gtk_spin_button_activate       (GtkEntry           *entry);
243 static void gtk_spin_button_get_text_area_size (GtkEntry *entry,
244                                                 gint     *x,
245                                                 gint     *y,
246                                                 gint     *width,
247                                                 gint     *height);
248 static void gtk_spin_button_snap           (GtkSpinButton      *spin_button,
249                                             gdouble             val);
250 static void gtk_spin_button_insert_text    (GtkEditable        *editable,
251                                             const gchar        *new_text,
252                                             gint                new_text_length,
253                                             gint               *position);
254 static void gtk_spin_button_real_spin      (GtkSpinButton      *spin_button,
255                                             gdouble             step);
256 static void gtk_spin_button_real_change_value (GtkSpinButton   *spin,
257                                                GtkScrollType    scroll);
258
259 static gint gtk_spin_button_default_input  (GtkSpinButton      *spin_button,
260                                             gdouble            *new_val);
261 static gint gtk_spin_button_default_output (GtkSpinButton      *spin_button);
262
263 static gint spin_button_get_arrow_size     (GtkSpinButton      *spin_button);
264
265 static guint spinbutton_signals[LAST_SIGNAL] = {0};
266
267 #define NO_ARROW 2
268
269 G_DEFINE_TYPE_WITH_CODE (GtkSpinButton, gtk_spin_button, GTK_TYPE_ENTRY,
270                          G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE,
271                                                 gtk_spin_button_editable_init))
272
273 #define add_spin_binding(binding_set, keyval, mask, scroll)            \
274   gtk_binding_entry_add_signal (binding_set, keyval, mask,             \
275                                 "change_value", 1,                     \
276                                 GTK_TYPE_SCROLL_TYPE, scroll)
277
278 static void
279 gtk_spin_button_class_init (GtkSpinButtonClass *class)
280 {
281   GObjectClass     *gobject_class = G_OBJECT_CLASS (class);
282   GtkWidgetClass   *widget_class = GTK_WIDGET_CLASS (class);
283   GtkEntryClass    *entry_class = GTK_ENTRY_CLASS (class);
284   GtkBindingSet    *binding_set;
285
286   gobject_class->finalize = gtk_spin_button_finalize;
287   gobject_class->set_property = gtk_spin_button_set_property;
288   gobject_class->get_property = gtk_spin_button_get_property;
289
290   widget_class->destroy = gtk_spin_button_destroy;
291   widget_class->map = gtk_spin_button_map;
292   widget_class->unmap = gtk_spin_button_unmap;
293   widget_class->realize = gtk_spin_button_realize;
294   widget_class->unrealize = gtk_spin_button_unrealize;
295   widget_class->get_preferred_width = gtk_spin_button_get_preferred_width;
296   widget_class->size_allocate = gtk_spin_button_size_allocate;
297   widget_class->draw = gtk_spin_button_draw;
298   widget_class->scroll_event = gtk_spin_button_scroll;
299   widget_class->button_press_event = gtk_spin_button_button_press;
300   widget_class->button_release_event = gtk_spin_button_button_release;
301   widget_class->motion_notify_event = gtk_spin_button_motion_notify;
302   widget_class->key_release_event = gtk_spin_button_key_release;
303   widget_class->enter_notify_event = gtk_spin_button_enter_notify;
304   widget_class->leave_notify_event = gtk_spin_button_leave_notify;
305   widget_class->focus_out_event = gtk_spin_button_focus_out;
306   widget_class->grab_notify = gtk_spin_button_grab_notify;
307   widget_class->state_flags_changed = gtk_spin_button_state_flags_changed;
308   widget_class->style_updated = gtk_spin_button_style_updated;
309
310   entry_class->activate = gtk_spin_button_activate;
311   entry_class->get_text_area_size = gtk_spin_button_get_text_area_size;
312
313   class->input = NULL;
314   class->output = NULL;
315   class->change_value = gtk_spin_button_real_change_value;
316
317   g_object_class_install_property (gobject_class,
318                                    PROP_ADJUSTMENT,
319                                    g_param_spec_object ("adjustment",
320                                                         P_("Adjustment"),
321                                                         P_("The adjustment that holds the value of the spin button"),
322                                                         GTK_TYPE_ADJUSTMENT,
323                                                         GTK_PARAM_READWRITE));
324
325   g_object_class_install_property (gobject_class,
326                                    PROP_CLIMB_RATE,
327                                    g_param_spec_double ("climb-rate",
328                                                         P_("Climb Rate"),
329                                                         P_("The acceleration rate when you hold down a button"),
330                                                         0.0,
331                                                         G_MAXDOUBLE,
332                                                         0.0,
333                                                         GTK_PARAM_READWRITE));
334
335   g_object_class_install_property (gobject_class,
336                                    PROP_DIGITS,
337                                    g_param_spec_uint ("digits",
338                                                       P_("Digits"),
339                                                       P_("The number of decimal places to display"),
340                                                       0,
341                                                       MAX_DIGITS,
342                                                       0,
343                                                       GTK_PARAM_READWRITE));
344
345   g_object_class_install_property (gobject_class,
346                                    PROP_SNAP_TO_TICKS,
347                                    g_param_spec_boolean ("snap-to-ticks",
348                                                          P_("Snap to Ticks"),
349                                                          P_("Whether erroneous values are automatically changed to a spin button's nearest step increment"),
350                                                          FALSE,
351                                                          GTK_PARAM_READWRITE));
352
353   g_object_class_install_property (gobject_class,
354                                    PROP_NUMERIC,
355                                    g_param_spec_boolean ("numeric",
356                                                          P_("Numeric"),
357                                                          P_("Whether non-numeric characters should be ignored"),
358                                                          FALSE,
359                                                          GTK_PARAM_READWRITE));
360
361   g_object_class_install_property (gobject_class,
362                                    PROP_WRAP,
363                                    g_param_spec_boolean ("wrap",
364                                                          P_("Wrap"),
365                                                          P_("Whether a spin button should wrap upon reaching its limits"),
366                                                          FALSE,
367                                                          GTK_PARAM_READWRITE));
368
369   g_object_class_install_property (gobject_class,
370                                    PROP_UPDATE_POLICY,
371                                    g_param_spec_enum ("update-policy",
372                                                       P_("Update Policy"),
373                                                       P_("Whether the spin button should update always, or only when the value is legal"),
374                                                       GTK_TYPE_SPIN_BUTTON_UPDATE_POLICY,
375                                                       GTK_UPDATE_ALWAYS,
376                                                       GTK_PARAM_READWRITE));
377
378   g_object_class_install_property (gobject_class,
379                                    PROP_VALUE,
380                                    g_param_spec_double ("value",
381                                                         P_("Value"),
382                                                         P_("Reads the current value, or sets a new value"),
383                                                         -G_MAXDOUBLE,
384                                                         G_MAXDOUBLE,
385                                                         0.0,
386                                                         GTK_PARAM_READWRITE));
387
388   gtk_widget_class_install_style_property_parser (widget_class,
389                                                   g_param_spec_enum ("shadow-type",
390                                                                      "Shadow Type",
391                                                                      P_("Style of bevel around the spin button"),
392                                                                      GTK_TYPE_SHADOW_TYPE,
393                                                                      GTK_SHADOW_IN,
394                                                                      GTK_PARAM_READABLE),
395                                                   gtk_rc_property_parse_enum);
396
397   /**
398    * GtkSpinButton::input:
399    * @spin_button: the object on which the signal was emitted
400    * @new_value: (out) (type double): return location for the new value
401    *
402    * The ::input signal can be used to influence the conversion of
403    * the users input into a double value. The signal handler is
404    * expected to use gtk_entry_get_text() to retrieve the text of
405    * the entry and set @new_value to the new value.
406    *
407    * The default conversion uses g_strtod().
408    *
409    * Returns: %TRUE for a successful conversion, %FALSE if the input
410    *     was not handled, and %GTK_INPUT_ERROR if the conversion failed.
411    */
412   spinbutton_signals[INPUT] =
413     g_signal_new (I_("input"),
414                   G_TYPE_FROM_CLASS (gobject_class),
415                   G_SIGNAL_RUN_LAST,
416                   G_STRUCT_OFFSET (GtkSpinButtonClass, input),
417                   NULL, NULL,
418                   _gtk_marshal_INT__POINTER,
419                   G_TYPE_INT, 1,
420                   G_TYPE_POINTER);
421
422   /**
423    * GtkSpinButton::output:
424    * @spin_button: the object which received the signal
425    *
426    * The ::output signal can be used to change to formatting
427    * of the value that is displayed in the spin buttons entry.
428    * |[
429    * /&ast; show leading zeros &ast;/
430    * static gboolean
431    * on_output (GtkSpinButton *spin,
432    *            gpointer       data)
433    * {
434    *    GtkAdjustment *adjustment;
435    *    gchar *text;
436    *    int value;
437    *
438    *    adjustment = gtk_spin_button_get_adjustment (spin);
439    *    value = (int)gtk_adjustment_get_value (adjustment);
440    *    text = g_strdup_printf ("%02d", value);
441    *    gtk_entry_set_text (GTK_ENTRY (spin), text);
442    *    g_free (text);
443    *
444    *    return TRUE;
445    * }
446    * ]|
447    *
448    * Returns: %TRUE if the value has been displayed
449    */
450   spinbutton_signals[OUTPUT] =
451     g_signal_new (I_("output"),
452                   G_TYPE_FROM_CLASS (gobject_class),
453                   G_SIGNAL_RUN_LAST,
454                   G_STRUCT_OFFSET (GtkSpinButtonClass, output),
455                   _gtk_boolean_handled_accumulator, NULL,
456                   _gtk_marshal_BOOLEAN__VOID,
457                   G_TYPE_BOOLEAN, 0);
458
459   spinbutton_signals[VALUE_CHANGED] =
460     g_signal_new (I_("value-changed"),
461                   G_TYPE_FROM_CLASS (gobject_class),
462                   G_SIGNAL_RUN_LAST,
463                   G_STRUCT_OFFSET (GtkSpinButtonClass, value_changed),
464                   NULL, NULL,
465                   _gtk_marshal_VOID__VOID,
466                   G_TYPE_NONE, 0);
467
468   /**
469    * GtkSpinButton::wrapped:
470    * @spinbutton: the object which received the signal
471    *
472    * The wrapped signal is emitted right after the spinbutton wraps
473    * from its maximum to minimum value or vice-versa.
474    *
475    * Since: 2.10
476    */
477   spinbutton_signals[WRAPPED] =
478     g_signal_new (I_("wrapped"),
479                   G_TYPE_FROM_CLASS (gobject_class),
480                   G_SIGNAL_RUN_LAST,
481                   G_STRUCT_OFFSET (GtkSpinButtonClass, wrapped),
482                   NULL, NULL,
483                   _gtk_marshal_VOID__VOID,
484                   G_TYPE_NONE, 0);
485
486   /* Action signals */
487   spinbutton_signals[CHANGE_VALUE] =
488     g_signal_new (I_("change-value"),
489                   G_TYPE_FROM_CLASS (gobject_class),
490                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
491                   G_STRUCT_OFFSET (GtkSpinButtonClass, change_value),
492                   NULL, NULL,
493                   _gtk_marshal_VOID__ENUM,
494                   G_TYPE_NONE, 1,
495                   GTK_TYPE_SCROLL_TYPE);
496
497   binding_set = gtk_binding_set_by_class (class);
498
499   add_spin_binding (binding_set, GDK_KEY_Up, 0, GTK_SCROLL_STEP_UP);
500   add_spin_binding (binding_set, GDK_KEY_KP_Up, 0, GTK_SCROLL_STEP_UP);
501   add_spin_binding (binding_set, GDK_KEY_Down, 0, GTK_SCROLL_STEP_DOWN);
502   add_spin_binding (binding_set, GDK_KEY_KP_Down, 0, GTK_SCROLL_STEP_DOWN);
503   add_spin_binding (binding_set, GDK_KEY_Page_Up, 0, GTK_SCROLL_PAGE_UP);
504   add_spin_binding (binding_set, GDK_KEY_Page_Down, 0, GTK_SCROLL_PAGE_DOWN);
505   add_spin_binding (binding_set, GDK_KEY_Page_Up, GDK_CONTROL_MASK, GTK_SCROLL_END);
506   add_spin_binding (binding_set, GDK_KEY_Page_Down, GDK_CONTROL_MASK, GTK_SCROLL_START);
507
508   g_type_class_add_private (class, sizeof (GtkSpinButtonPrivate));
509 }
510
511 static void
512 gtk_spin_button_editable_init (GtkEditableInterface *iface)
513 {
514   iface->insert_text = gtk_spin_button_insert_text;
515 }
516
517 static void
518 gtk_spin_button_set_property (GObject      *object,
519                               guint         prop_id,
520                               const GValue *value,
521                               GParamSpec   *pspec)
522 {
523   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (object);
524   GtkSpinButtonPrivate *priv = spin_button->priv;
525
526   switch (prop_id)
527     {
528       GtkAdjustment *adjustment;
529
530     case PROP_ADJUSTMENT:
531       adjustment = GTK_ADJUSTMENT (g_value_get_object (value));
532       if (!adjustment)
533         adjustment = gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
534       gtk_spin_button_set_adjustment (spin_button, adjustment);
535       break;
536     case PROP_CLIMB_RATE:
537       gtk_spin_button_configure (spin_button,
538                                  priv->adjustment,
539                                  g_value_get_double (value),
540                                  priv->digits);
541       break;
542     case PROP_DIGITS:
543       gtk_spin_button_configure (spin_button,
544                                  priv->adjustment,
545                                  priv->climb_rate,
546                                  g_value_get_uint (value));
547       break;
548     case PROP_SNAP_TO_TICKS:
549       gtk_spin_button_set_snap_to_ticks (spin_button, g_value_get_boolean (value));
550       break;
551     case PROP_NUMERIC:
552       gtk_spin_button_set_numeric (spin_button, g_value_get_boolean (value));
553       break;
554     case PROP_WRAP:
555       gtk_spin_button_set_wrap (spin_button, g_value_get_boolean (value));
556       break;
557     case PROP_UPDATE_POLICY:
558       gtk_spin_button_set_update_policy (spin_button, g_value_get_enum (value));
559       break;
560     case PROP_VALUE:
561       gtk_spin_button_set_value (spin_button, g_value_get_double (value));
562       break;
563     default:
564       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
565       break;
566     }
567 }
568
569 static void
570 gtk_spin_button_get_property (GObject      *object,
571                               guint         prop_id,
572                               GValue       *value,
573                               GParamSpec   *pspec)
574 {
575   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (object);
576   GtkSpinButtonPrivate *priv = spin_button->priv;
577
578   switch (prop_id)
579     {
580     case PROP_ADJUSTMENT:
581       g_value_set_object (value, priv->adjustment);
582       break;
583     case PROP_CLIMB_RATE:
584       g_value_set_double (value, priv->climb_rate);
585       break;
586     case PROP_DIGITS:
587       g_value_set_uint (value, priv->digits);
588       break;
589     case PROP_SNAP_TO_TICKS:
590       g_value_set_boolean (value, priv->snap_to_ticks);
591       break;
592     case PROP_NUMERIC:
593       g_value_set_boolean (value, priv->numeric);
594       break;
595     case PROP_WRAP:
596       g_value_set_boolean (value, priv->wrap);
597       break;
598     case PROP_UPDATE_POLICY:
599       g_value_set_enum (value, priv->update_policy);
600       break;
601      case PROP_VALUE:
602        g_value_set_double (value, gtk_adjustment_get_value (priv->adjustment));
603       break;
604     default:
605       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
606       break;
607     }
608 }
609
610 static void
611 gtk_spin_button_init (GtkSpinButton *spin_button)
612 {
613   GtkSpinButtonPrivate *priv;
614   GtkStyleContext *context;
615
616   spin_button->priv = G_TYPE_INSTANCE_GET_PRIVATE (spin_button,
617                                                    GTK_TYPE_SPIN_BUTTON,
618                                                    GtkSpinButtonPrivate);
619   priv = spin_button->priv;
620
621   priv->adjustment = NULL;
622   priv->panel = NULL;
623   priv->timer = 0;
624   priv->climb_rate = 0.0;
625   priv->timer_step = 0.0;
626   priv->update_policy = GTK_UPDATE_ALWAYS;
627   priv->in_child = NO_ARROW;
628   priv->click_child = NO_ARROW;
629   priv->button = 0;
630   priv->need_timer = FALSE;
631   priv->timer_calls = 0;
632   priv->digits = 0;
633   priv->numeric = FALSE;
634   priv->wrap = FALSE;
635   priv->snap_to_ticks = FALSE;
636
637   gtk_spin_button_set_adjustment (spin_button,
638                                   gtk_adjustment_new (0, 0, 0, 0, 0, 0));
639
640   context = gtk_widget_get_style_context (GTK_WIDGET (spin_button));
641   gtk_style_context_add_class (context, GTK_STYLE_CLASS_SPINBUTTON);
642 }
643
644 static void
645 gtk_spin_button_finalize (GObject *object)
646 {
647   gtk_spin_button_set_adjustment (GTK_SPIN_BUTTON (object), NULL);
648
649   G_OBJECT_CLASS (gtk_spin_button_parent_class)->finalize (object);
650 }
651
652 static void
653 gtk_spin_button_destroy (GtkWidget *widget)
654 {
655   gtk_spin_button_stop_spinning (GTK_SPIN_BUTTON (widget));
656
657   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->destroy (widget);
658 }
659
660 static void
661 gtk_spin_button_map (GtkWidget *widget)
662 {
663   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (widget);
664   GtkSpinButtonPrivate *priv = spin_button->priv;
665
666   if (gtk_widget_get_realized (widget) && !gtk_widget_get_mapped (widget))
667     {
668       GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->map (widget);
669       gdk_window_show (priv->panel);
670     }
671 }
672
673 static void
674 gtk_spin_button_unmap (GtkWidget *widget)
675 {
676   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (widget);
677   GtkSpinButtonPrivate *priv = spin_button->priv;
678
679   if (gtk_widget_get_mapped (widget))
680     {
681       gtk_spin_button_stop_spinning (GTK_SPIN_BUTTON (widget));
682
683       gdk_window_hide (priv->panel);
684       GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->unmap (widget);
685     }
686 }
687
688 static void
689 gtk_spin_button_realize (GtkWidget *widget)
690 {
691   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (widget);
692   GtkSpinButtonPrivate *priv = spin_button->priv;
693   GtkStyleContext *context;
694   GtkStateFlags state;
695   GtkAllocation allocation;
696   GtkRequisition requisition;
697   GdkWindowAttr attributes;
698   gint attributes_mask;
699   gboolean return_val;
700   gint arrow_size;
701   GtkBorder padding;
702
703   arrow_size = spin_button_get_arrow_size (spin_button);
704
705   gtk_widget_get_preferred_size (widget, &requisition, NULL);
706   gtk_widget_get_allocation (widget, &allocation);
707
708   gtk_widget_set_events (widget, gtk_widget_get_events (widget) |
709                          GDK_KEY_RELEASE_MASK);
710   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->realize (widget);
711
712   attributes.window_type = GDK_WINDOW_CHILD;
713   attributes.wclass = GDK_INPUT_ONLY;
714   attributes.visual = gtk_widget_get_visual (widget);
715   attributes.event_mask = gtk_widget_get_events (widget);
716   attributes.event_mask |= GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK
717     | GDK_BUTTON_RELEASE_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_ENTER_NOTIFY_MASK
718     | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK;
719
720   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
721
722   state = gtk_widget_get_state_flags (widget);
723   context = gtk_widget_get_style_context (widget);
724   gtk_style_context_get_padding (context, state, &padding);
725
726   attributes.x = allocation.x + allocation.width - arrow_size - (padding.left + padding.right);
727   attributes.y = allocation.y + (allocation.height - requisition.height) / 2;
728   attributes.width = arrow_size + padding.left + padding.right;
729   attributes.height = requisition.height;
730
731   priv->panel = gdk_window_new (gtk_widget_get_window (widget),
732                                 &attributes, attributes_mask);
733   gdk_window_set_user_data (priv->panel, widget);
734
735   return_val = FALSE;
736   g_signal_emit (spin_button, spinbutton_signals[OUTPUT], 0, &return_val);
737   if (return_val == FALSE)
738     gtk_spin_button_default_output (spin_button);
739
740   gtk_widget_queue_resize (GTK_WIDGET (spin_button));
741 }
742
743 static void
744 gtk_spin_button_unrealize (GtkWidget *widget)
745 {
746   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
747   GtkSpinButtonPrivate *priv = spin->priv;
748
749   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->unrealize (widget);
750
751   if (priv->panel)
752     {
753       gdk_window_set_user_data (priv->panel, NULL);
754       gdk_window_destroy (priv->panel);
755       priv->panel = NULL;
756     }
757 }
758
759 static int
760 compute_double_length (double val, int digits)
761 {
762   int a;
763   int extra;
764
765   a = 1;
766   if (fabs (val) > 1.0)
767     a = floor (log10 (fabs (val))) + 1;
768
769   extra = 0;
770
771   /* The dot: */
772   if (digits > 0)
773     extra++;
774
775   /* The sign: */
776   if (val < 0)
777     extra++;
778
779   return a + digits + extra;
780 }
781
782 static void
783 gtk_spin_button_get_preferred_width (GtkWidget *widget,
784                                      gint      *minimum,
785                                      gint      *natural)
786 {
787   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (widget);
788   GtkSpinButtonPrivate *priv = spin_button->priv;
789   GtkEntry *entry = GTK_ENTRY (widget);
790   GtkStyleContext *style_context;
791   GtkBorder padding;
792   gint arrow_size;
793
794   style_context = gtk_widget_get_style_context (widget);
795
796   arrow_size = spin_button_get_arrow_size (spin_button);
797
798   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->get_preferred_width (widget, minimum, natural);
799
800   if (gtk_entry_get_width_chars (entry) < 0)
801     {
802       PangoContext *context;
803       const PangoFontDescription *font_desc;
804       PangoFontMetrics *metrics;
805       gint width;
806       gint w;
807       gint string_len;
808       gint max_string_len;
809       gint digit_width;
810       gboolean interior_focus;
811       gint focus_width;
812       gint xborder, yborder;
813       GtkBorder inner_border;
814
815       gtk_widget_style_get (widget,
816                             "interior-focus", &interior_focus,
817                             "focus-line-width", &focus_width,
818                             NULL);
819
820       font_desc = gtk_style_context_get_font (style_context, 0);
821
822       context = gtk_widget_get_pango_context (widget);
823       metrics = pango_context_get_metrics (context, font_desc,
824                                            pango_context_get_language (context));
825
826       digit_width = pango_font_metrics_get_approximate_digit_width (metrics);
827       digit_width = PANGO_SCALE *
828         ((digit_width + PANGO_SCALE - 1) / PANGO_SCALE);
829
830       pango_font_metrics_unref (metrics);
831
832       /* Get max of MIN_SPIN_BUTTON_WIDTH, size of upper, size of lower */
833       width = MIN_SPIN_BUTTON_WIDTH;
834       max_string_len = MAX (10, compute_double_length (1e9 * gtk_adjustment_get_step_increment (priv->adjustment),
835                                                        priv->digits));
836
837       string_len = compute_double_length (gtk_adjustment_get_upper (priv->adjustment),
838                                           priv->digits);
839       w = PANGO_PIXELS (MIN (string_len, max_string_len) * digit_width);
840       width = MAX (width, w);
841       string_len = compute_double_length (gtk_adjustment_get_lower (priv->adjustment), priv->digits);
842       w = PANGO_PIXELS (MIN (string_len, max_string_len) * digit_width);
843       width = MAX (width, w);
844
845       _gtk_entry_get_borders (entry, &xborder, &yborder);
846       _gtk_entry_effective_inner_border (entry, &inner_border);
847
848       width += xborder * 2 + inner_border.left + inner_border.right;
849
850       *minimum = width;
851       *natural = width;
852     }
853
854   gtk_style_context_get_padding (style_context,
855                                  gtk_widget_get_state_flags (widget),
856                                  &padding);
857
858   *minimum += arrow_size + padding.left + padding.right;
859   *natural += arrow_size + padding.left + padding.right;
860 }
861
862 static void
863 gtk_spin_button_size_allocate (GtkWidget     *widget,
864                                GtkAllocation *allocation)
865 {
866   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
867   GtkSpinButtonPrivate *priv = spin->priv;
868   GtkAllocation panel_allocation;
869   GtkRequisition requisition;
870   GtkStyleContext *context;
871   GtkStateFlags state;
872   GtkBorder padding;
873   gint arrow_size;
874   gint panel_width;
875
876   arrow_size = spin_button_get_arrow_size (spin);
877   context = gtk_widget_get_style_context (widget);
878   state = gtk_widget_get_state_flags (widget);
879
880   gtk_style_context_get_padding (context, state, &padding);
881   panel_width = arrow_size + padding.left + padding.right;
882
883   gtk_widget_get_preferred_size (widget, &requisition, NULL);
884
885   gtk_widget_set_allocation (widget, allocation);
886
887   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
888     panel_allocation.x = allocation->x;
889   else
890     panel_allocation.x = allocation->x + allocation->width - panel_width;
891
892   panel_allocation.width = panel_width;
893   panel_allocation.height = MIN (requisition.height, allocation->height);
894
895   panel_allocation.y = allocation->y +
896                        (allocation->height - requisition.height) / 2;
897
898   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->size_allocate (widget, allocation);
899
900   if (gtk_widget_get_realized (widget))
901     {
902       gdk_window_move_resize (priv->panel,
903                               panel_allocation.x,
904                               panel_allocation.y,
905                               panel_allocation.width,
906                               panel_allocation.height);
907     }
908
909   gtk_widget_queue_draw (GTK_WIDGET (spin));
910 }
911
912 static gint
913 gtk_spin_button_draw (GtkWidget      *widget,
914                       cairo_t        *cr)
915 {
916   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
917   GtkSpinButtonPrivate *priv = spin->priv;
918   GtkStyleContext *context;
919   GtkStateFlags state = 0;
920   gboolean is_rtl;
921
922   is_rtl = (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL);
923   context = gtk_widget_get_style_context (widget);
924   gtk_style_context_save (context);
925
926   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->draw (widget, cr);
927
928   gtk_style_context_restore (context);
929   cairo_save (cr);
930
931   state = gtk_widget_get_state_flags (widget);
932
933   if (gtk_widget_has_focus (widget))
934     state |= GTK_STATE_FLAG_FOCUSED;
935
936   gtk_style_context_save (context);
937   gtk_style_context_set_state (context, state);
938   gtk_style_context_remove_class (context, GTK_STYLE_CLASS_ENTRY);
939
940   if (is_rtl)
941     gtk_style_context_set_junction_sides (context, GTK_JUNCTION_RIGHT);
942   else
943     gtk_style_context_set_junction_sides (context, GTK_JUNCTION_LEFT);
944
945   gtk_cairo_transform_to_window (cr, widget, priv->panel);
946
947   if (gtk_entry_get_has_frame (GTK_ENTRY (widget)))
948     gtk_render_background (context, cr, 0, 0,
949                            gdk_window_get_width (priv->panel),
950                            gdk_window_get_height (priv->panel));
951
952   gtk_spin_button_draw_arrow (spin, context, cr, GTK_ARROW_UP);
953   gtk_spin_button_draw_arrow (spin, context, cr, GTK_ARROW_DOWN);
954
955   gtk_style_context_restore (context);
956   cairo_restore (cr);
957
958   return FALSE;
959 }
960
961 static gboolean
962 spin_button_at_limit (GtkSpinButton *spin_button,
963                      GtkArrowType   arrow)
964 {
965   GtkSpinButtonPrivate *priv = spin_button->priv;
966   GtkArrowType effective_arrow;
967
968   if (priv->wrap)
969     return FALSE;
970
971   if (gtk_adjustment_get_step_increment (priv->adjustment) > 0)
972     effective_arrow = arrow;
973   else
974     effective_arrow = arrow == GTK_ARROW_UP ? GTK_ARROW_DOWN : GTK_ARROW_UP;
975
976   if (effective_arrow == GTK_ARROW_UP &&
977       (gtk_adjustment_get_upper (priv->adjustment) - gtk_adjustment_get_value (priv->adjustment) <= EPSILON))
978     return TRUE;
979
980   if (effective_arrow == GTK_ARROW_DOWN &&
981       (gtk_adjustment_get_value (priv->adjustment) - gtk_adjustment_get_lower (priv->adjustment) <= EPSILON))
982     return TRUE;
983
984   return FALSE;
985 }
986
987 static void
988 gtk_spin_button_draw_arrow (GtkSpinButton   *spin_button,
989                             GtkStyleContext *context,
990                             cairo_t         *cr,
991                             GtkArrowType     arrow_type)
992 {
993   GtkSpinButtonPrivate *priv;
994   GtkJunctionSides junction;
995   GtkStateFlags state;
996   GtkWidget *widget;
997   GtkBorder padding;
998   gdouble angle;
999   gint x;
1000   gint y;
1001   gint panel_height;
1002   gint height;
1003   gint width;
1004   gint h, w;
1005
1006   g_return_if_fail (arrow_type == GTK_ARROW_UP || arrow_type == GTK_ARROW_DOWN);
1007
1008   gtk_style_context_save (context);
1009   gtk_style_context_add_class (context, GTK_STYLE_CLASS_BUTTON);
1010
1011   priv = spin_button->priv;
1012   widget = GTK_WIDGET (spin_button);
1013   junction = gtk_style_context_get_junction_sides (context);
1014
1015   panel_height = gdk_window_get_height (priv->panel);
1016
1017   if (arrow_type == GTK_ARROW_UP)
1018     {
1019       x = 0;
1020       y = 0;
1021
1022       height = panel_height / 2;
1023       angle = 0;
1024       junction |= GTK_JUNCTION_BOTTOM;
1025     }
1026   else
1027     {
1028       x = 0;
1029       y = panel_height / 2;
1030
1031       height = (panel_height + 1) / 2;
1032       angle = G_PI;
1033       junction |= GTK_JUNCTION_TOP;
1034     }
1035
1036   if (spin_button_at_limit (spin_button, arrow_type))
1037     state = GTK_STATE_FLAG_INSENSITIVE;
1038   else
1039     {
1040       if (priv->click_child == arrow_type)
1041         state = GTK_STATE_ACTIVE;
1042       else
1043         {
1044           if (priv->in_child == arrow_type &&
1045               priv->click_child == NO_ARROW)
1046             state = GTK_STATE_FLAG_PRELIGHT;
1047           else
1048             state = gtk_widget_get_state_flags (widget);
1049         }
1050     }
1051
1052   gtk_style_context_get_padding (context, state, &padding);
1053   gtk_style_context_set_junction_sides (context, junction);
1054   gtk_style_context_set_state (context, state);
1055
1056   width = spin_button_get_arrow_size (spin_button) + padding.left + padding.right;
1057
1058   gtk_render_background (context, cr, x, y, width, height);
1059   gtk_render_frame (context, cr, x, y, width, height);
1060
1061   height = panel_height;
1062
1063   if (arrow_type == GTK_ARROW_DOWN)
1064     {
1065       y = height / 2;
1066       height = height - y - 2;
1067     }
1068   else
1069     {
1070       y = 2;
1071       height = height / 2 - 2;
1072     }
1073
1074   width -= 3;
1075
1076   if (widget && gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
1077     x = 2;
1078   else
1079     x = 1;
1080
1081   w = width / 2;
1082   w -= w % 2 - 1; /* force odd */
1083   h = (w + 1) / 2;
1084
1085   x += (width - w) / 2;
1086   y += (height - h) / 2;
1087
1088   height = h;
1089   width = w;
1090
1091   gtk_render_arrow (context, cr,
1092                     angle, x, y, width);
1093
1094   gtk_style_context_restore (context);
1095 }
1096
1097 static gint
1098 gtk_spin_button_enter_notify (GtkWidget        *widget,
1099                               GdkEventCrossing *event)
1100 {
1101   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1102   GtkSpinButtonPrivate *priv = spin->priv;
1103   GtkRequisition requisition;
1104
1105   if (event->window == priv->panel)
1106     {
1107       GdkDevice *device;
1108       gint x;
1109       gint y;
1110
1111       device = gdk_event_get_device ((GdkEvent *) event);
1112       gdk_window_get_device_position (priv->panel, device, &x, &y, NULL);
1113
1114       gtk_widget_get_preferred_size (widget, &requisition, NULL);
1115
1116       if (y <= requisition.height / 2)
1117         priv->in_child = GTK_ARROW_UP;
1118       else
1119         priv->in_child = GTK_ARROW_DOWN;
1120
1121       gtk_widget_queue_draw (GTK_WIDGET (spin));
1122     }
1123
1124   if (GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->enter_notify_event)
1125     return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->enter_notify_event (widget, event);
1126
1127   return FALSE;
1128 }
1129
1130 static gint
1131 gtk_spin_button_leave_notify (GtkWidget        *widget,
1132                               GdkEventCrossing *event)
1133 {
1134   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1135   GtkSpinButtonPrivate *priv = spin->priv;
1136
1137   priv->in_child = NO_ARROW;
1138   gtk_widget_queue_draw (GTK_WIDGET (spin));
1139
1140   if (GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->leave_notify_event)
1141     return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->leave_notify_event (widget, event);
1142
1143   return FALSE;
1144 }
1145
1146 static gint
1147 gtk_spin_button_focus_out (GtkWidget     *widget,
1148                            GdkEventFocus *event)
1149 {
1150   if (gtk_editable_get_editable (GTK_EDITABLE (widget)))
1151     gtk_spin_button_update (GTK_SPIN_BUTTON (widget));
1152
1153   return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->focus_out_event (widget, event);
1154 }
1155
1156 static void
1157 gtk_spin_button_grab_notify (GtkWidget *widget,
1158                              gboolean   was_grabbed)
1159 {
1160   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1161
1162   if (!was_grabbed)
1163     {
1164       gtk_spin_button_stop_spinning (spin);
1165       gtk_widget_queue_draw (GTK_WIDGET (spin));
1166     }
1167 }
1168
1169 static void
1170 gtk_spin_button_state_flags_changed (GtkWidget     *widget,
1171                                      GtkStateFlags  previous_state)
1172 {
1173   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1174
1175   if (!gtk_widget_is_sensitive (widget))
1176     {
1177       gtk_spin_button_stop_spinning (spin);
1178       gtk_widget_queue_draw (GTK_WIDGET (spin));
1179     }
1180 }
1181
1182 static void
1183 gtk_spin_button_style_updated (GtkWidget *widget)
1184 {
1185   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1186   GtkSpinButtonPrivate *priv = spin->priv;
1187
1188   if (gtk_widget_get_realized (widget))
1189     {
1190       GtkStyleContext *context;
1191
1192       context = gtk_widget_get_style_context (widget);
1193       gtk_style_context_set_background (context, priv->panel);
1194     }
1195
1196   GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->style_updated (widget);
1197 }
1198
1199
1200 static gint
1201 gtk_spin_button_scroll (GtkWidget      *widget,
1202                         GdkEventScroll *event)
1203 {
1204   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1205   GtkSpinButtonPrivate *priv = spin->priv;
1206
1207   if (event->direction == GDK_SCROLL_UP)
1208     {
1209       if (!gtk_widget_has_focus (widget))
1210         gtk_widget_grab_focus (widget);
1211       gtk_spin_button_real_spin (spin, gtk_adjustment_get_step_increment (priv->adjustment));
1212     }
1213   else if (event->direction == GDK_SCROLL_DOWN)
1214     {
1215       if (!gtk_widget_has_focus (widget))
1216         gtk_widget_grab_focus (widget);
1217       gtk_spin_button_real_spin (spin, -gtk_adjustment_get_step_increment (priv->adjustment));
1218     }
1219   else
1220     return FALSE;
1221
1222   return TRUE;
1223 }
1224
1225 static void
1226 gtk_spin_button_stop_spinning (GtkSpinButton *spin)
1227 {
1228   GtkSpinButtonPrivate *priv = spin->priv;
1229
1230   if (priv->timer)
1231     {
1232       g_source_remove (priv->timer);
1233       priv->timer = 0;
1234       priv->timer_calls = 0;
1235       priv->need_timer = FALSE;
1236     }
1237
1238   priv->button = 0;
1239   priv->timer = 0;
1240   priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
1241   priv->timer_calls = 0;
1242
1243   priv->click_child = NO_ARROW;
1244   priv->button = 0;
1245 }
1246
1247 static void
1248 start_spinning (GtkSpinButton *spin,
1249                 GtkArrowType   click_child,
1250                 gdouble        step)
1251 {
1252   GtkSpinButtonPrivate *priv;
1253
1254   g_return_if_fail (click_child == GTK_ARROW_UP || click_child == GTK_ARROW_DOWN);
1255
1256   priv = spin->priv;
1257
1258   priv->click_child = click_child;
1259
1260   if (!priv->timer)
1261     {
1262       GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (spin));
1263       guint        timeout;
1264
1265       g_object_get (settings, "gtk-timeout-initial", &timeout, NULL);
1266
1267       priv->timer_step = step;
1268       priv->need_timer = TRUE;
1269       priv->timer = gdk_threads_add_timeout (timeout,
1270                                    (GSourceFunc) gtk_spin_button_timer,
1271                                    (gpointer) spin);
1272     }
1273   gtk_spin_button_real_spin (spin, click_child == GTK_ARROW_UP ? step : -step);
1274
1275   gtk_widget_queue_draw (GTK_WIDGET (spin));
1276 }
1277
1278 static gint
1279 gtk_spin_button_button_press (GtkWidget      *widget,
1280                               GdkEventButton *event)
1281 {
1282   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1283   GtkSpinButtonPrivate *priv = spin->priv;
1284
1285   if (!priv->button)
1286     {
1287       if (event->window == priv->panel)
1288         {
1289           GtkRequisition requisition;
1290
1291           if (!gtk_widget_has_focus (widget))
1292             gtk_widget_grab_focus (widget);
1293           priv->button = event->button;
1294
1295           if (gtk_editable_get_editable (GTK_EDITABLE (widget)))
1296             gtk_spin_button_update (spin);
1297
1298           gtk_widget_get_preferred_size (widget, &requisition, NULL);
1299
1300           if (event->y <= requisition.height / 2)
1301             {
1302               if (event->button == 1)
1303                 start_spinning (spin, GTK_ARROW_UP, gtk_adjustment_get_step_increment (priv->adjustment));
1304               else if (event->button == 2)
1305                 start_spinning (spin, GTK_ARROW_UP, gtk_adjustment_get_page_increment (priv->adjustment));
1306               else
1307                 priv->click_child = GTK_ARROW_UP;
1308             }
1309           else
1310             {
1311               if (event->button == 1)
1312                 start_spinning (spin, GTK_ARROW_DOWN, gtk_adjustment_get_step_increment (priv->adjustment));
1313               else if (event->button == 2)
1314                 start_spinning (spin, GTK_ARROW_DOWN, gtk_adjustment_get_page_increment (priv->adjustment));
1315               else
1316                 priv->click_child = GTK_ARROW_DOWN;
1317             }
1318           return TRUE;
1319         }
1320       else
1321         return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->button_press_event (widget, event);
1322     }
1323   return FALSE;
1324 }
1325
1326 static gint
1327 gtk_spin_button_button_release (GtkWidget      *widget,
1328                                 GdkEventButton *event)
1329 {
1330   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1331   GtkSpinButtonPrivate *priv = spin->priv;
1332   gint arrow_size;
1333
1334   arrow_size = spin_button_get_arrow_size (spin);
1335
1336   if (event->button == priv->button)
1337     {
1338       int click_child = priv->click_child;
1339
1340       gtk_spin_button_stop_spinning (spin);
1341
1342       if (event->button == 3)
1343         {
1344           GtkRequisition requisition;
1345           GtkStyleContext *context;
1346           GtkStateFlags state;
1347           GtkBorder padding;
1348
1349           gtk_widget_get_preferred_size (widget, &requisition, NULL);
1350
1351           context = gtk_widget_get_style_context (widget);
1352           state = gtk_widget_get_state_flags (widget);
1353           gtk_style_context_get_padding (context, state, &padding);
1354
1355           if (event->y >= 0 && event->x >= 0 &&
1356               event->y <= requisition.height &&
1357               event->x <= arrow_size + padding.left + padding.right)
1358             {
1359               if (click_child == GTK_ARROW_UP &&
1360                   event->y <= requisition.height / 2)
1361                 {
1362                   gdouble diff;
1363
1364                   diff = gtk_adjustment_get_upper (priv->adjustment) - gtk_adjustment_get_value (priv->adjustment);
1365                   if (diff > EPSILON)
1366                     gtk_spin_button_real_spin (spin, diff);
1367                 }
1368               else if (click_child == GTK_ARROW_DOWN &&
1369                        event->y > requisition.height / 2)
1370                 {
1371                   gdouble diff;
1372
1373                   diff = gtk_adjustment_get_value (priv->adjustment) - gtk_adjustment_get_lower (priv->adjustment);
1374                   if (diff > EPSILON)
1375                     gtk_spin_button_real_spin (spin, -diff);
1376                 }
1377             }
1378         }
1379       gtk_widget_queue_draw (GTK_WIDGET (spin));
1380
1381       return TRUE;
1382     }
1383   else
1384     return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->button_release_event (widget, event);
1385 }
1386
1387 static gint
1388 gtk_spin_button_motion_notify (GtkWidget      *widget,
1389                                GdkEventMotion *event)
1390 {
1391   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1392   GtkSpinButtonPrivate *priv = spin->priv;
1393
1394   if (priv->button)
1395     return FALSE;
1396
1397   if (event->window == priv->panel)
1398     {
1399       GtkRequisition requisition;
1400       gint y = event->y;
1401
1402       gdk_event_request_motions (event);
1403
1404       gtk_widget_get_preferred_size (widget, &requisition, NULL);
1405
1406       if (y <= requisition.height / 2 &&
1407           priv->in_child == GTK_ARROW_DOWN)
1408         {
1409           priv->in_child = GTK_ARROW_UP;
1410           gtk_widget_queue_draw (GTK_WIDGET (spin));
1411         }
1412       else if (y > requisition.height / 2 &&
1413           priv->in_child == GTK_ARROW_UP)
1414         {
1415           priv->in_child = GTK_ARROW_DOWN;
1416           gtk_widget_queue_draw (GTK_WIDGET (spin));
1417         }
1418
1419       return FALSE;
1420     }
1421
1422   return GTK_WIDGET_CLASS (gtk_spin_button_parent_class)->motion_notify_event (widget, event);
1423 }
1424
1425 static gint
1426 gtk_spin_button_timer (GtkSpinButton *spin_button)
1427 {
1428   GtkSpinButtonPrivate *priv = spin_button->priv;
1429   gboolean retval = FALSE;
1430
1431   if (priv->timer)
1432     {
1433       if (priv->click_child == GTK_ARROW_UP)
1434         gtk_spin_button_real_spin (spin_button, priv->timer_step);
1435       else
1436         gtk_spin_button_real_spin (spin_button, -priv->timer_step);
1437
1438       if (priv->need_timer)
1439         {
1440           GtkSettings *settings = gtk_widget_get_settings (GTK_WIDGET (spin_button));
1441           guint        timeout;
1442
1443           g_object_get (settings, "gtk-timeout-repeat", &timeout, NULL);
1444
1445           priv->need_timer = FALSE;
1446           priv->timer = gdk_threads_add_timeout (timeout,
1447                                               (GSourceFunc) gtk_spin_button_timer,
1448                                               (gpointer) spin_button);
1449         }
1450       else
1451         {
1452           if (priv->climb_rate > 0.0 && priv->timer_step
1453               < gtk_adjustment_get_page_increment (priv->adjustment))
1454             {
1455               if (priv->timer_calls < MAX_TIMER_CALLS)
1456                 priv->timer_calls++;
1457               else
1458                 {
1459                   priv->timer_calls = 0;
1460                   priv->timer_step += priv->climb_rate;
1461                 }
1462             }
1463           retval = TRUE;
1464         }
1465     }
1466
1467   return retval;
1468 }
1469
1470 static void
1471 gtk_spin_button_value_changed (GtkAdjustment *adjustment,
1472                                GtkSpinButton *spin_button)
1473 {
1474   gboolean return_val;
1475
1476   g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
1477
1478   return_val = FALSE;
1479   g_signal_emit (spin_button, spinbutton_signals[OUTPUT], 0, &return_val);
1480   if (return_val == FALSE)
1481     gtk_spin_button_default_output (spin_button);
1482
1483   g_signal_emit (spin_button, spinbutton_signals[VALUE_CHANGED], 0);
1484
1485   gtk_widget_queue_draw (GTK_WIDGET (spin_button));
1486
1487   g_object_notify (G_OBJECT (spin_button), "value");
1488 }
1489
1490 static void
1491 gtk_spin_button_real_change_value (GtkSpinButton *spin,
1492                                    GtkScrollType  scroll)
1493 {
1494   GtkSpinButtonPrivate *priv = spin->priv;
1495   gdouble old_value;
1496
1497   /* When the key binding is activated, there may be an outstanding
1498    * value, so we first have to commit what is currently written in
1499    * the spin buttons text entry. See #106574
1500    */
1501   gtk_spin_button_update (spin);
1502
1503   old_value = gtk_adjustment_get_value (priv->adjustment);
1504
1505   /* We don't test whether the entry is editable, since
1506    * this key binding conceptually corresponds to changing
1507    * the value with the buttons using the mouse, which
1508    * we allow for non-editable spin buttons.
1509    */
1510   switch (scroll)
1511     {
1512     case GTK_SCROLL_STEP_BACKWARD:
1513     case GTK_SCROLL_STEP_DOWN:
1514     case GTK_SCROLL_STEP_LEFT:
1515       gtk_spin_button_real_spin (spin, -priv->timer_step);
1516
1517       if (priv->climb_rate > 0.0 && priv->timer_step
1518           < gtk_adjustment_get_page_increment (priv->adjustment))
1519         {
1520           if (priv->timer_calls < MAX_TIMER_CALLS)
1521             priv->timer_calls++;
1522           else
1523             {
1524               priv->timer_calls = 0;
1525               priv->timer_step += priv->climb_rate;
1526             }
1527         }
1528       break;
1529
1530     case GTK_SCROLL_STEP_FORWARD:
1531     case GTK_SCROLL_STEP_UP:
1532     case GTK_SCROLL_STEP_RIGHT:
1533       gtk_spin_button_real_spin (spin, priv->timer_step);
1534
1535       if (priv->climb_rate > 0.0 && priv->timer_step
1536           < gtk_adjustment_get_page_increment (priv->adjustment))
1537         {
1538           if (priv->timer_calls < MAX_TIMER_CALLS)
1539             priv->timer_calls++;
1540           else
1541             {
1542               priv->timer_calls = 0;
1543               priv->timer_step += priv->climb_rate;
1544             }
1545         }
1546       break;
1547
1548     case GTK_SCROLL_PAGE_BACKWARD:
1549     case GTK_SCROLL_PAGE_DOWN:
1550     case GTK_SCROLL_PAGE_LEFT:
1551       gtk_spin_button_real_spin (spin, -gtk_adjustment_get_page_increment (priv->adjustment));
1552       break;
1553
1554     case GTK_SCROLL_PAGE_FORWARD:
1555     case GTK_SCROLL_PAGE_UP:
1556     case GTK_SCROLL_PAGE_RIGHT:
1557       gtk_spin_button_real_spin (spin, gtk_adjustment_get_page_increment (priv->adjustment));
1558       break;
1559
1560     case GTK_SCROLL_START:
1561       {
1562         gdouble diff = gtk_adjustment_get_value (priv->adjustment) - gtk_adjustment_get_lower (priv->adjustment);
1563         if (diff > EPSILON)
1564           gtk_spin_button_real_spin (spin, -diff);
1565         break;
1566       }
1567
1568     case GTK_SCROLL_END:
1569       {
1570         gdouble diff = gtk_adjustment_get_upper (priv->adjustment) - gtk_adjustment_get_value (priv->adjustment);
1571         if (diff > EPSILON)
1572           gtk_spin_button_real_spin (spin, diff);
1573         break;
1574       }
1575
1576     default:
1577       g_warning ("Invalid scroll type %d for GtkSpinButton::change-value", scroll);
1578       break;
1579     }
1580
1581   gtk_spin_button_update (spin);
1582
1583   if (gtk_adjustment_get_value (priv->adjustment) == old_value)
1584     gtk_widget_error_bell (GTK_WIDGET (spin));
1585 }
1586
1587 static gint
1588 gtk_spin_button_key_release (GtkWidget   *widget,
1589                              GdkEventKey *event)
1590 {
1591   GtkSpinButton *spin = GTK_SPIN_BUTTON (widget);
1592   GtkSpinButtonPrivate *priv = spin->priv;
1593
1594   /* We only get a release at the end of a key repeat run, so reset the timer_step */
1595   priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
1596   priv->timer_calls = 0;
1597
1598   return TRUE;
1599 }
1600
1601 static void
1602 gtk_spin_button_snap (GtkSpinButton *spin_button,
1603                       gdouble        val)
1604 {
1605   GtkSpinButtonPrivate *priv = spin_button->priv;
1606   gdouble inc;
1607   gdouble tmp;
1608
1609   inc = gtk_adjustment_get_step_increment (priv->adjustment);
1610   if (inc == 0)
1611     return;
1612
1613   tmp = (val - gtk_adjustment_get_lower (priv->adjustment)) / inc;
1614   if (tmp - floor (tmp) < ceil (tmp) - tmp)
1615     val = gtk_adjustment_get_lower (priv->adjustment) + floor (tmp) * inc;
1616   else
1617     val = gtk_adjustment_get_lower (priv->adjustment) + ceil (tmp) * inc;
1618
1619   gtk_spin_button_set_value (spin_button, val);
1620 }
1621
1622 static void
1623 gtk_spin_button_activate (GtkEntry *entry)
1624 {
1625   if (gtk_editable_get_editable (GTK_EDITABLE (entry)))
1626     gtk_spin_button_update (GTK_SPIN_BUTTON (entry));
1627
1628   /* Chain up so that entry->activates_default is honored */
1629   GTK_ENTRY_CLASS (gtk_spin_button_parent_class)->activate (entry);
1630 }
1631
1632 static void
1633 gtk_spin_button_get_text_area_size (GtkEntry *entry,
1634                                     gint     *x,
1635                                     gint     *y,
1636                                     gint     *width,
1637                                     gint     *height)
1638 {
1639   GtkStyleContext *context;
1640   GtkStateFlags state;
1641   GtkWidget *widget;
1642   GtkBorder padding;
1643   gint arrow_size;
1644   gint panel_width;
1645
1646   GTK_ENTRY_CLASS (gtk_spin_button_parent_class)->get_text_area_size (entry, x, y, width, height);
1647
1648   widget = GTK_WIDGET (entry);
1649   state = gtk_widget_get_state_flags (widget);
1650   context = gtk_widget_get_style_context (widget);
1651   gtk_style_context_get_padding (context, state, &padding);
1652
1653   arrow_size = spin_button_get_arrow_size (GTK_SPIN_BUTTON (entry));
1654   panel_width = arrow_size + padding.left + padding.right;
1655
1656   if (width)
1657     *width -= panel_width;
1658
1659   if (gtk_widget_get_direction (GTK_WIDGET (entry)) == GTK_TEXT_DIR_RTL && x)
1660     *x += panel_width;
1661 }
1662
1663 static void
1664 gtk_spin_button_insert_text (GtkEditable *editable,
1665                              const gchar *new_text,
1666                              gint         new_text_length,
1667                              gint        *position)
1668 {
1669   GtkEntry *entry = GTK_ENTRY (editable);
1670   GtkSpinButton *spin = GTK_SPIN_BUTTON (editable);
1671   GtkSpinButtonPrivate *priv = spin->priv;
1672   GtkEditableInterface *parent_editable_iface;
1673
1674   parent_editable_iface = g_type_interface_peek (gtk_spin_button_parent_class,
1675                                                  GTK_TYPE_EDITABLE);
1676
1677   if (priv->numeric)
1678     {
1679       struct lconv *lc;
1680       gboolean sign;
1681       gint dotpos = -1;
1682       gint i;
1683       guint32 pos_sign;
1684       guint32 neg_sign;
1685       gint entry_length;
1686       const gchar *entry_text;
1687
1688       entry_length = gtk_entry_get_text_length (entry);
1689       entry_text = gtk_entry_get_text (entry);
1690
1691       lc = localeconv ();
1692
1693       if (*(lc->negative_sign))
1694         neg_sign = *(lc->negative_sign);
1695       else
1696         neg_sign = '-';
1697
1698       if (*(lc->positive_sign))
1699         pos_sign = *(lc->positive_sign);
1700       else
1701         pos_sign = '+';
1702
1703 #ifdef G_OS_WIN32
1704       /* Workaround for bug caused by some Windows application messing
1705        * up the positive sign of the current locale, more specifically
1706        * HKEY_CURRENT_USER\Control Panel\International\sPositiveSign.
1707        * See bug #330743 and for instance
1708        * http://www.msnewsgroups.net/group/microsoft.public.dotnet.languages.csharp/topic36024.aspx
1709        *
1710        * I don't know if the positive sign always gets bogusly set to
1711        * a digit when the above Registry value is corrupted as
1712        * described. (In my test case, it got set to "8", and in the
1713        * bug report above it presumably was set ot "0".) Probably it
1714        * might get set to almost anything? So how to distinguish a
1715        * bogus value from some correct one for some locale? That is
1716        * probably hard, but at least we should filter out the
1717        * digits...
1718        */
1719       if (pos_sign >= '0' && pos_sign <= '9')
1720         pos_sign = '+';
1721 #endif
1722
1723       for (sign=0, i=0; i<entry_length; i++)
1724         if ((entry_text[i] == neg_sign) ||
1725             (entry_text[i] == pos_sign))
1726           {
1727             sign = 1;
1728             break;
1729           }
1730
1731       if (sign && !(*position))
1732         return;
1733
1734       for (dotpos=-1, i=0; i<entry_length; i++)
1735         if (entry_text[i] == *(lc->decimal_point))
1736           {
1737             dotpos = i;
1738             break;
1739           }
1740
1741       if (dotpos > -1 && *position > dotpos &&
1742           (gint)priv->digits - entry_length
1743             + dotpos - new_text_length + 1 < 0)
1744         return;
1745
1746       for (i = 0; i < new_text_length; i++)
1747         {
1748           if (new_text[i] == neg_sign || new_text[i] == pos_sign)
1749             {
1750               if (sign || (*position) || i)
1751                 return;
1752               sign = TRUE;
1753             }
1754           else if (new_text[i] == *(lc->decimal_point))
1755             {
1756               if (!priv->digits || dotpos > -1 ||
1757                   (new_text_length - 1 - i + entry_length
1758                     - *position > (gint)priv->digits))
1759                 return;
1760               dotpos = *position + i;
1761             }
1762           else if (new_text[i] < 0x30 || new_text[i] > 0x39)
1763             return;
1764         }
1765     }
1766
1767   parent_editable_iface->insert_text (editable, new_text,
1768                                       new_text_length, position);
1769 }
1770
1771 static void
1772 gtk_spin_button_real_spin (GtkSpinButton *spin_button,
1773                            gdouble        increment)
1774 {
1775   GtkSpinButtonPrivate *priv = spin_button->priv;
1776   GtkAdjustment *adjustment;
1777   gdouble new_value = 0.0;
1778   gboolean wrapped = FALSE;
1779
1780   adjustment = priv->adjustment;
1781
1782   new_value = gtk_adjustment_get_value (adjustment) + increment;
1783
1784   if (increment > 0)
1785     {
1786       if (priv->wrap)
1787         {
1788           if (fabs (gtk_adjustment_get_value (adjustment) - gtk_adjustment_get_upper (adjustment)) < EPSILON)
1789             {
1790               new_value = gtk_adjustment_get_lower (adjustment);
1791               wrapped = TRUE;
1792             }
1793           else if (new_value > gtk_adjustment_get_upper (adjustment))
1794             new_value = gtk_adjustment_get_upper (adjustment);
1795         }
1796       else
1797         new_value = MIN (new_value, gtk_adjustment_get_upper (adjustment));
1798     }
1799   else if (increment < 0)
1800     {
1801       if (priv->wrap)
1802         {
1803           if (fabs (gtk_adjustment_get_value (adjustment) - gtk_adjustment_get_lower (adjustment)) < EPSILON)
1804             {
1805               new_value = gtk_adjustment_get_upper (adjustment);
1806               wrapped = TRUE;
1807             }
1808           else if (new_value < gtk_adjustment_get_lower (adjustment))
1809             new_value = gtk_adjustment_get_lower (adjustment);
1810         }
1811       else
1812         new_value = MAX (new_value, gtk_adjustment_get_lower (adjustment));
1813     }
1814
1815   if (fabs (new_value - gtk_adjustment_get_value (adjustment)) > EPSILON)
1816     gtk_adjustment_set_value (adjustment, new_value);
1817
1818   if (wrapped)
1819     g_signal_emit (spin_button, spinbutton_signals[WRAPPED], 0);
1820
1821   gtk_widget_queue_draw (GTK_WIDGET (spin_button));
1822 }
1823
1824 static gint
1825 gtk_spin_button_default_input (GtkSpinButton *spin_button,
1826                                gdouble       *new_val)
1827 {
1828   gchar *err = NULL;
1829
1830   *new_val = g_strtod (gtk_entry_get_text (GTK_ENTRY (spin_button)), &err);
1831   if (*err)
1832     return GTK_INPUT_ERROR;
1833   else
1834     return FALSE;
1835 }
1836
1837 static gint
1838 gtk_spin_button_default_output (GtkSpinButton *spin_button)
1839 {
1840   GtkSpinButtonPrivate *priv = spin_button->priv;
1841
1842   gchar *buf = g_strdup_printf ("%0.*f", priv->digits, gtk_adjustment_get_value (priv->adjustment));
1843
1844   if (strcmp (buf, gtk_entry_get_text (GTK_ENTRY (spin_button))))
1845     gtk_entry_set_text (GTK_ENTRY (spin_button), buf);
1846   g_free (buf);
1847   return FALSE;
1848 }
1849
1850
1851 /***********************************************************
1852  ***********************************************************
1853  ***                  Public interface                   ***
1854  ***********************************************************
1855  ***********************************************************/
1856
1857
1858 /**
1859  * gtk_spin_button_configure:
1860  * @spin_button: a #GtkSpinButton
1861  * @adjustment: (allow-none):  a #GtkAdjustment
1862  * @climb_rate: the new climb rate
1863  * @digits: the number of decimal places to display in the spin button
1864  *
1865  * Changes the properties of an existing spin button. The adjustment,
1866  * climb rate, and number of decimal places are all changed accordingly,
1867  * after this function call.
1868  */
1869 void
1870 gtk_spin_button_configure (GtkSpinButton *spin_button,
1871                            GtkAdjustment *adjustment,
1872                            gdouble        climb_rate,
1873                            guint          digits)
1874 {
1875   GtkSpinButtonPrivate *priv;
1876
1877   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
1878
1879   priv = spin_button->priv;
1880
1881   if (adjustment)
1882     gtk_spin_button_set_adjustment (spin_button, adjustment);
1883   else
1884     adjustment = priv->adjustment;
1885
1886   g_object_freeze_notify (G_OBJECT (spin_button));
1887   if (priv->digits != digits)
1888     {
1889       priv->digits = digits;
1890       g_object_notify (G_OBJECT (spin_button), "digits");
1891     }
1892
1893   if (priv->climb_rate != climb_rate)
1894     {
1895       priv->climb_rate = climb_rate;
1896       g_object_notify (G_OBJECT (spin_button), "climb-rate");
1897     }
1898   g_object_thaw_notify (G_OBJECT (spin_button));
1899
1900   gtk_adjustment_value_changed (adjustment);
1901 }
1902
1903 /**
1904  * gtk_spin_button_new:
1905  * @adjustment: (allow-none): the #GtkAdjustment object that this spin
1906  *     button should use, or %NULL
1907  * @climb_rate: specifies how much the spin button changes when an arrow
1908  *     is clicked on
1909  * @digits: the number of decimal places to display
1910  *
1911  * Creates a new #GtkSpinButton.
1912  *
1913  * Returns: The new spin button as a #GtkWidget
1914  */
1915 GtkWidget *
1916 gtk_spin_button_new (GtkAdjustment *adjustment,
1917                      gdouble        climb_rate,
1918                      guint          digits)
1919 {
1920   GtkSpinButton *spin;
1921
1922   if (adjustment)
1923     g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), NULL);
1924
1925   spin = g_object_new (GTK_TYPE_SPIN_BUTTON, NULL);
1926
1927   gtk_spin_button_configure (spin, adjustment, climb_rate, digits);
1928
1929   return GTK_WIDGET (spin);
1930 }
1931
1932 /**
1933  * gtk_spin_button_new_with_range:
1934  * @min: Minimum allowable value
1935  * @max: Maximum allowable value
1936  * @step: Increment added or subtracted by spinning the widget
1937  *
1938  * This is a convenience constructor that allows creation of a numeric
1939  * #GtkSpinButton without manually creating an adjustment. The value is
1940  * initially set to the minimum value and a page increment of 10 * @step
1941  * is the default. The precision of the spin button is equivalent to the
1942  * precision of @step.
1943  *
1944  * Note that the way in which the precision is derived works best if @step
1945  * is a power of ten. If the resulting precision is not suitable for your
1946  * needs, use gtk_spin_button_set_digits() to correct it.
1947  *
1948  * Return value: The new spin button as a #GtkWidget
1949  */
1950 GtkWidget *
1951 gtk_spin_button_new_with_range (gdouble min,
1952                                 gdouble max,
1953                                 gdouble step)
1954 {
1955   GtkAdjustment *adjustment;
1956   GtkSpinButton *spin;
1957   gint digits;
1958
1959   g_return_val_if_fail (min <= max, NULL);
1960   g_return_val_if_fail (step != 0.0, NULL);
1961
1962   spin = g_object_new (GTK_TYPE_SPIN_BUTTON, NULL);
1963
1964   adjustment = gtk_adjustment_new (min, min, max, step, 10 * step, 0);
1965
1966   if (fabs (step) >= 1.0 || step == 0.0)
1967     digits = 0;
1968   else {
1969     digits = abs ((gint) floor (log10 (fabs (step))));
1970     if (digits > MAX_DIGITS)
1971       digits = MAX_DIGITS;
1972   }
1973
1974   gtk_spin_button_configure (spin, adjustment, step, digits);
1975
1976   gtk_spin_button_set_numeric (spin, TRUE);
1977
1978   return GTK_WIDGET (spin);
1979 }
1980
1981 /* Callback used when the spin button's adjustment changes.
1982  * We need to redraw the arrows when the adjustment's range
1983  * changes, and reevaluate our size request.
1984  */
1985 static void
1986 adjustment_changed_cb (GtkAdjustment *adjustment, gpointer data)
1987 {
1988   GtkSpinButton *spin_button = GTK_SPIN_BUTTON (data);
1989   GtkSpinButtonPrivate *priv = spin_button->priv;
1990
1991   priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
1992   gtk_widget_queue_resize (GTK_WIDGET (spin_button));
1993 }
1994
1995 /**
1996  * gtk_spin_button_set_adjustment:
1997  * @spin_button: a #GtkSpinButton
1998  * @adjustment: a #GtkAdjustment to replace the existing adjustment
1999  *
2000  * Replaces the #GtkAdjustment associated with @spin_button.
2001  */
2002 void
2003 gtk_spin_button_set_adjustment (GtkSpinButton *spin_button,
2004                                 GtkAdjustment *adjustment)
2005 {
2006   GtkSpinButtonPrivate *priv;
2007
2008   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2009
2010   priv = spin_button->priv;
2011
2012   if (priv->adjustment != adjustment)
2013     {
2014       if (priv->adjustment)
2015         {
2016           g_signal_handlers_disconnect_by_func (priv->adjustment,
2017                                                 gtk_spin_button_value_changed,
2018                                                 spin_button);
2019           g_signal_handlers_disconnect_by_func (priv->adjustment,
2020                                                 adjustment_changed_cb,
2021                                                 spin_button);
2022           g_object_unref (priv->adjustment);
2023         }
2024       priv->adjustment = adjustment;
2025       if (adjustment)
2026         {
2027           g_object_ref_sink (adjustment);
2028           g_signal_connect (adjustment, "value-changed",
2029                             G_CALLBACK (gtk_spin_button_value_changed),
2030                             spin_button);
2031           g_signal_connect (adjustment, "changed",
2032                             G_CALLBACK (adjustment_changed_cb),
2033                             spin_button);
2034           priv->timer_step = gtk_adjustment_get_step_increment (priv->adjustment);
2035         }
2036
2037       gtk_widget_queue_resize (GTK_WIDGET (spin_button));
2038     }
2039
2040   g_object_notify (G_OBJECT (spin_button), "adjustment");
2041 }
2042
2043 /**
2044  * gtk_spin_button_get_adjustment:
2045  * @spin_button: a #GtkSpinButton
2046  *
2047  * Get the adjustment associated with a #GtkSpinButton
2048  *
2049  * Return value: (transfer none): the #GtkAdjustment of @spin_button
2050  **/
2051 GtkAdjustment *
2052 gtk_spin_button_get_adjustment (GtkSpinButton *spin_button)
2053 {
2054   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), NULL);
2055
2056   return spin_button->priv->adjustment;
2057 }
2058
2059 /**
2060  * gtk_spin_button_set_digits:
2061  * @spin_button: a #GtkSpinButton
2062  * @digits: the number of digits after the decimal point to be displayed for the spin button's value
2063  *
2064  * Set the precision to be displayed by @spin_button. Up to 20 digit precision
2065  * is allowed.
2066  **/
2067 void
2068 gtk_spin_button_set_digits (GtkSpinButton *spin_button,
2069                             guint          digits)
2070 {
2071   GtkSpinButtonPrivate *priv;
2072
2073   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2074
2075   priv = spin_button->priv;
2076
2077   if (priv->digits != digits)
2078     {
2079       priv->digits = digits;
2080       gtk_spin_button_value_changed (priv->adjustment, spin_button);
2081       g_object_notify (G_OBJECT (spin_button), "digits");
2082
2083       /* since lower/upper may have changed */
2084       gtk_widget_queue_resize (GTK_WIDGET (spin_button));
2085     }
2086 }
2087
2088 /**
2089  * gtk_spin_button_get_digits:
2090  * @spin_button: a #GtkSpinButton
2091  *
2092  * Fetches the precision of @spin_button. See gtk_spin_button_set_digits().
2093  *
2094  * Returns: the current precision
2095  **/
2096 guint
2097 gtk_spin_button_get_digits (GtkSpinButton *spin_button)
2098 {
2099   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0);
2100
2101   return spin_button->priv->digits;
2102 }
2103
2104 /**
2105  * gtk_spin_button_set_increments:
2106  * @spin_button: a #GtkSpinButton
2107  * @step: increment applied for a button 1 press.
2108  * @page: increment applied for a button 2 press.
2109  *
2110  * Sets the step and page increments for spin_button.  This affects how
2111  * quickly the value changes when the spin button's arrows are activated.
2112  **/
2113 void
2114 gtk_spin_button_set_increments (GtkSpinButton *spin_button,
2115                                 gdouble        step,
2116                                 gdouble        page)
2117 {
2118   GtkSpinButtonPrivate *priv;
2119
2120   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2121
2122   priv = spin_button->priv;
2123
2124   gtk_adjustment_configure (priv->adjustment,
2125                             gtk_adjustment_get_value (priv->adjustment),
2126                             gtk_adjustment_get_lower (priv->adjustment),
2127                             gtk_adjustment_get_upper (priv->adjustment),
2128                             step,
2129                             page,
2130                             gtk_adjustment_get_page_size (priv->adjustment));
2131 }
2132
2133 /**
2134  * gtk_spin_button_get_increments:
2135  * @spin_button: a #GtkSpinButton
2136  * @step: (out) (allow-none): location to store step increment, or %NULL
2137  * @page: (out) (allow-none): location to store page increment, or %NULL
2138  *
2139  * Gets the current step and page the increments used by @spin_button. See
2140  * gtk_spin_button_set_increments().
2141  **/
2142 void
2143 gtk_spin_button_get_increments (GtkSpinButton *spin_button,
2144                                 gdouble       *step,
2145                                 gdouble       *page)
2146 {
2147   GtkSpinButtonPrivate *priv;
2148
2149   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2150
2151   priv = spin_button->priv;
2152
2153   if (step)
2154     *step = gtk_adjustment_get_step_increment (priv->adjustment);
2155   if (page)
2156     *page = gtk_adjustment_get_page_increment (priv->adjustment);
2157 }
2158
2159 /**
2160  * gtk_spin_button_set_range:
2161  * @spin_button: a #GtkSpinButton
2162  * @min: minimum allowable value
2163  * @max: maximum allowable value
2164  *
2165  * Sets the minimum and maximum allowable values for @spin_button.
2166  */
2167 void
2168 gtk_spin_button_set_range (GtkSpinButton *spin_button,
2169                            gdouble        min,
2170                            gdouble        max)
2171 {
2172   GtkAdjustment *adjustment;
2173
2174   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2175
2176   adjustment = spin_button->priv->adjustment;
2177
2178   gtk_adjustment_configure (adjustment,
2179                             CLAMP (gtk_adjustment_get_value (adjustment), min, max),
2180                             min,
2181                             max,
2182                             gtk_adjustment_get_step_increment (adjustment),
2183                             gtk_adjustment_get_page_increment (adjustment),
2184                             gtk_adjustment_get_page_size (adjustment));
2185 }
2186
2187 /**
2188  * gtk_spin_button_get_range:
2189  * @spin_button: a #GtkSpinButton
2190  * @min: (out) (allow-none): location to store minimum allowed value, or %NULL
2191  * @max: (out) (allow-none): location to store maximum allowed value, or %NULL
2192  *
2193  * Gets the range allowed for @spin_button.
2194  * See gtk_spin_button_set_range().
2195  */
2196 void
2197 gtk_spin_button_get_range (GtkSpinButton *spin_button,
2198                            gdouble       *min,
2199                            gdouble       *max)
2200 {
2201   GtkSpinButtonPrivate *priv;
2202
2203   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2204
2205   priv = spin_button->priv;
2206
2207   if (min)
2208     *min = gtk_adjustment_get_lower (priv->adjustment);
2209   if (max)
2210     *max = gtk_adjustment_get_upper (priv->adjustment);
2211 }
2212
2213 /**
2214  * gtk_spin_button_get_value:
2215  * @spin_button: a #GtkSpinButton
2216  *
2217  * Get the value in the @spin_button.
2218  *
2219  * Return value: the value of @spin_button
2220  */
2221 gdouble
2222 gtk_spin_button_get_value (GtkSpinButton *spin_button)
2223 {
2224   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0.0);
2225
2226   return gtk_adjustment_get_value (spin_button->priv->adjustment);
2227 }
2228
2229 /**
2230  * gtk_spin_button_get_value_as_int:
2231  * @spin_button: a #GtkSpinButton
2232  *
2233  * Get the value @spin_button represented as an integer.
2234  *
2235  * Return value: the value of @spin_button
2236  */
2237 gint
2238 gtk_spin_button_get_value_as_int (GtkSpinButton *spin_button)
2239 {
2240   GtkSpinButtonPrivate *priv;
2241   gdouble val;
2242
2243   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0);
2244
2245   priv = spin_button->priv;
2246
2247   val = gtk_adjustment_get_value (priv->adjustment);
2248   if (val - floor (val) < ceil (val) - val)
2249     return floor (val);
2250   else
2251     return ceil (val);
2252 }
2253
2254 /**
2255  * gtk_spin_button_set_value:
2256  * @spin_button: a #GtkSpinButton
2257  * @value: the new value
2258  *
2259  * Sets the value of @spin_button.
2260  */
2261 void
2262 gtk_spin_button_set_value (GtkSpinButton *spin_button,
2263                            gdouble        value)
2264 {
2265   GtkSpinButtonPrivate *priv;
2266
2267   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2268
2269   priv = spin_button->priv;
2270
2271   if (fabs (value - gtk_adjustment_get_value (priv->adjustment)) > EPSILON)
2272     gtk_adjustment_set_value (priv->adjustment, value);
2273   else
2274     {
2275       gint return_val = FALSE;
2276       g_signal_emit (spin_button, spinbutton_signals[OUTPUT], 0, &return_val);
2277       if (return_val == FALSE)
2278         gtk_spin_button_default_output (spin_button);
2279     }
2280 }
2281
2282 /**
2283  * gtk_spin_button_set_update_policy:
2284  * @spin_button: a #GtkSpinButton
2285  * @policy: a #GtkSpinButtonUpdatePolicy value
2286  *
2287  * Sets the update behavior of a spin button.
2288  * This determines wether the spin button is always updated
2289  * or only when a valid value is set.
2290  */
2291 void
2292 gtk_spin_button_set_update_policy (GtkSpinButton             *spin_button,
2293                                    GtkSpinButtonUpdatePolicy  policy)
2294 {
2295   GtkSpinButtonPrivate *priv;
2296
2297   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2298
2299   priv = spin_button->priv;
2300
2301   if (priv->update_policy != policy)
2302     {
2303       priv->update_policy = policy;
2304       g_object_notify (G_OBJECT (spin_button), "update-policy");
2305     }
2306 }
2307
2308 /**
2309  * gtk_spin_button_get_update_policy:
2310  * @spin_button: a #GtkSpinButton
2311  *
2312  * Gets the update behavior of a spin button.
2313  * See gtk_spin_button_set_update_policy().
2314  *
2315  * Return value: the current update policy
2316  */
2317 GtkSpinButtonUpdatePolicy
2318 gtk_spin_button_get_update_policy (GtkSpinButton *spin_button)
2319 {
2320   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), GTK_UPDATE_ALWAYS);
2321
2322   return spin_button->priv->update_policy;
2323 }
2324
2325 /**
2326  * gtk_spin_button_set_numeric:
2327  * @spin_button: a #GtkSpinButton
2328  * @numeric: flag indicating if only numeric entry is allowed
2329  *
2330  * Sets the flag that determines if non-numeric text can be typed
2331  * into the spin button.
2332  */
2333 void
2334 gtk_spin_button_set_numeric (GtkSpinButton *spin_button,
2335                              gboolean       numeric)
2336 {
2337   GtkSpinButtonPrivate *priv;
2338
2339   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2340
2341   priv = spin_button->priv;
2342
2343   numeric = numeric != FALSE;
2344
2345   if (priv->numeric != numeric)
2346     {
2347        priv->numeric = numeric;
2348        g_object_notify (G_OBJECT (spin_button), "numeric");
2349     }
2350 }
2351
2352 /**
2353  * gtk_spin_button_get_numeric:
2354  * @spin_button: a #GtkSpinButton
2355  *
2356  * Returns whether non-numeric text can be typed into the spin button.
2357  * See gtk_spin_button_set_numeric().
2358  *
2359  * Return value: %TRUE if only numeric text can be entered
2360  */
2361 gboolean
2362 gtk_spin_button_get_numeric (GtkSpinButton *spin_button)
2363 {
2364   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), FALSE);
2365
2366   return spin_button->priv->numeric;
2367 }
2368
2369 /**
2370  * gtk_spin_button_set_wrap:
2371  * @spin_button: a #GtkSpinButton
2372  * @wrap: a flag indicating if wrapping behavior is performed
2373  *
2374  * Sets the flag that determines if a spin button value wraps
2375  * around to the opposite limit when the upper or lower limit
2376  * of the range is exceeded.
2377  */
2378 void
2379 gtk_spin_button_set_wrap (GtkSpinButton  *spin_button,
2380                           gboolean        wrap)
2381 {
2382   GtkSpinButtonPrivate *priv;
2383
2384   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2385
2386   priv = spin_button->priv;
2387
2388   wrap = wrap != FALSE;
2389
2390   if (priv->wrap != wrap)
2391     {
2392        priv->wrap = wrap;
2393
2394        g_object_notify (G_OBJECT (spin_button), "wrap");
2395     }
2396 }
2397
2398 /**
2399  * gtk_spin_button_get_wrap:
2400  * @spin_button: a #GtkSpinButton
2401  *
2402  * Returns whether the spin button's value wraps around to the
2403  * opposite limit when the upper or lower limit of the range is
2404  * exceeded. See gtk_spin_button_set_wrap().
2405  *
2406  * Return value: %TRUE if the spin button wraps around
2407  */
2408 gboolean
2409 gtk_spin_button_get_wrap (GtkSpinButton *spin_button)
2410 {
2411   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), FALSE);
2412
2413   return spin_button->priv->wrap;
2414 }
2415
2416 static gint
2417 spin_button_get_arrow_size (GtkSpinButton *spin_button)
2418 {
2419   const PangoFontDescription *font_desc;
2420   GtkStyleContext *context;
2421   gint size;
2422   gint arrow_size;
2423
2424   /* FIXME: use getter */
2425   context = gtk_widget_get_style_context (GTK_WIDGET (spin_button));
2426   font_desc = gtk_style_context_get_font (context, 0);
2427
2428   size = pango_font_description_get_size (font_desc);
2429   arrow_size = MAX (PANGO_PIXELS (size), MIN_ARROW_WIDTH);
2430
2431   return arrow_size - arrow_size % 2; /* force even */
2432 }
2433
2434 /**
2435  * gtk_spin_button_set_snap_to_ticks:
2436  * @spin_button: a #GtkSpinButton
2437  * @snap_to_ticks: a flag indicating if invalid values should be corrected
2438  *
2439  * Sets the policy as to whether values are corrected to the
2440  * nearest step increment when a spin button is activated after
2441  * providing an invalid value.
2442  */
2443 void
2444 gtk_spin_button_set_snap_to_ticks (GtkSpinButton *spin_button,
2445                                    gboolean       snap_to_ticks)
2446 {
2447   GtkSpinButtonPrivate *priv;
2448   guint new_val;
2449
2450   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2451
2452   priv = spin_button->priv;
2453
2454   new_val = (snap_to_ticks != 0);
2455
2456   if (new_val != priv->snap_to_ticks)
2457     {
2458       priv->snap_to_ticks = new_val;
2459       if (new_val && gtk_editable_get_editable (GTK_EDITABLE (spin_button)))
2460         gtk_spin_button_update (spin_button);
2461
2462       g_object_notify (G_OBJECT (spin_button), "snap-to-ticks");
2463     }
2464 }
2465
2466 /**
2467  * gtk_spin_button_get_snap_to_ticks:
2468  * @spin_button: a #GtkSpinButton
2469  *
2470  * Returns whether the values are corrected to the nearest step.
2471  * See gtk_spin_button_set_snap_to_ticks().
2472  *
2473  * Return value: %TRUE if values are snapped to the nearest step
2474  */
2475 gboolean
2476 gtk_spin_button_get_snap_to_ticks (GtkSpinButton *spin_button)
2477 {
2478   g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), FALSE);
2479
2480   return spin_button->priv->snap_to_ticks;
2481 }
2482
2483 /**
2484  * gtk_spin_button_spin:
2485  * @spin_button: a #GtkSpinButton
2486  * @direction: a #GtkSpinType indicating the direction to spin
2487  * @increment: step increment to apply in the specified direction
2488  *
2489  * Increment or decrement a spin button's value in a specified
2490  * direction by a specified amount.
2491  */
2492 void
2493 gtk_spin_button_spin (GtkSpinButton *spin_button,
2494                       GtkSpinType    direction,
2495                       gdouble        increment)
2496 {
2497   GtkSpinButtonPrivate *priv;
2498   GtkAdjustment *adjustment;
2499   gdouble diff;
2500
2501   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2502
2503   priv = spin_button->priv;
2504
2505   adjustment = priv->adjustment;
2506
2507   /* for compatibility with the 1.0.x version of this function */
2508   if (increment != 0 && increment != gtk_adjustment_get_step_increment (adjustment) &&
2509       (direction == GTK_SPIN_STEP_FORWARD ||
2510        direction == GTK_SPIN_STEP_BACKWARD))
2511     {
2512       if (direction == GTK_SPIN_STEP_BACKWARD && increment > 0)
2513         increment = -increment;
2514       direction = GTK_SPIN_USER_DEFINED;
2515     }
2516
2517   switch (direction)
2518     {
2519     case GTK_SPIN_STEP_FORWARD:
2520
2521       gtk_spin_button_real_spin (spin_button, gtk_adjustment_get_step_increment (adjustment));
2522       break;
2523
2524     case GTK_SPIN_STEP_BACKWARD:
2525
2526       gtk_spin_button_real_spin (spin_button, -gtk_adjustment_get_step_increment (adjustment));
2527       break;
2528
2529     case GTK_SPIN_PAGE_FORWARD:
2530
2531       gtk_spin_button_real_spin (spin_button, gtk_adjustment_get_page_increment (adjustment));
2532       break;
2533
2534     case GTK_SPIN_PAGE_BACKWARD:
2535
2536       gtk_spin_button_real_spin (spin_button, -gtk_adjustment_get_page_increment (adjustment));
2537       break;
2538
2539     case GTK_SPIN_HOME:
2540
2541       diff = gtk_adjustment_get_value (adjustment) - gtk_adjustment_get_lower (adjustment);
2542       if (diff > EPSILON)
2543         gtk_spin_button_real_spin (spin_button, -diff);
2544       break;
2545
2546     case GTK_SPIN_END:
2547
2548       diff = gtk_adjustment_get_upper (adjustment) - gtk_adjustment_get_value (adjustment);
2549       if (diff > EPSILON)
2550         gtk_spin_button_real_spin (spin_button, diff);
2551       break;
2552
2553     case GTK_SPIN_USER_DEFINED:
2554
2555       if (increment != 0)
2556         gtk_spin_button_real_spin (spin_button, increment);
2557       break;
2558
2559     default:
2560       break;
2561     }
2562 }
2563
2564 /**
2565  * gtk_spin_button_update:
2566  * @spin_button: a #GtkSpinButton
2567  *
2568  * Manually force an update of the spin button.
2569  */
2570 void
2571 gtk_spin_button_update (GtkSpinButton *spin_button)
2572 {
2573   GtkSpinButtonPrivate *priv;
2574   gdouble val;
2575   gint error = 0;
2576   gint return_val;
2577
2578   g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
2579
2580   priv = spin_button->priv;
2581
2582   return_val = FALSE;
2583   g_signal_emit (spin_button, spinbutton_signals[INPUT], 0, &val, &return_val);
2584   if (return_val == FALSE)
2585     {
2586       return_val = gtk_spin_button_default_input (spin_button, &val);
2587       error = (return_val == GTK_INPUT_ERROR);
2588     }
2589   else if (return_val == GTK_INPUT_ERROR)
2590     error = 1;
2591
2592   gtk_widget_queue_draw (GTK_WIDGET (spin_button));
2593
2594   if (priv->update_policy == GTK_UPDATE_ALWAYS)
2595     {
2596       if (val < gtk_adjustment_get_lower (priv->adjustment))
2597         val = gtk_adjustment_get_lower (priv->adjustment);
2598       else if (val > gtk_adjustment_get_upper (priv->adjustment))
2599         val = gtk_adjustment_get_upper (priv->adjustment);
2600     }
2601   else if ((priv->update_policy == GTK_UPDATE_IF_VALID) &&
2602            (error ||
2603             val < gtk_adjustment_get_lower (priv->adjustment) ||
2604             val > gtk_adjustment_get_upper (priv->adjustment)))
2605     {
2606       gtk_spin_button_value_changed (priv->adjustment, spin_button);
2607       return;
2608     }
2609
2610   if (priv->snap_to_ticks)
2611     gtk_spin_button_snap (spin_button, val);
2612   else
2613     gtk_spin_button_set_value (spin_button, val);
2614 }
2615
2616 GdkWindow *
2617 _gtk_spin_button_get_panel (GtkSpinButton *spin_button)
2618 {
2619   return spin_button->priv->panel;
2620 }