2008-12-17 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.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 void 
41 atk_dbus_notify_change(AtkObject *accessible);
42
43 AtkObject *
44 atk_dbus_get_object (const char *path);
45
46 gchar *
47 atk_dbus_get_path_from_ref(guint ref);
48
49 gchar *
50 atk_dbus_get_path (AtkObject *accessible);
51
52 guint
53 atk_dbus_register_subtree(AtkObject *accessible);
54
55 DBusMessage *
56 spi_dbus_return_object (DBusMessage *message, AtkObject *obj, gboolean unref);
57
58 dbus_bool_t
59 spi_dbus_return_v_object (DBusMessageIter *iter, AtkObject *obj, int unref);
60
61 #endif /* __ATK_DBUS__ */