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
|
/*
* AT-SPI - Assistive Technology Service Provider Interface
* (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
*
* Copyright 2009 Codethink Ltd
* 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_DE_TYPES_H_
#define SPI_DE_TYPES_H_
#include <dbus/dbus.h>
typedef unsigned long Accessibility_ControllerEventMask;
typedef enum {
Accessibility_KEY_PRESSED_EVENT,
Accessibility_KEY_RELEASED_EVENT,
Accessibility_BUTTON_PRESSED_EVENT,
Accessibility_BUTTON_RELEASED_EVENT,
} Accessibility_EventType;
typedef enum {
Accessibility_KEY_PRESSED,
Accessibility_KEY_RELEASED,
} Accessibility_KeyEventType;
typedef enum {
Accessibility_KEY_PRESS,
Accessibility_KEY_RELEASE,
Accessibility_KEY_PRESSRELEASE,
Accessibility_KEY_SYM,
Accessibility_KEY_STRING,
} Accessibility_KeySynthType;
typedef struct _Accessibility_DeviceEvent Accessibility_DeviceEvent;
struct _Accessibility_DeviceEvent
{
Accessibility_EventType type;
dbus_uint32_t id;
dbus_uint32_t hw_code;
dbus_uint32_t modifiers;
dbus_uint32_t timestamp;
char * event_string;
dbus_bool_t is_text;
};
typedef struct _Accessibility_EventListenerMode Accessibility_EventListenerMode;
struct _Accessibility_EventListenerMode
{
dbus_bool_t synchronous;
dbus_bool_t preemptive;
dbus_bool_t global;
};
typedef struct _Accessibility_KeyDefinition Accessibility_KeyDefinition;
struct _Accessibility_KeyDefinition
{
dbus_int32_t keycode;
dbus_int32_t keysym;
char *keystring;
dbus_int32_t unused;
};
#endif /* SPI_DE_TYPES_H_ */
|