wlroots/types/wlr_tablet_pad.c

22 lines
534 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);
}
void wlr_tablet_pad_destroy(struct wlr_tablet_pad *pad) {
2017-08-15 10:16:23 +00:00
if (pad && 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
}
}