diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-19 14:49:07 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-19 14:49:07 -0400 |
commit | ecb04afcadc96cc8d39749311e4c1c412bebf4a9 (patch) | |
tree | 71a6398ee57c2148dbdf5685477a1be917c7fa40 /include/backend/libinput.h | |
parent | e9609e9adf2883a1cf2b766adf5363f25f8f0833 (diff) |
Implement tablet pads
Diffstat (limited to 'include/backend/libinput.h')
-rw-r--r-- | include/backend/libinput.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index 80f57177..89286ab8 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -68,4 +68,13 @@ void handle_tablet_tool_tip(struct libinput_event *event, void handle_tablet_tool_button(struct libinput_event *event, struct libinput_device *device); +struct wlr_tablet_pad *wlr_libinput_tablet_pad_create( + struct libinput_device *device); +void handle_tablet_pad_button(struct libinput_event *event, + struct libinput_device *device); +void handle_tablet_pad_ring(struct libinput_event *event, + struct libinput_device *device); +void handle_tablet_pad_strip(struct libinput_event *event, + struct libinput_device *device); + #endif |