mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
wayland+input: add support for toplevel edge constraints
Edge constraints are new (not yet available in a wayland-protocols
release) toplevel states, acting as a complement to the existing tiled
states.
Tiled tells us we shouldn't draw shadows etc *outside our window
geometry*.
Constrained tells us the window cannot be resized in the constrained
direction.
This patch does a couple of things:
* Recognize the new states when debug logging
* Change is_top_left() etc to look at the new constrained state
instead of the tiled state. These functions are used when both
choosing cursor shape, and when determining if/how to resize a
window on a CSD edge click-and-drag.
* Update cursor shape selection to use the default (left_ptr) shape
when on a constrained edge (or corner).
* Update CSD resize triggering, to not trigger a resize when attempted
on a constrained edge (or corner).
See
86750c99ed:
An edge constraint is an complementery state to the tiled state,
meaning that it's not only tiled, but constrained in a way that it
can't resize in that direction.
This typically means that the constrained edge is tiled against a
monitor edge. An example configuration is two windows tiled next
to each other on a single monitor. Together they cover the whole
work area.
The left window would have the following tiled and edge constraint
state:
[ tiled_top, tiled_right, tiled_bottom, tiled_left,
constrained_top, constrained_bottom, constrained_left ]
while the right window would have the following:
[ tiled_top, tiled_right, tiled_bottom, tiled_left,
constrained_top, constrained_bottom, constrained_right ]
This aims to replace and deprecate the
`gtk_surface1.configure_edges` event and the
`gtk_surface1.edge_constraint` enum.
This commit is contained in:
parent
091aa90f1a
commit
23431e3ecf
4 changed files with 114 additions and 30 deletions
71
input.c
71
input.c
|
|
@ -2280,7 +2280,7 @@ is_top_left(const struct terminal *term, int x, int y)
|
|||
{
|
||||
int csd_border_size = term->conf->csd.border_width;
|
||||
return (
|
||||
(!term->window->is_tiled_top && !term->window->is_tiled_left) &&
|
||||
(!term->window->is_constrained_top && !term->window->is_constrained_left) &&
|
||||
((term->active_surface == TERM_SURF_BORDER_LEFT && y < 10 * term->scale) ||
|
||||
(term->active_surface == TERM_SURF_BORDER_TOP && x < (10 + csd_border_size) * term->scale)));
|
||||
}
|
||||
|
|
@ -2290,7 +2290,7 @@ is_top_right(const struct terminal *term, int x, int y)
|
|||
{
|
||||
int csd_border_size = term->conf->csd.border_width;
|
||||
return (
|
||||
(!term->window->is_tiled_top && !term->window->is_tiled_right) &&
|
||||
(!term->window->is_constrained_top && !term->window->is_constrained_right) &&
|
||||
((term->active_surface == TERM_SURF_BORDER_RIGHT && y < 10 * term->scale) ||
|
||||
(term->active_surface == TERM_SURF_BORDER_TOP && x > term->width + 1 * csd_border_size * term->scale - 10 * term->scale)));
|
||||
}
|
||||
|
|
@ -2301,7 +2301,7 @@ is_bottom_left(const struct terminal *term, int x, int y)
|
|||
int csd_title_size = term->conf->csd.title_height;
|
||||
int csd_border_size = term->conf->csd.border_width;
|
||||
return (
|
||||
(!term->window->is_tiled_bottom && !term->window->is_tiled_left) &&
|
||||
(!term->window->is_constrained_bottom && !term->window->is_constrained_left) &&
|
||||
((term->active_surface == TERM_SURF_BORDER_LEFT && y > csd_title_size * term->scale + term->height) ||
|
||||
(term->active_surface == TERM_SURF_BORDER_BOTTOM && x < (10 + csd_border_size) * term->scale)));
|
||||
}
|
||||
|
|
@ -2312,7 +2312,7 @@ is_bottom_right(const struct terminal *term, int x, int y)
|
|||
int csd_title_size = term->conf->csd.title_height;
|
||||
int csd_border_size = term->conf->csd.border_width;
|
||||
return (
|
||||
(!term->window->is_tiled_bottom && !term->window->is_tiled_right) &&
|
||||
(!term->window->is_constrained_bottom && !term->window->is_constrained_right) &&
|
||||
((term->active_surface == TERM_SURF_BORDER_RIGHT && y > csd_title_size * term->scale + term->height) ||
|
||||
(term->active_surface == TERM_SURF_BORDER_BOTTOM && x > term->width + 1 * csd_border_size * term->scale - 10 * term->scale)));
|
||||
}
|
||||
|
|
@ -2324,10 +2324,23 @@ xcursor_for_csd_border(struct terminal *term, int x, int y)
|
|||
else if (is_top_right(term, x, y)) return CURSOR_SHAPE_TOP_RIGHT_CORNER;
|
||||
else if (is_bottom_left(term, x, y)) return CURSOR_SHAPE_BOTTOM_LEFT_CORNER;
|
||||
else if (is_bottom_right(term, x, y)) return CURSOR_SHAPE_BOTTOM_RIGHT_CORNER;
|
||||
else if (term->active_surface == TERM_SURF_BORDER_LEFT) return CURSOR_SHAPE_LEFT_SIDE;
|
||||
else if (term->active_surface == TERM_SURF_BORDER_RIGHT) return CURSOR_SHAPE_RIGHT_SIDE;
|
||||
else if (term->active_surface == TERM_SURF_BORDER_TOP) return CURSOR_SHAPE_TOP_SIDE;
|
||||
else if (term->active_surface == TERM_SURF_BORDER_BOTTOM) return CURSOR_SHAPE_BOTTOM_SIDE;
|
||||
|
||||
else if (term->active_surface == TERM_SURF_BORDER_LEFT)
|
||||
return !term->window->is_constrained_left
|
||||
? CURSOR_SHAPE_LEFT_SIDE : CURSOR_SHAPE_LEFT_PTR;
|
||||
|
||||
else if (term->active_surface == TERM_SURF_BORDER_RIGHT)
|
||||
return !term->window->is_constrained_right
|
||||
? CURSOR_SHAPE_RIGHT_SIDE : CURSOR_SHAPE_LEFT_PTR;
|
||||
|
||||
else if (term->active_surface == TERM_SURF_BORDER_TOP)
|
||||
return !term->window->is_constrained_top
|
||||
? CURSOR_SHAPE_TOP_SIDE : CURSOR_SHAPE_LEFT_PTR;
|
||||
|
||||
else if (term->active_surface == TERM_SURF_BORDER_BOTTOM)
|
||||
return !term->window->is_constrained_bottom
|
||||
? CURSOR_SHAPE_BOTTOM_SIDE : CURSOR_SHAPE_LEFT_PTR;
|
||||
|
||||
else {
|
||||
BUG("Unreachable");
|
||||
return CURSOR_SHAPE_NONE;
|
||||
|
|
@ -3095,15 +3108,8 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer,
|
|||
case TERM_SURF_BORDER_RIGHT:
|
||||
case TERM_SURF_BORDER_TOP:
|
||||
case TERM_SURF_BORDER_BOTTOM: {
|
||||
static const enum xdg_toplevel_resize_edge map[] = {
|
||||
[TERM_SURF_BORDER_LEFT] = XDG_TOPLEVEL_RESIZE_EDGE_LEFT,
|
||||
[TERM_SURF_BORDER_RIGHT] = XDG_TOPLEVEL_RESIZE_EDGE_RIGHT,
|
||||
[TERM_SURF_BORDER_TOP] = XDG_TOPLEVEL_RESIZE_EDGE_TOP,
|
||||
[TERM_SURF_BORDER_BOTTOM] = XDG_TOPLEVEL_RESIZE_EDGE_BOTTOM,
|
||||
};
|
||||
|
||||
if (button == BTN_LEFT && state == WL_POINTER_BUTTON_STATE_PRESSED) {
|
||||
enum xdg_toplevel_resize_edge resize_type;
|
||||
enum xdg_toplevel_resize_edge resize_type = XDG_TOPLEVEL_RESIZE_EDGE_NONE;
|
||||
|
||||
int x = seat->mouse.x;
|
||||
int y = seat->mouse.y;
|
||||
|
|
@ -3116,11 +3122,36 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer,
|
|||
resize_type = XDG_TOPLEVEL_RESIZE_EDGE_BOTTOM_LEFT;
|
||||
else if (is_bottom_right(term, x, y))
|
||||
resize_type = XDG_TOPLEVEL_RESIZE_EDGE_BOTTOM_RIGHT;
|
||||
else
|
||||
resize_type = map[term->active_surface];
|
||||
else {
|
||||
if (term->active_surface == TERM_SURF_BORDER_LEFT &&
|
||||
!term->window->is_constrained_left)
|
||||
{
|
||||
resize_type = XDG_TOPLEVEL_RESIZE_EDGE_LEFT;
|
||||
}
|
||||
|
||||
xdg_toplevel_resize(
|
||||
term->window->xdg_toplevel, seat->wl_seat, serial, resize_type);
|
||||
else if (term->active_surface == TERM_SURF_BORDER_RIGHT &&
|
||||
!term->window->is_constrained_right)
|
||||
{
|
||||
resize_type = XDG_TOPLEVEL_RESIZE_EDGE_RIGHT;
|
||||
}
|
||||
|
||||
else if (term->active_surface == TERM_SURF_BORDER_TOP &&
|
||||
!term->window->is_constrained_top)
|
||||
{
|
||||
resize_type = XDG_TOPLEVEL_RESIZE_EDGE_TOP;
|
||||
}
|
||||
|
||||
else if (term->active_surface == TERM_SURF_BORDER_BOTTOM &&
|
||||
!term->window->is_constrained_bottom)
|
||||
{
|
||||
resize_type = XDG_TOPLEVEL_RESIZE_EDGE_BOTTOM;
|
||||
}
|
||||
}
|
||||
|
||||
if (resize_type != XDG_TOPLEVEL_RESIZE_EDGE_NONE) {
|
||||
xdg_toplevel_resize(
|
||||
term->window->xdg_toplevel, seat->wl_seat, serial, resize_type);
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue