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