]> Pileus Git - ~andy/gtk/blob - gtk/a11y/gtkbooleancellaccessible.c
a11y: Move update_cache to GtkCellAccesible
[~andy/gtk] / gtk / a11y / gtkbooleancellaccessible.c
1 /* GAIL - The GNOME Accessibility Enabling Library
2  * Copyright 2001 Sun Microsystems Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21
22 #include <gtk/gtk.h>
23 #include "gtkbooleancellaccessible.h"
24
25
26 G_DEFINE_TYPE (GtkBooleanCellAccessible, _gtk_boolean_cell_accessible, GTK_TYPE_RENDERER_CELL_ACCESSIBLE)
27
28
29 static void
30 gtk_boolean_cell_accessible_update_cache (GtkCellAccessible *cell)
31 {
32   GtkBooleanCellAccessible *boolean_cell = GTK_BOOLEAN_CELL_ACCESSIBLE (cell);
33   gboolean active;
34   gboolean sensitive;
35
36   g_object_get (G_OBJECT (GTK_RENDERER_CELL_ACCESSIBLE (cell)->renderer),
37                 "active", &active,
38                 "sensitive", &sensitive,
39                 NULL);
40
41   if (boolean_cell->cell_value != active)
42     {
43       boolean_cell->cell_value = !boolean_cell->cell_value;
44
45       if (active)
46         _gtk_cell_accessible_add_state (GTK_CELL_ACCESSIBLE (cell), ATK_STATE_CHECKED, TRUE);
47       else
48         _gtk_cell_accessible_remove_state (GTK_CELL_ACCESSIBLE (cell), ATK_STATE_CHECKED, TRUE);
49     }
50
51   if (boolean_cell->cell_sensitive != sensitive)
52     {
53       boolean_cell->cell_sensitive = !boolean_cell->cell_sensitive;
54
55       if (sensitive)
56         _gtk_cell_accessible_add_state (GTK_CELL_ACCESSIBLE (cell), ATK_STATE_SENSITIVE, TRUE);
57       else
58         _gtk_cell_accessible_remove_state (GTK_CELL_ACCESSIBLE (cell), ATK_STATE_SENSITIVE, TRUE);
59     }
60 }
61
62 static void
63 _gtk_boolean_cell_accessible_class_init (GtkBooleanCellAccessibleClass *klass)
64 {
65   GtkCellAccessibleClass *cell_class = GTK_CELL_ACCESSIBLE_CLASS (klass);
66
67   cell_class->update_cache = gtk_boolean_cell_accessible_update_cache;
68 }
69
70 static void
71 _gtk_boolean_cell_accessible_init (GtkBooleanCellAccessible *cell)
72 {
73 }
74