2009-01-09 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/upstream/at-spi2-core.git] / atk-adaptor / atk-dbus.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2008 Novell, 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 #ifndef __ATK_DBUS__
24 #define __ATK_DBUS__
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <glib.h>
30
31 void
32 atk_dbus_foreach_registered(GHFunc func, gpointer data);
33
34 void
35 atk_dbus_foreach_update_list(GHFunc func, gpointer data);
36
37 void
38 atk_dbus_foreach_remove_list(GHFunc func, gpointer data);
39
40 /*---------------------------------------------------------------------------*/
41
42 guint
43 atk_dbus_register_accessible (AtkObject *accessible);
44
45 guint
46 atk_dbus_update_accessible (AtkObject *accessible);
47
48 /*---------------------------------------------------------------------------*/
49
50 guint
51 atk_dbus_object_to_ref (AtkObject *accessible);
52
53 gchar *
54 atk_dbus_ref_to_path (guint ref);
55
56 AtkObject *
57 atk_dbus_path_to_object (const char *path);
58
59 gchar *
60 atk_dbus_ref_to_path (guint ref);
61
62 gchar *
63 atk_dbus_object_to_path (AtkObject *accessible);
64
65 /*---------------------------------------------------------------------------*/
66
67 DBusMessage *
68 spi_dbus_return_object (DBusMessage *message, AtkObject *obj, gboolean unref);
69
70 dbus_bool_t
71 spi_dbus_return_v_object (DBusMessageIter *iter, AtkObject *obj, int unref);
72
73 #endif /* __ATK_DBUS__ */