2008-04-30 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / libspi / 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 _ATSPI_DBUS_H
24 #define _ATSPI_DBUS_H
25
26 #include <dbus/dbus.h>
27 #include <atk/atk.h>
28 #include <stdio.h>
29
30 #include "droute.h"
31
32 AtkObject *spi_dbus_get_object(const char *path);
33
34 gchar *spi_dbus_get_path(AtkObject *obj);
35 DBusMessage *spi_dbus_general_error(DBusMessage *message);
36 DBusMessage *spi_dbus_return_rect(DBusMessage *message, gint ix, gint iy, gint iwidth, gint iheight);
37 DBusMessage *spi_dbus_return_object(DBusMessage *message, AtkObject *obj, int unref);
38 dbus_bool_t spi_dbus_return_v_object(DBusMessageIter *iter, AtkObject *obj, int unref);
39
40 #define SPI_DBUS_RETURN_ERROR(m, e) dbus_message_new_error(m, (e)->name, (e)->message)
41
42 void spi_dbus_initialize(DRouteData *data);
43
44 #endif  /* _ATSPI_DBUS_H */