mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
ca45f4490c
The documentation for wayland-server.h says: > Use of this header file is discouraged. Prefer including > wayland-server-core.h instead, which does not include the server protocol > header and as such only defines the library PI, excluding the deprecated API > below. Replacing wayland-server.h with wayland-server-core.h allows us to drop the WL_HIDE_DEPRECATED declaration.
32 lines
964 B
C
32 lines
964 B
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wayland-server-core.h>
|
|
#include <wlr/interfaces/wlr_pointer.h>
|
|
#include <wlr/types/wlr_pointer.h>
|
|
|
|
void wlr_pointer_init(struct wlr_pointer *pointer,
|
|
const struct wlr_pointer_impl *impl) {
|
|
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);
|
|
wl_signal_init(&pointer->events.frame);
|
|
wl_signal_init(&pointer->events.swipe_begin);
|
|
wl_signal_init(&pointer->events.swipe_update);
|
|
wl_signal_init(&pointer->events.swipe_end);
|
|
wl_signal_init(&pointer->events.pinch_begin);
|
|
wl_signal_init(&pointer->events.pinch_update);
|
|
wl_signal_init(&pointer->events.pinch_end);
|
|
}
|
|
|
|
void wlr_pointer_destroy(struct wlr_pointer *pointer) {
|
|
if (!pointer) {
|
|
return;
|
|
}
|
|
if (pointer->impl && pointer->impl->destroy) {
|
|
pointer->impl->destroy(pointer);
|
|
} else {
|
|
free(pointer);
|
|
}
|
|
}
|