2017-06-09 15:28:10 +00: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"
|
|
|
|
|
|
|
|
struct wlr_backend_state {
|
|
|
|
struct wlr_backend *backend;
|
|
|
|
struct wlr_session *session;
|
|
|
|
struct wlr_udev *udev;
|
|
|
|
struct wl_display *display;
|
|
|
|
|
2017-06-09 17:47:35 +00:00
|
|
|
struct libinput *libinput;
|
2017-06-09 15:28:10 +00:00
|
|
|
struct wl_event_source *input_event;
|
|
|
|
|
|
|
|
list_t *devices;
|
|
|
|
};
|
|
|
|
|
2017-06-09 17:47:35 +00:00
|
|
|
void wlr_libinput_event(struct wlr_backend_state *state,
|
|
|
|
struct libinput_event *event);
|
|
|
|
|
2017-06-09 15:28:10 +00:00
|
|
|
#endif
|