mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
Merge pull request #408 from emersion/fix-xdg-no-geometry
Fix resize issues with some xdg-shell apps.
This commit is contained in:
commit
78ed7f3c89
4 changed files with 22 additions and 16 deletions
|
@ -94,7 +94,7 @@ struct roots_view {
|
||||||
void (*close)(struct roots_view *view);
|
void (*close)(struct roots_view *view);
|
||||||
};
|
};
|
||||||
|
|
||||||
void view_get_size(const struct roots_view *view, struct wlr_box *box);
|
void view_get_box(const struct roots_view *view, struct wlr_box *box);
|
||||||
void view_activate(struct roots_view *view, bool active);
|
void view_activate(struct roots_view *view, bool active);
|
||||||
void view_move(struct roots_view *view, double x, double y);
|
void view_move(struct roots_view *view, double x, double y);
|
||||||
void view_resize(struct roots_view *view, uint32_t width, uint32_t height);
|
void view_resize(struct roots_view *view, uint32_t width, uint32_t height);
|
||||||
|
|
|
@ -72,10 +72,10 @@ void view_begin_resize(struct roots_input *input, struct wlr_cursor *cursor,
|
||||||
} else {
|
} else {
|
||||||
input->view_x = view->x;
|
input->view_x = view->x;
|
||||||
input->view_y = view->y;
|
input->view_y = view->y;
|
||||||
struct wlr_box size;
|
struct wlr_box box;
|
||||||
view_get_size(view, &size);
|
view_get_box(view, &box);
|
||||||
input->view_width = size.width;
|
input->view_width = box.width;
|
||||||
input->view_height = size.height;
|
input->view_height = box.height;
|
||||||
}
|
}
|
||||||
input->resize_edges = edges;
|
input->resize_edges = edges;
|
||||||
|
|
||||||
|
|
|
@ -35,15 +35,15 @@ void view_destroy(struct roots_view *view) {
|
||||||
free(view);
|
free(view);
|
||||||
}
|
}
|
||||||
|
|
||||||
void view_get_size(const struct roots_view *view, struct wlr_box *box) {
|
void view_get_box(const struct roots_view *view, struct wlr_box *box) {
|
||||||
|
box->x = view->x;
|
||||||
|
box->y = view->y;
|
||||||
if (view->get_size) {
|
if (view->get_size) {
|
||||||
view->get_size(view, box);
|
view->get_size(view, box);
|
||||||
} else {
|
} else {
|
||||||
box->width = view->wlr_surface->current->width;
|
box->width = view->wlr_surface->current->width;
|
||||||
box->height = view->wlr_surface->current->height;
|
box->height = view->wlr_surface->current->height;
|
||||||
}
|
}
|
||||||
box->x = view->x;
|
|
||||||
box->y = view->y;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void view_update_output(const struct roots_view *view,
|
static void view_update_output(const struct roots_view *view,
|
||||||
|
@ -51,7 +51,7 @@ static void view_update_output(const struct roots_view *view,
|
||||||
struct roots_desktop *desktop = view->desktop;
|
struct roots_desktop *desktop = view->desktop;
|
||||||
struct roots_output *output;
|
struct roots_output *output;
|
||||||
struct wlr_box box;
|
struct wlr_box box;
|
||||||
view_get_size(view, &box);
|
view_get_box(view, &box);
|
||||||
wl_list_for_each(output, &desktop->outputs, link) {
|
wl_list_for_each(output, &desktop->outputs, link) {
|
||||||
bool intersected = before->x != -1 && wlr_output_layout_intersects(
|
bool intersected = before->x != -1 && wlr_output_layout_intersects(
|
||||||
desktop->layout, output->wlr_output,
|
desktop->layout, output->wlr_output,
|
||||||
|
@ -71,7 +71,7 @@ static void view_update_output(const struct roots_view *view,
|
||||||
|
|
||||||
void view_move(struct roots_view *view, double x, double y) {
|
void view_move(struct roots_view *view, double x, double y) {
|
||||||
struct wlr_box before;
|
struct wlr_box before;
|
||||||
view_get_size(view, &before);
|
view_get_box(view, &before);
|
||||||
if (view->move) {
|
if (view->move) {
|
||||||
view->move(view, x, y);
|
view->move(view, x, y);
|
||||||
} else {
|
} else {
|
||||||
|
@ -88,7 +88,7 @@ void view_activate(struct roots_view *view, bool activate) {
|
||||||
|
|
||||||
void view_resize(struct roots_view *view, uint32_t width, uint32_t height) {
|
void view_resize(struct roots_view *view, uint32_t width, uint32_t height) {
|
||||||
struct wlr_box before;
|
struct wlr_box before;
|
||||||
view_get_size(view, &before);
|
view_get_box(view, &before);
|
||||||
if (view->resize) {
|
if (view->resize) {
|
||||||
view->resize(view, width, height);
|
view->resize(view, width, height);
|
||||||
}
|
}
|
||||||
|
@ -117,7 +117,7 @@ void view_maximize(struct roots_view *view, bool maximized) {
|
||||||
|
|
||||||
if (!view->maximized && maximized) {
|
if (!view->maximized && maximized) {
|
||||||
struct wlr_box view_box;
|
struct wlr_box view_box;
|
||||||
view_get_size(view, &view_box);
|
view_get_box(view, &view_box);
|
||||||
|
|
||||||
view->maximized = true;
|
view->maximized = true;
|
||||||
view->saved.x = view->x;
|
view->saved.x = view->x;
|
||||||
|
@ -158,7 +158,7 @@ void view_close(struct roots_view *view) {
|
||||||
|
|
||||||
bool view_center(struct roots_view *view) {
|
bool view_center(struct roots_view *view) {
|
||||||
struct wlr_box box;
|
struct wlr_box box;
|
||||||
view_get_size(view, &box);
|
view_get_box(view, &box);
|
||||||
|
|
||||||
struct roots_desktop *desktop = view->desktop;
|
struct roots_desktop *desktop = view->desktop;
|
||||||
struct wlr_cursor *cursor = desktop->server->input->cursor;
|
struct wlr_cursor *cursor = desktop->server->input->cursor;
|
||||||
|
@ -193,7 +193,7 @@ void view_setup(struct roots_view *view) {
|
||||||
view_center(view);
|
view_center(view);
|
||||||
set_view_focus(input, view->desktop, view);
|
set_view_focus(input, view->desktop, view);
|
||||||
struct wlr_box before;
|
struct wlr_box before;
|
||||||
view_get_size(view, &before);
|
view_get_box(view, &before);
|
||||||
view_update_output(view, &before);
|
view_update_output(view, &before);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,14 @@
|
||||||
static void get_size(const struct roots_view *view, struct wlr_box *box) {
|
static void get_size(const struct roots_view *view, struct wlr_box *box) {
|
||||||
assert(view->type == ROOTS_XDG_SHELL_V6_VIEW);
|
assert(view->type == ROOTS_XDG_SHELL_V6_VIEW);
|
||||||
struct wlr_xdg_surface_v6 *surf = view->xdg_surface_v6;
|
struct wlr_xdg_surface_v6 *surf = view->xdg_surface_v6;
|
||||||
// TODO: surf->geometry can be NULL
|
|
||||||
memcpy(box, surf->geometry, sizeof(struct wlr_box));
|
if (surf->geometry->width > 0 && surf->geometry->height > 0) {
|
||||||
|
box->width = surf->geometry->width;
|
||||||
|
box->height = surf->geometry->height;
|
||||||
|
} else {
|
||||||
|
box->width = view->wlr_surface->current->width;
|
||||||
|
box->height = view->wlr_surface->current->height;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void activate(struct roots_view *view, bool active) {
|
static void activate(struct roots_view *view, bool active) {
|
||||||
|
|
Loading…
Reference in a new issue