1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
* 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_DEVICE_EVENT_CONTROLLER_H_
#define SPI_DEVICE_EVENT_CONTROLLER_H_
#ifdef HAVE_X11
#include <X11/Xlib.h>
#endif
#include <dbus/dbus.h>
typedef struct _SpiDEController SpiDEController;
#include "registry.h"
#include "de-types.h"
G_BEGIN_DECLS
#define SPI_DEVICE_EVENT_CONTROLLER_TYPE (spi_device_event_controller_get_type ())
#define SPI_DEVICE_EVENT_CONTROLLER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), SPI_DEVICE_EVENT_CONTROLLER_TYPE, SpiDEController))
#define SPI_DEVICE_EVENT_CONTROLLER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), SPI_DEVICE_EVENT_CONTROLLER_TYPE, SpiDEControllerClass))
#define SPI_IS_DEVICE_EVENT_CONTROLLER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), SPI_DEVICE_EVENT_CONTROLLER_TYPE))
#define SPI_IS_DEVICE_EVENT_CONTROLLER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), SPI_DEVICE_EVENT_CONTROLLER_TYPE))
#define SPI_DEVICE_EVENT_CONTROLLER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SPI_DEVICE_EVENT_CONTROLLER_TYPE, SpiDEControllerClass))
struct _SpiDEController {
GObject parent;
DBusConnection *bus;
SpiRegistry *registry;
GList *key_listeners;
GList *mouse_listeners;
GList *keygrabs_list;
GQueue *message_queue;
guint message_queue_idle;
gpointer priv;
};
typedef enum {
SPI_DEVICE_TYPE_KBD,
SPI_DEVICE_TYPE_MOUSE,
SPI_DEVICE_TYPE_LAST_DEFINED
} SpiDeviceTypeCategory;
typedef struct {
char *bus_name;
char *path;
SpiDeviceTypeCategory type;
gulong types;
} DEControllerListener;
typedef struct {
DEControllerListener listener;
GSList *keys;
Accessibility_ControllerEventMask mask;
Accessibility_EventListenerMode *mode;
} DEControllerKeyListener;
typedef struct
{
gint (*get_keycode) (SpiDEController *controller,
gint keysym,
gchar *key_str,
gboolean fix,
guint *modmask);
guint (*mouse_check) (SpiDEController *controller,
gint *x,
gint *y,
gboolean *moved);
gboolean (*register_global_keygrabs) (SpiDEController *controller,
DEControllerKeyListener *key_listener);
void (*deregister_global_keygrabs) (SpiDEController *controller,
DEControllerKeyListener *key_listener);
gboolean (*synth_keycode_press) (SpiDEController *controller,
guint keycode);
gboolean (*synth_keycode_release) (SpiDEController *controller,
guint keycode);
gboolean (*lock_modifiers) (SpiDEController *controller,
unsigned modifiers);
gboolean (*unlock_modifiers) (SpiDEController *controller,
unsigned modifiers);
gboolean (*synth_keystring) (SpiDEController *controller,
guint synth_type,
gint keycode,
const char *keystring);
gboolean (*grab_key) (SpiDEController *controller,
guint key_val,
Accessibility_ControllerEventMask mod_mask);
void (*ungrab_key) (SpiDEController *controller,
guint key_val,
Accessibility_ControllerEventMask mod_mask);
void (*emit_modifier_event) (SpiDEController *controller,
guint prev_mask,
guint current_mask);
void (*generate_mouse_event) (SpiDEController *controller,
gint x,
gint y,
const char *eventName);
void (*init) (SpiDEController *controller);
void (*finalize) (SpiDEController *controller);
} SpiDEControllerPlat;
typedef struct {
GObjectClass parent_class;
SpiDEControllerPlat plat;
} SpiDEControllerClass;
GType spi_device_event_controller_get_type (void);
SpiDEController *spi_device_event_controller_new (SpiRegistry *registry,
DBusConnection *bus);
gboolean spi_clear_error_state (void);
void spi_device_event_controller_start_poll_mouse (SpiRegistry *registry);
void spi_device_event_controller_stop_poll_mouse (void);
void spi_remove_device_listeners (SpiDEController *controller, const char *bus_name);
SpiDEController *spi_registry_dec_new (SpiRegistry *reg, DBusConnection *bus);
gboolean
spi_controller_notify_mouselisteners (SpiDEController *controller,
const Accessibility_DeviceEvent *event);
gboolean
spi_controller_notify_keylisteners (SpiDEController *controller,
Accessibility_DeviceEvent *key_event,
dbus_bool_t is_system_global);
gboolean spi_controller_update_key_grabs (SpiDEController *controller,
Accessibility_DeviceEvent *recv);
gboolean spi_dec_synth_keysym (SpiDEController *controller, long keysym);
void spi_dec_dbus_emit(SpiDEController *controller, const char *interface, const char *name, const char *minor, int a1, int a2);
#ifdef HAVE_X11
void spi_dec_setup_x11 (SpiDEControllerClass *klass);
#endif
long ucs2keysym (long ucs);
long keysym2ucs(long keysym);
G_END_DECLS
#endif /* DEVICEEVENTCONTROLLER_H_ */
|