summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2009-07-13 16:53:57 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-07-13 16:53:57 +1000
commit504a5a770bd1d34ea7edc3b94815b2b98a61afc0 (patch)
treef482b04dc49945cd8e63a817d99029a782649c79
parent94bfb0cc3ebbefe548b440f8c5e14154c3a76440 (diff)
Add flags to XIDeviceEvent and XIRawEvent.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--include/X11/extensions/XInput2.h2
-rw-r--r--src/XExtInt.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/include/X11/extensions/XInput2.h b/include/X11/extensions/XInput2.h
index c6bfca0..1b46443 100644
--- a/include/X11/extensions/XInput2.h
+++ b/include/X11/extensions/XInput2.h
@@ -226,6 +226,7 @@ typedef struct {
double root_y;
double event_x;
double event_y;
+ int flags;
XIButtonState buttons;
XIValuatorState valuators;
XIModifierState mods;
@@ -243,6 +244,7 @@ typedef struct {
int deviceid;
int sourceid;
int detail;
+ int flags;
XIValuatorState valuators;
double *raw_values;
} XIRawEvent;
diff --git a/src/XExtInt.c b/src/XExtInt.c
index 9eec866..7980340 100644
--- a/src/XExtInt.c
+++ b/src/XExtInt.c
@@ -1303,6 +1303,7 @@ wireToDeviceEvent(xXIDeviceEvent *in, XGenericEventCookie* cookie)
out->root_y = FP1616toDBL(in->root_y);
out->event_x = FP1616toDBL(in->event_x);
out->event_y = FP1616toDBL(in->event_y);
+ out->flags = in->flags;
out->mods.base = in->mods.base_mods;
out->mods.locked = in->mods.locked_mods;
out->mods.latched = in->mods.latched_mods;
@@ -1560,6 +1561,7 @@ wireToRawEvent(xXIRawEvent *in, XGenericEventCookie *cookie)
out->time = in->time;
out->detail = in->detail;
out->deviceid = in->deviceid;
+ out->flags = in->flags;
out->valuators.mask_len = in->valuators_len * 4;
out->valuators.mask = next_block(&ptr, out->valuators.mask_len);