2008-12-17 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / bridge.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002, 2003 Sun Microsystems Inc.,
6  * Copyright 2001, 2002, 2003 Ximian, Inc.
7  *
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.
12  *
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.
17  *
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.
22  */
23
24 #ifndef SPI_BRIDGE_H_
25 #define SPI_BRIDGE_H_
26
27 #include <atk/atk.h>
28 #include <droute/droute.h>
29
30 G_BEGIN_DECLS
31
32 typedef struct _SpiAppData SpiAppData;
33 struct _SpiAppData
34 {
35     AtkObject      *root;
36     DBusConnection *bus;
37     DRouteContext  *droute;
38 };
39
40 void spi_initialize_accessible      (DRoutePath *path);
41 void spi_initialize_action          (DRoutePath *path);
42 void spi_initialize_application     (DRoutePath *path);
43 void spi_initialize_collection      (DRoutePath *path);
44 void spi_initialize_component       (DRoutePath *path);
45 void spi_initialize_document        (DRoutePath *path);
46 void spi_initialize_editabletext    (DRoutePath *path);
47 void spi_initialize_hyperlink       (DRoutePath *path);
48 void spi_initialize_hypertext       (DRoutePath *path);
49 void spi_initialize_image           (DRoutePath *path);
50 void spi_initialize_selection       (DRoutePath *path);
51 void spi_initialize_table           (DRoutePath *path);
52 void spi_initialize_text            (DRoutePath *path);
53 void spi_initialize_value           (DRoutePath *path);
54
55 void spi_initialize_tree            (DRoutePath *path);
56
57 G_END_DECLS
58
59 #endif /* SPI_BRIDGE_H_ */