a772c709aa
Only expose the method to get the associated MetaWindow. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3340>
163 lines
5.6 KiB
C
163 lines
5.6 KiB
C
/*
|
|
* Wayland Support
|
|
*
|
|
* Copyright (C) 2022 Robert Mader <robert.mader@posteo.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "meta-wayland-fractional-scale.h"
|
|
|
|
#include <glib.h>
|
|
|
|
#include "wayland/meta-wayland-outputs.h"
|
|
#include "wayland/meta-wayland-private.h"
|
|
#include "wayland/meta-wayland-surface-private.h"
|
|
#include "wayland/meta-wayland-versions.h"
|
|
|
|
#include "fractional-scale-v1-server-protocol.h"
|
|
|
|
static void
|
|
wp_fractional_scale_destructor (struct wl_resource *resource)
|
|
{
|
|
MetaWaylandSurface *surface;
|
|
|
|
surface = wl_resource_get_user_data (resource);
|
|
if (!surface)
|
|
return;
|
|
|
|
g_clear_signal_handler (&surface->fractional_scale.destroy_handler_id,
|
|
surface);
|
|
surface->fractional_scale.resource = NULL;
|
|
}
|
|
|
|
static void
|
|
on_surface_destroyed (MetaWaylandSurface *surface)
|
|
{
|
|
wl_resource_set_user_data (surface->fractional_scale.resource, NULL);
|
|
}
|
|
|
|
static void
|
|
wp_fractional_scale_destroy (struct wl_client *client,
|
|
struct wl_resource *resource)
|
|
{
|
|
wl_resource_destroy (resource);
|
|
}
|
|
|
|
static const struct wp_fractional_scale_v1_interface meta_wayland_fractional_scale_interface = {
|
|
wp_fractional_scale_destroy,
|
|
};
|
|
|
|
static void
|
|
wp_fractional_scale_manager_destroy (struct wl_client *client,
|
|
struct wl_resource *resource)
|
|
{
|
|
wl_resource_destroy (resource);
|
|
}
|
|
|
|
static void
|
|
wp_fractional_scale_manager_get_fractional_scale (struct wl_client *client,
|
|
struct wl_resource *resource,
|
|
uint32_t fractional_scale_id,
|
|
struct wl_resource *surface_resource)
|
|
{
|
|
MetaWaylandSurface *surface;
|
|
struct wl_resource *fractional_scale_resource;
|
|
double scale;
|
|
|
|
surface = wl_resource_get_user_data (surface_resource);
|
|
if (surface->fractional_scale.resource)
|
|
{
|
|
wl_resource_post_error (resource,
|
|
WP_FRACTIONAL_SCALE_MANAGER_V1_ERROR_FRACTIONAL_SCALE_EXISTS,
|
|
"fractional scale resource already exists on surface");
|
|
return;
|
|
}
|
|
|
|
fractional_scale_resource = wl_resource_create (client,
|
|
&wp_fractional_scale_v1_interface,
|
|
wl_resource_get_version (resource),
|
|
fractional_scale_id);
|
|
wl_resource_set_implementation (fractional_scale_resource,
|
|
&meta_wayland_fractional_scale_interface,
|
|
surface,
|
|
wp_fractional_scale_destructor);
|
|
|
|
surface->fractional_scale.resource = fractional_scale_resource;
|
|
surface->fractional_scale.destroy_handler_id =
|
|
g_signal_connect (surface,
|
|
"destroy",
|
|
G_CALLBACK (on_surface_destroyed),
|
|
NULL);
|
|
|
|
scale = meta_wayland_surface_get_highest_output_scale (surface);
|
|
meta_wayland_fractional_scale_maybe_send_preferred_scale (surface, scale);
|
|
}
|
|
|
|
static const struct wp_fractional_scale_manager_v1_interface meta_wayland_fractional_scale_manager_interface = {
|
|
wp_fractional_scale_manager_destroy,
|
|
wp_fractional_scale_manager_get_fractional_scale,
|
|
};
|
|
|
|
static void
|
|
wp_fractional_scale_bind (struct wl_client *client,
|
|
void *data,
|
|
uint32_t version,
|
|
uint32_t id)
|
|
{
|
|
struct wl_resource *resource;
|
|
|
|
resource = wl_resource_create (client,
|
|
&wp_fractional_scale_manager_v1_interface,
|
|
version,
|
|
id);
|
|
wl_resource_set_implementation (resource,
|
|
&meta_wayland_fractional_scale_manager_interface,
|
|
data,
|
|
NULL);
|
|
}
|
|
|
|
void
|
|
meta_wayland_init_fractional_scale (MetaWaylandCompositor *compositor)
|
|
{
|
|
if (wl_global_create (compositor->wayland_display,
|
|
&wp_fractional_scale_manager_v1_interface,
|
|
META_WP_FRACTIONAL_SCALE_VERSION,
|
|
compositor,
|
|
wp_fractional_scale_bind) == NULL)
|
|
g_error ("Failed to register a global wp_fractional_scale object");
|
|
}
|
|
|
|
void
|
|
meta_wayland_fractional_scale_maybe_send_preferred_scale (MetaWaylandSurface *surface,
|
|
double scale)
|
|
{
|
|
uint32_t wire_scale;
|
|
|
|
if (!surface->fractional_scale.resource)
|
|
return;
|
|
|
|
if (G_APPROX_VALUE (scale, 0.0, FLT_EPSILON) ||
|
|
G_APPROX_VALUE (scale, surface->fractional_scale.scale, FLT_EPSILON))
|
|
return;
|
|
|
|
wire_scale = round (scale * 120);
|
|
wp_fractional_scale_v1_send_preferred_scale (surface->fractional_scale.resource,
|
|
wire_scale);
|
|
surface->fractional_scale.scale = scale;
|
|
}
|