X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=registryd%2Fregistry.h;h=7dea7843ae151386b1639604f2c9010c3942a717;hb=866672e4a33e0b5f043699fab555340693943596;hp=74c52cdf0a79fbcdb1d0f617c3c49a0a6e03d41e;hpb=66c4375c7cd9a0a01e79f562e1bb0326fc4dcd21;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/registryd/registry.h b/registryd/registry.h index 74c52cd..7dea784 100644 --- a/registryd/registry.h +++ b/registryd/registry.h @@ -2,7 +2,8 @@ * AT-SPI - Assistive Technology Service Provider Interface * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap) * - * Copyright 2001 Sun Microsystems Inc. + * Copyright 2001, 2002 Sun Microsystems Inc., + * Copyright 2001, 2002 Ximian, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -23,43 +24,51 @@ #ifndef SPI_REGISTRY_H_ #define SPI_REGISTRY_H_ -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - #include -#include -#include "listener.h" +#include + +typedef struct _SpiRegistry SpiRegistry; + #include "desktop.h" #include "deviceeventcontroller.h" +G_BEGIN_DECLS + #define SPI_REGISTRY_TYPE (spi_registry_get_type ()) #define SPI_REGISTRY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), SPI_REGISTRY_TYPE, SpiRegistry)) #define SPI_REGISTRY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), SPI_REGISTRY_TYPE, SpiRegistryClass)) -#define IS_SPI_REGISTRY(o) (G_TYPE_CHECK__INSTANCE_TYPE ((o), SPI_REGISTRY_TYPE)) -#define IS_SPI_REGISTRY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_REGISTRY_TYPE)) +#define SPI_IS_REGISTRY(o) (G_TYPE_CHECK__INSTANCE_TYPE ((o), SPI_REGISTRY_TYPE)) +#define SPI_IS_REGISTRY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_REGISTRY_TYPE)) -typedef struct { - SpiListener parent; - GList *object_listeners; - GList *window_listeners; - GList *toolkit_listeners; - GList *applications; - SpiDeviceEventController *device_event_controller; - SpiDesktop *desktop; - gboolean (*kbd_event_hook) (gpointer source); -} SpiRegistry; +struct _SpiRegistry { + GObject parent; + + GList *object_listeners; + GList *window_listeners; + GList *toolkit_listeners; + GQueue *deferred_event_queue; + gboolean is_queueing; + guint exit_notify_timeout; + guint queue_handler_id; + char *focus_object_bus; + char *focus_object_path; + SpiDEController *de_controller; + SpiDesktop *desktop; + DRouteData droute; +}; typedef struct { - SpiListenerClass parent_class; - POA_Accessibility_Registry__epv epv; + GObjectClass parent_class; } SpiRegistryClass; -GType spi_registry_get_type (void); -SpiRegistry *spi_registry_new (void); +GType spi_registry_get_type (void); +SpiRegistry *spi_registry_new (void); + +void spi_registry_emit(SpiRegistry *registry, const char *name, int first_arg_type, ...); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +void spi_registry_initialize_registry_interface (DRouteData * data); +void spi_registry_initialize_dec_interface (DRouteData * data); +void spi_registry_initialize_desktop_interface (DRouteData * data); +G_END_DECLS #endif /* SPI_REGISTRY_H_ */