X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=atk-adaptor%2Fbridge.h;h=64882e48487b646978736d76d67e40b527018266;hb=refs%2Fheads%2Fupstream;hp=728b2459a6b366417048e59a18801614249e3e4b;hpb=f0061858ec3c9151fe4b20e390678093ea8f32df;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/atk-adaptor/bridge.h b/atk-adaptor/bridge.h index 728b245..64882e4 100644 --- a/atk-adaptor/bridge.h +++ b/atk-adaptor/bridge.h @@ -33,11 +33,20 @@ typedef struct _SpiBridgeClass SpiBridgeClass; G_BEGIN_DECLS +typedef struct _AtspiPropertyDefinition AtspiPropertyDefinition; +struct _AtspiPropertyDefinition +{ + char *name; + GType type; + DRoutePropertyFunction func; +}; + typedef struct _event_data event_data; struct _event_data { gchar *bus_name; gchar **data; + GSList *properties; }; struct _SpiBridge @@ -59,12 +68,30 @@ struct _SpiBridge */ gchar *desktop_name; gchar *desktop_path; -char *app_bus_addr; +gchar *app_tmp_dir; +gchar *app_bus_addr; GList *events; + gboolean events_initialized; + GHashTable *property_hash; }; extern SpiBridge *spi_global_app_data; +void spi_atk_add_client (const char *bus_name); +void spi_atk_remove_client (const char *bus_name); + +int spi_atk_create_socket (SpiBridge *app); + +void spi_atk_add_interface (DRoutePath *path, + const char *name, + const char *introspect, + const DRouteMethod *methods, + const DRouteProperty *properties); + +DRoutePropertyFunction _atk_bridge_find_property_func (const char *property, + GType *type); + +GType _atk_bridge_type_from_iface (const char *iface); G_END_DECLS #endif /* BRIDGE_H */