One-line change of a g_error to g_warning when notification fails.
[platform/core/uifw/at-spi2-atk.git] / libspi / keystrokelistener.h
index ea2052c..5bd61eb 100644 (file)
@@ -33,28 +33,25 @@ G_BEGIN_DECLS
 #define SPI_KEYSTROKE_LISTENER_TYPE        (spi_keystroke_listener_get_type ())
 #define SPI_KEYSTROKE_LISTENER(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), SPI_KEYSTROKE_LISTENER_TYPE, SpiKeystrokeListener))
 #define SPI_KEYSTROKE_LISTENER_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST((k), SPI_KEYSTROKE_LISTENER_TYPE, SpiKeystrokeListenerClass))
-#define IS_SPI_KEYSTROKE_LISTENER(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), SPI_KEYSTROKE_LISTENER_TYPE))
-#define IS_SPI_KEYSTROKE_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_KEYSTROKE_LISTENER_TYPE))
+#define SPI_IS_KEYSTROKE_LISTENER(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), SPI_KEYSTROKE_LISTENER_TYPE))
+#define SPI_IS_KEYSTROKE_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_KEYSTROKE_LISTENER_TYPE))
 
-typedef gboolean (*BooleanKeystrokeListenerCB) (const void *keystroke_ptr);
+typedef struct _SpiKeystrokeListener SpiKeystrokeListener;
 
-typedef struct {
+struct _SpiKeystrokeListener {
         BonoboObject parent;
-       GList *callbacks;
-} SpiKeystrokeListener;
+};
 
 typedef struct {
         BonoboObjectClass parent_class;
         POA_Accessibility_KeystrokeListener__epv epv;
+
+       gboolean (*key_event) (SpiKeystrokeListener *listener,
+                              const Accessibility_KeyStroke *key);
 } SpiKeystrokeListenerClass;
 
 GType                  spi_keystroke_listener_get_type        (void);
 SpiKeystrokeListener  *spi_keystroke_listener_new             (void);
-void                   spi_keystroke_listener_add_callback    (SpiKeystrokeListener *listener,
-                                                              BooleanKeystrokeListenerCB callback);
-void                   spi_keystroke_listener_remove_callback (SpiKeystrokeListener *listener,
-                                                              BooleanKeystrokeListenerCB callback);
-
 
 G_END_DECLS