]> Pileus Git - ~andy/gtk/blob - gtk/gtkscalebutton.c
924f657e106cdfed9ca5545c2524de0d0e5953e7
[~andy/gtk] / gtk / gtkscalebutton.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2005 Ronald S. Bultje
3  * Copyright (C) 2006, 2007 Christian Persch
4  * Copyright (C) 2006 Jan Arne Petersen
5  * Copyright (C) 2005-2007 Red Hat, Inc.
6  *
7  * Authors:
8  * - Ronald S. Bultje <rbultje@ronald.bitfreak.net>
9  * - Bastien Nocera <bnocera@redhat.com>
10  * - Jan Arne Petersen <jpetersen@jpetersen.org>
11  * - Christian Persch <chpe@svn.gnome.org>
12  *
13  * This library is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Lesser General Public
15  * License as published by the Free Software Foundation; either
16  * version 2 of the License, or (at your option) any later version.
17  *
18  * This library is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  * Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public
24  * License along with this library; if not, write to the
25  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26  * Boston, MA 02111-1307, USA.
27  */
28
29 /*
30  * Modified by the GTK+ Team and others 2007.  See the AUTHORS
31  * file for a list of people on the GTK+ Team.  See the ChangeLog
32  * files for a list of changes.  These files are distributed with
33  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
34  */
35
36 #include "config.h"
37
38 #ifndef _WIN32
39 #define _GNU_SOURCE
40 #endif
41 #include <math.h>
42 #include <stdlib.h>
43 #include <string.h>
44
45 #include <gdk-pixbuf/gdk-pixbuf.h>
46 #include <gdk/gdkkeysyms.h>
47
48 #include "gtkbindings.h"
49 #include "gtkframe.h"
50 #include "gtkmain.h"
51 #include "gtkmarshalers.h"
52 #include "gtkorientable.h"
53 #include "gtkprivate.h"
54 #include "gtkscale.h"
55 #include "gtkscalebutton.h"
56 #include "gtkstock.h"
57 #include "gtkvbox.h"
58 #include "gtkwindow.h"
59
60 #include "gtkintl.h"
61
62 /**
63  * SECTION:gtkscalebutton
64  * @Short_description: A button which pops up a scale
65  * @Title: GtkScaleButton
66  *
67  * #GtkScaleButton provides a button which pops up a scale widget.
68  * This kind of widget is commonly used for volume controls in multimedia
69  * applications, and GTK+ provides a #GtkVolumeButton subclass that
70  * is tailored for this use case.
71  */
72
73
74 #define SCALE_SIZE 100
75 #define CLICK_TIMEOUT 250
76
77 enum
78 {
79   VALUE_CHANGED,
80   POPUP,
81   POPDOWN,
82
83   LAST_SIGNAL
84 };
85
86 enum
87 {
88   PROP_0,
89
90   PROP_ORIENTATION,
91   PROP_VALUE,
92   PROP_SIZE,
93   PROP_ADJUSTMENT,
94   PROP_ICONS
95 };
96
97 struct _GtkScaleButtonPrivate
98 {
99   GtkWidget *plus_button;
100   GtkWidget *minus_button;
101   GtkWidget *dock;
102   GtkWidget *box;
103   GtkWidget *scale;
104   GtkWidget *image;
105
106   GtkIconSize size;
107   GtkOrientation orientation;
108
109   guint click_id;
110   gint click_timeout;
111   guint timeout : 1;
112   gdouble direction;
113   guint32 pop_time;
114
115   gchar **icon_list;
116
117   GdkDevice *grab_pointer;
118   GdkDevice *grab_keyboard;
119
120   GtkAdjustment *adjustment; /* needed because it must be settable in init() */
121 };
122
123 static GObject* gtk_scale_button_constructor    (GType                  type,
124                                                  guint                  n_construct_properties,
125                                                  GObjectConstructParam *construct_params);
126 static void     gtk_scale_button_dispose        (GObject             *object);
127 static void     gtk_scale_button_finalize       (GObject             *object);
128 static void     gtk_scale_button_set_property   (GObject             *object,
129                                                  guint                prop_id,
130                                                  const GValue        *value,
131                                                  GParamSpec          *pspec);
132 static void     gtk_scale_button_get_property   (GObject             *object,
133                                                  guint                prop_id,
134                                                  GValue              *value,
135                                                  GParamSpec          *pspec);
136 static void gtk_scale_button_set_orientation_private (GtkScaleButton *button,
137                                                       GtkOrientation  orientation);
138 static gboolean gtk_scale_button_scroll         (GtkWidget           *widget,
139                                                  GdkEventScroll      *event);
140 static void gtk_scale_button_screen_changed     (GtkWidget           *widget,
141                                                  GdkScreen           *previous_screen);
142 static gboolean gtk_scale_button_press          (GtkWidget           *widget,
143                                                  GdkEventButton      *event);
144 static gboolean gtk_scale_button_key_release    (GtkWidget           *widget,
145                                                  GdkEventKey         *event);
146 static void     gtk_scale_button_popup          (GtkWidget           *widget);
147 static void     gtk_scale_button_popdown        (GtkWidget           *widget);
148 static gboolean cb_dock_button_press            (GtkWidget           *widget,
149                                                  GdkEventButton      *event,
150                                                  gpointer             user_data);
151 static gboolean cb_dock_key_release             (GtkWidget           *widget,
152                                                  GdkEventKey         *event,
153                                                  gpointer             user_data);
154 static gboolean cb_button_press                 (GtkWidget           *widget,
155                                                  GdkEventButton      *event,
156                                                  gpointer             user_data);
157 static gboolean cb_button_release               (GtkWidget           *widget,
158                                                  GdkEventButton      *event,
159                                                  gpointer             user_data);
160 static void cb_dock_grab_notify                 (GtkWidget           *widget,
161                                                  gboolean             was_grabbed,
162                                                  gpointer             user_data);
163 static gboolean cb_dock_grab_broken_event       (GtkWidget           *widget,
164                                                  gboolean             was_grabbed,
165                                                  gpointer             user_data);
166 static void cb_scale_grab_notify                (GtkWidget           *widget,
167                                                  gboolean             was_grabbed,
168                                                  gpointer             user_data);
169 static void gtk_scale_button_update_icon        (GtkScaleButton      *button);
170 static void gtk_scale_button_scale_value_changed(GtkRange            *range);
171
172 /* see below for scale definitions */
173 static GtkWidget *gtk_scale_button_scale_new    (GtkScaleButton      *button);
174
175 G_DEFINE_TYPE_WITH_CODE (GtkScaleButton, gtk_scale_button, GTK_TYPE_BUTTON,
176                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE,
177                                                 NULL))
178
179 static guint signals[LAST_SIGNAL] = { 0, };
180
181 static void
182 gtk_scale_button_class_init (GtkScaleButtonClass *klass)
183 {
184   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
185   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
186   GtkBindingSet *binding_set;
187
188   g_type_class_add_private (klass, sizeof (GtkScaleButtonPrivate));
189
190   gobject_class->constructor = gtk_scale_button_constructor;
191   gobject_class->finalize = gtk_scale_button_finalize;
192   gobject_class->dispose = gtk_scale_button_dispose;
193   gobject_class->set_property = gtk_scale_button_set_property;
194   gobject_class->get_property = gtk_scale_button_get_property;
195
196   widget_class->button_press_event = gtk_scale_button_press;
197   widget_class->key_release_event = gtk_scale_button_key_release;
198   widget_class->scroll_event = gtk_scale_button_scroll;
199   widget_class->screen_changed = gtk_scale_button_screen_changed;
200
201   /**
202    * GtkScaleButton:orientation:
203    *
204    * The orientation of the #GtkScaleButton's popup window.
205    *
206    * Note that since GTK+ 2.16, #GtkScaleButton implements the
207    * #GtkOrientable interface which has its own @orientation
208    * property. However we redefine the property here in order to
209    * override its default horizontal orientation.
210    *
211    * Since: 2.14
212    **/
213   g_object_class_override_property (gobject_class,
214                                     PROP_ORIENTATION,
215                                     "orientation");
216
217   g_object_class_install_property (gobject_class,
218                                    PROP_VALUE,
219                                    g_param_spec_double ("value",
220                                                         P_("Value"),
221                                                         P_("The value of the scale"),
222                                                         -G_MAXDOUBLE,
223                                                         G_MAXDOUBLE,
224                                                         0,
225                                                         GTK_PARAM_READWRITE));
226
227   g_object_class_install_property (gobject_class,
228                                    PROP_SIZE,
229                                    g_param_spec_enum ("size",
230                                                       P_("Icon size"),
231                                                       P_("The icon size"),
232                                                       GTK_TYPE_ICON_SIZE,
233                                                       GTK_ICON_SIZE_SMALL_TOOLBAR,
234                                                       GTK_PARAM_READWRITE));
235
236   g_object_class_install_property (gobject_class,
237                                    PROP_ADJUSTMENT,
238                                    g_param_spec_object ("adjustment",
239                                                         P_("Adjustment"),
240                                                         P_("The GtkAdjustment that contains the current value of this scale button object"),
241                                                         GTK_TYPE_ADJUSTMENT,
242                                                         GTK_PARAM_READWRITE));
243
244   /**
245    * GtkScaleButton:icons:
246    *
247    * The names of the icons to be used by the scale button.
248    * The first item in the array will be used in the button
249    * when the current value is the lowest value, the second
250    * item for the highest value. All the subsequent icons will
251    * be used for all the other values, spread evenly over the
252    * range of values.
253    *
254    * If there's only one icon name in the @icons array, it will
255    * be used for all the values. If only two icon names are in
256    * the @icons array, the first one will be used for the bottom
257    * 50% of the scale, and the second one for the top 50%.
258    *
259    * It is recommended to use at least 3 icons so that the
260    * #GtkScaleButton reflects the current value of the scale
261    * better for the users.
262    *
263    * Since: 2.12
264    */
265   g_object_class_install_property (gobject_class,
266                                    PROP_ICONS,
267                                    g_param_spec_boxed ("icons",
268                                                        P_("Icons"),
269                                                        P_("List of icon names"),
270                                                        G_TYPE_STRV,
271                                                        GTK_PARAM_READWRITE));
272
273   /**
274    * GtkScaleButton::value-changed:
275    * @button: the object which received the signal
276    * @value: the new value
277    *
278    * The ::value-changed signal is emitted when the value field has
279    * changed.
280    *
281    * Since: 2.12
282    */
283   signals[VALUE_CHANGED] =
284     g_signal_new (I_("value-changed"),
285                   G_TYPE_FROM_CLASS (klass),
286                   G_SIGNAL_RUN_LAST,
287                   G_STRUCT_OFFSET (GtkScaleButtonClass, value_changed),
288                   NULL, NULL,
289                   _gtk_marshal_VOID__DOUBLE,
290                   G_TYPE_NONE, 1, G_TYPE_DOUBLE);
291
292   /**
293    * GtkScaleButton::popup:
294    * @button: the object which received the signal
295    *
296    * The ::popup signal is a
297    * <link linkend="keybinding-signals">keybinding signal</link>
298    * which gets emitted to popup the scale widget.
299    *
300    * The default bindings for this signal are Space, Enter and Return.
301    *
302    * Since: 2.12
303    */
304   signals[POPUP] =
305     g_signal_new_class_handler (I_("popup"),
306                                 G_OBJECT_CLASS_TYPE (klass),
307                                 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
308                                 G_CALLBACK (gtk_scale_button_popup),
309                                 NULL, NULL,
310                                 g_cclosure_marshal_VOID__VOID,
311                                 G_TYPE_NONE, 0);
312
313   /**
314    * GtkScaleButton::popdown:
315    * @button: the object which received the signal
316    *
317    * The ::popdown signal is a
318    * <link linkend="keybinding-signals">keybinding signal</link>
319    * which gets emitted to popdown the scale widget.
320    *
321    * The default binding for this signal is Escape.
322    *
323    * Since: 2.12
324    */
325   signals[POPDOWN] =
326     g_signal_new_class_handler (I_("popdown"),
327                                 G_OBJECT_CLASS_TYPE (klass),
328                                 G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
329                                 G_CALLBACK (gtk_scale_button_popdown),
330                                 NULL, NULL,
331                                 g_cclosure_marshal_VOID__VOID,
332                                 G_TYPE_NONE, 0);
333
334   /* Key bindings */
335   binding_set = gtk_binding_set_by_class (widget_class);
336
337   gtk_binding_entry_add_signal (binding_set, GDK_KEY_space, 0,
338                                 "popup", 0);
339   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Space, 0,
340                                 "popup", 0);
341   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Return, 0,
342                                 "popup", 0);
343   gtk_binding_entry_add_signal (binding_set, GDK_KEY_ISO_Enter, 0,
344                                 "popup", 0);
345   gtk_binding_entry_add_signal (binding_set, GDK_KEY_KP_Enter, 0,
346                                 "popup", 0);
347   gtk_binding_entry_add_signal (binding_set, GDK_KEY_Escape, 0,
348                                 "popdown", 0);
349 }
350
351 static void
352 gtk_scale_button_init (GtkScaleButton *button)
353 {
354   GtkScaleButtonPrivate *priv;
355   GtkWidget *frame;
356
357   button->priv = priv = G_TYPE_INSTANCE_GET_PRIVATE (button,
358                                                      GTK_TYPE_SCALE_BUTTON,
359                                                      GtkScaleButtonPrivate);
360
361   priv->timeout = FALSE;
362   priv->click_id = 0;
363   priv->click_timeout = CLICK_TIMEOUT;
364   priv->orientation = GTK_ORIENTATION_VERTICAL;
365
366   gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
367   gtk_button_set_focus_on_click (GTK_BUTTON (button), FALSE);
368
369   /* image */
370   priv->image = gtk_image_new ();
371   gtk_container_add (GTK_CONTAINER (button), priv->image);
372   gtk_widget_show_all (priv->image);
373
374   /* window */
375   priv->dock = gtk_window_new (GTK_WINDOW_POPUP);
376   gtk_widget_set_name (priv->dock, "gtk-scalebutton-popup-window");
377   g_signal_connect (priv->dock, "button-press-event",
378                     G_CALLBACK (cb_dock_button_press), button);
379   g_signal_connect (priv->dock, "key-release-event",
380                     G_CALLBACK (cb_dock_key_release), button);
381   g_signal_connect (priv->dock, "grab-notify",
382                     G_CALLBACK (cb_dock_grab_notify), button);
383   g_signal_connect (priv->dock, "grab-broken-event",
384                     G_CALLBACK (cb_dock_grab_broken_event), button);
385   gtk_window_set_decorated (GTK_WINDOW (priv->dock), FALSE);
386
387   /* frame */
388   frame = gtk_frame_new (NULL);
389   gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT);
390   gtk_container_add (GTK_CONTAINER (priv->dock), frame);
391
392   /* box for scale and +/- buttons */
393   priv->box = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0);
394   gtk_container_add (GTK_CONTAINER (frame), priv->box);
395
396   /* + */
397   priv->plus_button = gtk_button_new_with_label ("+");
398   gtk_button_set_relief (GTK_BUTTON (priv->plus_button), GTK_RELIEF_NONE);
399   g_signal_connect (priv->plus_button, "button-press-event",
400                     G_CALLBACK (cb_button_press), button);
401   g_signal_connect (priv->plus_button, "button-release-event",
402                     G_CALLBACK (cb_button_release), button);
403   gtk_box_pack_start (GTK_BOX (priv->box), priv->plus_button, FALSE, FALSE, 0);
404
405   /* - */
406   priv->minus_button = gtk_button_new_with_label ("-");
407   gtk_button_set_relief (GTK_BUTTON (priv->minus_button), GTK_RELIEF_NONE);
408   g_signal_connect (priv->minus_button, "button-press-event",
409                    G_CALLBACK (cb_button_press), button);
410   g_signal_connect (priv->minus_button, "button-release-event",
411                     G_CALLBACK (cb_button_release), button);
412   gtk_box_pack_end (GTK_BOX (priv->box), priv->minus_button, FALSE, FALSE, 0);
413
414   priv->adjustment = gtk_adjustment_new (0.0, 0.0, 100.0, 2, 20, 0);
415   g_object_ref_sink (priv->adjustment);
416
417   /* the scale */
418   priv->scale = gtk_scale_button_scale_new (button);
419   gtk_container_add (GTK_CONTAINER (priv->box), priv->scale);
420 }
421
422 static GObject *
423 gtk_scale_button_constructor (GType                  type,
424                               guint                  n_construct_properties,
425                               GObjectConstructParam *construct_params)
426 {
427   GObject *object;
428   GtkScaleButton *button;
429   GtkScaleButtonPrivate *priv;
430
431   object = G_OBJECT_CLASS (gtk_scale_button_parent_class)->constructor (type, n_construct_properties, construct_params);
432
433   button = GTK_SCALE_BUTTON (object);
434
435   priv = button->priv;
436
437   /* set button text and size */
438   priv->size = GTK_ICON_SIZE_SMALL_TOOLBAR;
439   gtk_scale_button_update_icon (button);
440
441   return object;
442 }
443
444 static void
445 gtk_scale_button_set_property (GObject       *object,
446                                guint          prop_id,
447                                const GValue  *value,
448                                GParamSpec    *pspec)
449 {
450   GtkScaleButton *button = GTK_SCALE_BUTTON (object);
451
452   switch (prop_id)
453     {
454     case PROP_ORIENTATION:
455       gtk_scale_button_set_orientation_private (button, g_value_get_enum (value));
456       break;
457     case PROP_VALUE:
458       gtk_scale_button_set_value (button, g_value_get_double (value));
459       break;
460     case PROP_SIZE:
461       {
462         GtkIconSize size;
463         size = g_value_get_enum (value);
464         if (button->priv->size != size)
465           {
466             button->priv->size = size;
467             gtk_scale_button_update_icon (button);
468           }
469       }
470       break;
471     case PROP_ADJUSTMENT:
472       gtk_scale_button_set_adjustment (button, g_value_get_object (value));
473       break;
474     case PROP_ICONS:
475       gtk_scale_button_set_icons (button,
476                                   (const gchar **)g_value_get_boxed (value));
477       break;
478     default:
479       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
480       break;
481     }
482 }
483
484 static void
485 gtk_scale_button_get_property (GObject     *object,
486                                guint        prop_id,
487                                GValue      *value,
488                                GParamSpec  *pspec)
489 {
490   GtkScaleButton *button = GTK_SCALE_BUTTON (object);
491   GtkScaleButtonPrivate *priv = button->priv;
492
493   switch (prop_id)
494     {
495     case PROP_ORIENTATION:
496       g_value_set_enum (value, priv->orientation);
497       break;
498     case PROP_VALUE:
499       g_value_set_double (value, gtk_scale_button_get_value (button));
500       break;
501     case PROP_SIZE:
502       g_value_set_enum (value, priv->size);
503       break;
504     case PROP_ADJUSTMENT:
505       g_value_set_object (value, gtk_scale_button_get_adjustment (button));
506       break;
507     case PROP_ICONS:
508       g_value_set_boxed (value, priv->icon_list);
509       break;
510     default:
511       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
512       break;
513     }
514 }
515
516 static void
517 gtk_scale_button_finalize (GObject *object)
518 {
519   GtkScaleButton *button = GTK_SCALE_BUTTON (object);
520   GtkScaleButtonPrivate *priv = button->priv;
521
522   if (priv->icon_list)
523     {
524       g_strfreev (priv->icon_list);
525       priv->icon_list = NULL;
526     }
527
528   if (priv->adjustment)
529     {
530       g_object_unref (priv->adjustment);
531       priv->adjustment = NULL;
532     }
533
534   G_OBJECT_CLASS (gtk_scale_button_parent_class)->finalize (object);
535 }
536
537 static void
538 gtk_scale_button_dispose (GObject *object)
539 {
540   GtkScaleButton *button = GTK_SCALE_BUTTON (object);
541   GtkScaleButtonPrivate *priv = button->priv;
542
543   if (priv->dock)
544     {
545       gtk_widget_destroy (priv->dock);
546       priv->dock = NULL;
547     }
548
549   if (priv->click_id != 0)
550     {
551       g_source_remove (priv->click_id);
552       priv->click_id = 0;
553     }
554
555   G_OBJECT_CLASS (gtk_scale_button_parent_class)->dispose (object);
556 }
557
558 /**
559  * gtk_scale_button_new:
560  * @size: (type int): a stock icon size
561  * @min: the minimum value of the scale (usually 0)
562  * @max: the maximum value of the scale (usually 100)
563  * @step: the stepping of value when a scroll-wheel event,
564  *        or up/down arrow event occurs (usually 2)
565  * @icons: (allow-none): a %NULL-terminated array of icon names, or %NULL if
566  *         you want to set the list later with gtk_scale_button_set_icons()
567  *
568  * Creates a #GtkScaleButton, with a range between @min and @max, with
569  * a stepping of @step.
570  *
571  * Return value: a new #GtkScaleButton
572  *
573  * Since: 2.12
574  */
575 GtkWidget *
576 gtk_scale_button_new (GtkIconSize   size,
577                       gdouble       min,
578                       gdouble       max,
579                       gdouble       step,
580                       const gchar **icons)
581 {
582   GtkScaleButton *button;
583   GtkAdjustment *adj;
584
585   adj = gtk_adjustment_new (min, min, max, step, 10 * step, 0);
586
587   button = g_object_new (GTK_TYPE_SCALE_BUTTON,
588                          "adjustment", adj,
589                          "icons", icons,
590                          "size", size,
591                          NULL);
592
593   return GTK_WIDGET (button);
594 }
595
596 /**
597  * gtk_scale_button_get_value:
598  * @button: a #GtkScaleButton
599  *
600  * Gets the current value of the scale button.
601  *
602  * Return value: current value of the scale button
603  *
604  * Since: 2.12
605  */
606 gdouble
607 gtk_scale_button_get_value (GtkScaleButton * button)
608 {
609   GtkScaleButtonPrivate *priv;
610
611   g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), 0);
612
613   priv = button->priv;
614
615   return gtk_adjustment_get_value (priv->adjustment);
616 }
617
618 /**
619  * gtk_scale_button_set_value:
620  * @button: a #GtkScaleButton
621  * @value: new value of the scale button
622  *
623  * Sets the current value of the scale; if the value is outside
624  * the minimum or maximum range values, it will be clamped to fit
625  * inside them. The scale button emits the #GtkScaleButton::value-changed
626  * signal if the value changes.
627  *
628  * Since: 2.12
629  */
630 void
631 gtk_scale_button_set_value (GtkScaleButton *button,
632                             gdouble         value)
633 {
634   GtkScaleButtonPrivate *priv;
635
636   g_return_if_fail (GTK_IS_SCALE_BUTTON (button));
637
638   priv = button->priv;
639
640   gtk_range_set_value (GTK_RANGE (priv->scale), value);
641 }
642
643 /**
644  * gtk_scale_button_set_icons:
645  * @button: a #GtkScaleButton
646  * @icons: a %NULL-terminated array of icon names
647  *
648  * Sets the icons to be used by the scale button.
649  * For details, see the #GtkScaleButton:icons property.
650  *
651  * Since: 2.12
652  */
653 void
654 gtk_scale_button_set_icons (GtkScaleButton  *button,
655                             const gchar    **icons)
656 {
657   GtkScaleButtonPrivate *priv;
658   gchar **tmp;
659
660   g_return_if_fail (GTK_IS_SCALE_BUTTON (button));
661
662   priv = button->priv;
663
664   tmp = priv->icon_list;
665   priv->icon_list = g_strdupv ((gchar **) icons);
666   g_strfreev (tmp);
667   gtk_scale_button_update_icon (button);
668
669   g_object_notify (G_OBJECT (button), "icons");
670 }
671
672 /**
673  * gtk_scale_button_get_adjustment:
674  * @button: a #GtkScaleButton
675  *
676  * Gets the #GtkAdjustment associated with the #GtkScaleButton's scale.
677  * See gtk_range_get_adjustment() for details.
678  *
679  * Returns: (transfer none): the adjustment associated with the scale
680  *
681  * Since: 2.12
682  */
683 GtkAdjustment*
684 gtk_scale_button_get_adjustment (GtkScaleButton *button)
685 {
686   g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), NULL);
687
688   return button->priv->adjustment;
689 }
690
691 /**
692  * gtk_scale_button_set_adjustment:
693  * @button: a #GtkScaleButton
694  * @adjustment: a #GtkAdjustment
695  *
696  * Sets the #GtkAdjustment to be used as a model
697  * for the #GtkScaleButton's scale.
698  * See gtk_range_set_adjustment() for details.
699  *
700  * Since: 2.12
701  */
702 void
703 gtk_scale_button_set_adjustment (GtkScaleButton *button,
704                                  GtkAdjustment  *adjustment)
705 {
706   g_return_if_fail (GTK_IS_SCALE_BUTTON (button));
707
708   if (!adjustment)
709     adjustment = gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
710   else
711     g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
712
713   if (button->priv->adjustment != adjustment)
714     {
715       if (button->priv->adjustment)
716         g_object_unref (button->priv->adjustment);
717       button->priv->adjustment = g_object_ref_sink (adjustment);
718
719       if (button->priv->scale)
720         gtk_range_set_adjustment (GTK_RANGE (button->priv->scale), adjustment);
721
722       g_object_notify (G_OBJECT (button), "adjustment");
723     }
724 }
725
726 /**
727  * gtk_scale_button_get_plus_button:
728  * @button: a #GtkScaleButton
729  *
730  * Retrieves the plus button of the #GtkScaleButton.
731  *
732  * Returns: (transfer none): the plus button of the #GtkScaleButton
733  *
734  * Since: 2.14
735  */
736 GtkWidget *
737 gtk_scale_button_get_plus_button (GtkScaleButton *button)
738 {
739   g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), NULL);
740
741   return button->priv->plus_button;
742 }
743
744 /**
745  * gtk_scale_button_get_minus_button:
746  * @button: a #GtkScaleButton
747  *
748  * Retrieves the minus button of the #GtkScaleButton.
749  *
750  * Returns: (transfer none): the minus button of the #GtkScaleButton
751  *
752  * Since: 2.14
753  */
754 GtkWidget *
755 gtk_scale_button_get_minus_button (GtkScaleButton *button)
756 {
757   g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), NULL);
758
759   return button->priv->minus_button;
760 }
761
762 /**
763  * gtk_scale_button_get_popup:
764  * @button: a #GtkScaleButton
765  *
766  * Retrieves the popup of the #GtkScaleButton.
767  *
768  * Returns: (transfer none): the popup of the #GtkScaleButton
769  *
770  * Since: 2.14
771  */
772 GtkWidget *
773 gtk_scale_button_get_popup (GtkScaleButton *button)
774 {
775   g_return_val_if_fail (GTK_IS_SCALE_BUTTON (button), NULL);
776
777   return button->priv->dock;
778 }
779
780 static void
781 gtk_scale_button_set_orientation_private (GtkScaleButton *button,
782                                           GtkOrientation  orientation)
783 {
784   GtkScaleButtonPrivate *priv = button->priv;
785
786   if (orientation != priv->orientation)
787     {
788       priv->orientation = orientation;
789
790       gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->box),
791                                       orientation);
792       gtk_container_child_set (GTK_CONTAINER (priv->box),
793                                priv->plus_button,
794                                "pack-type",
795                                orientation == GTK_ORIENTATION_VERTICAL ?
796                                GTK_PACK_START : GTK_PACK_END,
797                                NULL);
798       gtk_container_child_set (GTK_CONTAINER (priv->box),
799                                priv->minus_button,
800                                "pack-type",
801                                orientation == GTK_ORIENTATION_VERTICAL ?
802                                GTK_PACK_END : GTK_PACK_START,
803                                NULL);
804
805       gtk_orientable_set_orientation (GTK_ORIENTABLE (priv->scale),
806                                       orientation);
807
808       if (orientation == GTK_ORIENTATION_VERTICAL)
809         {
810           gtk_widget_set_size_request (GTK_WIDGET (priv->scale),
811                                        -1, SCALE_SIZE);
812           gtk_range_set_inverted (GTK_RANGE (priv->scale), TRUE);
813         }
814       else
815         {
816           gtk_widget_set_size_request (GTK_WIDGET (priv->scale),
817                                        SCALE_SIZE, -1);
818           gtk_range_set_inverted (GTK_RANGE (priv->scale), FALSE);
819         }
820
821       /* FIXME: without this, the popup window appears as a square
822        * after changing the orientation
823        */
824       gtk_window_resize (GTK_WINDOW (priv->dock), 1, 1);
825
826       g_object_notify (G_OBJECT (button), "orientation");
827     }
828 }
829
830 /*
831  * button callbacks.
832  */
833
834 static gboolean
835 gtk_scale_button_scroll (GtkWidget      *widget,
836                          GdkEventScroll *event)
837 {
838   GtkScaleButton *button;
839   GtkScaleButtonPrivate *priv;
840   GtkAdjustment *adj;
841   gdouble d;
842
843   button = GTK_SCALE_BUTTON (widget);
844   priv = button->priv;
845   adj = priv->adjustment;
846
847   if (event->type != GDK_SCROLL)
848     return FALSE;
849
850   d = gtk_scale_button_get_value (button);
851   if (event->direction == GDK_SCROLL_UP)
852     {
853       d += adj->step_increment;
854       if (d > adj->upper)
855         d = adj->upper;
856     }
857   else
858     {
859       d -= adj->step_increment;
860       if (d < adj->lower)
861         d = adj->lower;
862     }
863   gtk_scale_button_set_value (button, d);
864
865   return TRUE;
866 }
867
868 static void
869 gtk_scale_button_screen_changed (GtkWidget *widget,
870                                  GdkScreen *previous_screen)
871 {
872   GtkScaleButton *button = (GtkScaleButton *) widget;
873   GtkScaleButtonPrivate *priv;
874   GdkScreen *screen;
875   GValue value = { 0, };
876
877   if (gtk_widget_has_screen (widget) == FALSE)
878     return;
879
880   priv = button->priv;
881
882   screen = gtk_widget_get_screen (widget);
883   g_value_init (&value, G_TYPE_INT);
884   if (gdk_screen_get_setting (screen,
885                               "gtk-double-click-time",
886                               &value) == FALSE)
887     {
888       priv->click_timeout = CLICK_TIMEOUT;
889       return;
890     }
891
892   priv->click_timeout = g_value_get_int (&value);
893 }
894
895 static gboolean
896 gtk_scale_popup (GtkWidget *widget,
897                  GdkEvent  *event,
898                  guint32    time)
899 {
900   GtkAllocation allocation, dock_allocation, scale_allocation;
901   GtkScaleButton *button;
902   GtkScaleButtonPrivate *priv;
903   GtkAdjustment *adj;
904   gint x, y, m, dx, dy, sx, sy, startoff;
905   gint min_slider_size;
906   gdouble v;
907   GdkDisplay *display;
908   GdkScreen *screen;
909   gboolean is_moved;
910   GdkDevice *device, *keyboard, *pointer;
911
912   is_moved = FALSE;
913   button = GTK_SCALE_BUTTON (widget);
914   priv = button->priv;
915   adj = priv->adjustment;
916
917   display = gtk_widget_get_display (widget);
918   screen = gtk_widget_get_screen (widget);
919   gtk_widget_get_allocation (widget, &allocation);
920
921   /* position roughly */
922   gtk_window_set_screen (GTK_WINDOW (priv->dock), screen);
923
924   gdk_window_get_origin (gtk_widget_get_window (widget),
925                          &x, &y);
926   x += allocation.x;
927   y += allocation.y;
928
929   if (priv->orientation == GTK_ORIENTATION_VERTICAL)
930     gtk_window_move (GTK_WINDOW (priv->dock), x, y - (SCALE_SIZE / 2));
931   else
932     gtk_window_move (GTK_WINDOW (priv->dock), x - (SCALE_SIZE / 2), y);
933
934   gtk_widget_show_all (priv->dock);
935
936   gdk_window_get_origin (gtk_widget_get_window (priv->dock),
937                          &dx, &dy);
938   gtk_widget_get_allocation (priv->dock, &dock_allocation);
939   dx += dock_allocation.x;
940   dy += dock_allocation.y;
941
942
943   gdk_window_get_origin (gtk_widget_get_window (priv->scale),
944                          &sx, &sy);
945   gtk_widget_get_allocation (priv->scale, &scale_allocation);
946   sx += scale_allocation.x;
947   sy += scale_allocation.y;
948
949   priv->timeout = TRUE;
950
951   /* position (needs widget to be shown already) */
952   v = gtk_scale_button_get_value (button) / (adj->upper - adj->lower);
953   min_slider_size = gtk_range_get_min_slider_size (GTK_RANGE (priv->scale));
954
955   if (priv->orientation == GTK_ORIENTATION_VERTICAL)
956     {
957       startoff = sy - dy;
958
959       x += (allocation.width - dock_allocation.width) / 2;
960       y -= startoff;
961       y -= min_slider_size / 2;
962       m = scale_allocation.height - min_slider_size;
963       y -= m * (1.0 - v);
964     }
965   else
966     {
967       startoff = sx - dx;
968
969       x -= startoff;
970       y += (allocation.height - dock_allocation.height) / 2;
971       x -= min_slider_size / 2;
972       m = scale_allocation.width - min_slider_size;
973       x -= m * v;
974     }
975
976   /* Make sure the dock stays inside the monitor */
977   if (event->type == GDK_BUTTON_PRESS)
978     {
979       GtkAllocation d_allocation;
980       int monitor;
981       GdkEventButton *button_event = (GdkEventButton *) event;
982       GdkRectangle rect;
983       GtkWidget *d;
984
985       d = GTK_WIDGET (priv->dock);
986       monitor = gdk_screen_get_monitor_at_point (screen,
987                                                  button_event->x_root,
988                                                  button_event->y_root);
989       gdk_screen_get_monitor_geometry (screen, monitor, &rect);
990
991       if (priv->orientation == GTK_ORIENTATION_VERTICAL)
992         y += button_event->y;
993       else
994         x += button_event->x;
995
996       /* Move the dock, but set is_moved so we
997        * don't forward the first click later on,
998        * as it could make the scale go to the bottom */
999       gtk_widget_get_allocation (d, &d_allocation);
1000       if (y < rect.y)
1001         {
1002           y = rect.y;
1003           is_moved = TRUE;
1004         }
1005       else if (y + d_allocation.height > rect.height + rect.y)
1006         {
1007           y = rect.y + rect.height - d_allocation.height;
1008           is_moved = TRUE;
1009         }
1010
1011       if (x < rect.x)
1012         {
1013           x = rect.x;
1014           is_moved = TRUE;
1015         }
1016       else if (x + d_allocation.width > rect.width + rect.x)
1017         {
1018           x = rect.x + rect.width - d_allocation.width;
1019           is_moved = TRUE;
1020         }
1021     }
1022
1023   gtk_window_move (GTK_WINDOW (priv->dock), x, y);
1024
1025   if (event->type == GDK_BUTTON_PRESS)
1026     GTK_WIDGET_CLASS (gtk_scale_button_parent_class)->button_press_event (widget, (GdkEventButton *) event);
1027
1028   device = gdk_event_get_device (event);
1029
1030   if (device->source == GDK_SOURCE_KEYBOARD)
1031     {
1032       keyboard = device;
1033       pointer = gdk_device_get_associated_device (device);
1034     }
1035   else
1036     {
1037       pointer = device;
1038       keyboard = gdk_device_get_associated_device (device);
1039     }
1040
1041   /* grab focus */
1042   gtk_device_grab_add (priv->dock, pointer, TRUE);
1043
1044   if (gdk_device_grab (pointer, gtk_widget_get_window (priv->dock),
1045                        GDK_OWNERSHIP_WINDOW, TRUE,
1046                        GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
1047                        GDK_POINTER_MOTION_MASK, NULL, time) != GDK_GRAB_SUCCESS)
1048     {
1049       gtk_device_grab_remove (priv->dock, pointer);
1050       gtk_widget_hide (priv->dock);
1051       return FALSE;
1052     }
1053
1054   if (gdk_device_grab (keyboard, gtk_widget_get_window (priv->dock),
1055                        GDK_OWNERSHIP_WINDOW, TRUE,
1056                        GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK,
1057                        NULL, time) != GDK_GRAB_SUCCESS)
1058     {
1059       gdk_device_ungrab (pointer, time);
1060       gtk_device_grab_remove (priv->dock, pointer);
1061       gtk_widget_hide (priv->dock);
1062       return FALSE;
1063     }
1064
1065   gtk_widget_grab_focus (priv->dock);
1066   priv->grab_keyboard = keyboard;
1067   priv->grab_pointer = pointer;
1068
1069   if (event->type == GDK_BUTTON_PRESS && !is_moved)
1070     {
1071       GdkEventButton *e;
1072       GdkEventButton *button_event = (GdkEventButton *) event;
1073
1074       /* forward event to the slider */
1075       e = (GdkEventButton *) gdk_event_copy ((GdkEvent *) event);
1076       e->window = gtk_widget_get_window (priv->scale);
1077
1078       /* position: the X position isn't relevant, halfway will work just fine.
1079        * The vertical position should be *exactly* in the middle of the slider
1080        * of the scale; if we don't do that correctly, it'll move from its current
1081        * position, which means a position change on-click, which is bad.
1082        */
1083       gtk_widget_get_allocation (priv->scale, &scale_allocation);
1084       if (priv->orientation == GTK_ORIENTATION_VERTICAL)
1085         {
1086           e->x = scale_allocation.width / 2;
1087           m = scale_allocation.height - min_slider_size;
1088           e->y = ((1.0 - v) * m) + min_slider_size / 2;
1089         }
1090       else
1091         {
1092           e->y = scale_allocation.height / 2;
1093           m = scale_allocation.width - min_slider_size;
1094           e->x = (v * m) + min_slider_size / 2;
1095         }
1096
1097       gtk_widget_event (priv->scale, (GdkEvent *) e);
1098       e->window = button_event->window;
1099       gdk_event_free ((GdkEvent *) e);
1100     }
1101
1102   gtk_widget_grab_focus (priv->scale);
1103
1104   priv->pop_time = time;
1105
1106   return TRUE;
1107 }
1108
1109 static gboolean
1110 gtk_scale_button_press (GtkWidget      *widget,
1111                         GdkEventButton *event)
1112 {
1113   return gtk_scale_popup (widget, (GdkEvent *) event, event->time);
1114 }
1115
1116 static void
1117 gtk_scale_button_popup (GtkWidget *widget)
1118 {
1119   GdkEvent *ev;
1120
1121   /* This is a callback for a keybinding signal,
1122    * current event should  be the key event that
1123    * triggered it.
1124    */
1125   ev = gtk_get_current_event ();
1126
1127   if (ev->type != GDK_KEY_PRESS &&
1128       ev->type != GDK_KEY_RELEASE)
1129     {
1130       gdk_event_free (ev);
1131       ev = gdk_event_new (GDK_KEY_RELEASE);
1132       ev->key.time = GDK_CURRENT_TIME;
1133     }
1134
1135   gtk_scale_popup (widget, ev, ev->key.time);
1136   gdk_event_free (ev);
1137 }
1138
1139 static gboolean
1140 gtk_scale_button_key_release (GtkWidget   *widget,
1141                               GdkEventKey *event)
1142 {
1143   return gtk_bindings_activate_event (G_OBJECT (widget), event);
1144 }
1145
1146 /* This is called when the grab is broken for
1147  * either the dock, or the scale itself */
1148 static void
1149 gtk_scale_button_grab_notify (GtkScaleButton *button,
1150                               gboolean        was_grabbed)
1151 {
1152   GdkDisplay *display;
1153   GtkScaleButtonPrivate *priv;
1154   GtkWidget *toplevel, *grab_widget;
1155   GtkWindowGroup *group;
1156
1157   priv = button->priv;
1158
1159   if (!priv->grab_pointer ||
1160       !gtk_widget_device_is_shadowed (GTK_WIDGET (button), priv->grab_pointer))
1161     return;
1162
1163   toplevel = gtk_widget_get_toplevel (GTK_WIDGET (button));
1164
1165   if (GTK_IS_WINDOW (toplevel))
1166     group = gtk_window_get_group (GTK_WINDOW (toplevel));
1167   else
1168     group = gtk_window_get_group (NULL);
1169
1170   grab_widget = gtk_window_group_get_current_device_grab (group, priv->grab_pointer);
1171
1172   if (grab_widget &&
1173       gtk_widget_is_ancestor (grab_widget, priv->dock))
1174     return;
1175
1176   display = gtk_widget_get_display (priv->dock);
1177   gdk_device_ungrab (priv->grab_keyboard, GDK_CURRENT_TIME);
1178   gdk_device_ungrab (priv->grab_pointer, GDK_CURRENT_TIME);
1179   gtk_device_grab_remove (priv->dock, priv->grab_pointer);
1180
1181   priv->grab_keyboard = NULL;
1182   priv->grab_pointer = NULL;
1183
1184   /* hide again */
1185   gtk_widget_hide (priv->dock);
1186   priv->timeout = FALSE;
1187 }
1188
1189 /*
1190  * +/- button callbacks.
1191  */
1192
1193 static gboolean
1194 cb_button_timeout (gpointer user_data)
1195 {
1196   GtkScaleButton *button;
1197   GtkScaleButtonPrivate *priv;
1198   GtkAdjustment *adj;
1199   gdouble val;
1200   gboolean res = TRUE;
1201
1202   button = GTK_SCALE_BUTTON (user_data);
1203   priv = button->priv;
1204
1205   if (priv->click_id == 0)
1206     return FALSE;
1207
1208   adj = priv->adjustment;
1209
1210   val = gtk_scale_button_get_value (button);
1211   val += priv->direction;
1212   if (val <= adj->lower)
1213     {
1214       res = FALSE;
1215       val = adj->lower;
1216     }
1217   else if (val > adj->upper)
1218     {
1219       res = FALSE;
1220       val = adj->upper;
1221     }
1222   gtk_scale_button_set_value (button, val);
1223
1224   if (!res)
1225     {
1226       g_source_remove (priv->click_id);
1227       priv->click_id = 0;
1228     }
1229
1230   return res;
1231 }
1232
1233 static gboolean
1234 cb_button_press (GtkWidget      *widget,
1235                  GdkEventButton *event,
1236                  gpointer        user_data)
1237 {
1238   GtkScaleButton *button;
1239   GtkScaleButtonPrivate *priv;
1240   GtkAdjustment *adj;
1241
1242   button = GTK_SCALE_BUTTON (user_data);
1243   priv = button->priv;
1244   adj = priv->adjustment;
1245
1246   if (priv->click_id != 0)
1247     g_source_remove (priv->click_id);
1248
1249   if (widget == priv->plus_button)
1250     priv->direction = fabs (adj->page_increment);
1251   else
1252     priv->direction = - fabs (adj->page_increment);
1253
1254   priv->click_id = gdk_threads_add_timeout (priv->click_timeout,
1255                                             cb_button_timeout,
1256                                             button);
1257   cb_button_timeout (button);
1258
1259   return TRUE;
1260 }
1261
1262 static gboolean
1263 cb_button_release (GtkWidget      *widget,
1264                    GdkEventButton *event,
1265                    gpointer        user_data)
1266 {
1267   GtkScaleButton *button;
1268   GtkScaleButtonPrivate *priv;
1269
1270   button = GTK_SCALE_BUTTON (user_data);
1271   priv = button->priv;
1272
1273   if (priv->click_id != 0)
1274     {
1275       g_source_remove (priv->click_id);
1276       priv->click_id = 0;
1277     }
1278
1279   return TRUE;
1280 }
1281
1282 static void
1283 cb_dock_grab_notify (GtkWidget *widget,
1284                      gboolean   was_grabbed,
1285                      gpointer   user_data)
1286 {
1287   GtkScaleButton *button = (GtkScaleButton *) user_data;
1288
1289   gtk_scale_button_grab_notify (button, was_grabbed);
1290 }
1291
1292 static gboolean
1293 cb_dock_grab_broken_event (GtkWidget *widget,
1294                            gboolean   was_grabbed,
1295                            gpointer   user_data)
1296 {
1297   GtkScaleButton *button = (GtkScaleButton *) user_data;
1298
1299   gtk_scale_button_grab_notify (button, FALSE);
1300
1301   return FALSE;
1302 }
1303
1304 /*
1305  * Scale callbacks.
1306  */
1307
1308 static void
1309 gtk_scale_button_release_grab (GtkScaleButton *button,
1310                                GdkEventButton *event)
1311 {
1312   GdkEventButton *e;
1313   GdkDisplay *display;
1314   GtkScaleButtonPrivate *priv;
1315
1316   priv = button->priv;
1317
1318   /* ungrab focus */
1319   display = gtk_widget_get_display (GTK_WIDGET (button));
1320   gdk_device_ungrab (priv->grab_keyboard, event->time);
1321   gdk_device_ungrab (priv->grab_pointer, event->time);
1322   gtk_device_grab_remove (priv->dock, priv->grab_pointer);
1323
1324   priv->grab_keyboard = NULL;
1325   priv->grab_pointer = NULL;
1326
1327   /* hide again */
1328   gtk_widget_hide (priv->dock);
1329   priv->timeout = FALSE;
1330
1331   e = (GdkEventButton *) gdk_event_copy ((GdkEvent *) event);
1332   e->window = gtk_widget_get_window (GTK_WIDGET (button));
1333   e->type = GDK_BUTTON_RELEASE;
1334   gtk_widget_event (GTK_WIDGET (button), (GdkEvent *) e);
1335   e->window = event->window;
1336   gdk_event_free ((GdkEvent *) e);
1337 }
1338
1339 static gboolean
1340 cb_dock_button_press (GtkWidget      *widget,
1341                       GdkEventButton *event,
1342                       gpointer        user_data)
1343 {
1344   GtkScaleButton *button = GTK_SCALE_BUTTON (user_data);
1345
1346   if (event->type == GDK_BUTTON_PRESS)
1347     {
1348       gtk_scale_button_release_grab (button, event);
1349       return TRUE;
1350     }
1351
1352   return FALSE;
1353 }
1354
1355 static void
1356 gtk_scale_button_popdown (GtkWidget *widget)
1357 {
1358   GtkScaleButton *button;
1359   GtkScaleButtonPrivate *priv;
1360   GdkDisplay *display;
1361
1362   button = GTK_SCALE_BUTTON (widget);
1363   priv = button->priv;
1364
1365   /* ungrab focus */
1366   display = gtk_widget_get_display (widget);
1367   gdk_device_ungrab (priv->grab_keyboard, GDK_CURRENT_TIME);
1368   gdk_device_ungrab (priv->grab_pointer, GDK_CURRENT_TIME);
1369   gtk_device_grab_remove (priv->dock, priv->grab_pointer);
1370
1371   priv->grab_keyboard = NULL;
1372   priv->grab_pointer = NULL;
1373
1374   /* hide again */
1375   gtk_widget_hide (priv->dock);
1376   priv->timeout = FALSE;
1377 }
1378
1379 static gboolean
1380 cb_dock_key_release (GtkWidget   *widget,
1381                      GdkEventKey *event,
1382                      gpointer     user_data)
1383 {
1384   if (event->keyval == GDK_KEY_Escape)
1385     {
1386       gtk_scale_button_popdown (GTK_WIDGET (user_data));
1387       return TRUE;
1388     }
1389
1390   if (!gtk_bindings_activate_event (G_OBJECT (widget), event))
1391     {
1392       /* The popup hasn't managed the event, pass onto the button */
1393       gtk_bindings_activate_event (G_OBJECT (user_data), event);
1394     }
1395
1396   return TRUE;
1397 }
1398
1399 static void
1400 cb_scale_grab_notify (GtkWidget *widget,
1401                       gboolean   was_grabbed,
1402                       gpointer   user_data)
1403 {
1404   GtkScaleButton *button = (GtkScaleButton *) user_data;
1405
1406   gtk_scale_button_grab_notify (button, was_grabbed);
1407 }
1408
1409 /*
1410  * Scale stuff.
1411  */
1412
1413 #define GTK_TYPE_SCALE_BUTTON_SCALE    (_gtk_scale_button_scale_get_type ())
1414 #define GTK_SCALE_BUTTON_SCALE(obj)    (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SCALE_BUTTON_SCALE, GtkScaleButtonScale))
1415 #define GTK_IS_SCALE_BUTTON_SCALE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SCALE_BUTTON_SCALE))
1416
1417 typedef struct _GtkScaleButtonScale
1418 {
1419   GtkScale parent_instance;
1420   GtkScaleButton *button;
1421 } GtkScaleButtonScale;
1422
1423 typedef struct _GtkScaleButtonScaleClass
1424 {
1425   GtkScaleClass parent_class;
1426 } GtkScaleButtonScaleClass;
1427
1428 static gboolean gtk_scale_button_scale_press   (GtkWidget      *widget,
1429                                                 GdkEventButton *event);
1430 static gboolean gtk_scale_button_scale_release (GtkWidget      *widget,
1431                                                 GdkEventButton *event);
1432
1433 G_DEFINE_TYPE (GtkScaleButtonScale, _gtk_scale_button_scale, GTK_TYPE_SCALE)
1434
1435 static void
1436 _gtk_scale_button_scale_class_init (GtkScaleButtonScaleClass *klass)
1437 {
1438   GtkWidgetClass *gtkwidget_class = GTK_WIDGET_CLASS (klass);
1439   GtkRangeClass *gtkrange_class = GTK_RANGE_CLASS (klass);
1440
1441   gtkwidget_class->button_press_event = gtk_scale_button_scale_press;
1442   gtkwidget_class->button_release_event = gtk_scale_button_scale_release;
1443   gtkrange_class->value_changed = gtk_scale_button_scale_value_changed;
1444 }
1445
1446 static void
1447 _gtk_scale_button_scale_init (GtkScaleButtonScale *scale)
1448 {
1449 }
1450
1451 static GtkWidget *
1452 gtk_scale_button_scale_new (GtkScaleButton *button)
1453 {
1454   GtkScaleButtonPrivate *priv = button->priv;
1455   GtkScaleButtonScale *scale;
1456
1457   scale = g_object_new (GTK_TYPE_SCALE_BUTTON_SCALE,
1458                         "orientation", priv->orientation,
1459                         "adjustment",  priv->adjustment,
1460                         "draw-value",  FALSE,
1461                         NULL);
1462
1463   scale->button = button;
1464
1465   g_signal_connect (scale, "grab-notify",
1466                     G_CALLBACK (cb_scale_grab_notify), button);
1467
1468   if (priv->orientation == GTK_ORIENTATION_VERTICAL)
1469     {
1470       gtk_widget_set_size_request (GTK_WIDGET (scale), -1, SCALE_SIZE);
1471       gtk_range_set_inverted (GTK_RANGE (scale), TRUE);
1472     }
1473   else
1474     {
1475       gtk_widget_set_size_request (GTK_WIDGET (scale), SCALE_SIZE, -1);
1476       gtk_range_set_inverted (GTK_RANGE (scale), FALSE);
1477     }
1478
1479   return GTK_WIDGET (scale);
1480 }
1481
1482 static gboolean
1483 gtk_scale_button_scale_press (GtkWidget      *widget,
1484                               GdkEventButton *event)
1485 {
1486   GtkScaleButtonPrivate *priv = GTK_SCALE_BUTTON_SCALE (widget)->button->priv;
1487
1488   /* the scale will grab input; if we have input grabbed, all goes
1489    * horribly wrong, so let's not do that.
1490    */
1491   gtk_device_grab_remove (priv->dock, event->device);
1492
1493   return GTK_WIDGET_CLASS (_gtk_scale_button_scale_parent_class)->button_press_event (widget, event);
1494 }
1495
1496 static gboolean
1497 gtk_scale_button_scale_release (GtkWidget      *widget,
1498                                 GdkEventButton *event)
1499 {
1500   GtkScaleButton *button = GTK_SCALE_BUTTON_SCALE (widget)->button;
1501   gboolean res;
1502
1503   if (button->priv->timeout)
1504     {
1505       /* if we did a quick click, leave the window open; else, hide it */
1506       if (event->time > button->priv->pop_time + button->priv->click_timeout)
1507         {
1508
1509           gtk_scale_button_release_grab (button, event);
1510           GTK_WIDGET_CLASS (_gtk_scale_button_scale_parent_class)->button_release_event (widget, event);
1511
1512           return TRUE;
1513         }
1514
1515       button->priv->timeout = FALSE;
1516     }
1517
1518   res = GTK_WIDGET_CLASS (_gtk_scale_button_scale_parent_class)->button_release_event (widget, event);
1519
1520   /* the scale will release input; right after that, we *have to* grab
1521    * it back so we can catch out-of-scale clicks and hide the popup,
1522    * so I basically want a g_signal_connect_after_always(), but I can't
1523    * find that, so we do this complex 'first-call-parent-then-do-actual-
1524    * action' thingy...
1525    */
1526   gtk_device_grab_add (button->priv->dock, event->device, TRUE);
1527
1528   return res;
1529 }
1530
1531 static void
1532 gtk_scale_button_update_icon (GtkScaleButton *button)
1533 {
1534   GtkScaleButtonPrivate *priv;
1535   GtkRange *range;
1536   GtkAdjustment *adj;
1537   gdouble value;
1538   const gchar *name;
1539   guint num_icons;
1540
1541   priv = button->priv;
1542
1543   if (!priv->icon_list || priv->icon_list[0] == '\0')
1544     {
1545       gtk_image_set_from_stock (GTK_IMAGE (priv->image),
1546                                 GTK_STOCK_MISSING_IMAGE,
1547                                 priv->size);
1548       return;
1549     }
1550
1551   num_icons = g_strv_length (priv->icon_list);
1552
1553   /* The 1-icon special case */
1554   if (num_icons == 1)
1555     {
1556       gtk_image_set_from_icon_name (GTK_IMAGE (priv->image),
1557                                     priv->icon_list[0],
1558                                     priv->size);
1559       return;
1560     }
1561
1562   range = GTK_RANGE (priv->scale);
1563   adj = priv->adjustment;
1564   value = gtk_scale_button_get_value (button);
1565
1566   /* The 2-icons special case */
1567   if (num_icons == 2)
1568     {
1569       gdouble limit;
1570       limit = (adj->upper - adj->lower) / 2 + adj->lower;
1571       if (value < limit)
1572         name = priv->icon_list[0];
1573       else
1574         name = priv->icon_list[1];
1575
1576       gtk_image_set_from_icon_name (GTK_IMAGE (priv->image),
1577                                     name,
1578                                     priv->size);
1579       return;
1580     }
1581
1582   /* With 3 or more icons */
1583   if (value == adj->lower)
1584     {
1585       name = priv->icon_list[0];
1586     }
1587   else if (value == adj->upper)
1588     {
1589       name = priv->icon_list[1];
1590     }
1591   else
1592     {
1593       gdouble step;
1594       guint i;
1595
1596       step = (adj->upper - adj->lower) / (num_icons - 2);
1597       i = (guint) ((value - adj->lower) / step) + 2;
1598       g_assert (i < num_icons);
1599       name = priv->icon_list[i];
1600     }
1601
1602   gtk_image_set_from_icon_name (GTK_IMAGE (priv->image),
1603                                 name,
1604                                 priv->size);
1605 }
1606
1607 static void
1608 gtk_scale_button_scale_value_changed (GtkRange *range)
1609 {
1610   GtkScaleButton *button = GTK_SCALE_BUTTON_SCALE (range)->button;
1611   gdouble value;
1612
1613   value = gtk_range_get_value (range);
1614
1615   gtk_scale_button_update_icon (button);
1616
1617   g_signal_emit (button, signals[VALUE_CHANGED], 0, value);
1618   g_object_notify (G_OBJECT (button), "value");
1619 }