2 * AT-SPI - Assistive Technology Service Provider Interface
3 * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
5 * Copyright 2001, 2002 Sun Microsystems Inc.,
6 * Copyright 2001, 2002 Ximian, Inc.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
24 /* atspi_registry.c: Global functions wrapping the registry */
26 #include "atspi-private.h"
28 static GArray *desktops;
31 * atspi_get_desktop_count:
33 * Get the number of virtual desktops.
34 * NOTE: currently multiple virtual desktops are not implemented, this
35 * function always returns '1'.
37 * Returns: an integer indicating the number of active virtual desktops.
40 atspi_get_desktop_count ()
47 * @i: an integer indicating which of the accessible desktops is to be returned.
49 * Get the virtual desktop indicated by index @i.
50 * NOTE: currently multiple virtual desktops are not implemented.
52 * Returns: (transfer full): a pointer to the 'i-th' virtual desktop's
53 * #AtspiAccessible representation.
56 atspi_get_desktop (gint i)
58 if (i != 0) return NULL;
59 return _atspi_ref_accessible (atspi_bus_registry, atspi_path_root);
63 * atspi_get_desktop_list:
65 * Get the list of virtual desktops. On return, @list will point
66 * to a newly-created, NULL terminated array of virtual desktop
68 * It is the responsibility of the caller to free this array when
69 * it is no longer needed.
71 * Not Yet Implemented : this implementation always returns a single
72 * #Accessible desktop.
74 * Returns: (transfer full): a #GArray of desktops.
77 atspi_get_desktop_list ()
79 GArray *array = g_array_new (TRUE, TRUE, sizeof (AtspiAccessible *));
80 AtspiAccessible *desktop;
82 desktop = _atspi_ref_accessible (atspi_bus_registry, atspi_path_root);
84 g_array_index (array, AtspiAccessible *, 0) = desktop;
89 * ATSPI_KEYSET_ALL_KEYS:
90 * @ATSPI_KEYSET_ALL_KEYS: A special value for an AccessibleKeySet type, which tacitly
91 * includes all keycodes and keyvals for the specified modifier set.
95 * atspi_register_accessible_keystroke_listener:
96 * @listener: a pointer to the #AccessibleKeystrokeListener for which
97 * keystroke events are requested.
98 * @key_set: (type: AtspiKeyDefinition): a pointer to the
99 * #AccessibleKeyDefinition array indicating which keystroke events are requested, or #ATSPI_KEYSET_ALL_KEYS
100 * to indicate that all keycodes and keyvals for the specified
101 * modifier set are to be included.
102 * @modmask: an #AtspiKeyMaskType mask indicating which
103 * key event modifiers must be set in combination with @keys,
104 * events will only be reported for key events for which all
105 * modifiers in @modmask are set. If you wish to listen for
106 * events with multiple modifier combinations you must call
107 * register_accessible_keystroke_listener() once for each
109 * @eventmask: an #AtspiKeyMaskType mask indicating which
110 * types of key events are requested (#ATSPI_KEY_PRESSED, etc.).
111 * @sync_type: a #AtspiKeyListenerSyncType parameter indicating
112 * the behavior of the notification/listener transaction.
114 * Register a listener for keystroke events, either pre-emptively for
115 * all windows (ATSPI_KEYLISTENER_ALL_WINDOWS),
116 * non-preemptively (ATSPI_KEYLISTENER_NOSYNC), or
117 * pre-emptively at the toolkit level (ATSPI_KEYLISTENER_CANCONSUME).
118 * If ALL_WINDOWS or CANCONSUME are used, the event is consumed
119 * upon receipt if one of @listener's callbacks returns #TRUE.
120 * ( Other sync_type values may be available in the future )
122 * Returns: #TRUE if successful, otherwise #FALSE.
125 atspi_register_accessible_keystroke_listener (AtspiDeviceListener *listener,
127 AtspiKeyMaskType modmask,
128 AtspiKeyEventMask event_types,
129 AtspiKeyListenerSyncType sync_type, GError **error)
132 gchar *path = _atspi_device_listener_get_path (listener);
134 dbus_uint32_t d_modmask = modmask;
135 dbus_uint32_t d_event_types = event_types;
136 AtspiEventListenerMode listener_mode;
137 gboolean retval = FALSE;
145 /* copy the keyval filter values from the C api into the DBind KeySet */
148 d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), key_set->len);
149 d_key_set->len = key_set->len;
150 for (i = 0; i < key_set->len; ++i)
152 AtspiKeyDefinition *kd = ((AtspiKeyDefinition *) key_set->data) + i;
153 AtspiKeyDefinition *d_kd = ((AtspiKeyDefinition *) d_key_set->data) + i;
154 d_kd->keycode = kd->keycode;
155 d_kd->keysym = kd->keysym;
158 d_kd->keystring = kd->keystring;
162 d_kd->keystring = "";
168 d_key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), 0);
171 listener_mode.synchronous =
172 (dbus_bool_t) ((sync_type & ATSPI_KEYLISTENER_SYNCHRONOUS)!=0);
173 listener_mode.preemptive =
174 (dbus_bool_t) ((sync_type & ATSPI_KEYLISTENER_CANCONSUME)!=0);
175 listener_mode.global =
176 (dbus_bool_t) ((sync_type & ATSPI_KEYLISTENER_ALL_WINDOWS)!=0);
178 dbus_error_init (&d_error);
179 dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "RegisterKeystrokeListener", &d_error, "oa(iisi)uu(bbb)=>b", path, d_key_set, d_modmask, d_event_types, &listener_mode, &retval);
181 g_array_free (key_set, TRUE);
188 * atspi_deregister_accessible_keystroke_listener:
189 * @listener: a pointer to the #AccessibleKeystrokeListener for which
190 * keystroke events are requested.
191 * @modmask: the key modifier mask for which this listener is to be
192 * 'deregistered' (of type #AtspiKeyMaskType).
194 * Removes a keystroke event listener from the registry's listener queue,
195 * ceasing notification of events with modifiers matching @modmask.
197 * Returns: #TRUE if successful, otherwise #FALSE.
200 atspi_deregister_accessible_keystroke_listener (AtspiDeviceListener *listener,
201 AtspiKeyMaskType modmask, AtspiKeyEventMask event_types, GError **error)
203 gchar *path = _atspi_device_listener_get_path (listener);
205 dbus_uint32_t d_modmask = modmask;
206 dbus_uint32_t d_event_types = event_types;
209 dbus_error_init (&d_error);
215 key_set = g_array_sized_new (FALSE, TRUE, sizeof (AtspiKeyDefinition), 0);
216 dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "DeregisterKeystrokeListener", &d_error, "oa(iisi)uu", path, &key_set, d_modmask, d_event_types);
222 * atspi_register_device_event_listener:
223 * @listener: a pointer to the #AtspiDeviceListener which requests
225 * @event_types: an #AtspiDeviceEventMask mask indicating which
226 * types of key events are requested (#ATSPI_KEY_PRESSED, etc.).
227 * @filter: Unused parameter.
229 * Register a listener for device events, for instance button events.
231 * Returns: #TRUE if successful, otherwise #FALSE.
234 atspi_register_device_event_listener (AtspiDeviceListener *listener,
235 AtspiDeviceEventMask event_types,
236 void *filter, GError **error)
238 gboolean retval = FALSE;
239 dbus_uint32_t d_event_types = event_types;
241 gchar *path = _atspi_device_listener_get_path (listener);
244 dbus_error_init (&d_error);
250 dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "RegisterDeviceEventListener", &d_error, "ou=>b", path, d_event_types, &retval);
256 * atspi_deregister_device_event_listener:
257 * @listener: a pointer to the #AtspiDeviceListener for which
258 * device events are requested.
259 * @filter: Unused parameter.
261 * Removes a device event listener from the registry's listener queue,
262 * ceasing notification of events of the specified type.
264 * Returns: #TRUE if successful, otherwise #FALSE.
267 atspi_deregister_device_event_listener (AtspiDeviceListener *listener,
268 void *filter, GError **error)
270 dbus_uint32_t event_types = 0;
271 gchar *path = _atspi_device_listener_get_path (listener);
274 dbus_error_init (&d_error);
281 event_types |= (1 << ATSPI_BUTTON_PRESSED_EVENT);
282 event_types |= (1 << ATSPI_BUTTON_RELEASED_EVENT);
284 dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "DeregisterDeviceEventListener", &d_error, "ou", path, event_types);
290 * atspi_generate_keyboard_event:
291 * @keyval: a long integer indicating the keycode or keysym of the key event
293 * @keystring: an (optional) UTF-8 string which, if @keyval is NULL,
294 * indicates a 'composed' keyboard input string which is
295 * being synthesized; this type of keyboard event synthesis does
296 * not emulate hardware keypresses but injects the string
297 * as though a composing input method (such as XIM) were used.
298 * @synth_type: a #AccessibleKeySynthType flag indicating whether @keyval
299 * is to be interpreted as a keysym rather than a keycode
300 * (ATSPI_KEYSYM), or whether to synthesize
301 * ATSPI_KEY_PRESS, ATSPI_KEY_RELEASE, or both (ATSPI_KEY_PRESSRELEASE).
303 * Synthesize a keyboard event (as if a hardware keyboard event occurred in the
304 * current UI context).
306 * Returns: #TRUE if successful, otherwise #FALSE.
309 atspi_generate_keyboard_event (glong keyval,
310 const gchar *keystring,
311 AtspiKeySynthType synth_type, GError **error)
313 dbus_uint32_t d_synth_type = synth_type;
314 dbus_int32_t d_keyval = keyval;
317 dbus_error_init (&d_error);
318 if (!keystring) keystring = "";
319 dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "GenerateKeyboardEvent", &d_error, "isu", d_keyval, keystring, d_synth_type);
325 * atspi_generate_mouse_event:
326 * @x: a #long indicating the screen x coordinate of the mouse event.
327 * @y: a #long indicating the screen y coordinate of the mouse event.
328 * @name: a string indicating which mouse event to be synthesized
329 * (e.g. "b1p", "b1c", "b2r", "rel", "abs").
331 * Synthesize a mouse event at a specific screen coordinate.
332 * Most AT clients should use the #AccessibleAction interface when
333 * tempted to generate mouse events, rather than this method.
334 * Event names: b1p = button 1 press; b2r = button 2 release;
335 * b3c = button 3 click; b2d = button 2 double-click;
336 * abs = absolute motion; rel = relative motion.
338 * Returns: #TRUE if successful, otherwise #FALSE.
341 atspi_generate_mouse_event (glong x, glong y, const gchar *name, GError **error)
343 dbus_int32_t dbus_x = x, dbus__y = y;
346 dbus_error_init (&d_error);
347 dbind_method_call_reentrant (_atspi_bus(), atspi_bus_registry, atspi_path_dec, atspi_interface_dec, "GenerateMouseEvent", &d_error, "iis", x, y, name);