summaryrefslogtreecommitdiff
path: root/atk-adaptor/listener.h
diff options
context:
space:
mode:
Diffstat (limited to 'atk-adaptor/listener.h')
-rw-r--r--atk-adaptor/listener.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/atk-adaptor/listener.h b/atk-adaptor/listener.h
new file mode 100644
index 00000000..3ed3dcf3
--- /dev/null
+++ b/atk-adaptor/listener.h
@@ -0,0 +1,53 @@
+/*
+ * AT-SPI - Assistive Technology Service Provider Interface
+ * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
+ *
+ * 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
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef SPI_LISTENER_H_
+#define SPI_LISTENER_H_
+
+#include <bonobo/bonobo-object.h>
+#include <atk/atkobject.h>
+#include <libspi/Accessibility.h>
+
+G_BEGIN_DECLS
+
+#define SPI_LISTENER_TYPE (spi_listener_get_type ())
+#define SPI_LISTENER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), SPI_LISTENER_TYPE, SpiListener))
+#define SPI_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), SPI_LISTENER_TYPE, SpiListenerClass))
+#define SPI_IS_LISTENER(o) (G_TYPE_CHECK__INSTANCE_TYPE ((o), SPI_LISTENER_TYPE))
+#define SPI_IS_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_LISTENER_TYPE))
+
+typedef struct {
+ BonoboObject parent;
+} SpiListener;
+
+typedef struct {
+ BonoboObjectClass parent_class;
+ POA_Accessibility_EventListener__epv epv;
+} SpiListenerClass;
+
+GType spi_listener_get_type (void);
+SpiListener *spi_listener_new (void);
+
+G_END_DECLS
+
+#endif /* SPI_LISTENER_H_ */