Drop include of evdev.h from evdev.h
[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 static inline void *
34 zalloc(size_t size)
35 {
36         return calloc(1, size);
37 }
38
39 #define MAX_SLOTS 16
40
41 enum evdev_event_type {
42         EVDEV_NONE,
43         EVDEV_ABSOLUTE_TOUCH_DOWN,
44         EVDEV_ABSOLUTE_MOTION,
45         EVDEV_ABSOLUTE_TOUCH_UP,
46         EVDEV_ABSOLUTE_MT_DOWN,
47         EVDEV_ABSOLUTE_MT_MOTION,
48         EVDEV_ABSOLUTE_MT_UP,
49         EVDEV_RELATIVE_MOTION,
50 };
51
52 enum evdev_device_capability {
53         EVDEV_KEYBOARD = (1 << 0),
54         EVDEV_BUTTON = (1 << 1),
55         EVDEV_MOTION_ABS = (1 << 2),
56         EVDEV_MOTION_REL = (1 << 3),
57         EVDEV_TOUCH = (1 << 4),
58 };
59
60 enum evdev_device_seat_capability {
61         EVDEV_DEVICE_POINTER = (1 << 0),
62         EVDEV_DEVICE_KEYBOARD = (1 << 1),
63         EVDEV_DEVICE_TOUCH = (1 << 2)
64 };
65
66 struct evdev_device {
67         struct libinput_device base;
68
69         struct libinput_source *source;
70
71         struct evdev_dispatch *dispatch;
72         char *output_name;
73         char *devnode;
74         char *devname;
75         int fd;
76         struct {
77                 int min_x, max_x, min_y, max_y;
78                 int32_t x, y;
79
80                 int apply_calibration;
81                 float calibration[6];
82         } abs;
83
84         struct {
85                 int slot;
86                 struct {
87                         int32_t x, y;
88                 } slots[MAX_SLOTS];
89         } mt;
90         struct mtdev *mtdev;
91
92         struct {
93                 li_fixed_t dx, dy;
94         } rel;
95
96         enum evdev_event_type pending_event;
97         enum evdev_device_capability caps;
98         enum evdev_device_seat_capability seat_caps;
99
100         int is_mt;
101 };
102
103 /* copied from udev/extras/input_id/input_id.c */
104 /* we must use this kernel-compatible implementation */
105 #define BITS_PER_LONG (sizeof(unsigned long) * 8)
106 #define NBITS(x) ((((x)-1)/BITS_PER_LONG)+1)
107 #define OFF(x)  ((x)%BITS_PER_LONG)
108 #define BIT(x)  (1UL<<OFF(x))
109 #define LONG(x) ((x)/BITS_PER_LONG)
110 #define TEST_BIT(array, bit)    ((array[LONG(bit)] >> OFF(bit)) & 1)
111 /* end copied */
112
113 #define EVDEV_UNHANDLED_DEVICE ((struct evdev_device *) 1)
114
115 struct evdev_dispatch;
116
117 struct evdev_dispatch_interface {
118         /* Process an evdev input event. */
119         void (*process)(struct evdev_dispatch *dispatch,
120                         struct evdev_device *device,
121                         struct input_event *event,
122                         uint32_t time);
123
124         /* Destroy an event dispatch handler and free all its resources. */
125         void (*destroy)(struct evdev_dispatch *dispatch);
126 };
127
128 struct evdev_dispatch {
129         struct evdev_dispatch_interface *interface;
130 };
131
132 struct evdev_device *
133 evdev_device_create(struct libinput_seat *seat,
134                     const char *devnode,
135                     int fd);
136
137 struct evdev_dispatch *
138 evdev_touchpad_create(struct evdev_device *device);
139
140 void
141 evdev_device_proces_event(struct libinput_event *event);
142
143 void
144 evdev_device_led_update(struct evdev_device *device, enum libinput_led leds);
145
146 int
147 evdev_device_get_keys(struct evdev_device *device, char *keys, size_t size);
148
149 const char *
150 evdev_device_get_output(struct evdev_device *device);
151
152 void
153 evdev_device_calibrate(struct evdev_device *device, float calibration[6]);
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 */