diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-15 14:32:28 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-15 14:32:53 -0400 |
commit | 4a9966b1a47d497ccc9473a24ba56b3d0eef72d2 (patch) | |
tree | cc1f747603e729873453d875315037ae9c4a8644 /include/backend/libinput.h | |
parent | e65f83d7f2f29f54b0cae27807e3b6a9b2299a10 (diff) |
Implement wlr_tablet_tool
Diffstat (limited to 'include/backend/libinput.h')
-rw-r--r-- | include/backend/libinput.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index 2427ae5c..80f57177 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -57,4 +57,15 @@ void handle_touch_motion(struct libinput_event *event, void handle_touch_cancel(struct libinput_event *event, struct libinput_device *device); +struct wlr_tablet_tool *wlr_libinput_tablet_tool_create( + struct libinput_device *device); +void handle_tablet_tool_axis(struct libinput_event *event, + struct libinput_device *device); +void handle_tablet_tool_proximity(struct libinput_event *event, + struct libinput_device *device); +void handle_tablet_tool_tip(struct libinput_event *event, + struct libinput_device *device); +void handle_tablet_tool_button(struct libinput_event *event, + struct libinput_device *device); + #endif |