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