dd162afd6545f9a8ff830ba96fb3b2970f38ee9e
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / adaptors / application-adaptor.c
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  * Copyright 2001, 2002 Sun Microsystems Inc.,
7  * Copyright 2001, 2002 Ximian, Inc.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #include <atk/atk.h>
26 #include <droute/droute.h>
27
28 #include "common/spi-dbus.h"
29 #include "introspection.h"
30
31 /* for spi_global_app_data  is there a better way? */
32 #include "../bridge.h"
33
34 static dbus_bool_t
35 impl_get_ToolkitName (DBusMessageIter * iter, void *user_data)
36 {
37   return droute_return_v_string (iter, atk_get_toolkit_name ());
38 }
39
40 static dbus_bool_t
41 impl_get_Version (DBusMessageIter * iter, void *user_data)
42 {
43   return droute_return_v_string (iter, atk_get_toolkit_version ());
44 }
45
46 static dbus_int32_t id;
47
48 static dbus_bool_t
49 impl_get_Id (DBusMessageIter * iter, void *user_data)
50 {
51   return droute_return_v_int32 (iter, id);
52 }
53
54 static dbus_bool_t
55 impl_set_Id (DBusMessageIter * iter, void *user_data)
56 {
57   id = droute_get_v_int32 (iter);
58   return TRUE;
59 }
60
61 static DBusMessage *
62 impl_registerToolkitEventListener (DBusConnection * bus,
63                                    DBusMessage * message, void *user_data)
64 {
65   return NULL;
66 }
67
68 static DBusMessage *
69 impl_registerObjectEventListener (DBusConnection * bus, DBusMessage * message,
70                                   void *user_data)
71 {
72   return NULL;
73 }
74
75 static DBusMessage *
76 impl_pause (DBusConnection * bus, DBusMessage * message, void *user_data)
77 {
78   return NULL;
79 }
80
81 static DBusMessage *
82 impl_resume (DBusConnection * bus, DBusMessage * message, void *user_data)
83 {
84   return NULL;
85 }
86
87 static DBusMessage *
88 impl_GetLocale (DBusConnection * bus, DBusMessage * message, void *user_data)
89 {
90   return NULL;
91 }
92
93 static DBusMessage *
94 impl_get_app_bus(DBusConnection *bus, DBusMessage *msg, void *data)
95 {
96 DBusMessage *reply;
97
98 reply = dbus_message_new_method_return(msg);
99 if (reply)
100     {
101       const char *retval = (g_getenv ("AT_SPI_CLIENT") ?
102                             "":
103                             spi_global_app_data->app_bus_addr);
104       dbus_message_append_args(reply, DBUS_TYPE_STRING, &retval, DBUS_TYPE_INVALID);
105     }
106
107 return reply;
108 }
109
110 static DRouteMethod methods[] = {
111   {impl_registerToolkitEventListener, "registerToolkitEventListener"},
112   {impl_registerObjectEventListener, "registerObjectEventListener"},
113   {impl_pause, "pause"},
114   {impl_resume, "resume"},
115   {impl_GetLocale, "GetLocale"},
116   {impl_get_app_bus, "GetApplicationBusAddress"},
117   {NULL, NULL}
118 };
119
120 static DRouteProperty properties[] = {
121   {impl_get_ToolkitName, NULL, "ToolkitName"},
122   {impl_get_Version, NULL, "Version"},
123   {impl_get_Id, impl_set_Id, "Id"},
124   {NULL, NULL, NULL}
125 };
126
127 /*static long
128 obj_is_root (const char *path, void *user_data)
129 {
130   AtkObject *obj = atk_dbus_get_object (path);
131   return (obj == atk_get_root ());
132 }*/
133
134 void
135 spi_initialize_application (DRoutePath * path)
136 {
137   droute_path_add_interface (path,
138                              SPI_DBUS_INTERFACE_APPLICATION,
139                              spi_org_a11y_atspi_Application,
140                              methods, properties);
141 };