mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Implement libinput wlr_pointer
This commit is contained in:
parent
0dbfe56c89
commit
a63230e59c
7 changed files with 201 additions and 11 deletions
|
|
@ -6,6 +6,7 @@ include_directories(
|
|||
add_library(wlr-types
|
||||
wlr_output.c
|
||||
wlr_keyboard.c
|
||||
wlr_pointer.c
|
||||
wlr_input_device.c
|
||||
)
|
||||
|
||||
|
|
|
|||
24
types/wlr_pointer.c
Normal file
24
types/wlr_pointer.c
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wayland-server.h>
|
||||
#include <wlr/types.h>
|
||||
#include <wlr/common/list.h>
|
||||
#include "types.h"
|
||||
|
||||
struct wlr_pointer *wlr_pointer_create(struct wlr_pointer_impl *impl,
|
||||
struct wlr_pointer_state *state) {
|
||||
struct wlr_pointer *pointer = calloc(1, sizeof(struct wlr_pointer));
|
||||
pointer->impl = impl;
|
||||
pointer->state = state;
|
||||
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);
|
||||
return pointer;
|
||||
}
|
||||
|
||||
void wlr_pointer_destroy(struct wlr_pointer *kb) {
|
||||
if (!kb) return;
|
||||
kb->impl->destroy(kb->state);
|
||||
free(kb);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue