8e9f56085ff353f3c82607be62994e67819ca0b5
[platform/upstream/weston.git] / libweston / libinput-device.h
1 /*
2  * Copyright © 2011, 2012 Intel Corporation
3  *
4  * 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:
11  *
12  * 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.
24  */
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
37 enum evdev_device_seat_capability {
38         EVDEV_SEAT_POINTER = (1 << 0),
39         EVDEV_SEAT_KEYBOARD = (1 << 1),
40         EVDEV_SEAT_TOUCH = (1 << 2)
41 };
42
43 struct 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 *output_name;
51         int fd;
52 };
53
54 void
55 evdev_led_update(struct evdev_device *device, enum weston_led leds);
56
57 struct evdev_device *
58 evdev_device_create(struct libinput_device *libinput_device,
59                     struct weston_seat *seat);
60
61 int
62 evdev_device_process_event(struct libinput_event *event);
63
64 void
65 evdev_device_set_output(struct evdev_device *device,
66                         struct weston_output *output);
67 void
68 evdev_device_destroy(struct evdev_device *device);
69
70 void
71 evdev_notify_keyboard_focus(struct weston_seat *seat,
72                             struct wl_list *evdev_devices);
73 void
74 evdev_device_set_calibration(struct evdev_device *device);
75
76 int
77 dispatch_libinput(struct libinput *libinput);
78
79 #endif /* _LIBINPUT_DEVICE_H_ */