API revisions: tweaks to key event API, added some reserved slots for
[platform/core/uifw/at-spi2-atk.git] / libspi / selection.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 /* selection.c : implements the Selection interface */
24
25 #include <config.h>
26 #include <stdio.h>
27 #include <libspi/accessible.h>
28 #include <libspi/selection.h>
29
30
31 SpiSelection *
32 spi_selection_interface_new (AtkObject *obj)
33 {
34   SpiSelection *new_selection = g_object_new (SPI_SELECTION_TYPE, NULL);
35
36   spi_base_construct (SPI_BASE (new_selection), G_OBJECT(obj));
37
38   return new_selection;
39 }
40
41
42 static AtkSelection *
43 get_selection_from_servant (PortableServer_Servant servant)
44 {
45   SpiBase *object = SPI_BASE (bonobo_object_from_servant (servant));
46
47   g_return_val_if_fail (object, NULL);
48   g_return_val_if_fail (ATK_IS_OBJECT(object->gobj), NULL);
49   return ATK_SELECTION (object->gobj);
50 }
51
52
53 static CORBA_long
54 impl__get_nSelectedChildren (PortableServer_Servant servant,
55                              CORBA_Environment     *ev)
56 {
57   AtkSelection *selection = get_selection_from_servant (servant);
58
59   g_return_val_if_fail (selection != NULL, 0);
60
61   return (CORBA_long) atk_selection_get_selection_count (selection);
62 }
63
64
65 static Accessibility_Accessible
66 impl_getSelectedChild (PortableServer_Servant servant,
67                        const CORBA_long       selectedChildIndex,
68                        CORBA_Environment     *ev)
69 {
70   AtkObject    *atk_object;
71   AtkSelection *selection = get_selection_from_servant (servant);
72
73   g_return_val_if_fail (selection != NULL, CORBA_OBJECT_NIL);
74
75 #ifdef SPI_DEBUG
76   fprintf (stderr, "calling impl_getSelectedChild\n");
77 #endif
78
79   atk_object = atk_selection_ref_selection (selection,
80                                             (gint) selectedChildIndex);
81
82   g_return_val_if_fail (ATK_IS_OBJECT (atk_object), CORBA_OBJECT_NIL);
83
84 #ifdef SPI_DEBUG
85   fprintf (stderr, "child type is %s\n",
86            g_type_name (G_OBJECT_TYPE (atk_object)));
87 #endif
88
89   return spi_accessible_new_return (atk_object, TRUE, ev);
90 }
91
92
93 static CORBA_boolean
94 impl_selectChild (PortableServer_Servant servant,
95                   const CORBA_long       childIndex,
96                   CORBA_Environment     *ev)
97 {
98   AtkSelection *selection = get_selection_from_servant (servant);
99
100   g_return_val_if_fail (selection != NULL, FALSE);
101
102   return (CORBA_boolean)
103     atk_selection_add_selection (selection, (gint) childIndex);
104 }
105
106
107 static CORBA_boolean
108 impl_deselectSelectedChild (PortableServer_Servant servant,
109                             const CORBA_long       selectedChildIndex,
110                             CORBA_Environment     *ev)
111 {
112   AtkSelection *selection = get_selection_from_servant (servant);
113
114   g_return_val_if_fail (selection != NULL, FALSE);
115
116   return (CORBA_boolean)
117     atk_selection_remove_selection (selection, (gint) selectedChildIndex);
118 }
119
120
121 static CORBA_boolean
122 impl_isChildSelected (PortableServer_Servant servant,
123                       const CORBA_long       childIndex,
124                       CORBA_Environment     *ev)
125 {
126   AtkSelection *selection = get_selection_from_servant (servant);
127
128   g_return_val_if_fail (selection != NULL, FALSE);
129
130   return (CORBA_boolean)
131     atk_selection_is_child_selected (selection, (gint) childIndex);
132 }
133
134
135 static void 
136 impl_selectAll (PortableServer_Servant servant,
137                 CORBA_Environment     *ev)
138 {
139   AtkSelection *selection = get_selection_from_servant (servant);
140
141   g_return_if_fail (selection != NULL);
142
143   atk_selection_select_all_selection (selection);
144 }
145
146
147 static void 
148 impl_clearSelection (PortableServer_Servant servant,
149                      CORBA_Environment     *ev)
150 {
151   AtkSelection *selection = get_selection_from_servant (servant);
152
153   g_return_if_fail (selection != NULL);
154
155   atk_selection_clear_selection (selection);
156 }
157
158
159 static void
160 spi_selection_class_init (SpiSelectionClass *klass)
161 {
162   POA_Accessibility_Selection__epv *epv = &klass->epv;
163
164   /* Initialize epv table */
165
166   epv->_get_nSelectedChildren = impl__get_nSelectedChildren;
167   epv->getSelectedChild       = impl_getSelectedChild;
168   epv->selectChild            = impl_selectChild;
169   epv->deselectSelectedChild  = impl_deselectSelectedChild;
170   epv->isChildSelected        = impl_isChildSelected;
171   epv->selectAll              = impl_selectAll;
172   epv->clearSelection         = impl_clearSelection;
173 }
174
175
176 static void
177 spi_selection_init (SpiSelection *selection)
178 {
179 }
180
181
182 BONOBO_TYPE_FUNC_FULL (SpiSelection,
183                        Accessibility_Selection,
184                        SPI_TYPE_BASE,
185                        spi_selection);