2017-06-13 16:27:15 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <wayland-server.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/interfaces/wlr_pointer.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/types/wlr_pointer.h>
|
2017-06-13 16:27:15 +02:00
|
|
|
|
2017-08-14 15:55:48 +02:00
|
|
|
void wlr_pointer_init(struct wlr_pointer *pointer,
|
|
|
|
struct wlr_pointer_impl *impl) {
|
2017-06-13 16:27:15 +02:00
|
|
|
pointer->impl = impl;
|
|
|
|
wl_signal_init(&pointer->events.motion);
|
|
|
|
wl_signal_init(&pointer->events.motion_absolute);
|
|
|
|
wl_signal_init(&pointer->events.button);
|
|
|
|
wl_signal_init(&pointer->events.axis);
|
|
|
|
}
|
|
|
|
|
2017-06-14 17:40:03 +02:00
|
|
|
void wlr_pointer_destroy(struct wlr_pointer *pointer) {
|
2017-08-14 18:23:20 +02:00
|
|
|
if (pointer && pointer->impl && pointer->impl->destroy) {
|
2017-08-14 15:55:48 +02:00
|
|
|
pointer->impl->destroy(pointer);
|
|
|
|
} else {
|
2017-09-08 16:02:26 +02:00
|
|
|
wl_list_remove(&pointer->events.motion.listener_list);
|
|
|
|
wl_list_remove(&pointer->events.motion_absolute.listener_list);
|
|
|
|
wl_list_remove(&pointer->events.button.listener_list);
|
|
|
|
wl_list_remove(&pointer->events.axis.listener_list);
|
2017-08-14 15:55:48 +02:00
|
|
|
free(pointer);
|
2017-06-14 17:40:03 +02:00
|
|
|
}
|
2017-06-13 16:27:15 +02:00
|
|
|
}
|