mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
wayland: Move window geometry calculation to helper
We'll use it from more places later. https://bugzilla.gnome.org/show_bug.cgi?id=769937
This commit is contained in:
parent
d2a80cd235
commit
643f033923
@ -1055,21 +1055,35 @@ gdk_wayland_window_sync_title (GdkWindow *window)
|
||||
xdg_surface_set_title (impl->display_server.xdg_surface, impl->title);
|
||||
}
|
||||
|
||||
static void
|
||||
gdk_wayland_window_get_window_geometry (GdkWindow *window,
|
||||
GdkRectangle *geometry)
|
||||
{
|
||||
GdkWindowImplWayland *impl = GDK_WINDOW_IMPL_WAYLAND (window->impl);
|
||||
|
||||
*geometry = (GdkRectangle) {
|
||||
.x = impl->margin_left,
|
||||
.y = impl->margin_top,
|
||||
.width = window->width - (impl->margin_left + impl->margin_right),
|
||||
.height = window->height - (impl->margin_top + impl->margin_bottom)
|
||||
};
|
||||
}
|
||||
|
||||
static void
|
||||
gdk_wayland_window_sync_margin (GdkWindow *window)
|
||||
{
|
||||
GdkWindowImplWayland *impl = GDK_WINDOW_IMPL_WAYLAND (window->impl);
|
||||
gint x, y, width, height;
|
||||
GdkRectangle geometry;
|
||||
|
||||
if (!impl->display_server.xdg_surface)
|
||||
return;
|
||||
|
||||
x = impl->margin_left;
|
||||
y = impl->margin_top;
|
||||
width = window->width - (impl->margin_left + impl->margin_right);
|
||||
height = window->height - (impl->margin_top + impl->margin_bottom);
|
||||
|
||||
xdg_surface_set_window_geometry (impl->display_server.xdg_surface, x, y, width, height);
|
||||
gdk_wayland_window_get_window_geometry (window, &geometry);
|
||||
xdg_surface_set_window_geometry (impl->display_server.xdg_surface,
|
||||
geometry.x,
|
||||
geometry.y,
|
||||
geometry.width,
|
||||
geometry.height);
|
||||
}
|
||||
|
||||
static struct wl_region *
|
||||
|
Loading…
Reference in New Issue
Block a user