diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-08-27 11:34:25 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-08-27 11:34:25 -0400 |
commit | ed126b0881413dc3c855abf313c62e2f3abad4aa (patch) | |
tree | a98d8efc360f04d4af6563f93c8b5bd68760c76f /include/wlr | |
parent | ac503a47a71e2ab5d149a1bb9184d424609c7da7 (diff) |
add touch events
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_cursor.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_cursor.h b/include/wlr/types/wlr_cursor.h index 30495d44..ad5c52a4 100644 --- a/include/wlr/types/wlr_cursor.h +++ b/include/wlr/types/wlr_cursor.h @@ -20,6 +20,11 @@ struct wlr_cursor { struct wl_signal motion_absolute; struct wl_signal button; struct wl_signal axis; + + struct wl_signal touch_up; + struct wl_signal touch_down; + struct wl_signal touch_motion; + struct wl_signal touch_cancel; } events; }; |