7e9634aeb22f5dbc96dfd2a7ddcc7a760ddc567b
[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 static void
127 accessible_class_init (AccessibleClass *klass)
128 {
129         GObjectClass * object_class = (GObjectClass *) klass;
130         POA_Accessibility_Accessible__epv *epv = &klass->epv;
131         accessible_parent_class = g_type_class_peek_parent (klass);
132
133         object_class->finalize = accessible_object_finalize;
134
135         epv->_get_name = impl_accessibility_accessible_get_name;
136         epv->_set_name = impl_accessibility_accessible_set_name;
137         epv->_get_description = impl_accessibility_accessible_get_description;
138         epv->_set_description = impl_accessibility_accessible_set_description;
139
140         /* epv->_get_parent = impl_accessibility_accessible_get_parent;               */
141         /* epv->_get_childCount = impl_accessibility_accessible_get_child_count;      */
142         /* epv->getChildAtIndex = impl_accessibility_accessible_get_child_at_index;   */
143         /* epv->getIndexInParent = impl_accessibility_accessible_get_index_in_parent; */
144         /* epv->getRelationSet = impl_accessibility_accessible_get_relation_set;      */
145         /* epv->getState = impl_accessibility_accessible_get_state;                   */
146         /* epv->getRole = impl_accessibility_accessible_get_role;                     */
147 }
148
149 static void
150 accessible_init (Accessible *accessible)
151 {
152 }
153
154 GType
155 accessible_get_type (void)
156 {
157         static GType type = 0;
158
159         if (!type) {
160                 static const GTypeInfo tinfo = {
161                         sizeof (AccessibleClass),
162                         (GBaseInitFunc) NULL,
163                         (GBaseFinalizeFunc) NULL,
164                         (GClassInitFunc) accessible_class_init,
165                         (GClassFinalizeFunc) NULL,
166                         NULL, /* class data */
167                         sizeof (Accessible),
168                         0, /* n preallocs */
169                         (GInstanceInitFunc) accessible_init,
170                         NULL /* value table */
171                 };
172                 /*
173                  * Bonobo_type_unique auto-generates a load of
174                  * CORBA structures for us. All derived types must
175                  * use bonobo_type_unique.
176                  */
177                 type = bonobo_type_unique (
178                         PARENT_TYPE,
179                         POA_Accessibility_Accessible__init,
180                         NULL,
181                         G_STRUCT_OFFSET (AccessibleClass, epv),
182                         &tinfo,
183                         "Accessible");
184         }
185
186         return type;
187 }
188
189 Accessible *
190 accessible_new (AtkObject *o)
191 {
192     Accessible *retval =
193                ACCESSIBLE (g_object_new (accessible_get_type (), NULL));
194     g_object_ref (o);
195     retval->atko = ATK_OBJECT (o);
196     return retval;
197 }