touchpad: hook up natural scrolling configuration
[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 <stdbool.h>
30 #include "linux/input.h"
31 #include <libevdev/libevdev.h>
32
33 #include "libinput-private.h"
34 #include "timer.h"
35
36 enum evdev_event_type {
37         EVDEV_NONE,
38         EVDEV_ABSOLUTE_TOUCH_DOWN,
39         EVDEV_ABSOLUTE_MOTION,
40         EVDEV_ABSOLUTE_TOUCH_UP,
41         EVDEV_ABSOLUTE_MT_DOWN,
42         EVDEV_ABSOLUTE_MT_MOTION,
43         EVDEV_ABSOLUTE_MT_UP,
44         EVDEV_RELATIVE_MOTION,
45 };
46
47 enum evdev_device_seat_capability {
48         EVDEV_DEVICE_POINTER = (1 << 0),
49         EVDEV_DEVICE_KEYBOARD = (1 << 1),
50         EVDEV_DEVICE_TOUCH = (1 << 2)
51 };
52
53 enum evdev_device_tags {
54         EVDEV_TAG_EXTERNAL_MOUSE = (1 << 0),
55         EVDEV_TAG_INTERNAL_TOUCHPAD = (1 << 1),
56         EVDEV_TAG_TRACKPOINT = (1 << 2),
57 };
58
59 struct mt_slot {
60         int32_t seat_slot;
61         int32_t x, y;
62 };
63
64 struct evdev_device {
65         struct libinput_device base;
66
67         struct libinput_source *source;
68
69         struct evdev_dispatch *dispatch;
70         struct libevdev *evdev;
71         char *output_name;
72         char *devnode;
73         char *sysname;
74         char *syspath;
75         const char *devname;
76         int fd;
77         struct {
78                 const struct input_absinfo *absinfo_x, *absinfo_y;
79                 int fake_resolution;
80
81                 int32_t x, y;
82                 int32_t seat_slot;
83
84                 int apply_calibration;
85                 struct matrix calibration;
86                 struct matrix default_calibration; /* from LIBINPUT_CALIBRATION_MATRIX */
87                 struct matrix usermatrix; /* as supplied by the caller */
88         } abs;
89
90         struct {
91                 int slot;
92                 struct mt_slot *slots;
93                 size_t slots_len;
94         } mt;
95         struct mtdev *mtdev;
96
97         struct {
98                 int dx, dy;
99         } rel;
100
101         struct {
102                 struct libinput_timer timer;
103                 bool has_middle_button_scroll;
104                 bool middle_button_scroll_active;
105                 double threshold;
106                 uint32_t direction;
107         } scroll;
108
109         enum evdev_event_type pending_event;
110         enum evdev_device_seat_capability seat_caps;
111         enum evdev_device_tags tags;
112
113         int is_mt;
114         int suspended;
115
116         struct {
117                 struct libinput_device_config_accel config;
118                 struct motion_filter *filter;
119         } pointer;
120
121         /* Bitmask of pressed keys used to ignore initial release events from
122          * the kernel. */
123         unsigned long hw_key_mask[NLONGS(KEY_CNT)];
124         /* Key counter used for multiplexing button events internally in
125          * libinput. */
126         uint8_t key_count[KEY_CNT];
127 };
128
129 #define EVDEV_UNHANDLED_DEVICE ((struct evdev_device *) 1)
130
131 struct evdev_dispatch;
132
133 struct evdev_dispatch_interface {
134         /* Process an evdev input event. */
135         void (*process)(struct evdev_dispatch *dispatch,
136                         struct evdev_device *device,
137                         struct input_event *event,
138                         uint64_t time);
139
140         /* Destroy an event dispatch handler and free all its resources. */
141         void (*destroy)(struct evdev_dispatch *dispatch);
142
143         /* A new device was added */
144         void (*device_added)(struct evdev_device *device,
145                              struct evdev_device *added_device);
146
147         /* A device was removed */
148         void (*device_removed)(struct evdev_device *device,
149                                struct evdev_device *removed_device);
150
151         /* A device was suspended */
152         void (*device_suspended)(struct evdev_device *device,
153                                  struct evdev_device *suspended_device);
154
155         /* A device was resumed */
156         void (*device_resumed)(struct evdev_device *device,
157                                struct evdev_device *resumed_device);
158
159         /* Tag device with one of EVDEV_TAG */
160         void (*tag_device)(struct evdev_device *device,
161                            struct udev_device *udev_device);
162 };
163
164 struct evdev_dispatch {
165         struct evdev_dispatch_interface *interface;
166         struct libinput_device_config_calibration calibration;
167
168         struct {
169                 struct libinput_device_config_send_events config;
170                 enum libinput_config_send_events_mode current_mode;
171         } sendevents;
172 };
173
174 struct evdev_device *
175 evdev_device_create(struct libinput_seat *seat,
176                     const char *devnode,
177                     const char *sysname,
178                     const char *syspath);
179
180 int
181 evdev_device_init_pointer_acceleration(struct evdev_device *device);
182
183 struct evdev_dispatch *
184 evdev_touchpad_create(struct evdev_device *device);
185
186 struct evdev_dispatch *
187 evdev_mt_touchpad_create(struct evdev_device *device);
188
189 void
190 evdev_device_led_update(struct evdev_device *device, enum libinput_led leds);
191
192 int
193 evdev_device_get_keys(struct evdev_device *device, char *keys, size_t size);
194
195 const char *
196 evdev_device_get_output(struct evdev_device *device);
197
198 const char *
199 evdev_device_get_sysname(struct evdev_device *device);
200
201 const char *
202 evdev_device_get_name(struct evdev_device *device);
203
204 unsigned int
205 evdev_device_get_id_product(struct evdev_device *device);
206
207 unsigned int
208 evdev_device_get_id_vendor(struct evdev_device *device);
209
210 void
211 evdev_device_set_default_calibration(struct evdev_device *device,
212                                      const float calibration[6]);
213 void
214 evdev_device_calibrate(struct evdev_device *device,
215                        const float calibration[6]);
216
217 int
218 evdev_device_has_capability(struct evdev_device *device,
219                             enum libinput_device_capability capability);
220
221 int
222 evdev_device_get_size(struct evdev_device *device,
223                       double *w,
224                       double *h);
225
226 double
227 evdev_device_transform_x(struct evdev_device *device,
228                          double x,
229                          uint32_t width);
230
231 double
232 evdev_device_transform_y(struct evdev_device *device,
233                          double y,
234                          uint32_t height);
235 int
236 evdev_device_suspend(struct evdev_device *device);
237
238 int
239 evdev_device_resume(struct evdev_device *device);
240
241 void
242 evdev_notify_suspended_device(struct evdev_device *device);
243
244 void
245 evdev_notify_resumed_device(struct evdev_device *device);
246
247 void
248 evdev_keyboard_notify_key(struct evdev_device *device,
249                           uint32_t time,
250                           int key,
251                           enum libinput_key_state state);
252
253 void
254 evdev_pointer_notify_button(struct evdev_device *device,
255                             uint32_t time,
256                             int button,
257                             enum libinput_button_state state);
258
259 void
260 evdev_post_scroll(struct evdev_device *device,
261                   uint64_t time,
262                   double dx,
263                   double dy);
264
265
266 void
267 evdev_stop_scroll(struct evdev_device *device, uint64_t time);
268
269 void
270 evdev_device_remove(struct evdev_device *device);
271
272 void
273 evdev_device_destroy(struct evdev_device *device);
274
275 static inline double
276 evdev_convert_to_mm(const struct input_absinfo *absinfo, double v)
277 {
278         double value = v - absinfo->minimum;
279         return value/absinfo->resolution;
280 }
281
282 #endif /* EVDEV_H */