aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-08-27 11:44:55 -0400
committerTony Crisci <tony@dubstepdish.com>2017-08-27 11:44:55 -0400
commitc91469767631c84375678f3428a43c355d2c9742 (patch)
treeb404842728ed312c87a2f96ee623a08fb29186b7
parented126b0881413dc3c855abf313c62e2f3abad4aa (diff)
add device to touch events
-rw-r--r--backend/libinput/touch.c4
-rw-r--r--include/wlr/types/wlr_touch.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c
index 9e08d028..2f300482 100644
--- a/backend/libinput/touch.c
+++ b/backend/libinput/touch.c
@@ -30,6 +30,7 @@ void handle_touch_down(struct libinput_event *event,
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
struct wlr_event_touch_down wlr_event = { 0 };
+ wlr_event.device = wlr_dev;
wlr_event.time_sec = libinput_event_touch_get_time(tevent);
wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
wlr_event.slot = libinput_event_touch_get_slot(tevent);
@@ -50,6 +51,7 @@ void handle_touch_up(struct libinput_event *event,
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
struct wlr_event_touch_up wlr_event = { 0 };
+ wlr_event.device = wlr_dev;
wlr_event.time_sec = libinput_event_touch_get_time(tevent);
wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
wlr_event.slot = libinput_event_touch_get_slot(tevent);
@@ -67,6 +69,7 @@ void handle_touch_motion(struct libinput_event *event,
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
struct wlr_event_touch_motion wlr_event = { 0 };
+ wlr_event.device = wlr_dev;
wlr_event.time_sec = libinput_event_touch_get_time(tevent);
wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
wlr_event.slot = libinput_event_touch_get_slot(tevent);
@@ -87,6 +90,7 @@ void handle_touch_cancel(struct libinput_event *event,
struct libinput_event_touch *tevent =
libinput_event_get_touch_event(event);
struct wlr_event_touch_cancel wlr_event = { 0 };
+ wlr_event.device = wlr_dev;
wlr_event.time_sec = libinput_event_touch_get_time(tevent);
wlr_event.time_usec = libinput_event_touch_get_time_usec(tevent);
wlr_event.slot = libinput_event_touch_get_slot(tevent);
diff --git a/include/wlr/types/wlr_touch.h b/include/wlr/types/wlr_touch.h
index 93069fcb..1a27cad3 100644
--- a/include/wlr/types/wlr_touch.h
+++ b/include/wlr/types/wlr_touch.h
@@ -19,6 +19,7 @@ struct wlr_touch {
};
struct wlr_event_touch_down {
+ struct wlr_input_device *device;
uint32_t time_sec;
uint64_t time_usec;
int32_t slot;
@@ -27,12 +28,14 @@ struct wlr_event_touch_down {
};
struct wlr_event_touch_up {
+ struct wlr_input_device *device;
uint32_t time_sec;
uint64_t time_usec;
int32_t slot;
};
struct wlr_event_touch_motion {
+ struct wlr_input_device *device;
uint32_t time_sec;
uint64_t time_usec;
int32_t slot;
@@ -41,6 +44,7 @@ struct wlr_event_touch_motion {
};
struct wlr_event_touch_cancel {
+ struct wlr_input_device *device;
uint32_t time_sec;
uint64_t time_usec;
int32_t slot;