]> Pileus Git - ~andy/gtk/blob - gtk/a11y/gtkswitchaccessible.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / a11y / gtkswitchaccessible.c
1 /* GTK+ - accessibility implementations
2  * Copyright (C) 2010  Intel Corporation
3  * Copyright (C) 2010  RedHat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * Author:
19  *      Emmanuele Bassi <ebassi@linux.intel.com>
20  *      Matthias Clasen <mclasen@redhat.com>
21  *
22  * Based on similar code from Mx.
23  */
24
25 #include "config.h"
26
27 #include <glib/gi18n-lib.h>
28 #include <gtk/gtk.h>
29 #include "gtkintl.h"
30 #include "gtkswitchaccessible.h"
31
32
33 static void atk_action_interface_init (AtkActionIface *iface);
34
35 G_DEFINE_TYPE_WITH_CODE (GtkSwitchAccessible, gtk_switch_accessible, GTK_TYPE_WIDGET_ACCESSIBLE,
36                          G_IMPLEMENT_INTERFACE (ATK_TYPE_ACTION, atk_action_interface_init))
37
38 static AtkStateSet *
39 gtk_switch_accessible_ref_state_set (AtkObject *accessible)
40 {
41   AtkStateSet *state_set;
42   GtkWidget *widget;
43
44   state_set = ATK_OBJECT_CLASS (gtk_switch_accessible_parent_class)->ref_state_set (accessible);
45
46   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
47   if (widget == NULL)
48     return state_set;
49
50   if (gtk_switch_get_active (GTK_SWITCH (widget)))
51     atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
52
53   return state_set;
54 }
55
56 static void
57 gtk_switch_accessible_initialize (AtkObject *accessible,
58                                   gpointer   widget)
59 {
60   ATK_OBJECT_CLASS (gtk_switch_accessible_parent_class)->initialize (accessible, widget);
61
62   atk_object_set_role (accessible, ATK_ROLE_TOGGLE_BUTTON);
63   atk_object_set_name (accessible, C_("light switch widget", "Switch"));
64   atk_object_set_description (accessible, _("Switches between on and off states"));
65 }
66
67 static void
68 gtk_switch_accessible_class_init (GtkSwitchAccessibleClass *klass)
69 {
70   AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
71
72   atk_class->initialize = gtk_switch_accessible_initialize;
73   atk_class->ref_state_set = gtk_switch_accessible_ref_state_set;
74 }
75
76 static void
77 gtk_switch_accessible_init (GtkSwitchAccessible *self)
78 {
79 }
80
81 static gint
82 gtk_switch_action_get_n_actions (AtkAction *action)
83 {
84   return 1;
85 }
86
87 static const gchar *
88 gtk_switch_action_get_name (AtkAction *action,
89                             gint       i)
90 {
91   if (i == 0)
92     return "toggle";
93   return NULL;
94 }
95
96 static const gchar *
97 gtk_switch_action_get_localized_name (AtkAction *action,
98                                       gint       i)
99 {
100   if (i == 0)
101     return C_("Action name", "Toggle");
102   return NULL;
103 }
104
105 static const gchar *
106 gtk_switch_action_get_description (AtkAction *action,
107                                    gint       i)
108 {
109   if (i == 0)
110     return C_("Action description", "Toggles the switch");
111   return NULL;
112 }
113
114 static gboolean
115 gtk_switch_action_do_action (AtkAction *action,
116                              gint       i)
117 {
118   GtkSwitch *sw;
119   GtkWidget *widget;
120
121   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (action));
122   if (widget == NULL)
123     return FALSE;
124
125   if (i != 0)
126     return FALSE;
127
128   if (!gtk_widget_is_sensitive (widget) || !gtk_widget_get_visible (widget))
129     return FALSE;
130
131   sw = GTK_SWITCH (widget);
132   gtk_switch_set_active (sw, !gtk_switch_get_active (sw));
133
134   return TRUE;
135 }
136
137 static void
138 atk_action_interface_init (AtkActionIface *iface)
139 {
140   iface->do_action = gtk_switch_action_do_action;
141   iface->get_n_actions = gtk_switch_action_get_n_actions;
142   iface->get_name = gtk_switch_action_get_name;
143   iface->get_localized_name = gtk_switch_action_get_localized_name;
144   iface->get_description = gtk_switch_action_get_description;
145 }