diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-10 11:58:25 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-13 08:10:36 -0400 |
commit | f479b7c8c7aa93229c46287f774a30ac8324da1e (patch) | |
tree | ce81612ee5088ed24ef231577f9e3436188099d3 /include/backend | |
parent | 12612572ef9af9686e24bb9af81c31c82bb1f765 (diff) |
Split keyboard code out into its own file
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/libinput.h (renamed from include/backend/libinput/backend.h) | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/backend/libinput/backend.h b/include/backend/libinput.h index 6f2fa2a0..a59ab401 100644 --- a/include/backend/libinput/backend.h +++ b/include/backend/libinput.h @@ -5,6 +5,7 @@ #include <wlr/common/list.h> #include <wayland-server-core.h> #include "backend/udev.h" +#include "types.h" struct wlr_backend_state { struct wlr_backend *backend; @@ -21,8 +22,17 @@ struct wlr_backend_state { void wlr_libinput_event(struct wlr_backend_state *state, struct libinput_event *event); +struct wlr_input_device *get_appropriate_device( + enum wlr_input_device_type desired_type, + struct libinput_device *device); + struct wlr_keyboard_state { struct libinput_device *handle; }; +void handle_keyboard_key(struct libinput_event *event, + struct libinput_device *device); +struct wlr_keyboard *wlr_libinput_keyboard_create( + struct libinput_device *device); + #endif |