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 17:28:10 +02:00
|
|
|
#include <libinput.h>
|
|
|
|
#include <wayland-server-core.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/backend/interface.h>
|
2018-09-17 21:53:03 +02:00
|
|
|
#include <wlr/backend/libinput.h>
|
2022-02-24 21:53:54 +01:00
|
|
|
#include <wlr/types/wlr_keyboard.h>
|
|
|
|
#include <wlr/types/wlr_pointer.h>
|
|
|
|
#include <wlr/types/wlr_switch.h>
|
|
|
|
#include <wlr/types/wlr_tablet_pad.h>
|
|
|
|
#include <wlr/types/wlr_tablet_tool.h>
|
|
|
|
#include <wlr/types/wlr_touch.h>
|
2017-06-09 17:28:10 +02:00
|
|
|
|
2022-11-25 18:10:42 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2017-08-12 19:51:47 +02:00
|
|
|
struct wlr_libinput_backend {
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-06-09 17:28:10 +02:00
|
|
|
struct wlr_session *session;
|
|
|
|
struct wl_display *display;
|
|
|
|
|
2017-08-13 00:50:09 +02:00
|
|
|
struct libinput *libinput_context;
|
2017-06-09 17:28:10 +02: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 03:31:29 +02:00
|
|
|
struct wl_listener session_signal;
|
|
|
|
|
2023-10-02 21:06:44 +02:00
|
|
|
struct wl_list devices; // wlr_libinput_device.link
|
2017-06-09 17:28:10 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 14:54:53 +02:00
|
|
|
struct wlr_libinput_input_device {
|
2017-06-10 18:21:54 +02:00
|
|
|
struct libinput_device *handle;
|
2022-02-23 16:42:20 +01:00
|
|
|
|
|
|
|
struct wlr_keyboard keyboard;
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer pointer;
|
2022-02-23 19:41:34 +01:00
|
|
|
struct wlr_switch switch_device;
|
2022-02-23 20:06:02 +01:00
|
|
|
struct wlr_touch touch;
|
2022-02-24 17:00:11 +01:00
|
|
|
struct wlr_tablet tablet;
|
|
|
|
struct wl_list tablet_tools; // see backend/libinput/tablet_tool.c
|
2022-02-24 21:30:26 +01:00
|
|
|
struct wlr_tablet_pad tablet_pad;
|
2022-02-23 16:42:20 +01:00
|
|
|
|
|
|
|
struct wl_list link;
|
2017-06-10 18:21:54 +02:00
|
|
|
};
|
|
|
|
|
2018-04-03 18:50:05 +02:00
|
|
|
uint32_t usec_to_msec(uint64_t usec);
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
void handle_libinput_event(struct wlr_libinput_backend *state,
|
2017-06-09 19:47:35 +02:00
|
|
|
struct libinput_event *event);
|
|
|
|
|
2022-02-09 22:03:12 +01:00
|
|
|
void destroy_libinput_input_device(struct wlr_libinput_input_device *dev);
|
|
|
|
|
|
|
|
extern const struct wlr_keyboard_impl libinput_keyboard_impl;
|
|
|
|
extern const struct wlr_pointer_impl libinput_pointer_impl;
|
|
|
|
extern const struct wlr_switch_impl libinput_switch_impl;
|
|
|
|
extern const struct wlr_tablet_impl libinput_tablet_impl;
|
|
|
|
extern const struct wlr_tablet_pad_impl libinput_tablet_pad_impl;
|
|
|
|
extern const struct wlr_touch_impl libinput_touch_impl;
|
|
|
|
|
2022-02-23 16:42:20 +01:00
|
|
|
void init_device_keyboard(struct wlr_libinput_input_device *dev);
|
|
|
|
struct wlr_libinput_input_device *device_from_keyboard(struct wlr_keyboard *kb);
|
|
|
|
void handle_keyboard_key(struct libinput_event *event, struct wlr_keyboard *kb);
|
2017-06-13 16:27:15 +02:00
|
|
|
|
2022-02-28 17:57:35 +01:00
|
|
|
void init_device_pointer(struct wlr_libinput_input_device *dev);
|
|
|
|
struct wlr_libinput_input_device *device_from_pointer(struct wlr_pointer *kb);
|
2017-06-13 16:27:15 +02:00
|
|
|
void handle_pointer_motion(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2017-06-13 16:27:15 +02:00
|
|
|
void handle_pointer_motion_abs(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2017-06-13 16:27:15 +02:00
|
|
|
void handle_pointer_button(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2017-06-13 16:27:15 +02:00
|
|
|
void handle_pointer_axis(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2022-11-25 18:15:31 +01:00
|
|
|
#if HAVE_LIBINPUT_SCROLL_VALUE120
|
2022-02-25 17:30:42 +01:00
|
|
|
void handle_pointer_axis_value120(struct libinput_event *event,
|
|
|
|
struct wlr_pointer *pointer, enum wlr_axis_source source);
|
|
|
|
#endif
|
2019-01-25 23:51:38 +01:00
|
|
|
void handle_pointer_swipe_begin(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2019-01-25 23:51:38 +01:00
|
|
|
void handle_pointer_swipe_update(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2019-01-25 23:51:38 +01:00
|
|
|
void handle_pointer_swipe_end(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2019-01-25 23:51:38 +01:00
|
|
|
void handle_pointer_pinch_begin(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2019-01-25 23:51:38 +01:00
|
|
|
void handle_pointer_pinch_update(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2019-01-25 23:51:38 +01:00
|
|
|
void handle_pointer_pinch_end(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2021-07-12 19:50:44 +02:00
|
|
|
void handle_pointer_hold_begin(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2021-07-12 19:50:44 +02:00
|
|
|
void handle_pointer_hold_end(struct libinput_event *event,
|
2022-02-28 17:57:35 +01:00
|
|
|
struct wlr_pointer *pointer);
|
2017-06-10 17:58:25 +02:00
|
|
|
|
2022-02-23 19:41:34 +01:00
|
|
|
void init_device_switch(struct wlr_libinput_input_device *dev);
|
|
|
|
struct wlr_libinput_input_device *device_from_switch(
|
|
|
|
struct wlr_switch *switch_device);
|
2018-11-15 00:24:55 +01:00
|
|
|
void handle_switch_toggle(struct libinput_event *event,
|
2022-02-23 19:41:34 +01:00
|
|
|
struct wlr_switch *switch_device);
|
2018-11-15 00:24:55 +01:00
|
|
|
|
2022-02-23 20:06:02 +01:00
|
|
|
void init_device_touch(struct wlr_libinput_input_device *dev);
|
|
|
|
struct wlr_libinput_input_device *device_from_touch(
|
|
|
|
struct wlr_touch *touch);
|
2017-06-14 17:40:03 +02:00
|
|
|
void handle_touch_down(struct libinput_event *event,
|
2022-02-23 20:06:02 +01:00
|
|
|
struct wlr_touch *touch);
|
2017-06-14 17:40:03 +02:00
|
|
|
void handle_touch_up(struct libinput_event *event,
|
2022-02-23 20:06:02 +01:00
|
|
|
struct wlr_touch *touch);
|
2017-06-14 17:40:03 +02:00
|
|
|
void handle_touch_motion(struct libinput_event *event,
|
2022-02-23 20:06:02 +01:00
|
|
|
struct wlr_touch *touch);
|
2017-06-14 17:40:03 +02:00
|
|
|
void handle_touch_cancel(struct libinput_event *event,
|
2022-02-23 20:06:02 +01:00
|
|
|
struct wlr_touch *touch);
|
2021-06-30 11:39:17 +02:00
|
|
|
void handle_touch_frame(struct libinput_event *event,
|
2022-02-23 20:06:02 +01:00
|
|
|
struct wlr_touch *touch);
|
2017-06-14 17:40:03 +02:00
|
|
|
|
2022-02-24 17:00:11 +01:00
|
|
|
void init_device_tablet(struct wlr_libinput_input_device *dev);
|
2022-03-02 21:58:44 +01:00
|
|
|
void finish_device_tablet(struct wlr_libinput_input_device *dev);
|
2022-02-24 17:00:11 +01:00
|
|
|
struct wlr_libinput_input_device *device_from_tablet(
|
|
|
|
struct wlr_tablet *tablet);
|
2017-06-15 20:32:28 +02:00
|
|
|
void handle_tablet_tool_axis(struct libinput_event *event,
|
2022-02-24 17:00:11 +01:00
|
|
|
struct wlr_tablet *tablet);
|
2017-06-15 20:32:28 +02:00
|
|
|
void handle_tablet_tool_proximity(struct libinput_event *event,
|
2022-02-24 17:00:11 +01:00
|
|
|
struct wlr_tablet *tablet);
|
2017-06-15 20:32:28 +02:00
|
|
|
void handle_tablet_tool_tip(struct libinput_event *event,
|
2022-02-24 17:00:11 +01:00
|
|
|
struct wlr_tablet *tablet);
|
2017-06-15 20:32:28 +02:00
|
|
|
void handle_tablet_tool_button(struct libinput_event *event,
|
2022-02-24 17:00:11 +01:00
|
|
|
struct wlr_tablet *tablet);
|
2017-06-15 20:32:28 +02:00
|
|
|
|
2022-02-24 21:30:26 +01:00
|
|
|
void init_device_tablet_pad(struct wlr_libinput_input_device *dev);
|
2022-03-02 21:11:25 +01:00
|
|
|
void finish_device_tablet_pad(struct wlr_libinput_input_device *dev);
|
2022-02-24 21:30:26 +01:00
|
|
|
struct wlr_libinput_input_device *device_from_tablet_pad(
|
|
|
|
struct wlr_tablet_pad *tablet_pad);
|
2017-06-19 20:49:07 +02:00
|
|
|
void handle_tablet_pad_button(struct libinput_event *event,
|
2022-02-24 21:30:26 +01:00
|
|
|
struct wlr_tablet_pad *tablet_pad);
|
2017-06-19 20:49:07 +02:00
|
|
|
void handle_tablet_pad_ring(struct libinput_event *event,
|
2022-02-24 21:30:26 +01:00
|
|
|
struct wlr_tablet_pad *tablet_pad);
|
2017-06-19 20:49:07 +02:00
|
|
|
void handle_tablet_pad_strip(struct libinput_event *event,
|
2022-02-24 21:30:26 +01:00
|
|
|
struct wlr_tablet_pad *tablet_pad);
|
2017-06-19 20:49:07 +02:00
|
|
|
|
2017-06-09 17:28:10 +02:00
|
|
|
#endif
|