mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
Better UX when moving/resizing/rotating maximized views
This commit is contained in:
parent
03d3fdc158
commit
4df8be1a8f
1 changed files with 26 additions and 14 deletions
|
@ -39,13 +39,18 @@ static void cursor_set_xcursor_image(struct roots_input *input,
|
|||
|
||||
void view_begin_move(struct roots_input *input, struct wlr_cursor *cursor,
|
||||
struct roots_view *view) {
|
||||
view_maximize(view, false);
|
||||
|
||||
input->mode = ROOTS_CURSOR_MOVE;
|
||||
input->offs_x = cursor->x;
|
||||
input->offs_y = cursor->y;
|
||||
if (view->maximized) {
|
||||
input->view_x = view->saved.x;
|
||||
input->view_y = view->saved.y;
|
||||
} else {
|
||||
input->view_x = view->x;
|
||||
input->view_y = view->y;
|
||||
}
|
||||
|
||||
view_maximize(view, false);
|
||||
wlr_seat_pointer_clear_focus(input->wl_seat);
|
||||
|
||||
struct wlr_xcursor *xcursor = get_move_xcursor(input->xcursor_theme);
|
||||
|
@ -56,18 +61,25 @@ void view_begin_move(struct roots_input *input, struct wlr_cursor *cursor,
|
|||
|
||||
void view_begin_resize(struct roots_input *input, struct wlr_cursor *cursor,
|
||||
struct roots_view *view, uint32_t edges) {
|
||||
view_maximize(view, false);
|
||||
|
||||
input->mode = ROOTS_CURSOR_RESIZE;
|
||||
input->offs_x = cursor->x;
|
||||
input->offs_y = cursor->y;
|
||||
if (view->maximized) {
|
||||
input->view_x = view->saved.x;
|
||||
input->view_y = view->saved.y;
|
||||
input->view_width = view->saved.width;
|
||||
input->view_height = view->saved.height;
|
||||
} else {
|
||||
input->view_x = view->x;
|
||||
input->view_y = view->y;
|
||||
struct wlr_box size;
|
||||
view_get_size(view, &size);
|
||||
input->view_width = size.width;
|
||||
input->view_height = size.height;
|
||||
}
|
||||
input->resize_edges = edges;
|
||||
|
||||
view_maximize(view, false);
|
||||
wlr_seat_pointer_clear_focus(input->wl_seat);
|
||||
|
||||
struct wlr_xcursor *xcursor = get_resize_xcursor(input->xcursor_theme, edges);
|
||||
|
@ -78,12 +90,12 @@ void view_begin_resize(struct roots_input *input, struct wlr_cursor *cursor,
|
|||
|
||||
void view_begin_rotate(struct roots_input *input, struct wlr_cursor *cursor,
|
||||
struct roots_view *view) {
|
||||
view_maximize(view, false);
|
||||
|
||||
input->mode = ROOTS_CURSOR_ROTATE;
|
||||
input->offs_x = cursor->x;
|
||||
input->offs_y = cursor->y;
|
||||
input->view_rotation = view->rotation;
|
||||
|
||||
view_maximize(view, false);
|
||||
wlr_seat_pointer_clear_focus(input->wl_seat);
|
||||
|
||||
struct wlr_xcursor *xcursor = get_rotate_xcursor(input->xcursor_theme);
|
||||
|
|
Loading…
Reference in a new issue