|
|
@ -1,11 +1,16 @@
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <wayland-server-core.h>
|
|
|
|
#include <wayland-server-core.h>
|
|
|
|
|
|
|
|
#include <wlr/interfaces/wlr_input_device.h>
|
|
|
|
#include <wlr/interfaces/wlr_tablet_tool.h>
|
|
|
|
#include <wlr/interfaces/wlr_tablet_tool.h>
|
|
|
|
#include <wlr/types/wlr_tablet_tool.h>
|
|
|
|
#include <wlr/types/wlr_tablet_tool.h>
|
|
|
|
|
|
|
|
|
|
|
|
void wlr_tablet_init(struct wlr_tablet *tablet,
|
|
|
|
void wlr_tablet_init(struct wlr_tablet *tablet,
|
|
|
|
const struct wlr_tablet_impl *impl) {
|
|
|
|
const struct wlr_tablet_impl *impl, const char *name) {
|
|
|
|
|
|
|
|
wlr_input_device_init(&tablet->base, WLR_INPUT_DEVICE_TABLET_TOOL, NULL,
|
|
|
|
|
|
|
|
name);
|
|
|
|
|
|
|
|
tablet->base.tablet = tablet;
|
|
|
|
|
|
|
|
|
|
|
|
tablet->impl = impl;
|
|
|
|
tablet->impl = impl;
|
|
|
|
wl_signal_init(&tablet->events.axis);
|
|
|
|
wl_signal_init(&tablet->events.axis);
|
|
|
|
wl_signal_init(&tablet->events.proximity);
|
|
|
|
wl_signal_init(&tablet->events.proximity);
|
|
|
@ -25,6 +30,7 @@ void wlr_tablet_destroy(struct wlr_tablet *tablet) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wl_array_release(&tablet->paths);
|
|
|
|
wl_array_release(&tablet->paths);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wlr_input_device_finish(&tablet->base);
|
|
|
|
if (tablet->impl && tablet->impl->destroy) {
|
|
|
|
if (tablet->impl && tablet->impl->destroy) {
|
|
|
|
tablet->impl->destroy(tablet);
|
|
|
|
tablet->impl->destroy(tablet);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|