mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-03-24 03:10:38 +01:00
So far we have had two ways of identifying a weston_surface: by its memory address "%p", and by its get_label function. The memory address is not human-friendly and can get recycled. get_label() is not unique, and in some cases it is client-controllable. Oh, we also have the protocol object ID, but that does not exist for internally created weston_surfaces. We also have weston_surface::s_id, damage_track_id and flow_id. These are used by some Perfetto instrumentation. s_id comes from a compositor-wide counter rather than per-client counter, the others are probably not what I'm looking for. None of these are really nice for trace and debug prints for identifying surfaces for human reading. Therefore, let's add one more ID, and with it, a nice name for each surface. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
308 lines
8.2 KiB
C
308 lines
8.2 KiB
C
/*
|
|
* Copyright 2010-2012 Intel Corporation
|
|
* Copyright 2013 Raspberry Pi Foundation
|
|
* Copyright 2011-2012,2021 Collabora, Ltd.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <libweston/shell-utils.h>
|
|
#include <libweston/desktop.h>
|
|
#include "shared/helpers.h"
|
|
|
|
/**
|
|
* \defgroup shell-utils Shell utils
|
|
*
|
|
* These are some commonly used functions in our shells, useful for other shells
|
|
* as well.
|
|
*/
|
|
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT struct weston_output *
|
|
weston_shell_utils_get_default_output(struct weston_compositor *compositor)
|
|
{
|
|
if (wl_list_empty(&compositor->output_list))
|
|
return NULL;
|
|
|
|
return container_of(compositor->output_list.next,
|
|
struct weston_output, link);
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT struct weston_output *
|
|
weston_shell_utils_get_focused_output(struct weston_compositor *compositor)
|
|
{
|
|
struct weston_seat *seat;
|
|
struct weston_output *output = NULL;
|
|
|
|
wl_list_for_each(seat, &compositor->seat_list, link) {
|
|
struct weston_touch *touch = weston_seat_get_touch(seat);
|
|
struct weston_pointer *pointer = weston_seat_get_pointer(seat);
|
|
struct weston_keyboard *keyboard =
|
|
weston_seat_get_keyboard(seat);
|
|
|
|
/* Priority has touch focus, then pointer and
|
|
* then keyboard focus. We should probably have
|
|
* three for loops and check first for touch,
|
|
* then for pointer, etc. but unless somebody has some
|
|
* objections, I think this is sufficient. */
|
|
if (touch && touch->focus)
|
|
output = touch->focus->output;
|
|
else if (pointer && pointer->focus)
|
|
output = pointer->focus->output;
|
|
else if (keyboard && keyboard->focus)
|
|
output = keyboard->focus->output;
|
|
|
|
if (output)
|
|
break;
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*
|
|
* TODO: Fix this function to take into account nested subsurfaces.
|
|
*/
|
|
WL_EXPORT void
|
|
weston_shell_utils_subsurfaces_boundingbox(struct weston_surface *surface,
|
|
int32_t *x, int32_t *y,
|
|
int32_t *w, int32_t *h)
|
|
{
|
|
pixman_region32_t region;
|
|
pixman_box32_t *box;
|
|
struct weston_subsurface *subsurface;
|
|
|
|
pixman_region32_init_rect(®ion, 0, 0,
|
|
surface->width,
|
|
surface->height);
|
|
|
|
wl_list_for_each(subsurface, &surface->subsurface_list, parent_link) {
|
|
pixman_region32_union_rect(®ion, ®ion,
|
|
subsurface->position.offset.c.x,
|
|
subsurface->position.offset.c.y,
|
|
subsurface->surface->width,
|
|
subsurface->surface->height);
|
|
}
|
|
|
|
box = pixman_region32_extents(®ion);
|
|
if (x)
|
|
*x = box->x1;
|
|
if (y)
|
|
*y = box->y1;
|
|
if (w)
|
|
*w = box->x2 - box->x1;
|
|
if (h)
|
|
*h = box->y2 - box->y1;
|
|
|
|
pixman_region32_fini(®ion);
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT void
|
|
weston_shell_utils_center_on_output(struct weston_view *view,
|
|
struct weston_output *output)
|
|
{
|
|
int32_t surf_x, surf_y, width, height;
|
|
struct weston_coord_global pos;
|
|
|
|
if (!output) {
|
|
pos.c = weston_coord(0, 0);
|
|
weston_view_set_position(view, pos);
|
|
return;
|
|
}
|
|
|
|
weston_shell_utils_subsurfaces_boundingbox(view->surface, &surf_x,
|
|
&surf_y, &width, &height);
|
|
|
|
pos = output->pos;
|
|
pos.c.x += (output->width - width) / 2 - surf_x / 2;
|
|
pos.c.y += (output->height - height) / 2 - surf_y / 2;
|
|
|
|
weston_view_set_position(view, pos);
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT int
|
|
weston_shell_utils_surface_get_label(struct weston_surface *surface,
|
|
char *buf, size_t len)
|
|
{
|
|
const char *t, *c;
|
|
struct weston_desktop_surface *desktop_surface =
|
|
weston_surface_get_desktop_surface(surface);
|
|
|
|
t = weston_desktop_surface_get_title(desktop_surface);
|
|
c = weston_desktop_surface_get_app_id(desktop_surface);
|
|
|
|
return snprintf(buf, len, "%s window%s%s%s%s%s",
|
|
"top-level",
|
|
t ? " '" : "", t ?: "", t ? "'" : "",
|
|
c ? " of " : "", c ?: "");
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT struct weston_curtain *
|
|
weston_shell_utils_curtain_create(struct weston_compositor *compositor,
|
|
struct weston_curtain_params *params)
|
|
{
|
|
struct weston_curtain *curtain;
|
|
struct weston_surface *surface = NULL;
|
|
struct weston_buffer_reference *buffer_ref;
|
|
struct weston_view *view;
|
|
|
|
curtain = zalloc(sizeof(*curtain));
|
|
if (curtain == NULL)
|
|
goto err;
|
|
|
|
surface = weston_surface_create(compositor, NULL);
|
|
if (surface == NULL)
|
|
goto err_curtain;
|
|
|
|
view = weston_view_create(surface);
|
|
if (view == NULL)
|
|
goto err_surface;
|
|
|
|
buffer_ref = weston_buffer_create_solid_rgba(compositor,
|
|
params->r,
|
|
params->g,
|
|
params->b,
|
|
params->a);
|
|
if (buffer_ref == NULL)
|
|
goto err_view;
|
|
|
|
curtain->view = view;
|
|
curtain->buffer_ref = buffer_ref;
|
|
|
|
/* the get_label callback might depend on committed_private, so set
|
|
* committed_private before setting the label_func so the callback is
|
|
* always safe. */
|
|
surface->committed = params->surface_committed;
|
|
surface->committed_private = params->surface_private;
|
|
|
|
weston_surface_set_label_func(surface, params->get_label);
|
|
weston_surface_attach_solid(surface, buffer_ref, params->width,
|
|
params->height);
|
|
|
|
pixman_region32_fini(&surface->input);
|
|
if (params->capture_input) {
|
|
pixman_region32_init_rect(&surface->input, 0, 0,
|
|
params->width, params->height);
|
|
} else {
|
|
pixman_region32_init(&surface->input);
|
|
}
|
|
|
|
weston_surface_map(surface);
|
|
|
|
weston_view_set_position(view, params->pos);
|
|
|
|
return curtain;
|
|
|
|
err_view:
|
|
weston_view_destroy(view);
|
|
err_surface:
|
|
weston_surface_unref(surface);
|
|
err_curtain:
|
|
free(curtain);
|
|
err:
|
|
weston_log("no memory\n");
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT void
|
|
weston_shell_utils_curtain_destroy(struct weston_curtain *curtain)
|
|
{
|
|
struct weston_surface *surface = curtain->view->surface;
|
|
|
|
weston_view_destroy(curtain->view);
|
|
weston_surface_unref(surface);
|
|
weston_buffer_destroy_solid(curtain->buffer_ref);
|
|
free(curtain);
|
|
}
|
|
|
|
/**
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT enum weston_layer_position
|
|
weston_shell_utils_view_get_layer_position(struct weston_view *view)
|
|
{
|
|
if (!weston_view_is_mapped(view))
|
|
return WESTON_LAYER_POSITION_NONE;
|
|
|
|
return view->layer_link.layer->position;
|
|
}
|
|
|
|
/** Assign shell private data to an output
|
|
*
|
|
* Shells will have their own private structures for output management.
|
|
* Some callbacks will provide a weston_output to the shell, and the
|
|
* shell will need to map that to its internal abstraction. Allow the
|
|
* shell to assign private data to an output to make this mapping easier.
|
|
*
|
|
* This can only be done once for an output.
|
|
*
|
|
* \param output The output to assign private data to
|
|
* \param private_data The shell private data
|
|
*
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT void
|
|
weston_output_set_shell_private(struct weston_output *output,
|
|
void *private_data)
|
|
{
|
|
assert(!output->shell_private);
|
|
|
|
output->shell_private = private_data;
|
|
}
|
|
|
|
/** Get private data for an output
|
|
*
|
|
* Allows the shell to retreive the private data it set for an output.
|
|
* The shell must have set private data previously, or an assert() is
|
|
* generated.
|
|
*
|
|
* \param output The output to get private data for
|
|
* \return The private data
|
|
*
|
|
* \ingroup shell-utils
|
|
*/
|
|
WL_EXPORT void *
|
|
weston_output_get_shell_private(struct weston_output *output)
|
|
{
|
|
assert(output->shell_private);
|
|
|
|
return output->shell_private;
|
|
}
|