Don't leak dbus connections
[platform/upstream/at-spi2-core.git] / atspi / atspi-device-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  *           2002 Sun Microsystems Inc.
7  * Copyright 2010, 2011 Novell, Inc.
8  *           
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, USA.
24  */
25
26 #ifndef _ATSPI_DEVICE_LISTENER_H_
27 #define _ATSPI_DEVICE_LISTENER_H_
28
29 #include "glib-object.h"
30
31 #include "atspi-types.h"
32
33 G_BEGIN_DECLS
34
35 /**
36  * AtspiDeviceListenerCB:
37  * @stroke: (transfer full): The #AtspiDeviceEvent for which notification is
38  *          being received.
39  * @user_data: Data which is passed to the client each time this callback is notified.
40  *
41  * A callback function prototype via which clients receive device event notifications.
42  *
43  * Returns: #TRUE if the client wishes to consume/preempt the event, preventing it from being
44  * relayed to the currently focussed application, #FALSE if the event delivery should proceed as normal.
45  **/
46 typedef gboolean (*AtspiDeviceListenerCB)    (const AtspiDeviceEvent *stroke,
47                                                      void                      *user_data);
48
49 /**
50  * AtspiDeviceListenerSimpleCB:
51  * @stroke: (transfer full): The #AtspiDeviceEvent for which notification is
52  *          being received.
53  *
54  * Similar to #AtspiDeviceListenerCB, but with no user data.
55  *
56  * Returns: #TRUE if the client wishes to consume/preempt the event, preventing it from being
57  * relayed to the currently focussed application, #FALSE if the event delivery should proceed as normal.
58  **/
59 typedef gboolean (*AtspiDeviceListenerSimpleCB)    (const AtspiDeviceEvent *stroke);
60
61 #define ATSPI_TYPE_DEVICE_LISTENER                        (atspi_device_listener_get_type ())
62 #define ATSPI_DEVICE_LISTENER(obj)                        (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_DEVICE_LISTENER, AtspiDeviceListener))
63 #define ATSPI_DEVICE_LISTENER_CLASS(klass)                (G_TYPE_CHECK_CLASS_CAST ((klass), ATSPI_TYPE_DEVICE_LISTENER, AtspiDeviceListenerClass))
64 #define ATSPI_IS_DEVICE_LISTENER(obj)                     (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_DEVICE_LISTENER))
65 #define ATSPI_IS_DEVICE_LISTENER_CLASS(klass)             (G_TYPE_CHECK_CLASS_TYPE ((klass), ATSPI_TYPE_DEVICE_LISTENER))
66 #define ATSPI_DEVICE_LISTENER_GET_CLASS(obj)              (G_TYPE_INSTANCE_GET_CLASS ((obj), ATSPI_TYPE_DEVICE_LISTENER, AtspiDeviceListenerClass))
67
68 typedef struct _AtspiDeviceListener AtspiDeviceListener;
69 struct _AtspiDeviceListener
70 {
71   GObject parent;
72   guint id;
73   GList *callbacks;
74 };
75
76 typedef struct _AtspiDeviceListenerClass AtspiDeviceListenerClass;
77 struct _AtspiDeviceListenerClass
78 {
79   GObjectClass parent_class;
80   gboolean (*device_event) (AtspiDeviceListener *, const AtspiDeviceEvent *);
81 };
82
83 GType atspi_device_listener_get_type (void);
84
85 AtspiDeviceListener *atspi_device_listener_new (AtspiDeviceListenerCB callback, void *user_data, GDestroyNotify callback_destroyed);
86
87 AtspiDeviceListener *atspi_device_listener_new_simple (AtspiDeviceListenerSimpleCB callback, GDestroyNotify callback_destroyed);
88
89 void atspi_device_listener_add_callback (AtspiDeviceListener *listener, AtspiDeviceListenerCB callback, GDestroyNotify callback_destroyed, void *user_data);
90
91 void atspi_device_listener_remove_callback (AtspiDeviceListener  *listener, AtspiDeviceListenerCB callback);
92
93 G_END_DECLS
94
95 #endif  /* _ATSPI_DEVICE_LISTENER_H_ */