mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
Refactor seat.c, keyboard.c, cursor.c
Use wlr_keyboard_group
This commit is contained in:
parent
a4c22f7c4d
commit
25829d122c
9 changed files with 288 additions and 267 deletions
136
src/cursor.c
136
src/cursor.c
|
|
@ -1,11 +1,45 @@
|
|||
#include "labwc.h"
|
||||
|
||||
static void
|
||||
request_cursor_notify(struct wl_listener *listener, void *data)
|
||||
{
|
||||
struct seat *seat = wl_container_of(listener, seat, request_cursor);
|
||||
/*
|
||||
* This event is rasied by the seat when a client provides a cursor
|
||||
* image
|
||||
*/
|
||||
struct wlr_seat_pointer_request_set_cursor_event *event = data;
|
||||
struct wlr_seat_client *focused_client =
|
||||
seat->seat->pointer_state.focused_client;
|
||||
|
||||
/* This can be sent by any client, so we check to make sure this one is
|
||||
* actually has pointer focus first. */
|
||||
if (focused_client == event->seat_client) {
|
||||
/* Once we've vetted the client, we can tell the cursor to use
|
||||
* the provided surface as the cursor image. It will set the
|
||||
* hardware cursor on the output that it's currently on and
|
||||
* continue to do so as the cursor moves between outputs. */
|
||||
wlr_cursor_set_surface(seat->cursor, event->surface,
|
||||
event->hotspot_x, event->hotspot_y);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
request_set_selection_notify(struct wl_listener *listener, void *data)
|
||||
{
|
||||
struct seat *seat = wl_container_of(
|
||||
listener, seat, request_set_selection);
|
||||
struct wlr_seat_request_set_selection_event *event = data;
|
||||
wlr_seat_set_selection(seat->seat, event->source,
|
||||
event->serial);
|
||||
}
|
||||
|
||||
static void
|
||||
process_cursor_move(struct server *server, uint32_t time)
|
||||
{
|
||||
/* Move the grabbed view to the new position. */
|
||||
double dx = server->cursor->x - server->grab_x;
|
||||
double dy = server->cursor->y - server->grab_y;
|
||||
double dx = server->seat.cursor->x - server->grab_x;
|
||||
double dy = server->seat.cursor->y - server->grab_y;
|
||||
server->grabbed_view->x = server->grab_box.x + dx;
|
||||
server->grabbed_view->y = server->grab_box.y + dy;
|
||||
|
||||
|
|
@ -29,8 +63,8 @@ process_cursor_resize(struct server *server, uint32_t time)
|
|||
* TODO: Wait for the client to prepare a buffer at the new size, then
|
||||
* commit any movement that was prepared.
|
||||
*/
|
||||
double dx = server->cursor->x - server->grab_x;
|
||||
double dy = server->cursor->y - server->grab_y;
|
||||
double dx = server->seat.cursor->x - server->grab_x;
|
||||
double dy = server->seat.cursor->y - server->grab_y;
|
||||
|
||||
struct view *view = server->grabbed_view;
|
||||
struct wlr_box new_view_geo = {
|
||||
|
|
@ -79,11 +113,11 @@ process_cursor_motion(struct server *server, uint32_t time)
|
|||
/* Otherwise, find the view under the pointer and send the event along.
|
||||
*/
|
||||
double sx, sy;
|
||||
struct wlr_seat *seat = server->seat;
|
||||
struct wlr_seat *wlr_seat = server->seat.seat;
|
||||
struct wlr_surface *surface = NULL;
|
||||
int view_area;
|
||||
struct view *view =
|
||||
desktop_view_at(server, server->cursor->x, server->cursor->y,
|
||||
desktop_view_at(server, server->seat.cursor->x, server->seat.cursor->y,
|
||||
&surface, &sx, &sy, &view_area);
|
||||
if (!view) {
|
||||
/*
|
||||
|
|
@ -92,7 +126,7 @@ process_cursor_motion(struct server *server, uint32_t time)
|
|||
* you move it around the screen, not over any views.
|
||||
*/
|
||||
wlr_xcursor_manager_set_cursor_image(
|
||||
server->cursor_mgr, XCURSOR_DEFAULT, server->cursor);
|
||||
server->seat.xcursor_manager, XCURSOR_DEFAULT, server->seat.cursor);
|
||||
}
|
||||
|
||||
/* TODO: Could we use wlr_xcursor_get_resize_name() here?? */
|
||||
|
|
@ -101,28 +135,28 @@ process_cursor_motion(struct server *server, uint32_t time)
|
|||
break;
|
||||
case LAB_DECO_PART_TOP:
|
||||
wlr_xcursor_manager_set_cursor_image(
|
||||
server->cursor_mgr, "top_side", server->cursor);
|
||||
server->seat.xcursor_manager, "top_side", server->seat.cursor);
|
||||
break;
|
||||
case LAB_DECO_PART_RIGHT:
|
||||
wlr_xcursor_manager_set_cursor_image(
|
||||
server->cursor_mgr, "right_side", server->cursor);
|
||||
server->seat.xcursor_manager, "right_side", server->seat.cursor);
|
||||
break;
|
||||
case LAB_DECO_PART_BOTTOM:
|
||||
wlr_xcursor_manager_set_cursor_image(
|
||||
server->cursor_mgr, "bottom_side", server->cursor);
|
||||
server->seat.xcursor_manager, "bottom_side", server->seat.cursor);
|
||||
break;
|
||||
case LAB_DECO_PART_LEFT:
|
||||
wlr_xcursor_manager_set_cursor_image(
|
||||
server->cursor_mgr, "left_side", server->cursor);
|
||||
server->seat.xcursor_manager, "left_side", server->seat.cursor);
|
||||
break;
|
||||
default:
|
||||
wlr_xcursor_manager_set_cursor_image(
|
||||
server->cursor_mgr, XCURSOR_DEFAULT, server->cursor);
|
||||
server->seat.xcursor_manager, XCURSOR_DEFAULT, server->seat.cursor);
|
||||
break;
|
||||
}
|
||||
if (surface) {
|
||||
bool focus_changed =
|
||||
seat->pointer_state.focused_surface != surface;
|
||||
wlr_seat->pointer_state.focused_surface != surface;
|
||||
/*
|
||||
* "Enter" the surface if necessary. This lets the client know
|
||||
* that the cursor has entered one of its surfaces.
|
||||
|
|
@ -131,18 +165,18 @@ process_cursor_motion(struct server *server, uint32_t time)
|
|||
* distinct from keyboard focus. You get pointer focus by moving
|
||||
* the pointer over a window.
|
||||
*/
|
||||
wlr_seat_pointer_notify_enter(seat, surface, sx, sy);
|
||||
wlr_seat_pointer_notify_enter(wlr_seat, surface, sx, sy);
|
||||
if (!focus_changed) {
|
||||
/*
|
||||
* The enter event contains coordinates, so we only need
|
||||
* to notify on motion if the focus did not change.
|
||||
*/
|
||||
wlr_seat_pointer_notify_motion(seat, time, sx, sy);
|
||||
wlr_seat_pointer_notify_motion(wlr_seat, time, sx, sy);
|
||||
}
|
||||
} else {
|
||||
/* Clear pointer focus so future button events and such are not
|
||||
* sent to the last client to have the cursor over it. */
|
||||
wlr_seat_pointer_clear_focus(seat);
|
||||
wlr_seat_pointer_clear_focus(wlr_seat);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -153,8 +187,7 @@ cursor_motion(struct wl_listener *listener, void *data)
|
|||
* This event is forwarded by the cursor when a pointer emits a
|
||||
* _relative_ pointer motion event (i.e. a delta)
|
||||
*/
|
||||
struct server *server =
|
||||
wl_container_of(listener, server, cursor_motion);
|
||||
struct seat *seat = wl_container_of(listener, seat, cursor_motion);
|
||||
struct wlr_event_pointer_motion *event = data;
|
||||
|
||||
/*
|
||||
|
|
@ -164,9 +197,9 @@ cursor_motion(struct wl_listener *listener, void *data)
|
|||
* device which generated the event. You can pass NULL for the device
|
||||
* if you want to move the cursor around without any input.
|
||||
*/
|
||||
wlr_cursor_move(server->cursor, event->device, event->delta_x,
|
||||
event->delta_y);
|
||||
process_cursor_motion(server, event->time_msec);
|
||||
wlr_cursor_move(seat->cursor, event->device, event->delta_x,
|
||||
event->delta_y);
|
||||
process_cursor_motion(seat->server, event->time_msec);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -180,12 +213,11 @@ cursor_motion_absolute(struct wl_listener *listener, void *data)
|
|||
* window from any edge, so we have to warp the mouse there. There is
|
||||
* also some hardware which emits these events.
|
||||
*/
|
||||
struct server *server =
|
||||
wl_container_of(listener, server, cursor_motion_absolute);
|
||||
struct seat *seat = wl_container_of(
|
||||
listener, seat, cursor_motion_absolute);
|
||||
struct wlr_event_pointer_motion_absolute *event = data;
|
||||
wlr_cursor_warp_absolute(server->cursor, event->device, event->x,
|
||||
event->y);
|
||||
process_cursor_motion(server, event->time_msec);
|
||||
wlr_cursor_warp_absolute(seat->cursor, event->device, event->x, event->y);
|
||||
process_cursor_motion(seat->server, event->time_msec);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -195,21 +227,21 @@ cursor_button(struct wl_listener *listener, void *data)
|
|||
* This event is forwarded by the cursor when a pointer emits a button
|
||||
* event.
|
||||
*/
|
||||
struct server *server =
|
||||
wl_container_of(listener, server, cursor_button);
|
||||
struct seat *seat = wl_container_of(listener, seat, cursor_button);
|
||||
struct server *server = seat->server;
|
||||
struct wlr_event_pointer_button *event = data;
|
||||
|
||||
/*
|
||||
* Notify the client with pointer focus that a button press has
|
||||
* occurred.
|
||||
*/
|
||||
wlr_seat_pointer_notify_button(server->seat, event->time_msec,
|
||||
event->button, event->state);
|
||||
wlr_seat_pointer_notify_button(seat->seat, event->time_msec,
|
||||
event->button, event->state);
|
||||
double sx, sy;
|
||||
struct wlr_surface *surface;
|
||||
int view_area;
|
||||
struct view *view =
|
||||
desktop_view_at(server, server->cursor->x, server->cursor->y,
|
||||
desktop_view_at(server, server->seat.cursor->x, server->seat.cursor->y,
|
||||
&surface, &sx, &sy, &view_area);
|
||||
if (event->state == WLR_BUTTON_RELEASED) {
|
||||
/* Exit interactive move/resize mode. */
|
||||
|
|
@ -254,13 +286,13 @@ cursor_axis(struct wl_listener *listener, void *data)
|
|||
* This event is forwarded by the cursor when a pointer emits an axis
|
||||
* event, for example when you move the scroll wheel.
|
||||
*/
|
||||
struct server *server = wl_container_of(listener, server, cursor_axis);
|
||||
struct seat *seat = wl_container_of(listener, seat, cursor_axis);
|
||||
struct wlr_event_pointer_axis *event = data;
|
||||
|
||||
/* Notify the client with pointer focus of the axis event. */
|
||||
wlr_seat_pointer_notify_axis(server->seat, event->time_msec,
|
||||
event->orientation, event->delta,
|
||||
event->delta_discrete, event->source);
|
||||
wlr_seat_pointer_notify_axis(seat->seat, event->time_msec,
|
||||
event->orientation, event->delta, event->delta_discrete,
|
||||
event->source);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -273,14 +305,38 @@ cursor_frame(struct wl_listener *listener, void *data)
|
|||
* at the same time, in which case a frame event won't be sent in
|
||||
* between.
|
||||
*/
|
||||
struct server *server = wl_container_of(listener, server, cursor_frame);
|
||||
struct seat *seat = wl_container_of(listener, seat, cursor_frame);
|
||||
/* Notify the client with pointer focus of the frame event. */
|
||||
wlr_seat_pointer_notify_frame(server->seat);
|
||||
wlr_seat_pointer_notify_frame(seat->seat);
|
||||
}
|
||||
|
||||
void
|
||||
cursor_new(struct server *server, struct wlr_input_device *device)
|
||||
cursor_init(struct seat *seat)
|
||||
{
|
||||
/* TODO: Configure libinput on device to set tap, acceleration, etc */
|
||||
wlr_cursor_attach_input_device(server->cursor, device);
|
||||
seat->xcursor_manager = wlr_xcursor_manager_create(NULL, 24);
|
||||
wlr_xcursor_manager_load(seat->xcursor_manager, 1);
|
||||
|
||||
seat->cursor_motion.notify = cursor_motion;
|
||||
wl_signal_add(&seat->cursor->events.motion, &seat->cursor_motion);
|
||||
seat->cursor_motion_absolute.notify = cursor_motion_absolute;
|
||||
wl_signal_add(&seat->cursor->events.motion_absolute,
|
||||
&seat->cursor_motion_absolute);
|
||||
seat->cursor_button.notify = cursor_button;
|
||||
wl_signal_add(&seat->cursor->events.button, &seat->cursor_button);
|
||||
seat->cursor_axis.notify = cursor_axis;
|
||||
wl_signal_add(&seat->cursor->events.axis, &seat->cursor_axis);
|
||||
seat->cursor_frame.notify = cursor_frame;
|
||||
wl_signal_add(&seat->cursor->events.frame, &seat->cursor_frame);
|
||||
|
||||
seat->request_cursor.notify = request_cursor_notify;
|
||||
wl_signal_add(&seat->seat->events.request_set_cursor, &seat->request_cursor);
|
||||
seat->request_set_selection.notify = request_set_selection_notify;
|
||||
wl_signal_add(&seat->seat->events.request_set_selection, &seat->request_set_selection);
|
||||
|
||||
/* TODO:
|
||||
* seat->request_set_primary_selection.notify =
|
||||
* request_set_primary_selectioni_notify;
|
||||
* wl_signal_add(&seat->seat->events.request_set_primary_selection,
|
||||
* &seat->request_set_primary_selection);
|
||||
*/
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue