wlroots/rootston/cursor.c

451 lines
14 KiB
C
Raw Normal View History

2017-10-09 22:23:43 +00:00
#define _XOPEN_SOURCE 700
2017-10-15 15:06:03 +00:00
#include <stdlib.h>
2017-10-03 19:06:32 +00:00
#include <math.h>
2017-10-09 22:23:43 +00:00
#ifdef __linux__
2017-09-23 22:18:19 +00:00
#include <linux/input-event-codes.h>
2017-10-09 22:23:43 +00:00
#elif __FreeBSD__
#include <dev/evdev/input-event-codes.h>
#endif
2017-11-12 10:10:56 +00:00
#include <wlr/types/wlr_xcursor_manager.h>
2017-09-23 21:48:13 +00:00
#include <wlr/util/log.h>
#include "rootston/xcursor.h"
#include "rootston/cursor.h"
struct roots_cursor *roots_cursor_create(struct roots_seat *seat) {
struct roots_cursor *cursor = calloc(1, sizeof(struct roots_cursor));
if (!cursor) {
return NULL;
}
cursor->cursor = wlr_cursor_create();
if (!cursor->cursor) {
free(cursor);
return NULL;
}
return cursor;
2017-09-28 23:48:55 +00:00
}
void roots_cursor_destroy(struct roots_cursor *cursor) {
// TODO
2017-09-30 08:39:06 +00:00
}
static void roots_cursor_update_position(struct roots_cursor *cursor, uint32_t time) {
struct roots_desktop *desktop = cursor->seat->input->server->desktop;
struct roots_seat *seat = cursor->seat;
2017-09-23 21:52:21 +00:00
struct roots_view *view;
2017-09-30 16:33:39 +00:00
struct wlr_surface *surface;
double sx, sy;
switch (cursor->mode) {
2017-09-23 21:52:21 +00:00
case ROOTS_CURSOR_PASSTHROUGH:
view = view_at(desktop, cursor->cursor->x, cursor->cursor->y,
&surface, &sx, &sy);
bool set_compositor_cursor = !view && cursor->cursor_client;
if (view) {
struct wl_client *view_client =
wl_resource_get_client(view->wlr_surface->resource);
set_compositor_cursor = view_client != cursor->cursor_client;
}
if (set_compositor_cursor) {
2017-11-12 10:10:56 +00:00
wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager,
ROOTS_XCURSOR_DEFAULT, cursor->cursor);
cursor->cursor_client = NULL;
}
2017-09-23 21:52:21 +00:00
if (view) {
wlr_seat_pointer_notify_enter(seat->seat, surface, sx, sy);
wlr_seat_pointer_notify_motion(seat->seat, time, sx, sy);
2017-09-23 21:52:21 +00:00
} else {
wlr_seat_pointer_clear_focus(seat->seat);
2017-09-23 21:52:21 +00:00
}
break;
case ROOTS_CURSOR_MOVE:
if (seat->focus) {
double dx = cursor->cursor->x - cursor->offs_x;
double dy = cursor->cursor->y - cursor->offs_y;
view_move(seat->focus, cursor->view_x + dx,
cursor->view_y + dy);
2017-09-23 22:18:19 +00:00
}
2017-09-23 21:52:21 +00:00
break;
case ROOTS_CURSOR_RESIZE:
if (seat->focus) {
double dx = cursor->cursor->x - cursor->offs_x;
double dy = cursor->cursor->y - cursor->offs_y;
double active_x = seat->focus->x;
double active_y = seat->focus->y;
int width = cursor->view_width;
int height = cursor->view_height;
if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_TOP) {
active_y = cursor->view_y + dy;
height -= dy;
if (height < 0) {
active_y += height;
}
} else if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_BOTTOM) {
height += dy;
}
if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_LEFT) {
active_x = cursor->view_x + dx;
width -= dx;
if (width < 0) {
active_x += width;
}
} else if (cursor->resize_edges & ROOTS_CURSOR_RESIZE_EDGE_RIGHT) {
width += dx;
}
2017-10-19 16:33:02 +00:00
2017-10-28 09:58:34 +00:00
if (width < 0) {
width = 0;
}
if (height < 0) {
height = 0;
}
if (active_x != seat->focus->x ||
active_y != seat->focus->y) {
view_move_resize(seat->focus, active_x, active_y,
width, height);
} else {
view_resize(seat->focus, width, height);
2017-10-19 16:33:02 +00:00
}
2017-09-30 08:39:06 +00:00
}
2017-09-23 21:52:21 +00:00
break;
case ROOTS_CURSOR_ROTATE:
if (seat->focus) {
struct roots_view *view = seat->focus;
2017-10-03 19:06:32 +00:00
int ox = view->x + view->wlr_surface->current->width/2,
oy = view->y + view->wlr_surface->current->height/2;
int ux = cursor->offs_x - ox,
uy = cursor->offs_y - oy;
int vx = cursor->cursor->x - ox,
vy = cursor->cursor->y - oy;
2017-10-03 19:06:32 +00:00
float angle = atan2(vx*uy - vy*ux, vx*ux + vy*uy);
2017-10-04 20:01:54 +00:00
int steps = 12;
angle = round(angle/M_PI*steps) / (steps/M_PI);
view->rotation = cursor->view_rotation + angle;
2017-10-03 19:06:32 +00:00
}
2017-09-23 21:52:21 +00:00
break;
}
2017-10-03 20:14:25 +00:00
2017-10-03 17:14:36 +00:00
}
static void roots_cursor_press_button(struct roots_cursor *cursor,
struct wlr_input_device *device, uint32_t time, uint32_t button,
2017-11-15 13:34:35 +00:00
uint32_t state, double lx, double ly) {
struct roots_seat *seat = cursor->seat;
struct roots_desktop *desktop = seat->input->server->desktop;
2017-11-15 13:34:35 +00:00
bool is_touch = device->type == WLR_INPUT_DEVICE_TOUCH;
2017-09-30 16:33:39 +00:00
struct wlr_surface *surface;
double sx, sy;
2017-11-15 13:34:35 +00:00
struct roots_view *view = view_at(desktop, lx, ly, &surface, &sx, &sy);
2017-10-03 17:14:36 +00:00
if (state == WLR_BUTTON_PRESSED && view && roots_seat_has_meta_pressed(seat)) {
roots_seat_focus_view(seat, view);
2017-10-03 17:14:36 +00:00
2017-10-27 18:36:25 +00:00
uint32_t edges;
2017-10-03 17:14:36 +00:00
switch (button) {
case BTN_LEFT:
roots_seat_begin_move(seat, view);
2017-10-03 17:14:36 +00:00
break;
case BTN_RIGHT:
2017-10-27 18:36:25 +00:00
edges = 0;
if (sx < view->wlr_surface->current->width/2) {
edges |= ROOTS_CURSOR_RESIZE_EDGE_LEFT;
} else {
edges |= ROOTS_CURSOR_RESIZE_EDGE_RIGHT;
}
if (sy < view->wlr_surface->current->height/2) {
edges |= ROOTS_CURSOR_RESIZE_EDGE_TOP;
} else {
edges |= ROOTS_CURSOR_RESIZE_EDGE_BOTTOM;
}
roots_seat_begin_resize(seat, view, edges);
2017-10-03 17:14:36 +00:00
break;
2017-10-03 19:06:32 +00:00
case BTN_MIDDLE:
roots_seat_begin_rotate(seat, view);
2017-10-27 18:36:25 +00:00
break;
2017-10-03 17:14:36 +00:00
}
return;
}
2017-11-15 13:34:35 +00:00
uint32_t serial;
if (is_touch) {
serial = wl_display_get_serial(desktop->server->wl_display);
} else {
serial = wlr_seat_pointer_notify_button(seat->seat, time, button, state);
}
2017-10-03 17:14:36 +00:00
2017-09-23 18:53:15 +00:00
int i;
2017-09-23 22:18:19 +00:00
switch (state) {
2017-09-23 18:53:15 +00:00
case WLR_BUTTON_RELEASED:
seat->cursor->mode = ROOTS_CURSOR_PASSTHROUGH;
2017-11-15 13:34:35 +00:00
if (!is_touch) {
roots_cursor_update_position(cursor, time);
}
2017-09-23 18:53:15 +00:00
break;
case WLR_BUTTON_PRESSED:
i = cursor->input_events_idx;
cursor->input_events[i].serial = serial;
cursor->input_events[i].cursor = cursor->cursor;
cursor->input_events[i].device = device;
cursor->input_events_idx = (i + 1)
% (sizeof(cursor->input_events) / sizeof(cursor->input_events[0]));
roots_seat_focus_view(seat, view);
2017-09-23 18:53:15 +00:00
break;
}
}
void roots_cursor_handle_motion(struct roots_cursor *cursor,
struct wlr_event_pointer_motion *event) {
wlr_cursor_move(cursor->cursor, event->device,
event->delta_x, event->delta_y);
roots_cursor_update_position(cursor, event->time_msec);
}
void roots_cursor_handle_motion_absolute(struct roots_cursor *cursor,
struct wlr_event_pointer_motion_absolute *event) {
wlr_cursor_warp_absolute(cursor->cursor, event->device,
event->x_mm / event->width_mm, event->y_mm / event->height_mm);
roots_cursor_update_position(cursor, event->time_msec);
}
void roots_cursor_handle_button(struct roots_cursor *cursor,
struct wlr_event_pointer_button *event) {
roots_cursor_press_button(cursor, event->device, event->time_msec,
2017-11-15 13:34:35 +00:00
event->button, event->state, cursor->cursor->x, cursor->cursor->y);
2017-09-23 22:18:19 +00:00
}
void roots_cursor_handle_axis(struct roots_cursor *cursor,
struct wlr_event_pointer_axis *event) {
wlr_seat_pointer_notify_axis(cursor->seat->seat, event->time_msec,
event->orientation, event->delta);
}
void roots_cursor_handle_touch_down(struct roots_cursor *cursor,
struct wlr_event_touch_down *event) {
2017-11-12 16:43:50 +00:00
struct roots_desktop *desktop = cursor->seat->input->server->desktop;
struct wlr_surface *surface = NULL;
double lx, ly;
bool result =
wlr_cursor_absolute_to_layout_coords(cursor->cursor,
event->device, event->x_mm, event->y_mm, event->width_mm,
event->height_mm, &lx, &ly);
if (!result) {
return;
}
2017-11-12 16:43:50 +00:00
double sx, sy;
view_at(desktop, lx, ly, &surface, &sx, &sy);
2017-11-12 16:43:50 +00:00
if (surface) {
wlr_seat_touch_notify_down(cursor->seat->seat, surface,
event->time_msec, event->slot, sx, sy);
}
2017-11-15 13:34:35 +00:00
if (wlr_seat_touch_num_points(cursor->seat->seat) == 1) {
cursor->seat->touch_id = event->slot;
cursor->seat->touch_x = lx;
cursor->seat->touch_y = ly;
roots_cursor_press_button(cursor, event->device, event->time_msec,
BTN_LEFT, 1, lx, ly);
}
}
void roots_cursor_handle_touch_up(struct roots_cursor *cursor,
struct wlr_event_touch_up *event) {
2017-11-15 13:34:35 +00:00
struct wlr_touch_point *point = wlr_seat_touch_get_point(cursor->seat->seat, event->slot);
if (!point) {
return;
}
if (wlr_seat_touch_num_points(cursor->seat->seat) == 1) {
roots_cursor_press_button(cursor, event->device, event->time_msec,
BTN_LEFT, 0, cursor->seat->touch_x, cursor->seat->touch_y);
}
2017-11-12 16:43:50 +00:00
wlr_seat_touch_notify_up(cursor->seat->seat, event->time_msec, event->slot);
}
void roots_cursor_handle_touch_motion(struct roots_cursor *cursor,
struct wlr_event_touch_motion *event) {
2017-11-12 16:43:50 +00:00
struct roots_desktop *desktop = cursor->seat->input->server->desktop;
struct wlr_touch_point *point =
wlr_seat_touch_get_point(cursor->seat->seat, event->slot);
if (!point) {
return;
}
struct wlr_surface *surface = NULL;
double lx, ly;
bool result =
wlr_cursor_absolute_to_layout_coords(cursor->cursor,
event->device, event->x_mm, event->y_mm, event->width_mm,
event->height_mm, &lx, &ly);
if (!result) {
return;
}
double sx, sy;
view_at(desktop, lx, ly, &surface, &sx, &sy);
if (surface) {
2017-11-14 13:51:37 +00:00
wlr_seat_touch_point_focus(cursor->seat->seat, surface,
event->time_msec, event->slot, sx, sy);
wlr_seat_touch_notify_motion(cursor->seat->seat, event->time_msec,
2017-11-12 16:43:50 +00:00
event->slot, sx, sy);
2017-11-14 13:51:37 +00:00
} else {
wlr_seat_touch_point_clear_focus(cursor->seat->seat, event->time_msec,
event->slot);
}
2017-11-15 11:43:30 +00:00
2017-11-15 13:34:35 +00:00
if (event->slot == cursor->seat->touch_id) {
cursor->seat->touch_x = lx;
cursor->seat->touch_y = ly;
2017-11-15 11:43:30 +00:00
}
}
void roots_cursor_handle_tool_axis(struct roots_cursor *cursor,
struct wlr_event_tablet_tool_axis *event) {
2017-09-23 18:53:15 +00:00
if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X) &&
(event->updated_axes & WLR_TABLET_TOOL_AXIS_Y)) {
wlr_cursor_warp_absolute(cursor->cursor, event->device,
2017-09-23 18:53:15 +00:00
event->x_mm / event->width_mm, event->y_mm / event->height_mm);
roots_cursor_update_position(cursor, event->time_msec);
} else if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_X)) {
wlr_cursor_warp_absolute(cursor->cursor, event->device,
event->x_mm / event->width_mm, -1);
roots_cursor_update_position(cursor, event->time_msec);
} else if ((event->updated_axes & WLR_TABLET_TOOL_AXIS_Y)) {
wlr_cursor_warp_absolute(cursor->cursor, event->device,
-1, event->y_mm / event->height_mm);
roots_cursor_update_position(cursor, event->time_msec);
2017-09-23 18:53:15 +00:00
}
}
void roots_cursor_handle_tool_tip(struct roots_cursor *cursor,
struct wlr_event_tablet_tool_tip *event) {
roots_cursor_press_button(cursor, event->device,
2017-11-15 13:34:35 +00:00
event->time_msec, BTN_LEFT, event->state, cursor->cursor->x,
cursor->cursor->y);
2017-09-23 18:53:15 +00:00
}
void roots_cursor_handle_request_set_cursor(struct roots_cursor *cursor,
struct wlr_seat_pointer_request_set_cursor_event *event) {
struct wlr_surface *focused_surface =
event->seat_client->seat->pointer_state.focused_surface;
bool has_focused = focused_surface != NULL && focused_surface->resource != NULL;
struct wl_client *focused_client = NULL;
if (has_focused) {
focused_client = wl_resource_get_client(focused_surface->resource);
}
if (event->seat_client->client != focused_client ||
cursor->mode != ROOTS_CURSOR_PASSTHROUGH) {
wlr_log(L_DEBUG, "Denying request to set cursor from unfocused client");
return;
}
wlr_log(L_DEBUG, "Setting client cursor");
wlr_cursor_set_surface(cursor->cursor, event->surface, event->hotspot_x,
event->hotspot_y);
cursor->cursor_client = event->seat_client->client;
2017-10-15 15:06:03 +00:00
}
static void handle_drag_icon_commit(struct wl_listener *listener, void *data) {
struct roots_drag_icon *drag_icon =
wl_container_of(listener, drag_icon, surface_commit);
2017-10-17 21:21:11 +00:00
drag_icon->sx += drag_icon->surface->current->sx;
drag_icon->sy += drag_icon->surface->current->sy;
2017-10-15 15:06:03 +00:00
}
static void handle_drag_icon_destroy(struct wl_listener *listener, void *data) {
struct roots_drag_icon *drag_icon =
wl_container_of(listener, drag_icon, surface_destroy);
wl_list_remove(&drag_icon->link);
wl_list_remove(&drag_icon->surface_destroy.link);
wl_list_remove(&drag_icon->surface_commit.link);
free(drag_icon);
}
2017-10-15 15:06:03 +00:00
2017-11-13 20:41:48 +00:00
static struct roots_drag_icon *seat_add_drag_icon(struct roots_seat *seat,
struct wlr_surface *icon_surface) {
if (!icon_surface) {
return NULL;
}
struct roots_drag_icon *iter_icon;
wl_list_for_each(iter_icon, &seat->drag_icons, link) {
if (iter_icon->surface == icon_surface) {
// already in the list
return iter_icon;
}
}
struct roots_drag_icon *drag_icon =
calloc(1, sizeof(struct roots_drag_icon));
drag_icon->mapped = true;
drag_icon->surface = icon_surface;
wl_list_insert(&seat->drag_icons, &drag_icon->link);
wl_signal_add(&icon_surface->events.destroy,
&drag_icon->surface_destroy);
drag_icon->surface_destroy.notify = handle_drag_icon_destroy;
wl_signal_add(&icon_surface->events.commit,
&drag_icon->surface_commit);
drag_icon->surface_commit.notify = handle_drag_icon_commit;
return drag_icon;
}
static void seat_unmap_drag_icon(struct roots_seat *seat,
struct wlr_surface *icon_surface) {
if (!icon_surface) {
return;
}
struct roots_drag_icon *icon;
wl_list_for_each(icon, &seat->drag_icons, link) {
if (icon->surface == icon_surface) {
icon->mapped = false;
}
}
}
void roots_cursor_handle_pointer_grab_begin(struct roots_cursor *cursor,
struct wlr_seat_pointer_grab *grab) {
2017-10-15 15:06:03 +00:00
if (grab->interface == &wlr_data_device_pointer_drag_interface) {
struct wlr_drag *drag = grab->data;
2017-11-13 20:41:48 +00:00
struct roots_drag_icon *icon =
seat_add_drag_icon(cursor->seat, drag->icon);
if (icon) {
icon->is_pointer = true;
2017-10-15 15:06:03 +00:00
}
}
}
void roots_cursor_handle_pointer_grab_end(struct roots_cursor *cursor,
struct wlr_seat_pointer_grab *grab) {
2017-11-01 12:05:02 +00:00
if (grab->interface == &wlr_data_device_pointer_drag_interface) {
struct wlr_drag *drag = grab->data;
2017-11-13 20:41:48 +00:00
seat_unmap_drag_icon(cursor->seat, drag->icon);
}
}
void roots_cursor_handle_touch_grab_begin(struct roots_cursor *cursor,
struct wlr_seat_touch_grab *grab) {
if (grab->interface == &wlr_data_device_touch_drag_interface) {
struct wlr_drag *drag = grab->data;
struct roots_drag_icon *icon =
seat_add_drag_icon(cursor->seat, drag->icon);
if (icon) {
icon->is_pointer = false;
icon->touch_id = drag->grab_touch_id;
2017-11-01 12:05:02 +00:00
}
}
2017-11-13 20:41:48 +00:00
}
2017-11-01 12:05:02 +00:00
2017-11-13 20:41:48 +00:00
void roots_cursor_handle_touch_grab_end(struct roots_cursor *cursor,
struct wlr_seat_touch_grab *grab) {
if (grab->interface == &wlr_data_device_touch_drag_interface) {
struct wlr_drag *drag = grab->data;
seat_unmap_drag_icon(cursor->seat, drag->icon);
}
2017-09-23 14:36:32 +00:00
}