wlroots/types/wlr_tablet_pad.c

30 lines
670 B
C
Raw Normal View History

2017-06-19 18:49:07 +00:00
#include <stdlib.h>
#include <string.h>
#include <wayland-server.h>
2017-06-21 14:27:45 +00:00
#include <wlr/interfaces/wlr_tablet_pad.h>
2018-02-12 20:29:23 +00:00
#include <wlr/types/wlr_tablet_pad.h>
2017-06-19 18:49:07 +00:00
2017-08-14 13:59:59 +00:00
void wlr_tablet_pad_init(struct wlr_tablet_pad *pad,
struct wlr_tablet_pad_impl *impl) {
2017-06-19 18:49:07 +00:00
pad->impl = impl;
wl_signal_init(&pad->events.button);
wl_signal_init(&pad->events.ring);
wl_signal_init(&pad->events.strip);
wl_signal_init(&pad->events.attach_tablet);
2017-06-19 18:49:07 +00:00
}
void wlr_tablet_pad_destroy(struct wlr_tablet_pad *pad) {
if (!pad) {
return;
}
wlr_list_for_each(&pad->paths, free);
wlr_list_finish(&pad->paths);
if (pad->impl && pad->impl->destroy) {
2017-08-14 13:59:59 +00:00
pad->impl->destroy(pad);
} else {
free(pad);
2017-06-19 18:49:07 +00:00
}
}