]> Pileus Git - ~andy/gtk/blob - gtk/gtkswitch.c
GtkSwitch: use regular activation
[~andy/gtk] / gtk / gtkswitch.c
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2010  Intel Corporation
4  * Copyright (C) 2010  RedHat, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA  02111-1307, USA.
20  *
21  * Author:
22  *      Emmanuele Bassi <ebassi@linux.intel.com>
23  *      Matthias Clasen <mclasen@redhat.com>
24  *
25  * Based on similar code from Mx.
26  */
27
28 /**
29  * SECTION:gtkswitch
30  * @Short_Description: A "light switch" style toggle
31  * @Title: GtkSwitch
32  * @See_Also: #GtkToggleButton
33  *
34  * #GtkSwitch is a widget that has two states: on or off. The user can control
35  * which state should be active by clicking the empty area, or by dragging the
36  * handle.
37  */
38
39 #include "config.h"
40
41 #include "gtkswitch.h"
42
43 #include "gtkaccessibleprivate.h"
44 #include "gtkactivatable.h"
45 #include "gtkintl.h"
46 #include "gtkstyle.h"
47 #include "gtkprivate.h"
48 #include "gtktoggleaction.h"
49 #include "gtkwidget.h"
50 #include "gtkmarshalers.h"
51
52
53 #define DEFAULT_SLIDER_WIDTH    (36)
54 #define DEFAULT_SLIDER_HEIGHT   (22)
55
56 struct _GtkSwitchPrivate
57 {
58   GdkWindow *event_window;
59   GtkAction *action;
60
61   gint handle_x;
62   gint offset;
63   gint drag_start;
64   gint drag_threshold;
65
66   guint is_active             : 1;
67   guint is_dragging           : 1;
68   guint in_press              : 1;
69   guint in_switch             : 1;
70   guint use_action_appearance : 1;
71 };
72
73 enum
74 {
75   PROP_0,
76   PROP_ACTIVE,
77   PROP_RELATED_ACTION,
78   PROP_USE_ACTION_APPEARANCE,
79   LAST_PROP
80 };
81
82 enum
83 {
84   ACTIVATE,
85   LAST_SIGNAL
86 };
87
88 static guint signals[LAST_SIGNAL] = { 0 };
89
90 static GParamSpec *switch_props[LAST_PROP] = { NULL, };
91
92 static GType gtk_switch_accessible_factory_get_type (void);
93
94 static void gtk_switch_activatable_interface_init (GtkActivatableIface *iface);
95
96 G_DEFINE_TYPE_WITH_CODE (GtkSwitch, gtk_switch, GTK_TYPE_WIDGET,
97                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
98                                                 gtk_switch_activatable_interface_init));
99
100 static gboolean
101 gtk_switch_button_press (GtkWidget      *widget,
102                          GdkEventButton *event)
103 {
104   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
105   GtkAllocation allocation;
106
107   gtk_widget_get_allocation (widget, &allocation);
108
109   if (priv->is_active)
110     {
111       /* if the event occurred in the "off" area, then this
112        * is a direct toggle
113        */
114       if (event->x <= allocation.width / 2)
115         {
116           priv->in_press = TRUE;
117           return FALSE;
118         }
119
120       priv->offset = event->x - allocation.width / 2;
121     }
122   else
123     {
124       /* if the event occurred in the "on" area, then this
125        * is a direct toggle
126        */
127       if (event->x >= allocation.width / 2)
128         {
129           priv->in_press = TRUE;
130           return FALSE;
131         }
132
133       priv->offset = event->x;
134     }
135
136   priv->drag_start = event->x;
137
138   g_object_get (gtk_widget_get_settings (widget),
139                 "gtk-dnd-drag-threshold", &priv->drag_threshold,
140                 NULL);
141
142   return FALSE;
143 }
144
145 static gboolean
146 gtk_switch_motion (GtkWidget      *widget,
147                    GdkEventMotion *event)
148 {
149   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
150
151   /* if this is a direct toggle we don't handle motion */
152   if (priv->in_press)
153     return FALSE;
154
155   if (ABS (event->x - priv->drag_start) < priv->drag_threshold)
156     return TRUE;
157
158   if (event->state & GDK_BUTTON1_MASK)
159     {
160       gint position = event->x - priv->offset;
161       GtkAllocation allocation;
162       GtkStyleContext *context;
163       GtkStateFlags state;
164       GtkBorder padding;
165
166       context = gtk_widget_get_style_context (widget);
167       state = gtk_widget_get_state_flags (widget);
168       gtk_style_context_get_padding (context, state, &padding);
169       gtk_widget_get_allocation (widget, &allocation);
170
171       /* constrain the handle within the trough width */
172       if (position > (allocation.width / 2 - padding.right))
173         priv->handle_x = allocation.width / 2 - padding.right;
174       else if (position < padding.left)
175         priv->handle_x = padding.left;
176       else
177         priv->handle_x = position;
178
179       priv->is_dragging = TRUE;
180
181       /* we need to redraw the handle */
182       gtk_widget_queue_draw (widget);
183
184       return TRUE;
185     }
186
187   return FALSE;
188 }
189
190 static gboolean
191 gtk_switch_button_release (GtkWidget      *widget,
192                            GdkEventButton *event)
193 {
194   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
195   GtkAllocation allocation;
196
197   gtk_widget_get_allocation (widget, &allocation);
198
199   /* dragged toggles have a "soft" grab, so we don't care whether we
200    * are in the switch or not when the button is released; we do care
201    * for direct toggles, instead
202    */
203   if (!priv->is_dragging && !priv->in_switch)
204     return FALSE;
205
206   /* direct toggle */
207   if (priv->in_press)
208     {
209       priv->in_press = FALSE;
210       gtk_switch_set_active (GTK_SWITCH (widget), !priv->is_active);
211
212       return TRUE;
213     }
214
215   /* toggle the switch if the handle was clicked but a drag had not been
216    * initiated */
217   if (!priv->is_dragging && !priv->in_press)
218     {
219       gtk_switch_set_active (GTK_SWITCH (widget), !priv->is_active);
220
221       return TRUE;
222     }
223
224   /* dragged toggle */
225   if (priv->is_dragging)
226     {
227       priv->is_dragging = FALSE;
228
229       /* if half the handle passed the middle of the switch, then we
230        * consider it to be on
231        */
232       if ((priv->handle_x + (allocation.width / 4)) >= (allocation.width / 2))
233         {
234           gtk_switch_set_active (GTK_SWITCH (widget), TRUE);
235           priv->handle_x = allocation.width / 2;
236         }
237       else
238         {
239           gtk_switch_set_active (GTK_SWITCH (widget), FALSE);
240           priv->handle_x = 0;
241         }
242
243       gtk_widget_queue_draw (widget);
244
245       return TRUE;
246     }
247
248   return FALSE;
249 }
250
251 static gboolean
252 gtk_switch_enter (GtkWidget        *widget,
253                   GdkEventCrossing *event)
254 {
255   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
256
257   if (event->window == priv->event_window)
258     priv->in_switch = TRUE;
259
260   return FALSE;
261 }
262
263 static gboolean
264 gtk_switch_leave (GtkWidget        *widget,
265                   GdkEventCrossing *event)
266 {
267   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
268
269   if (event->window == priv->event_window)
270     priv->in_switch = FALSE;
271
272   return FALSE;
273 }
274
275 static void
276 gtk_switch_activate (GtkSwitch *sw)
277 {
278   GtkSwitchPrivate *priv = sw->priv;
279
280   gtk_switch_set_active (sw, !priv->is_active);
281 }
282
283 static void
284 gtk_switch_get_preferred_width (GtkWidget *widget,
285                                 gint      *minimum,
286                                 gint      *natural)
287 {
288   GtkStyleContext *context;
289   GtkStateFlags state;
290   GtkBorder padding;
291   gint width, slider_width, focus_width, focus_pad;
292   PangoLayout *layout;
293   PangoRectangle logical_rect;
294
295   context = gtk_widget_get_style_context (widget);
296   state = gtk_widget_get_state_flags (widget);
297   gtk_style_context_get_padding (context, state, &padding);
298
299   width = padding.left + padding.right;
300
301   gtk_widget_style_get (widget,
302                         "slider-width", &slider_width,
303                         "focus-line-width", &focus_width,
304                         "focus-padding", &focus_pad,
305                         NULL);
306
307   width += 2 * (focus_width + focus_pad);
308
309   /* Translators: if the "on" state label requires more than three
310    * glyphs then use MEDIUM VERTICAL BAR (U+2759) as the text for
311    * the state
312    */
313   layout = gtk_widget_create_pango_layout (widget, C_("switch", "ON"));
314   pango_layout_get_extents (layout, NULL, &logical_rect);
315   pango_extents_to_pixels (&logical_rect, NULL);
316   width += MAX (logical_rect.width, slider_width);
317
318   /* Translators: if the "off" state label requires more than three
319    * glyphs then use WHITE CIRCLE (U+25CB) as the text for the state
320    */
321   pango_layout_set_text (layout, C_("switch", "OFF"), -1);
322   pango_layout_get_extents (layout, NULL, &logical_rect);
323   pango_extents_to_pixels (&logical_rect, NULL);
324   width += MAX (logical_rect.width, slider_width);
325
326   g_object_unref (layout);
327
328   if (minimum)
329     *minimum = width;
330
331   if (natural)
332     *natural = width;
333 }
334
335 static void
336 gtk_switch_get_preferred_height (GtkWidget *widget,
337                                  gint      *minimum,
338                                  gint      *natural)
339 {
340   GtkStyleContext *context;
341   GtkStateFlags state;
342   GtkBorder padding;
343   gint height, focus_width, focus_pad;
344   PangoLayout *layout;
345   PangoRectangle logical_rect;
346   gchar *str;
347
348   context = gtk_widget_get_style_context (widget);
349   state = gtk_widget_get_state_flags (widget);
350   gtk_style_context_get_padding (context, state, &padding);
351
352   height = padding.top + padding.bottom;
353
354   gtk_widget_style_get (widget,
355                         "focus-line-width", &focus_width,
356                         "focus-padding", &focus_pad,
357                         NULL);
358
359   height += 2 * (focus_width + focus_pad);
360
361   str = g_strdup_printf ("%s%s",
362                          C_("switch", "ON"),
363                          C_("switch", "OFF"));
364
365   layout = gtk_widget_create_pango_layout (widget, str);
366   pango_layout_get_extents (layout, NULL, &logical_rect);
367   pango_extents_to_pixels (&logical_rect, NULL);
368   height += MAX (DEFAULT_SLIDER_HEIGHT, logical_rect.height);
369
370   g_object_unref (layout);
371   g_free (str);
372
373   if (minimum)
374     *minimum = height;
375
376   if (natural)
377     *natural = height;
378 }
379
380 static void
381 gtk_switch_size_allocate (GtkWidget     *widget,
382                           GtkAllocation *allocation)
383 {
384   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
385
386   gtk_widget_set_allocation (widget, allocation);
387
388   if (gtk_widget_get_realized (widget))
389     gdk_window_move_resize (priv->event_window,
390                             allocation->x,
391                             allocation->y,
392                             allocation->width,
393                             allocation->height);
394 }
395
396 static void
397 gtk_switch_realize (GtkWidget *widget)
398 {
399   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
400   GdkWindow *parent_window;
401   GdkWindowAttr attributes;
402   gint attributes_mask;
403   GtkAllocation allocation;
404
405   gtk_widget_set_realized (widget, TRUE);
406   parent_window = gtk_widget_get_parent_window (widget);
407   gtk_widget_set_window (widget, parent_window);
408   g_object_ref (parent_window);
409
410   gtk_widget_get_allocation (widget, &allocation);
411
412   attributes.window_type = GDK_WINDOW_CHILD;
413   attributes.wclass = GDK_INPUT_ONLY;
414   attributes.x = allocation.x;
415   attributes.y = allocation.y;
416   attributes.width = allocation.width;
417   attributes.height = allocation.height;
418   attributes.event_mask = gtk_widget_get_events (widget);
419   attributes.event_mask |= (GDK_BUTTON_PRESS_MASK |
420                             GDK_BUTTON_RELEASE_MASK |
421                             GDK_BUTTON1_MOTION_MASK |
422                             GDK_POINTER_MOTION_HINT_MASK |
423                             GDK_POINTER_MOTION_MASK |
424                             GDK_ENTER_NOTIFY_MASK |
425                             GDK_LEAVE_NOTIFY_MASK);
426   attributes_mask = GDK_WA_X | GDK_WA_Y;
427
428   priv->event_window = gdk_window_new (parent_window,
429                                        &attributes,
430                                        attributes_mask);
431   gdk_window_set_user_data (priv->event_window, widget);
432 }
433
434 static void
435 gtk_switch_unrealize (GtkWidget *widget)
436 {
437   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
438
439   if (priv->event_window != NULL)
440     {
441       gdk_window_set_user_data (priv->event_window, NULL);
442       gdk_window_destroy (priv->event_window);
443       priv->event_window = NULL;
444     }
445
446   GTK_WIDGET_CLASS (gtk_switch_parent_class)->unrealize (widget);
447 }
448
449 static void
450 gtk_switch_map (GtkWidget *widget)
451 {
452   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
453
454   GTK_WIDGET_CLASS (gtk_switch_parent_class)->map (widget);
455
456   if (priv->event_window)
457     gdk_window_show (priv->event_window);
458 }
459
460 static void
461 gtk_switch_unmap (GtkWidget *widget)
462 {
463   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
464
465   if (priv->event_window)
466     gdk_window_hide (priv->event_window);
467
468   GTK_WIDGET_CLASS (gtk_switch_parent_class)->unmap (widget);
469 }
470
471 static inline void
472 gtk_switch_paint_handle (GtkWidget    *widget,
473                          cairo_t      *cr,
474                          GdkRectangle *box)
475 {
476   GtkStyleContext *context = gtk_widget_get_style_context (widget);
477   GtkStateFlags state;
478
479   state = gtk_widget_get_state_flags (widget);
480
481   gtk_style_context_save (context);
482   gtk_style_context_set_state (context, state);
483   gtk_style_context_add_class (context, GTK_STYLE_CLASS_SLIDER);
484
485   gtk_render_slider (context, cr,
486                      box->x, box->y,
487                      box->width, box->height,
488                      GTK_ORIENTATION_HORIZONTAL);
489
490   gtk_style_context_restore (context);
491 }
492
493 static gboolean
494 gtk_switch_draw (GtkWidget *widget,
495                  cairo_t   *cr)
496 {
497   GtkSwitchPrivate *priv = GTK_SWITCH (widget)->priv;
498   GtkStyleContext *context;
499   GdkRectangle handle;
500   PangoLayout *layout;
501   PangoRectangle rect;
502   gint label_x, label_y;
503   GtkStateFlags state;
504   GtkBorder padding;
505   gint focus_width, focus_pad;
506   gint x, y, width, height;
507
508   gtk_widget_style_get (widget,
509                         "focus-line-width", &focus_width,
510                         "focus-padding", &focus_pad,
511                         NULL);
512
513   context = gtk_widget_get_style_context (widget);
514   state = gtk_widget_get_state_flags (widget);
515
516   if (priv->is_active)
517     state |= GTK_STATE_FLAG_ACTIVE;
518
519   gtk_style_context_get_padding (context, state, &padding);
520
521   x = 0;
522   y = 0;
523   width = gtk_widget_get_allocated_width (widget);
524   height = gtk_widget_get_allocated_height (widget);
525
526   if (gtk_widget_has_focus (widget))
527     gtk_render_focus (context, cr, x, y, width, height);
528
529   gtk_style_context_save (context);
530   gtk_style_context_set_state (context, state);
531
532   x += focus_width + focus_pad;
533   y += focus_width + focus_pad;
534   width -= 2 * (focus_width + focus_pad);
535   height -= 2 * (focus_width + focus_pad);
536
537   gtk_style_context_add_class (context, GTK_STYLE_CLASS_TROUGH);
538
539   gtk_render_background (context, cr, x, y, width, height);
540   gtk_render_frame (context, cr, x, y, width, height);
541
542   /* XXX the +1/-1 it's pixel wriggling after checking with the default
543    * theme and xmag
544    */
545   handle.y = y + padding.top + 1;
546   handle.width = (width - padding.left - padding.right) / 2;
547   handle.height = (height - padding.top - padding.bottom) - 1;
548
549   /* Translators: if the "on" state label requires more than three
550    * glyphs then use MEDIUM VERTICAL BAR (U+2759) as the text for
551    * the state
552    */
553   layout = gtk_widget_create_pango_layout (widget, C_("switch", "ON"));
554   pango_layout_get_extents (layout, NULL, &rect);
555   pango_extents_to_pixels (&rect, NULL);
556
557   label_x = x + padding.left
558           + ((width / 2) - rect.width - padding.left - padding.right) / 2;
559   label_y = y + padding.top
560           + (height - rect.height - padding.top - padding.bottom) / 2;
561
562   gtk_render_layout (context, cr, label_x, label_y, layout);
563
564   g_object_unref (layout);
565
566   /* Translators: if the "off" state label requires more than three
567    * glyphs then use WHITE CIRCLE (U+25CB) as the text for the state
568    */
569   layout = gtk_widget_create_pango_layout (widget, C_("switch", "OFF"));
570   pango_layout_get_extents (layout, NULL, &rect);
571   pango_extents_to_pixels (&rect, NULL);
572
573   label_x = x + padding.left
574           + (width / 2)
575           + ((width / 2) - rect.width - padding.left - padding.right) / 2;
576   label_y = y + padding.top
577           + (height - rect.height - padding.top - padding.bottom) / 2;
578
579   gtk_render_layout (context, cr, label_x, label_y, layout);
580
581   g_object_unref (layout);
582
583   if (priv->is_dragging)
584     handle.x = x + priv->handle_x;
585   else if (priv->is_active)
586     handle.x = x + width - handle.width - padding.right;
587   else
588     handle.x = x + padding.left;
589
590   gtk_style_context_restore (context);
591
592   gtk_switch_paint_handle (widget, cr, &handle);
593
594   return FALSE;
595 }
596
597 static AtkObject *
598 gtk_switch_get_accessible (GtkWidget *widget)
599 {
600   static gboolean first_time = TRUE;
601
602   if (G_UNLIKELY (first_time))
603     {
604       _gtk_accessible_set_factory_type (GTK_TYPE_SWITCH,
605                                         gtk_switch_accessible_factory_get_type ());
606       first_time = FALSE;
607     }
608
609   return GTK_WIDGET_CLASS (gtk_switch_parent_class)->get_accessible (widget);
610 }
611
612 static void
613 gtk_switch_set_related_action (GtkSwitch *sw,
614                                GtkAction *action)
615 {
616   GtkSwitchPrivate *priv = sw->priv;
617
618   if (priv->action == action)
619     return;
620
621   gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (sw), action);
622
623   priv->action = action;
624 }
625
626 static void
627 gtk_switch_set_use_action_appearance (GtkSwitch *sw,
628                                       gboolean   use_appearance)
629 {
630   GtkSwitchPrivate *priv = sw->priv;
631
632   if (priv->use_action_appearance != use_appearance)
633     {
634       priv->use_action_appearance = use_appearance;
635
636       gtk_activatable_sync_action_properties (GTK_ACTIVATABLE (sw), priv->action);
637     }
638 }
639
640 static void
641 gtk_switch_set_property (GObject      *gobject,
642                          guint         prop_id,
643                          const GValue *value,
644                          GParamSpec   *pspec)
645 {
646   GtkSwitch *sw = GTK_SWITCH (gobject);
647
648   switch (prop_id)
649     {
650     case PROP_ACTIVE:
651       gtk_switch_set_active (sw, g_value_get_boolean (value));
652       break;
653
654     case PROP_RELATED_ACTION:
655       gtk_switch_set_related_action (sw, g_value_get_object (value));
656       break;
657
658     case PROP_USE_ACTION_APPEARANCE:
659       gtk_switch_set_use_action_appearance (sw, g_value_get_boolean (value));
660       break;
661
662     default:
663       G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
664     }
665 }
666
667 static void
668 gtk_switch_get_property (GObject    *gobject,
669                          guint       prop_id,
670                          GValue     *value,
671                          GParamSpec *pspec)
672 {
673   GtkSwitchPrivate *priv = GTK_SWITCH (gobject)->priv;
674
675   switch (prop_id)
676     {
677     case PROP_ACTIVE:
678       g_value_set_boolean (value, priv->is_active);
679       break;
680
681     case PROP_RELATED_ACTION:
682       g_value_set_object (value, priv->action);
683       break;
684
685     case PROP_USE_ACTION_APPEARANCE:
686       g_value_set_boolean (value, priv->use_action_appearance);
687       break;
688
689     default:
690       G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
691     }
692 }
693
694 static void
695 gtk_switch_dispose (GObject *object)
696 {
697   GtkSwitchPrivate *priv = GTK_SWITCH (object)->priv;
698
699   if (priv->action)
700     {
701       gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (object), NULL);
702       priv->action = NULL;
703     }
704
705   G_OBJECT_CLASS (gtk_switch_parent_class)->dispose (object);
706 }
707
708 static void
709 gtk_switch_class_init (GtkSwitchClass *klass)
710 {
711   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
712   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
713   gpointer activatable_iface;
714
715   g_type_class_add_private (klass, sizeof (GtkSwitchPrivate));
716
717   activatable_iface = g_type_default_interface_peek (GTK_TYPE_ACTIVATABLE);
718   switch_props[PROP_RELATED_ACTION] =
719     g_param_spec_override ("related-action",
720                            g_object_interface_find_property (activatable_iface,
721                                                              "related-action"));
722
723   switch_props[PROP_USE_ACTION_APPEARANCE] =
724     g_param_spec_override ("use-action-appearance",
725                            g_object_interface_find_property (activatable_iface,
726                                                              "use-action-appearance"));
727
728   /**
729    * GtkSwitch:active:
730    *
731    * Whether the #GtkSwitch widget is in its on or off state.
732    */
733   switch_props[PROP_ACTIVE] =
734     g_param_spec_boolean ("active",
735                           P_("Active"),
736                           P_("Whether the switch is on or off"),
737                           FALSE,
738                           GTK_PARAM_READWRITE);
739
740   gobject_class->set_property = gtk_switch_set_property;
741   gobject_class->get_property = gtk_switch_get_property;
742   gobject_class->dispose = gtk_switch_dispose;
743
744   g_object_class_install_properties (gobject_class, LAST_PROP, switch_props);
745
746   widget_class->get_preferred_width = gtk_switch_get_preferred_width;
747   widget_class->get_preferred_height = gtk_switch_get_preferred_height;
748   widget_class->size_allocate = gtk_switch_size_allocate;
749   widget_class->realize = gtk_switch_realize;
750   widget_class->unrealize = gtk_switch_unrealize;
751   widget_class->map = gtk_switch_map;
752   widget_class->unmap = gtk_switch_unmap;
753   widget_class->draw = gtk_switch_draw;
754   widget_class->button_press_event = gtk_switch_button_press;
755   widget_class->button_release_event = gtk_switch_button_release;
756   widget_class->motion_notify_event = gtk_switch_motion;
757   widget_class->enter_notify_event = gtk_switch_enter;
758   widget_class->leave_notify_event = gtk_switch_leave;
759   widget_class->get_accessible = gtk_switch_get_accessible;
760
761   klass->activate = gtk_switch_activate;
762
763   /**
764    * GtkSwitch:slider-width:
765    *
766    * The minimum width of the #GtkSwitch handle, in pixels.
767    */
768   gtk_widget_class_install_style_property (widget_class,
769                                            g_param_spec_int ("slider-width",
770                                                              P_("Slider Width"),
771                                                              P_("The minimum width of the handle"),
772                                                              DEFAULT_SLIDER_WIDTH, G_MAXINT,
773                                                              DEFAULT_SLIDER_WIDTH,
774                                                              GTK_PARAM_READABLE));
775
776   /**
777    * GtkSwitch::activate:
778    * @widget: the object which received the signal.
779    *
780    * The ::activate signal on GtkSwitch is an action signal and
781    * emitting it causes the switch to animate.
782    * Applications should never connect to this signal, but use the
783    * notify::active signal.
784    */
785   signals[ACTIVATE] =
786     g_signal_new (I_("activate"),
787                   G_OBJECT_CLASS_TYPE (gobject_class),
788                   G_SIGNAL_RUN_FIRST | G_SIGNAL_ACTION,
789                   G_STRUCT_OFFSET (GtkSwitchClass, activate),
790                   NULL, NULL,
791                   _gtk_marshal_VOID__VOID,
792                   G_TYPE_NONE, 0);
793   widget_class->activate_signal = signals[ACTIVATE];
794
795 }
796
797 static void
798 gtk_switch_init (GtkSwitch *self)
799 {
800   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GTK_TYPE_SWITCH, GtkSwitchPrivate);
801   self->priv->use_action_appearance = TRUE;
802   gtk_widget_set_has_window (GTK_WIDGET (self), FALSE);
803   gtk_widget_set_can_focus (GTK_WIDGET (self), TRUE);
804 }
805
806 /**
807  * gtk_switch_new:
808  *
809  * Creates a new #GtkSwitch widget.
810  *
811  * Return value: the newly created #GtkSwitch instance
812  *
813  * Since: 3.0
814  */
815 GtkWidget *
816 gtk_switch_new (void)
817 {
818   return g_object_new (GTK_TYPE_SWITCH, NULL);
819 }
820
821 /**
822  * gtk_switch_set_active:
823  * @sw: a #GtkSwitch
824  * @is_active: %TRUE if @sw should be active, and %FALSE otherwise
825  *
826  * Changes the state of @sw to the desired one.
827  *
828  * Since: 3.0
829  */
830 void
831 gtk_switch_set_active (GtkSwitch *sw,
832                        gboolean   is_active)
833 {
834   GtkSwitchPrivate *priv;
835
836   g_return_if_fail (GTK_IS_SWITCH (sw));
837
838   is_active = !!is_active;
839
840   priv = sw->priv;
841
842   if (priv->is_active != is_active)
843     {
844       AtkObject *accessible;
845       GtkWidget *widget;
846       GtkStyleContext *context;
847
848       widget = GTK_WIDGET (sw);
849       priv->is_active = is_active;
850
851       g_object_notify_by_pspec (G_OBJECT (sw), switch_props[PROP_ACTIVE]);
852
853       if (priv->action)
854         gtk_action_activate (priv->action);
855
856       accessible = gtk_widget_get_accessible (GTK_WIDGET (sw));
857       atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, priv->is_active);
858
859       if (gtk_widget_get_realized (widget))
860         {
861           context = gtk_widget_get_style_context (widget);
862           gtk_style_context_notify_state_change (context,
863                                                  gtk_widget_get_window (widget),
864                                                  NULL, GTK_STATE_ACTIVE, is_active);
865         }
866
867       gtk_widget_queue_draw (GTK_WIDGET (sw));
868     }
869 }
870
871 /**
872  * gtk_switch_get_active:
873  * @sw: a #GtkSwitch
874  *
875  * Gets whether the #GtkSwitch is in its "on" or "off" state.
876  *
877  * Return value: %TRUE if the #GtkSwitch is active, and %FALSE otherwise
878  *
879  * Since: 3.0
880  */
881 gboolean
882 gtk_switch_get_active (GtkSwitch *sw)
883 {
884   g_return_val_if_fail (GTK_IS_SWITCH (sw), FALSE);
885
886   return sw->priv->is_active;
887 }
888
889 static void
890 gtk_switch_update (GtkActivatable *activatable,
891                    GtkAction      *action,
892                    const gchar    *property_name)
893 {
894   if (strcmp (property_name, "visible") == 0)
895     {
896       if (gtk_action_is_visible (action))
897         gtk_widget_show (GTK_WIDGET (activatable));
898       else
899         gtk_widget_hide (GTK_WIDGET (activatable));
900     }
901   else if (strcmp (property_name, "sensitive") == 0)
902     {
903       gtk_widget_set_sensitive (GTK_WIDGET (activatable), gtk_action_is_sensitive (action));
904     }
905   else if (strcmp (property_name, "active") == 0)
906     {
907       gtk_action_block_activate (action);
908       gtk_switch_set_active (GTK_SWITCH (activatable), gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
909       gtk_action_unblock_activate (action);
910     }
911 }
912
913 static void
914 gtk_switch_sync_action_properties (GtkActivatable *activatable,
915                                    GtkAction      *action)
916 {
917   if (!action)
918     return;
919
920   if (gtk_action_is_visible (action))
921     gtk_widget_show (GTK_WIDGET (activatable));
922   else
923     gtk_widget_hide (GTK_WIDGET (activatable));
924
925   gtk_widget_set_sensitive (GTK_WIDGET (activatable), gtk_action_is_sensitive (action));
926
927   gtk_action_block_activate (action);
928   gtk_switch_set_active (GTK_SWITCH (activatable), gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
929   gtk_action_unblock_activate (action);
930 }
931
932 static void
933 gtk_switch_activatable_interface_init (GtkActivatableIface *iface)
934 {
935   iface->update = gtk_switch_update;
936   iface->sync_action_properties = gtk_switch_sync_action_properties;
937 }
938
939 /* accessibility: object */
940
941 typedef struct _GtkSwitchAccessible      GtkSwitchAccessible;
942 typedef struct _GtkSwitchAccessibleClass GtkSwitchAccessibleClass;
943
944 struct _GtkSwitchAccessible
945 {
946   GtkAccessible object;
947
948   gchar *description;
949   guint  action_idle;
950 };
951
952 static void atk_action_interface_init (AtkActionIface *iface);
953
954 ATK_DEFINE_TYPE_WITH_CODE (GtkSwitchAccessible, _gtk_switch_accessible, GTK_TYPE_SWITCH,
955                            G_IMPLEMENT_INTERFACE (ATK_TYPE_ACTION, atk_action_interface_init))
956
957 static AtkStateSet *
958 gtk_switch_accessible_ref_state_set (AtkObject *accessible)
959 {
960   AtkStateSet *state_set;
961   GtkWidget *widget;
962
963   state_set = ATK_OBJECT_CLASS (_gtk_switch_accessible_parent_class)->ref_state_set (accessible);
964
965   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
966   if (widget == NULL)
967     return state_set;
968
969   if (gtk_switch_get_active (GTK_SWITCH (widget)))
970     atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
971
972   return state_set;
973 }
974
975 static void
976 gtk_switch_accessible_finalize (GObject *obj)
977 {
978   GtkSwitchAccessible *accessible = (GtkSwitchAccessible *)obj;
979
980   g_free (accessible->description);
981
982   if (accessible->action_idle)
983     g_source_remove (accessible->action_idle);
984
985   G_OBJECT_CLASS (_gtk_switch_accessible_parent_class)->finalize (obj);
986 }
987
988 static void
989 _gtk_switch_accessible_initialize (AtkObject *accessible,
990                                    gpointer   widget)
991 {
992   ATK_OBJECT_CLASS (_gtk_switch_accessible_parent_class)->initialize (accessible, widget);
993
994   atk_object_set_role (accessible, ATK_ROLE_TOGGLE_BUTTON);
995   atk_object_set_name (accessible, C_("light switch widget", "Switch"));
996   atk_object_set_description (accessible, _("Switches between on and off states"));
997 }
998
999 static void
1000 _gtk_switch_accessible_class_init (GtkSwitchAccessibleClass *klass)
1001 {
1002   GObjectClass *object_class = G_OBJECT_CLASS (klass);
1003   AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
1004
1005   object_class->finalize = gtk_switch_accessible_finalize;
1006
1007   atk_class->initialize = _gtk_switch_accessible_initialize;
1008   atk_class->ref_state_set = gtk_switch_accessible_ref_state_set;
1009 }
1010
1011 static void
1012 _gtk_switch_accessible_init (GtkSwitchAccessible *self)
1013 {
1014   self->description = NULL;
1015   self->action_idle = 0;
1016 }
1017
1018 /* accessibility: action interface */
1019
1020 static gint
1021 gtk_switch_action_get_n_actions (AtkAction *action)
1022 {
1023   return 1;
1024 }
1025
1026 static const gchar *
1027 gtk_switch_action_get_name (AtkAction *action,
1028                             gint       i)
1029 {
1030   return "toggle";
1031 }
1032
1033 static const gchar *
1034 gtk_switch_action_get_description (AtkAction *action,
1035                                    gint       i)
1036 {
1037   GtkSwitchAccessible *accessible = (GtkSwitchAccessible*)action;
1038
1039   return accessible->description;
1040 }
1041
1042 static gboolean
1043 gtk_switch_action_set_description (AtkAction   *action,
1044                                    gint         i,
1045                                    const gchar *description)
1046 {
1047   GtkSwitchAccessible *accessible = (GtkSwitchAccessible*)action;
1048
1049   g_free (accessible->description);
1050   accessible->description = g_strdup (description);
1051
1052   return TRUE;
1053 }
1054
1055 static gboolean
1056 idle_do_action (gpointer data)
1057 {
1058   GtkSwitchAccessible *accessible = data;
1059   GtkWidget *widget;
1060   GtkSwitch *sw;
1061
1062   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (data));
1063   sw = GTK_SWITCH (widget);
1064
1065   accessible->action_idle = 0;
1066
1067   if (widget == NULL ||
1068       !gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
1069     return FALSE;
1070
1071   gtk_switch_set_active (sw, !gtk_switch_get_active (sw));
1072
1073   return FALSE;
1074 }
1075
1076 static gboolean
1077 gtk_switch_action_do_action (AtkAction *action,
1078                              gint       i)
1079 {
1080   GtkSwitchAccessible *accessible;
1081   GtkWidget *widget;
1082
1083   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (action));
1084   if (widget == NULL)
1085     return FALSE;
1086
1087   if (!gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
1088     return FALSE;
1089
1090   accessible = (GtkSwitchAccessible *)action;
1091
1092   if (!accessible->action_idle)
1093     accessible->action_idle = gdk_threads_add_idle (idle_do_action, accessible);
1094
1095   return TRUE;
1096 }
1097
1098 static void
1099 atk_action_interface_init (AtkActionIface *iface)
1100 {
1101   iface->do_action = gtk_switch_action_do_action;
1102   iface->get_n_actions = gtk_switch_action_get_n_actions;
1103   iface->get_name = gtk_switch_action_get_name;
1104   iface->get_description = gtk_switch_action_get_description;
1105   iface->set_description = gtk_switch_action_set_description;
1106 }
1107
1108 /* accessibility: factory */
1109
1110 typedef AtkObjectFactoryClass   GtkSwitchAccessibleFactoryClass;
1111 typedef AtkObjectFactory        GtkSwitchAccessibleFactory;
1112
1113 G_DEFINE_TYPE (GtkSwitchAccessibleFactory,
1114                gtk_switch_accessible_factory,
1115                ATK_TYPE_OBJECT_FACTORY);
1116
1117 static GType
1118 gtk_switch_accessible_factory_get_accessible_type (void)
1119 {
1120   return _gtk_switch_accessible_get_type ();
1121 }
1122
1123 static AtkObject *
1124 gtk_switch_accessible_factory_create_accessible (GObject *obj)
1125 {
1126   AtkObject *accessible;
1127
1128   accessible = g_object_new (_gtk_switch_accessible_get_type (), NULL);
1129   atk_object_initialize (accessible, obj);
1130
1131   return accessible;
1132 }
1133
1134 static void
1135 gtk_switch_accessible_factory_class_init (AtkObjectFactoryClass *klass)
1136 {
1137   klass->create_accessible = gtk_switch_accessible_factory_create_accessible;
1138   klass->get_accessible_type = gtk_switch_accessible_factory_get_accessible_type;
1139 }
1140
1141 static void
1142 gtk_switch_accessible_factory_init (AtkObjectFactory *factory)
1143 {
1144 }