Jonas Ådahl | e0de3c2 | 2014-03-12 22:08:42 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2011, 2012 Intel Corporation |
| 3 | * |
Bryce Harrington | a0bbfea | 2015-06-11 15:35:43 -0700 | [diff] [blame] | 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: |
Jonas Ådahl | e0de3c2 | 2014-03-12 22:08:42 +0100 | [diff] [blame] | 11 | * |
Bryce Harrington | a0bbfea | 2015-06-11 15:35:43 -0700 | [diff] [blame] | 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. |
Jonas Ådahl | e0de3c2 | 2014-03-12 22:08:42 +0100 | [diff] [blame] | 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 *devnode; |
| 51 | char *output_name; |
| 52 | int fd; |
| 53 | }; |
| 54 | |
| 55 | void |
| 56 | evdev_led_update(struct evdev_device *device, enum weston_led leds); |
| 57 | |
| 58 | struct evdev_device * |
| 59 | evdev_device_create(struct libinput_device *libinput_device, |
| 60 | struct weston_seat *seat); |
| 61 | |
| 62 | int |
| 63 | evdev_device_process_event(struct libinput_event *event); |
| 64 | |
| 65 | void |
| 66 | evdev_device_set_output(struct evdev_device *device, |
| 67 | struct weston_output *output); |
| 68 | void |
| 69 | evdev_device_destroy(struct evdev_device *device); |
| 70 | |
| 71 | void |
| 72 | evdev_notify_keyboard_focus(struct weston_seat *seat, |
| 73 | struct wl_list *evdev_devices); |
Giulio Camuffo | 8aedf7b | 2016-06-02 21:48:12 +0300 | [diff] [blame] | 74 | void |
| 75 | evdev_device_set_calibration(struct evdev_device *device); |
Jonas Ådahl | e0de3c2 | 2014-03-12 22:08:42 +0100 | [diff] [blame] | 76 | |
| 77 | int |
| 78 | dispatch_libinput(struct libinput *libinput); |
| 79 | |
| 80 | #endif /* _LIBINPUT_DEVICE_H_ */ |