Added initial support for multiple interfaces on Accessible objects
[platform/core/uifw/at-spi2-atk.git] / libspi / accessible.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001 Sun Microsystems Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * accessible.c: test for accessibility implementation
25  *
26  */
27 #include <config.h>
28 #include <bonobo/Bonobo.h>
29
30 #include <stdio.h>
31
32 /*
33  * This pulls the CORBA definitions for the "Accessibility::Accessible" server
34  */
35 #include <libspi/Accessibility.h>
36
37 /*
38  * This pulls the definition for the BonoboObject (Gtk Type)
39  */
40 #include "accessible.h"
41
42 /*
43  * Our parent Gtk object type
44  */
45 #define PARENT_TYPE BONOBO_OBJECT_TYPE
46
47 /*
48  * A pointer to our parent object class
49  */
50 static GObjectClass *accessible_parent_class;
51
52 /*
53  * Implemented GObject::finalize
54  */
55 static void
56 accessible_object_finalize (GObject *object)
57 {
58         Accessible *accessible = ACCESSIBLE (object);
59
60         printf("accessible_object_finalize called\n");
61         g_object_unref (accessible->atko);
62         accessible->atko = NULL;
63
64         printf("atko freed, calling parent finalize\n");
65         accessible_parent_class->finalize (object);
66 }
67
68 /*
69  * CORBA Accessibility::Accessible::get_name method implementation
70  */
71 static CORBA_char *
72 impl_accessibility_accessible_get_name (PortableServer_Servant servant,
73                                         CORBA_Environment     *ev)
74 {
75   CORBA_char * retval;
76   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
77   retval = atk_object_get_name (accessible->atko);
78   if (retval )
79     retval = CORBA_string_dup (retval);
80   else
81     retval = CORBA_string_dup ("");
82   fprintf (stderr, "Accessible get_name called: %s\n", retval);
83   return retval;
84 }
85
86 /*
87  * CORBA Accessibility::Accessible::set_name method implementation
88  */
89 static void
90 impl_accessibility_accessible_set_name (PortableServer_Servant servant,
91                                         const CORBA_char      *name,
92                                         CORBA_Environment     *ev)
93 {
94   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
95   atk_object_set_name (accessible->atko, name);
96   printf ("Accessible set_name called: %s\n", name);
97 }
98
99 /*
100  * CORBA Accessibility::Accessible::get_description method implementation
101  */
102 static CORBA_char *
103 impl_accessibility_accessible_get_description (PortableServer_Servant servant,
104                                                CORBA_Environment     *ev)
105 {
106   CORBA_char * retval;
107   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
108   retval = CORBA_string_dup (atk_object_get_description (accessible->atko));
109   fprintf (stderr, "Accessible get_description called: %s\n", retval);
110   return retval;
111 }
112
113 /*
114  * CORBA Accessibility::Accessible::set_description method implementation
115  */
116 static void
117 impl_accessibility_accessible_set_description (PortableServer_Servant servant,
118                                                const CORBA_char      *name,
119                                                CORBA_Environment     *ev)
120 {
121   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
122   atk_object_set_description (accessible->atko, name);
123   printf ("Accessible set_description called: %s\n", name);
124 }
125
126 /*
127  * CORBA Accessibility::Accessible::get_parent method implementation
128  */
129 static Accessibility_Accessible
130 impl_accessibility_accessible_get_parent (PortableServer_Servant servant,
131                                           CORBA_Environment     *ev)
132 {
133   Accessibility_Accessible retval;
134   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
135   AtkObject *parent;
136   parent = atk_object_get_parent (accessible->atko);
137   retval = bonobo_object_corba_objref (bonobo_object (accessible_new (parent)));
138   printf ("Accessible get_parent called\n");
139   return retval;
140 }
141
142 /*
143  * CORBA Accessibility::Accessible::get_childCount method implementation
144  */
145 static CORBA_long
146 impl_accessibility_accessible_get_child_count (PortableServer_Servant servant,
147                                                CORBA_Environment     *ev)
148 {
149   CORBA_long retval;
150   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
151   retval = (CORBA_long) atk_object_get_n_accessible_children (accessible->atko);
152   printf ("Accessible get_childCount called: %d\n", (int) retval);
153   return retval;
154 }
155
156 /*
157  * CORBA Accessibility::Accessible::getChildAtIndex method implementation
158  */
159 static Accessibility_Accessible
160 impl_accessibility_accessible_get_child_at_index (PortableServer_Servant servant,
161                                                   const CORBA_long      index,
162                                                   CORBA_Environment     *ev)
163 {
164   Accessibility_Accessible retval;
165   Accessible *accessible = ACCESSIBLE (bonobo_object_from_servant (servant));
166   AtkObject *child = atk_object_ref_accessible_child (accessible->atko, (gint) index);
167   retval = bonobo_object_corba_objref ( bonobo_object (accessible_new (child)));
168   printf ("Accessible get_child_at_index called.\n");
169   return retval;
170 }
171
172 static void
173 accessible_class_init (AccessibleClass *klass)
174 {
175         GObjectClass * object_class = (GObjectClass *) klass;
176         POA_Accessibility_Accessible__epv *epv = &klass->epv;
177         accessible_parent_class = g_type_class_peek_parent (klass);
178
179         object_class->finalize = accessible_object_finalize;
180
181         epv->_get_name = impl_accessibility_accessible_get_name;
182         epv->_set_name = impl_accessibility_accessible_set_name;
183         epv->_get_description = impl_accessibility_accessible_get_description;
184         epv->_set_description = impl_accessibility_accessible_set_description;
185
186         epv->_get_parent = impl_accessibility_accessible_get_parent;
187         epv->_get_childCount = impl_accessibility_accessible_get_child_count;
188         epv->getChildAtIndex = impl_accessibility_accessible_get_child_at_index;
189
190         /* epv->getIndexInParent = impl_accessibility_accessible_get_index_in_parent; */
191         /* epv->getRelationSet = impl_accessibility_accessible_get_relation_set;      */
192         /* epv->getState = impl_accessibility_accessible_get_state;                   */
193         /* epv->getRole = impl_accessibility_accessible_get_role;                     */
194 }
195
196 static void
197 accessible_init (Accessible *accessible)
198 {
199 }
200
201 GType
202 accessible_get_type (void)
203 {
204         static GType type = 0;
205
206         if (!type) {
207                 static const GTypeInfo tinfo = {
208                         sizeof (AccessibleClass),
209                         (GBaseInitFunc) NULL,
210                         (GBaseFinalizeFunc) NULL,
211                         (GClassInitFunc) accessible_class_init,
212                         (GClassFinalizeFunc) NULL,
213                         NULL, /* class data */
214                         sizeof (Accessible),
215                         0, /* n preallocs */
216                         (GInstanceInitFunc) accessible_init,
217                         NULL /* value table */
218                 };
219                 /*
220                  * Bonobo_type_unique auto-generates a load of
221                  * CORBA structures for us. All derived types must
222                  * use bonobo_type_unique.
223                  */
224                 type = bonobo_type_unique (
225                         PARENT_TYPE,
226                         POA_Accessibility_Accessible__init,
227                         NULL,
228                         G_STRUCT_OFFSET (AccessibleClass, epv),
229                         &tinfo,
230                         "Accessible");
231         }
232
233         return type;
234 }
235
236 Accessible *
237 accessible_new (AtkObject *o)
238 {
239     Accessible *retval =
240                ACCESSIBLE (g_object_new (accessible_get_type (), NULL));
241     g_object_ref (o);
242     retval->atko = ATK_OBJECT (o);
243
244     /*
245      * TODO: add interface containers/constructors for ACTION, EDITABLE_TEXT, HYPERTEXT,
246      *  IMAGE, SELECTION, TABLE, TEXT, VALUE.
247      */
248
249     /* add appropriate ATK interfaces */
250
251     /* Action: not yet implemented
252     if (ATK_IS_ACTION (o))
253       {
254         bonobo_object_add_interface (bonobo_object (retval),
255                                      bonobo_object (action_interface_new (o)));
256       }
257     */
258
259     if (ATK_IS_COMPONENT (o))
260       {
261         bonobo_object_add_interface (bonobo_object (retval),
262                                      bonobo_object (component_interface_new (o)));
263       }
264
265     /* Others: not yet implemented
266     if (ATK_IS_EDITABLE_TEXT (o))
267       {
268         bonobo_object_add_interface (bonobo_object (retval),
269                                      bonobo_object (editable_text_interface_new (o)));
270       }
271     else if (ATK_IS_HYPERTEXT (o))
272       {
273         bonobo_object_add_interface (bonobo_object (retval),
274                                      bonobo_object (hypertext_interface_new (o)));
275       }
276     else if (ATK_IS_TEXT (o))
277       {
278         bonobo_object_add_interface (bonobo_object (retval),
279                                      bonobo_object (text_interface_new (o)));
280       }
281     if (ATK_IS_IMAGE (o))
282       {
283         bonobo_object_add_interface (bonobo_object (retval),
284                                      bonobo_object (image_interface_new (o)));
285       }
286     if (ATK_IS_SELECTION (o))
287       {
288         bonobo_object_add_interface (bonobo_object (retval),
289                                      bonobo_object (selection_interface_new (o)));
290       }
291     if (ATK_IS_TABLE (o))
292       {
293         bonobo_object_add_interface (bonobo_object (retval),
294                                      bonobo_object (table_interface_new (o)));
295       }
296     if (ATK_IS_VALUE (o))
297       {
298         bonobo_object_add_interface (bonobo_object (retval),
299                                      bonobo_object (value_interface_new (o)));
300       }
301
302     */
303
304     return retval;
305 }