Changes to introspection generation to remove DOCTYPE and XML
[platform/core/uifw/at-spi2-atk.git] / cspi / bonobo / cspi-bonobo-listener.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2002 Ximian, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __SPI_LISTENER_IMPL_H__
24 #define __SPI_LISTENER_IMP_H__
25
26 #include <libspi/eventlistener.h>
27 #include <libspi/devicelistener.h>
28 #include <cspi/spi-impl.h>
29 #include <cspi/spi-listener.h>
30
31 G_BEGIN_DECLS
32
33 #define CSPI_EVENT_LISTENER_TYPE        (cspi_event_listener_get_type ())
34 #define CSPI_EVENT_LISTENER(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), CSPI_EVENT_LISTENER_TYPE, CSpiEventListener))
35 #define CSPI_EVENT_LISTENER_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST((k), CSPI_EVENT_LISTENER_TYPE, CSpiEventListenerClass))
36 #define CSPI_IS_EVENT_LISTENER(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), CSPI_EVENT_LISTENER_TYPE))
37 #define CSPI_IS_EVENT_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CSPI_EVENT_LISTENER_TYPE))
38
39 typedef struct {
40         SpiEventListener parent;
41         GList           *callbacks;
42 } CSpiEventListener;
43 typedef SpiEventListenerClass CSpiEventListenerClass;
44
45 GType cspi_event_listener_get_type (void);
46
47 #define CSPI_DEVICE_LISTENER_TYPE        (cspi_device_listener_get_type ())
48 #define CSPI_DEVICE_LISTENER(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), CSPI_DEVICE_LISTENER_TYPE, CSpiDeviceListener))
49 #define CSPI_DEVICE_LISTENER_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST((k), CSPI_DEVICE_LISTENER_TYPE, CSpiDeviceListenerClass))
50 #define CSPI_IS_DEVICE_LISTENER(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), CSPI_DEVICE_LISTENER_TYPE))
51 #define CSPI_IS_DEVICE_LISTENER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CSPI_DEVICE_LISTENER_TYPE))
52
53 typedef struct {
54         SpiDeviceListener parent;
55         GList            *callbacks;
56 } CSpiDeviceListener;
57 typedef SpiDeviceListenerClass CSpiDeviceListenerClass;
58
59 CORBA_Object
60 cspi_device_listener_get_corba (AccessibleDeviceListener *listener);
61 GType cspi_device_listener_get_type (void);
62 gpointer cspi_device_listener_new (void);
63 void cspi_device_listener_add_cb (AccessibleDeviceListener  *al,
64                                   AccessibleDeviceListenerCB callback,
65                                   void                      *user_data);
66 void cspi_device_listener_remove_cb (AccessibleDeviceListener  *al,
67                                      AccessibleDeviceListenerCB callback);
68 void cspi_device_listener_unref (AccessibleDeviceListener *listener);
69
70
71 G_END_DECLS
72
73 #endif /* __SPI_LISTENER_IMPL_H__ */