]> Pileus Git - ~andy/gtk/blob - modules/other/gail/gailmenu.c
0a928c4cc4b4f6bf09f00eace5c15629b396edf6
[~andy/gtk] / modules / other / gail / gailmenu.c
1 /* GAIL - The GNOME Accessibility Implementation Library
2  * Copyright 2001, 2002, 2003 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 #undef GTK_DISABLE_DEPRECATED
23
24 #include "gailmenu.h"
25
26 static void gail_menu_class_init (GailMenuClass *klass);
27 static void gail_menu_init       (GailMenu      *accessible);
28
29 static void       gail_menu_real_initialize     (AtkObject *obj,
30                                                  gpointer  data);
31
32 static AtkObject* gail_menu_get_parent          (AtkObject *accessible);
33 static gint       gail_menu_get_index_in_parent (AtkObject *accessible);
34
35 G_DEFINE_TYPE (GailMenu, gail_menu, GAIL_TYPE_MENU_SHELL)
36
37 static void
38 gail_menu_class_init (GailMenuClass *klass)
39 {
40   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
41
42   class->get_parent = gail_menu_get_parent;
43   class->get_index_in_parent = gail_menu_get_index_in_parent;
44   class->initialize = gail_menu_real_initialize;
45 }
46
47 static void
48 gail_menu_init (GailMenu *accessible)
49 {
50 }
51
52 static void
53 gail_menu_real_initialize (AtkObject *obj,
54                            gpointer  data)
55 {
56   ATK_OBJECT_CLASS (gail_menu_parent_class)->initialize (obj, data);
57
58   obj->role = ATK_ROLE_MENU;
59
60   g_object_set_data (G_OBJECT (obj), "atk-component-layer",
61                      GINT_TO_POINTER (ATK_LAYER_POPUP));
62 }
63
64 static AtkObject*
65 gail_menu_get_parent (AtkObject *accessible)
66 {
67   AtkObject *parent;
68
69   parent = accessible->accessible_parent;
70
71   if (parent != NULL)
72     {
73       g_return_val_if_fail (ATK_IS_OBJECT (parent), NULL);
74     }
75   else
76     {
77       GtkWidget *widget, *parent_widget;
78
79       widget = GTK_ACCESSIBLE (accessible)->widget;
80       if (widget == NULL)
81         {
82           /*
83            * State is defunct
84            */
85           return NULL;
86         }
87       g_return_val_if_fail (GTK_IS_MENU (widget), NULL);
88
89       /*
90        * If the menu is attached to a menu item or a button (Gnome Menu)
91        * report the menu item as parent.
92        */
93       parent_widget = gtk_menu_get_attach_widget (GTK_MENU (widget));
94
95       if (!GTK_IS_MENU_ITEM (parent_widget) && !GTK_IS_BUTTON (parent_widget) && !GTK_IS_COMBO_BOX (parent_widget) && !GTK_IS_OPTION_MENU (parent_widget))
96         parent_widget = widget->parent;
97
98       if (parent_widget == NULL)
99         return NULL;
100
101       parent = gtk_widget_get_accessible (parent_widget);
102       atk_object_set_parent (accessible, parent);
103     }
104   return parent;
105 }
106
107 static gint
108 gail_menu_get_index_in_parent (AtkObject *accessible)
109 {
110   GtkWidget *widget;
111
112   widget = GTK_ACCESSIBLE (accessible)->widget;
113
114   if (widget == NULL)
115     {
116       /*
117        * State is defunct
118        */
119       return -1;
120     }
121   g_return_val_if_fail (GTK_IS_MENU (widget), -1);
122
123   if (gtk_menu_get_attach_widget (GTK_MENU (widget)))
124     {
125       return 0;
126     }
127   return ATK_OBJECT_CLASS (gail_menu_parent_class)->get_index_in_parent (accessible);
128 }