b3b65071ac622dbc9fc55d0bc6c85bc10be5a7c9
[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
30 #include "accessible.h"
31
32 void
33 atk_dbus_foreach_registered(GHFunc func, gpointer data);
34
35 void
36 atk_dbus_foreach_update_list(GHFunc func, gpointer data);
37
38 void
39 atk_dbus_foreach_remove_list(GHFunc func, gpointer data);
40
41 void 
42 atk_dbus_notify_change(AtkObject *accessible);
43
44 AtkObject *
45 atk_dbus_get_object (const char *path);
46
47 gchar *
48 atk_dbus_get_path_from_ref(guint ref);
49
50 gchar *
51 atk_dbus_get_path (AtkObject *accessible);
52
53 guint
54 atk_dbus_register_subtree(AtkObject *accessible);
55
56 DBusMessage *
57 spi_dbus_return_object (DBusMessage *message, AtkObject *obj, gboolean unref);
58
59 dbus_bool_t
60 spi_dbus_return_v_object (DBusMessageIter *iter, AtkObject *obj, int unref);
61
62 void
63 atk_dbus_initialize (DRouteData * data);
64
65 #endif /* __ATK_DBUS__ */