]> Pileus Git - ~andy/gtk/blob - gtk/a11y/gtkradiomenuitemaccessible.c
GtkEntryAccessible: Remove unused variable
[~andy/gtk] / gtk / a11y / gtkradiomenuitemaccessible.c
1 /* GAIL - The GNOME Accessibility Implementation Library
2  * Copyright 2002 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "config.h"
19
20 #include <gtk/gtk.h>
21 #include "gtkradiomenuitemaccessible.h"
22
23
24 G_DEFINE_TYPE (GtkRadioMenuItemAccessible, _gtk_radio_menu_item_accessible, GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE)
25
26
27 static AtkRelationSet *
28 gtk_radio_menu_item_accessible_ref_relation_set (AtkObject *obj)
29 {
30   GtkWidget *widget;
31   AtkRelationSet *relation_set;
32   GSList *list;
33   GtkRadioMenuItemAccessible *radio_menu_item;
34
35   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (obj));
36   if (widget == NULL)
37     return NULL;
38
39   radio_menu_item = GTK_RADIO_MENU_ITEM_ACCESSIBLE (obj);
40
41   relation_set = ATK_OBJECT_CLASS (_gtk_radio_menu_item_accessible_parent_class)->ref_relation_set (obj);
42
43   /* If the radio menu_item's group has changed remove the relation */
44   list = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (widget));
45
46   if (radio_menu_item->old_group != list)
47     {
48       AtkRelation *relation;
49
50       relation = atk_relation_set_get_relation_by_type (relation_set, ATK_RELATION_MEMBER_OF);
51       atk_relation_set_remove (relation_set, relation);
52     }
53
54   if (!atk_relation_set_contains (relation_set, ATK_RELATION_MEMBER_OF))
55     {
56       /* Get the members of the menu_item group */
57       radio_menu_item->old_group = list;
58       if (list)
59         {
60           AtkObject **accessible_array;
61           guint list_length;
62           AtkRelation* relation;
63           gint i = 0;
64
65           list_length = g_slist_length (list);
66           accessible_array = g_new (AtkObject *, list_length);
67           while (list != NULL)
68             {
69               GtkWidget* list_item = list->data;
70
71               accessible_array[i++] = gtk_widget_get_accessible (list_item);
72
73               list = list->next;
74             }
75           relation = atk_relation_new (accessible_array, list_length,
76                                        ATK_RELATION_MEMBER_OF);
77           g_free (accessible_array);
78
79           atk_relation_set_add (relation_set, relation);
80
81           /* Unref the relation so that it is not leaked */
82           g_object_unref (relation);
83         }
84     }
85
86   return relation_set;
87 }
88
89 static void
90 gtk_radio_menu_item_accessible_initialize (AtkObject *obj,
91                                               gpointer   data)
92 {
93   ATK_OBJECT_CLASS (_gtk_radio_menu_item_accessible_parent_class)->initialize (obj, data);
94
95   obj->role = ATK_ROLE_RADIO_MENU_ITEM;
96 }
97
98 static void
99 _gtk_radio_menu_item_accessible_class_init (GtkRadioMenuItemAccessibleClass *klass)
100 {
101   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
102
103   class->ref_relation_set = gtk_radio_menu_item_accessible_ref_relation_set;
104   class->initialize = gtk_radio_menu_item_accessible_initialize;
105 }
106
107 static void
108 _gtk_radio_menu_item_accessible_init (GtkRadioMenuItemAccessible *radio_menu_item)
109 {
110   radio_menu_item->old_group = NULL;
111 }