aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-09-22 10:30:09 -0400
committerTony Crisci <tony@dubstepdish.com>2017-09-22 10:30:09 -0400
commite38248f34c3eed879486347f0c0c5db3ceca4a68 (patch)
tree4f90033c0456d501a7f2b48a31bf666a6f86566e /include
parent00cc20b0a8e344bfd872271249f6efa44772402a (diff)
wlr-seat: implement cursor axis events
Axis events for the cursor are generated with the scroll wheel.
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_seat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h
index 4b433ccb..f992b2f2 100644
--- a/include/wlr/types/wlr_seat.h
+++ b/include/wlr/types/wlr_seat.h
@@ -109,4 +109,7 @@ void wlr_seat_pointer_send_motion(struct wlr_seat *wlr_seat, uint32_t time,
void wlr_seat_pointer_send_button(struct wlr_seat *wlr_seat, uint32_t time,
uint32_t button, uint32_t state);
+void wlr_seat_pointer_send_axis(struct wlr_seat *wlr_seat, uint32_t time,
+ enum wlr_axis_orientation orientation, double value);
+
#endif