Remove old touchpad code
[platform/upstream/libinput.git] / src / libinput-private.h
1 /*
2  * Copyright © 2013 Jonas Ådahl
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 LIBINPUT_PRIVATE_H
24 #define LIBINPUT_PRIVATE_H
25
26 #include <linux/input.h>
27
28 #include "libinput.h"
29 #include "libinput-util.h"
30
31 struct libinput_interface_backend {
32         int (*resume)(struct libinput *libinput);
33         void (*suspend)(struct libinput *libinput);
34         void (*destroy)(struct libinput *libinput);
35 };
36
37 struct libinput {
38         int epoll_fd;
39         struct list source_destroy_list;
40
41         struct list seat_list;
42
43         struct libinput_event **events;
44         size_t events_count;
45         size_t events_len;
46         size_t events_in;
47         size_t events_out;
48
49         const struct libinput_interface *interface;
50         const struct libinput_interface_backend *interface_backend;
51         void *user_data;
52 };
53
54 typedef void (*libinput_seat_destroy_func) (struct libinput_seat *seat);
55
56 struct libinput_seat {
57         struct libinput *libinput;
58         struct list link;
59         struct list devices_list;
60         void *user_data;
61         int refcount;
62         libinput_seat_destroy_func destroy;
63
64         char *physical_name;
65         char *logical_name;
66
67         uint32_t slot_map;
68
69         uint32_t button_count[KEY_CNT];
70 };
71
72 struct libinput_device {
73         struct libinput_seat *seat;
74         struct list link;
75         void *user_data;
76         int terminated;
77         int refcount;
78 };
79
80 typedef void (*libinput_source_dispatch_t)(void *data);
81
82 struct libinput_source;
83
84 #define log_debug(...) log_msg(LIBINPUT_LOG_PRIORITY_DEBUG, __VA_ARGS__)
85 #define log_info(...) log_msg(LIBINPUT_LOG_PRIORITY_INFO, __VA_ARGS__)
86 #define log_error(...) log_msg(LIBINPUT_LOG_PRIORITY_ERROR, __VA_ARGS__)
87 #define log_bug(...) log_msg(LIBINPUT_LOG_PRIORITY_ERROR, "BUG: "__VA_ARGS__)
88
89 void
90 log_msg(enum libinput_log_priority priority, const char *format, ...);
91
92 int
93 libinput_init(struct libinput *libinput,
94               const struct libinput_interface *interface,
95               const struct libinput_interface_backend *interface_backend,
96               void *user_data);
97
98 struct libinput_source *
99 libinput_add_fd(struct libinput *libinput,
100                 int fd,
101                 libinput_source_dispatch_t dispatch,
102                 void *data);
103
104 void
105 libinput_remove_source(struct libinput *libinput,
106                        struct libinput_source *source);
107
108 int
109 open_restricted(struct libinput *libinput,
110                 const char *path, int flags);
111
112 void
113 close_restricted(struct libinput *libinput, int fd);
114
115 void
116 libinput_seat_init(struct libinput_seat *seat,
117                    struct libinput *libinput,
118                    const char *physical_name,
119                    const char *logical_name,
120                    libinput_seat_destroy_func destroy);
121
122 void
123 libinput_device_init(struct libinput_device *device,
124                      struct libinput_seat *seat);
125
126 void
127 notify_added_device(struct libinput_device *device);
128
129 void
130 notify_removed_device(struct libinput_device *device);
131
132 void
133 keyboard_notify_key(struct libinput_device *device,
134                     uint32_t time,
135                     uint32_t key,
136                     enum libinput_keyboard_key_state state);
137
138 void
139 pointer_notify_motion(struct libinput_device *device,
140                       uint32_t time,
141                       li_fixed_t dx,
142                       li_fixed_t dy);
143
144 void
145 pointer_notify_motion_absolute(struct libinput_device *device,
146                                uint32_t time,
147                                li_fixed_t x,
148                                li_fixed_t y);
149
150 void
151 pointer_notify_button(struct libinput_device *device,
152                       uint32_t time,
153                       int32_t button,
154                       enum libinput_pointer_button_state state);
155
156 void
157 pointer_notify_axis(struct libinput_device *device,
158                     uint32_t time,
159                     enum libinput_pointer_axis axis,
160                     li_fixed_t value);
161
162 void
163 touch_notify_touch_down(struct libinput_device *device,
164                         uint32_t time,
165                         int32_t slot,
166                         int32_t seat_slot,
167                         li_fixed_t x,
168                         li_fixed_t y);
169
170 void
171 touch_notify_touch_motion(struct libinput_device *device,
172                           uint32_t time,
173                           int32_t slot,
174                           int32_t seat_slot,
175                           li_fixed_t x,
176                           li_fixed_t y);
177
178 void
179 touch_notify_touch_up(struct libinput_device *device,
180                       uint32_t time,
181                       int32_t slot,
182                       int32_t seat_slot);
183
184 void
185 touch_notify_frame(struct libinput_device *device,
186                    uint32_t time);
187 #endif /* LIBINPUT_PRIVATE_H */