x11: Add gdk_x11_display_set_window_scale

This lets you force a specific window scale, this is needed
for mutter to be able to disable the scaling as it needs access
to unmangled X window/screen sizes. It can also be useful to
force a specific scale in e.g. tests.
This commit is contained in:
Alexander Larsson 2013-08-20 11:15:08 +02:00
parent 66f1deef40
commit 78dae73a30
2 changed files with 41 additions and 0 deletions

View File

@ -2673,6 +2673,43 @@ gdk_x11_display_error_trap_pop_internal (GdkDisplay *display,
return result;
}
/**
* gdk_x11_display_set_window_scale:
* @display: (type GdkX11Display): the display
* @scale: The new scale value
*
* Forces a specific window scale for all windows on this display,
* instead of using the default or user configured scale. This
* is can be used to disable scaling support by setting @scale to
* 1, or to programmatically set the window scale.
*
* Once the scale is set by this call it will not change in response
* to later user configuration changes.
*
* Since: 3.10
*/
void
gdk_x11_display_set_window_scale (GdkDisplay *display,
gint scale)
{
GdkX11Screen *x11_screen;
g_return_if_fail (GDK_IS_X11_DISPLAY (display));
scale = MAX (scale, 1);
#ifndef HAVE_CAIRO_SURFACE_SET_DEVICE_SCALE
/* Without cairo support we can't support any scale but 1 */
scale = 1;
#endif
x11_screen = GDK_X11_SCREEN (GDK_X11_DISPLAY (display)->screen);
x11_screen->fixed_window_scale = TRUE;
_gdk_x11_screen_set_window_scale (x11_screen, scale);
}
/**
* gdk_x11_display_error_trap_pop:
* @display: (type GdkX11Display): the display

View File

@ -85,6 +85,10 @@ void gdk_x11_display_grab (GdkDisplay *display);
GDK_AVAILABLE_IN_ALL
void gdk_x11_display_ungrab (GdkDisplay *display);
GDK_AVAILABLE_IN_3_10
void gdk_x11_display_set_window_scale (GdkDisplay *display,
gint scale);
GDK_AVAILABLE_IN_ALL
void gdk_x11_display_error_trap_push (GdkDisplay *display);
/* warn unused because you could use pop_ignored otherwise */