]> Pileus Git - ~andy/gtk/blob - modules/other/gail/gailbooleancell.c
gailbooleancell.c gailimagecell.c gailtextcell.c gailwidget.c
[~andy/gtk] / modules / other / gail / gailbooleancell.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 "gailbooleancell.h"
24
25 static void      gail_boolean_cell_class_init          (GailBooleanCellClass *klass);
26 static void      gail_boolean_cell_init                (GailBooleanCell *cell);
27 /* Misc */
28
29 static gboolean gail_boolean_cell_update_cache         (GailRendererCell     *cell,
30                                                         gboolean             emit_change_signal);
31
32 gchar *gail_boolean_cell_property_list[] = {
33   "active",
34   "radio",
35   NULL
36 };
37
38 G_DEFINE_TYPE_WITH_CODE (GailBooleanCell, gail_boolean_cell, GAIL_TYPE_RENDERER_CELL,
39                          gail_cell_type_add_action_interface (g_define_type_id))
40
41 static void 
42 gail_boolean_cell_class_init (GailBooleanCellClass *klass)
43 {
44   GailRendererCellClass *renderer_cell_class = GAIL_RENDERER_CELL_CLASS (klass);
45
46   renderer_cell_class->update_cache = gail_boolean_cell_update_cache;
47   renderer_cell_class->property_list = gail_boolean_cell_property_list;
48 }
49
50 static void
51 gail_boolean_cell_init (GailBooleanCell *cell)
52 {
53 }
54
55 AtkObject* 
56 gail_boolean_cell_new (void)
57 {
58   GObject *object;
59   AtkObject *atk_object;
60   GailRendererCell *cell;
61   GailBooleanCell *boolean_cell;
62
63   object = g_object_new (GAIL_TYPE_BOOLEAN_CELL, NULL);
64
65   g_return_val_if_fail (object != NULL, NULL);
66
67   atk_object = ATK_OBJECT (object);
68   atk_object->role = ATK_ROLE_TABLE_CELL;
69
70   cell = GAIL_RENDERER_CELL(object);
71   boolean_cell = GAIL_BOOLEAN_CELL(object);
72
73   cell->renderer = gtk_cell_renderer_toggle_new ();
74   g_object_ref_sink (cell->renderer);
75   boolean_cell->cell_value = FALSE;
76   return atk_object;
77 }
78
79 static gboolean
80 gail_boolean_cell_update_cache (GailRendererCell *cell, 
81                                 gboolean         emit_change_signal)
82 {
83   GailBooleanCell *boolean_cell = GAIL_BOOLEAN_CELL (cell);
84   gboolean rv = FALSE;
85   gboolean new_boolean;
86
87   g_object_get (G_OBJECT(cell->renderer), "active", &new_boolean, NULL);
88
89   if (boolean_cell->cell_value != new_boolean)
90     {
91       rv = TRUE;
92       boolean_cell->cell_value = !(boolean_cell->cell_value);
93
94       /* Update cell's state */
95
96     if (new_boolean)
97       gail_cell_add_state (GAIL_CELL (cell), ATK_STATE_CHECKED, emit_change_signal);
98     else
99       gail_cell_remove_state (GAIL_CELL (cell), ATK_STATE_CHECKED, emit_change_signal);
100     }
101
102   return rv;
103 }