/* l/m/r mouse buttons */
int l, m, r;
+
+ struct libinput_device *devices[50];
};
static int
gtk_widget_show_all(w->win);
}
+static void
+window_cleanup(struct window *w)
+{
+ struct libinput_device **dev;
+ ARRAY_FOR_EACH(w->devices, dev) {
+ if (*dev)
+ libinput_device_unref(*dev);
+ }
+}
+
static void
handle_event_device_notify(struct libinput_event *ev)
{
struct libinput_device *dev = libinput_event_get_device(ev);
+ struct libinput *li;
+ struct window *w;
const char *type;
+ int i;
if (libinput_event_get_type(ev) == LIBINPUT_EVENT_DEVICE_ADDED)
type = "added";
error("%s: Failed to enable tapping\n",
libinput_device_get_sysname(dev));
}
+
+ li = libinput_event_get_context(ev);
+ w = libinput_get_user_data(li);
+
+ if (libinput_event_get_type(ev) == LIBINPUT_EVENT_DEVICE_ADDED) {
+ for (i = 0; i < ARRAY_LENGTH(w->devices); i++) {
+ if (w->devices[i] == NULL) {
+ w->devices[i] = libinput_device_ref(dev);
+ break;
+ }
+ }
+ } else {
+ for (i = 0; i < ARRAY_LENGTH(w->devices); i++) {
+ if (w->devices[i] == dev) {
+ libinput_device_unref(w->devices[i]);
+ w->devices[i] = NULL;
+ break;
+ }
+ }
+ }
}
static void
gtk_main();
+ window_cleanup(&w);
libinput_unref(li);
udev_unref(udev);