blob: 5041a4aa65b435e3b0225672107de8921fb12afe [file] [log] [blame]
Jonas Ådahle0de3c22014-03-12 22:08:42 +01001/*
2 * Copyright © 2011, 2012 Intel Corporation
3 *
Bryce Harringtona0bbfea2015-06-11 15:35:43 -07004 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
Jonas Ådahle0de3c22014-03-12 22:08:42 +010011 *
Bryce Harringtona0bbfea2015-06-11 15:35:43 -070012 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
Jonas Ådahle0de3c22014-03-12 22:08:42 +010024 */
25
26#ifndef _LIBINPUT_DEVICE_H_
27#define _LIBINPUT_DEVICE_H_
28
29#include "config.h"
30
31#include <linux/input.h>
32#include <wayland-util.h>
33#include <libinput.h>
34
35#include "compositor.h"
36
37enum evdev_device_seat_capability {
38 EVDEV_SEAT_POINTER = (1 << 0),
39 EVDEV_SEAT_KEYBOARD = (1 << 1),
40 EVDEV_SEAT_TOUCH = (1 << 2)
41};
42
43struct evdev_device {
44 struct weston_seat *seat;
45 enum evdev_device_seat_capability seat_caps;
46 struct libinput_device *device;
47 struct wl_list link;
48 struct weston_output *output;
49 struct wl_listener output_destroy_listener;
50 char *devnode;
51 char *output_name;
52 int fd;
53};
54
55void
56evdev_led_update(struct evdev_device *device, enum weston_led leds);
57
58struct evdev_device *
59evdev_device_create(struct libinput_device *libinput_device,
60 struct weston_seat *seat);
61
62int
63evdev_device_process_event(struct libinput_event *event);
64
65void
66evdev_device_set_output(struct evdev_device *device,
67 struct weston_output *output);
68void
69evdev_device_destroy(struct evdev_device *device);
70
71void
72evdev_notify_keyboard_focus(struct weston_seat *seat,
73 struct wl_list *evdev_devices);
Giulio Camuffo8aedf7b2016-06-02 21:48:12 +030074void
75evdev_device_set_calibration(struct evdev_device *device);
Jonas Ådahle0de3c22014-03-12 22:08:42 +010076
77int
78dispatch_libinput(struct libinput *libinput);
79
80#endif /* _LIBINPUT_DEVICE_H_ */