mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Center xdg shell views
This commit is contained in:
parent
543601e86c
commit
d09d01236b
3 changed files with 41 additions and 2 deletions
|
|
@ -83,6 +83,26 @@ void view_close(struct roots_view *view) {
|
|||
}
|
||||
}
|
||||
|
||||
bool view_center(struct roots_view *view) {
|
||||
struct wlr_box size;
|
||||
view_get_size(view, &size);
|
||||
if (size.width == 0 && size.height == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
struct roots_desktop *desktop = view->desktop;
|
||||
struct wlr_cursor *cursor = desktop->server->input->cursor;
|
||||
struct wlr_output *output = wlr_output_layout_output_at(desktop->layout,
|
||||
cursor->x, cursor->y);
|
||||
if (!output) {
|
||||
return false;
|
||||
}
|
||||
|
||||
view->x = (double)(output->width - size.width) / 2;
|
||||
view->y = (double)(output->height - size.height) / 2;
|
||||
return true;
|
||||
}
|
||||
|
||||
static struct wlr_subsurface *subsurface_at(struct wlr_surface *surface,
|
||||
double sx, double sy, double *sub_x, double *sub_y) {
|
||||
struct wlr_subsurface *subsurface;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue