2017-09-23 10:26:01 +02:00
|
|
|
#ifndef BACKEND_LIBINPUT_H
|
|
|
|
#define BACKEND_LIBINPUT_H
|
2018-02-12 21:29:23 +01:00
|
|
|
|
2017-06-09 11:28:10 -04:00
|
|
|
#include <libinput.h>
|
|
|
|
#include <wayland-server-core.h>
|
2017-06-21 12:10:07 -04:00
|
|
|
#include <wlr/backend/interface.h>
|
2018-09-17 21:53:03 +02:00
|
|
|
#include <wlr/backend/libinput.h>
|
2017-06-21 10:27:45 -04:00
|
|
|
#include <wlr/interfaces/wlr_input_device.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/types/wlr_input_device.h>
|
2017-06-09 11:28:10 -04:00
|
|
|
|
2017-08-12 13:51:47 -04:00
|
|
|
struct wlr_libinput_backend {
|
2017-08-12 11:43:36 -04:00
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-06-09 11:28:10 -04:00
|
|
|
struct wlr_session *session;
|
|
|
|
struct wl_display *display;
|
|
|
|
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput *libinput_context;
|
2017-06-09 11:28:10 -04:00
|
|
|
struct wl_event_source *input_event;
|
|
|
|
|
2017-12-07 23:44:59 +01:00
|
|
|
struct wl_listener display_destroy;
|
2019-11-30 11:57:37 +01:00
|
|
|
struct wl_listener session_destroy;
|
2017-06-21 13:31:29 +12:00
|
|
|
struct wl_listener session_signal;
|
|
|
|
|
2021-07-01 10:08:56 +02:00
|
|
|
struct wl_array wlr_device_lists; // struct wl_list *
|
2017-06-09 11:28:10 -04:00
|
|
|
};
|
|
|
|
|
2017-08-14 14:54:53 +02:00
|
|
|
struct wlr_libinput_input_device {
|
|
|
|
struct wlr_input_device wlr_input_device;
|
|
|
|
|
2017-06-10 12:21:54 -04:00
|
|
|
struct libinput_device *handle;
|
|
|
|
};
|
|
|
|
|
2018-04-03 12:50:05 -04:00
|
|
|
uint32_t usec_to_msec(uint64_t usec);
|
|
|
|
|
2018-04-25 23:24:58 +01:00
|
|
|
void handle_libinput_event(struct wlr_libinput_backend *state,
|
2017-06-09 13:47:35 -04:00
|
|
|
struct libinput_event *event);
|
|
|
|
|
2017-06-10 11:58:25 -04:00
|
|
|
struct wlr_input_device *get_appropriate_device(
|
|
|
|
enum wlr_input_device_type desired_type,
|
|
|
|
struct libinput_device *device);
|
|
|
|
|
2018-04-25 23:24:58 +01:00
|
|
|
struct wlr_keyboard *create_libinput_keyboard(
|
2017-06-13 10:27:15 -04:00
|
|
|
struct libinput_device *device);
|
2017-06-10 11:58:25 -04:00
|
|
|
void handle_keyboard_key(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
2017-06-13 10:27:15 -04:00
|
|
|
|
2018-04-25 23:24:58 +01:00
|
|
|
struct wlr_pointer *create_libinput_pointer(
|
2017-06-13 10:27:15 -04:00
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_motion(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_motion_abs(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_button(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_axis(struct libinput_event *event,
|
2017-06-10 11:58:25 -04:00
|
|
|
struct libinput_device *device);
|
2019-01-26 01:51:38 +03:00
|
|
|
void handle_pointer_swipe_begin(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_swipe_update(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_swipe_end(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_pinch_begin(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_pinch_update(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_pointer_pinch_end(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
2017-06-10 11:58:25 -04:00
|
|
|
|
2018-11-14 23:24:55 +00:00
|
|
|
struct wlr_switch *create_libinput_switch(
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_switch_toggle(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
|
2018-04-25 23:24:58 +01:00
|
|
|
struct wlr_touch *create_libinput_touch(
|
2017-06-14 11:40:03 -04:00
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_touch_down(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_touch_up(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_touch_motion(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
|
|
|
void handle_touch_cancel(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
2021-06-30 11:39:17 +02:00
|
|
|
void handle_touch_frame(struct libinput_event *event,
|
|
|
|
struct libinput_device *device);
|
2017-06-14 11:40:03 -04:00
|
|
|
|
2018-06-16 11:19:48 +02:00
|
|
|
struct wlr_tablet *create_libinput_tablet(
|
2017-06-15 14:32:28 -04:00
|
|
|
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);
|
|
|
|
|
2018-04-25 23:24:58 +01:00
|
|
|
struct wlr_tablet_pad *create_libinput_tablet_pad(
|
2017-06-19 14:49:07 -04:00
|
|
|
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);
|
|
|
|
|
2017-06-09 11:28:10 -04:00
|
|
|
#endif
|