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