diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-07-18 01:06:25 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-07-18 01:06:25 -0400 |
| commit | 94e302b24e1b903d6a041b3b9e7f65a96de64099 (patch) | |
| tree | 5232ce26dccf8008bcc2cb0cda95dcde382e1c39 /include | |
| parent | 673ad9a949ba7c283a5e6f34c559592a104ad015 (diff) | |
ipc: add input::libinput_config event
This adds a libinput_config change type to the input event for when
the libinput config for a device changes
In order for this to be possible to track, the libinput config code
had to be refactored. It is now extracted into a separate file to
isolate it from the rest of the input management code.
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/input/libinput.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/sway/input/libinput.h b/include/sway/input/libinput.h new file mode 100644 index 00000000..de019976 --- /dev/null +++ b/include/sway/input/libinput.h @@ -0,0 +1,9 @@ +#ifndef _SWAY_INPUT_LIBINPUT_H +#define _SWAY_INPUT_LIBINPUT_H +#include "sway/input/input-manager.h" + +void sway_input_configure_libinput_device(struct sway_input_device *device); + +void sway_input_reset_libinput_device(struct sway_input_device *device); + +#endif |
