wlroots-hyprland/include/backend/libinput.h

39 lines
951 B
C
Raw Normal View History

2017-06-09 17:28:10 +02:00
#ifndef _WLR_BACKEND_LIBINPUT_INTERNAL_H
#define _WLR_BACKEND_LIBINPUT_INTERNAL_H
#include <libinput.h>
#include <wlr/backend/interface.h>
#include <wlr/common/list.h>
#include <wayland-server-core.h>
#include "backend/udev.h"
#include "types.h"
2017-06-09 17:28:10 +02:00
struct wlr_backend_state {
struct wlr_backend *backend;
struct wlr_session *session;
struct wlr_udev *udev;
struct wl_display *display;
struct libinput *libinput;
2017-06-09 17:28:10 +02:00
struct wl_event_source *input_event;
2017-06-09 23:31:21 +02:00
list_t *keyboards;
2017-06-09 17:28:10 +02:00
};
2017-06-10 18:21:54 +02:00
struct wlr_input_device_state {
struct libinput_device *handle;
};
void wlr_libinput_event(struct wlr_backend_state *state,
struct libinput_event *event);
struct wlr_input_device *get_appropriate_device(
enum wlr_input_device_type desired_type,
struct libinput_device *device);
void handle_keyboard_key(struct libinput_event *event,
struct libinput_device *device);
struct wlr_keyboard *wlr_libinput_keyboard_create(
struct libinput_device *device);
2017-06-09 17:28:10 +02:00
#endif