wlroots/include/backend/libinput.h

85 lines
2.8 KiB
C
Raw Normal View History

#ifndef BACKEND_LIBINPUT_H
#define BACKEND_LIBINPUT_H
2017-06-09 15:28:10 +00:00
#include <libinput.h>
#include <wayland-server-core.h>
2017-08-14 12:54:53 +00:00
#include <wlr/types/wlr_input_device.h>
2017-06-21 16:10:07 +00:00
#include <wlr/backend/interface.h>
2017-06-21 14:27:45 +00:00
#include <wlr/interfaces/wlr_input_device.h>
2017-10-22 02:00:04 +00:00
#include <wlr/types/wlr_list.h>
2017-06-09 15:28:10 +00:00
struct wlr_libinput_backend {
struct wlr_backend backend;
2017-06-09 15:28:10 +00:00
struct wlr_session *session;
struct wl_display *display;
struct libinput *libinput_context;
2017-06-09 15:28:10 +00:00
struct wl_event_source *input_event;
2017-06-21 01:31:29 +00:00
struct wl_listener session_signal;
2017-11-18 23:17:40 +00:00
struct wlr_list wlr_device_lists; // list of struct wl_list
2017-06-09 15:28:10 +00:00
};
2017-08-14 12:54:53 +00:00
struct wlr_libinput_input_device {
struct wlr_input_device wlr_input_device;
2017-06-10 16:21:54 +00:00
struct libinput_device *handle;
};
void wlr_libinput_event(struct wlr_libinput_backend *state,
struct libinput_event *event);
struct wlr_input_device *get_appropriate_device(
enum wlr_input_device_type desired_type,
struct libinput_device *device);
2017-06-13 14:27:15 +00:00
struct wlr_keyboard *wlr_libinput_keyboard_create(
struct libinput_device *device);
void handle_keyboard_key(struct libinput_event *event,
struct libinput_device *device);
2017-06-13 14:27:15 +00:00
struct wlr_pointer *wlr_libinput_pointer_create(
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,
struct libinput_device *device);
2017-06-14 15:40:03 +00:00
struct wlr_touch *wlr_libinput_touch_create(
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);
2017-06-15 18:32:28 +00:00
struct wlr_tablet_tool *wlr_libinput_tablet_tool_create(
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);
2017-06-19 18:49:07 +00:00
struct wlr_tablet_pad *wlr_libinput_tablet_pad_create(
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 15:28:10 +00:00
#endif