bool isfocusable(struct view *view);
/**
- * desktop_view_at - find view or layer-surface at co-ordinate (lx, ly)
+ * desktop_surface_and_view_at - find view and surface at (lx, ly)
* Note: If surface points to layer-surface, view will be set to NULL
*/
-struct view *desktop_view_at(struct server *server, double lx, double ly,
- struct wlr_surface **surface, double *sx, double *sy, int *view_area);
+struct view *desktop_surface_and_view_at(struct server *server, double lx,
+ double ly, struct wlr_surface **surface, double *sx, double *sy,
+ int *view_area);
void cursor_init(struct seat *seat);
return;
}
- /* Otherwise, find the view under the pointer and send the event along */
+ /* Otherwise, find view under the pointer and send the event along */
double sx, sy;
struct wlr_seat *wlr_seat = server->seat.seat;
struct wlr_surface *surface = NULL;
int view_area = LAB_SSD_NONE;
- struct view *view =
- desktop_view_at(server, server->seat.cursor->x,
- server->seat.cursor->y, &surface, &sx, &sy, &view_area);
+ struct view *view = desktop_surface_and_view_at(server,
+ server->seat.cursor->x, server->seat.cursor->y, &surface,
+ &sx, &sy, &view_area);
+
if (!view) {
set_cursor(server, XCURSOR_DEFAULT);
} else {
int view_area = LAB_SSD_NONE;
uint32_t resize_edges;
- struct view *view = desktop_view_at(server, server->seat.cursor->x,
- server->seat.cursor->y, &surface, &sx, &sy, &view_area);
+ struct view *view = desktop_surface_and_view_at(server,
+ server->seat.cursor->x, server->seat.cursor->y, &surface,
+ &sx, &sy, &view_area);
/* handle alt + _press_ on view */
struct wlr_input_device *device = seat->keyboard_group->input_device;
}
struct view *
-desktop_view_at(struct server *server, double lx, double ly,
+desktop_surface_and_view_at(struct server *server, double lx, double ly,
struct wlr_surface **surface, double *sx, double *sy,
int *view_area)
{