2019-07-18 07:06:25 +02:00
|
|
|
#ifndef _SWAY_INPUT_LIBINPUT_H
|
|
|
|
#define _SWAY_INPUT_LIBINPUT_H
|
|
|
|
#include "sway/input/input-manager.h"
|
|
|
|
|
2022-10-23 02:09:38 +02:00
|
|
|
bool sway_input_configure_libinput_device(struct sway_input_device *device);
|
2019-07-18 07:06:25 +02:00
|
|
|
|
2023-12-30 20:22:01 +01:00
|
|
|
void sway_input_configure_libinput_device_send_events(
|
|
|
|
struct sway_input_device *device);
|
|
|
|
|
2019-07-18 07:06:25 +02:00
|
|
|
void sway_input_reset_libinput_device(struct sway_input_device *device);
|
|
|
|
|
2021-02-08 19:24:20 +01:00
|
|
|
bool sway_libinput_device_is_builtin(struct sway_input_device *device);
|
|
|
|
|
2019-07-18 07:06:25 +02:00
|
|
|
#endif
|