mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
compositor.c: implement cursor motion absolute
This commit is contained in:
parent
91323a9b9b
commit
446adda1a3
1 changed files with 17 additions and 12 deletions
|
@ -366,14 +366,8 @@ static struct wlr_xdg_surface_v6 *example_xdg_surface_at(
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_cursor_motion(struct wl_listener *listener, void *data) {
|
static void update_pointer_position(struct sample_state *sample,
|
||||||
struct sample_state *sample =
|
uint32_t time_sec) {
|
||||||
wl_container_of(listener, sample, cursor_motion);
|
|
||||||
struct wlr_event_pointer_motion *event = data;
|
|
||||||
|
|
||||||
wlr_cursor_move(sample->cursor, event->device, event->delta_x,
|
|
||||||
event->delta_y);
|
|
||||||
|
|
||||||
struct wlr_xdg_surface_v6 *surface =
|
struct wlr_xdg_surface_v6 *surface =
|
||||||
example_xdg_surface_at(sample, sample->cursor->x, sample->cursor->y);
|
example_xdg_surface_at(sample, sample->cursor->x, sample->cursor->y);
|
||||||
|
|
||||||
|
@ -386,23 +380,34 @@ static void handle_cursor_motion(struct wl_listener *listener, void *data) {
|
||||||
// TODO z-order
|
// TODO z-order
|
||||||
wlr_seat_pointer_enter(sample->wl_seat, surface->surface,
|
wlr_seat_pointer_enter(sample->wl_seat, surface->surface,
|
||||||
sx, sy);
|
sx, sy);
|
||||||
wlr_seat_pointer_send_motion(sample->wl_seat, event->time_sec,
|
wlr_seat_pointer_send_motion(sample->wl_seat, time_sec,
|
||||||
sx, sy);
|
sx, sy);
|
||||||
} else {
|
} else {
|
||||||
wlr_seat_pointer_clear_focus(sample->wl_seat);
|
wlr_seat_pointer_clear_focus(sample->wl_seat);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void handle_cursor_motion(struct wl_listener *listener, void *data) {
|
||||||
|
struct sample_state *sample =
|
||||||
|
wl_container_of(listener, sample, cursor_motion);
|
||||||
|
struct wlr_event_pointer_motion *event = data;
|
||||||
|
|
||||||
|
wlr_cursor_move(sample->cursor, event->device, event->delta_x,
|
||||||
|
event->delta_y);
|
||||||
|
|
||||||
|
update_pointer_position(sample, event->time_sec);
|
||||||
|
}
|
||||||
|
|
||||||
static void handle_cursor_motion_absolute(struct wl_listener *listener,
|
static void handle_cursor_motion_absolute(struct wl_listener *listener,
|
||||||
void *data) {
|
void *data) {
|
||||||
struct sample_state *sample =
|
struct sample_state *sample =
|
||||||
wl_container_of(listener, sample, cursor_motion_absolute);
|
wl_container_of(listener, sample, cursor_motion_absolute);
|
||||||
struct wlr_event_pointer_motion_absolute *event = data;
|
struct wlr_event_pointer_motion_absolute *event = data;
|
||||||
|
|
||||||
wlr_cursor_warp_absolute(sample->cursor, event->device, event->x_mm,
|
wlr_cursor_warp_absolute(sample->cursor, event->device,
|
||||||
event->y_mm);
|
event->x_mm / event->width_mm, event->y_mm / event->height_mm);
|
||||||
|
|
||||||
// TODO move pointer
|
update_pointer_position(sample, event->time_sec);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_cursor_axis(struct wl_listener *listener, void *data) {
|
static void handle_cursor_axis(struct wl_listener *listener, void *data) {
|
||||||
|
|
Loading…
Reference in a new issue