evdev: Reference count input device's seat capabilities
[platform/upstream/libinput.git] / src / evdev.h
1 /*
2  * Copyright © 2011, 2012 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation for any purpose is hereby granted without fee, provided
6  * that the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of the copyright holders not be used in
9  * advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission.  The copyright holders make
11  * no representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #ifndef EVDEV_H
24 #define EVDEV_H
25
26 #include "config.h"
27
28 #include <linux/input.h>
29 #include <wayland-util.h>
30
31 #define MAX_SLOTS 16
32
33 enum evdev_event_type {
34         EVDEV_NONE,
35         EVDEV_ABSOLUTE_TOUCH_DOWN,
36         EVDEV_ABSOLUTE_MOTION,
37         EVDEV_ABSOLUTE_TOUCH_UP,
38         EVDEV_ABSOLUTE_MT_DOWN,
39         EVDEV_ABSOLUTE_MT_MOTION,
40         EVDEV_ABSOLUTE_MT_UP,
41         EVDEV_RELATIVE_MOTION,
42 };
43
44 enum evdev_device_capability {
45         EVDEV_KEYBOARD = (1 << 0),
46         EVDEV_BUTTON = (1 << 1),
47         EVDEV_MOTION_ABS = (1 << 2),
48         EVDEV_MOTION_REL = (1 << 3),
49         EVDEV_TOUCH = (1 << 4),
50 };
51
52 enum evdev_device_seat_capability {
53         EVDEV_SEAT_POINTER = (1 << 0),
54         EVDEV_SEAT_KEYBOARD = (1 << 1),
55         EVDEV_SEAT_TOUCH = (1 << 2)
56 };
57
58 struct evdev_device {
59         struct weston_seat *seat;
60         struct wl_list link;
61         struct wl_event_source *source;
62         struct weston_output *output;
63         struct evdev_dispatch *dispatch;
64         char *devnode;
65         char *devname;
66         int fd;
67         struct {
68                 int min_x, max_x, min_y, max_y;
69                 int32_t x, y;
70
71                 int apply_calibration;
72                 float calibration[6];
73         } abs;
74
75         struct {
76                 int slot;
77                 struct {
78                         int32_t x, y;
79                 } slots[MAX_SLOTS];
80         } mt;
81         struct mtdev *mtdev;
82
83         struct {
84                 wl_fixed_t dx, dy;
85         } rel;
86
87         enum evdev_event_type pending_event;
88         enum evdev_device_capability caps;
89         enum evdev_device_seat_capability seat_caps;
90
91         int is_mt;
92 };
93
94 /* copied from udev/extras/input_id/input_id.c */
95 /* we must use this kernel-compatible implementation */
96 #define BITS_PER_LONG (sizeof(unsigned long) * 8)
97 #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
98 #define OFF(x)  ((x)%BITS_PER_LONG)
99 #define BIT(x)  (1UL<<OFF(x))
100 #define LONG(x) ((x)/BITS_PER_LONG)
101 #define TEST_BIT(array, bit)    ((array[LONG(bit)] >> OFF(bit)) & 1)
102 /* end copied */
103
104 #define EVDEV_UNHANDLED_DEVICE ((struct evdev_device *) 1)
105
106 struct evdev_dispatch;
107
108 struct evdev_dispatch_interface {
109         /* Process an evdev input event. */
110         void (*process)(struct evdev_dispatch *dispatch,
111                         struct evdev_device *device,
112                         struct input_event *event,
113                         uint32_t time);
114
115         /* Destroy an event dispatch handler and free all its resources. */
116         void (*destroy)(struct evdev_dispatch *dispatch);
117 };
118
119 struct evdev_dispatch {
120         struct evdev_dispatch_interface *interface;
121 };
122
123 struct evdev_dispatch *
124 evdev_touchpad_create(struct evdev_device *device);
125
126 void
127 evdev_led_update(struct evdev_device *device, enum weston_led leds);
128
129 struct evdev_device *
130 evdev_device_create(struct weston_seat *seat, const char *path, int device_fd);
131
132 void
133 evdev_device_destroy(struct evdev_device *device);
134
135 void
136 evdev_notify_keyboard_focus(struct weston_seat *seat,
137                             struct wl_list *evdev_devices);
138
139 #endif /* EVDEV_H */