labwc/src/xdg-popup.c
Consolatis 6400b5203e [proof-of-concept] allow toplevel capture
Missing:
- xwayland child windows
- xwayland unmanaged windows, e.g. popups / menus / ...
- xdg child window positioning
- xdg subsurfaces (test-case: mate-terminal settings listboxes)
- xdg popup positioning
2025-10-19 05:47:20 +02:00

171 lines
5.1 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2020 the sway authors
*
* This file is only needed in support of
* - unconstraining XDG popups
* - keeping non-layer-shell xdg-popups outside the layers.c code
*/
#include <wlr/types/wlr_scene.h>
#include <wlr/types/wlr_xdg_shell.h>
#include "common/macros.h"
#include "common/mem.h"
#include "labwc.h"
#include "node.h"
#include "output.h"
#include "view.h"
struct xdg_popup {
struct view *parent_view;
struct wlr_xdg_popup *wlr_popup;
struct wl_listener commit;
struct wl_listener destroy;
struct wl_listener new_popup;
struct wl_listener reposition;
};
static void
popup_unconstrain(struct xdg_popup *popup)
{
struct view *view = popup->parent_view;
struct server *server = view->server;
/* Get position of parent toplevel/popup */
int parent_lx, parent_ly;
struct wlr_scene_tree *parent_tree = popup->wlr_popup->parent->data;
wlr_scene_node_coords(&parent_tree->node, &parent_lx, &parent_ly);
/*
* Get usable area to constrain by
*
* The scheduled top-left corner (x, y) of the popup is sometimes less
* than zero, typically with Qt apps. We therefore clamp it to avoid for
* example the 'File' menu of a maximized window to end up on an another
* output.
*/
struct wlr_box *popup_box = &popup->wlr_popup->scheduled.geometry;
struct output *output = output_nearest_to(server,
parent_lx + MAX(popup_box->x, 0),
parent_ly + MAX(popup_box->y, 0));
struct wlr_box usable = output_usable_area_in_layout_coords(output);
/* Get offset of toplevel window from its surface */
int toplevel_dx = 0;
int toplevel_dy = 0;
struct wlr_xdg_surface *toplevel_surface = xdg_surface_from_view(view);
if (toplevel_surface) {
toplevel_dx = toplevel_surface->current.geometry.x;
toplevel_dy = toplevel_surface->current.geometry.y;
} else {
wlr_log(WLR_ERROR, "toplevel is not valid XDG surface");
}
/* Geometry of usable area relative to toplevel surface */
struct wlr_box output_toplevel_box = {
.x = usable.x - (view->current.x - toplevel_dx),
.y = usable.y - (view->current.y - toplevel_dy),
.width = usable.width,
.height = usable.height,
};
wlr_xdg_popup_unconstrain_from_box(popup->wlr_popup, &output_toplevel_box);
}
static void
handle_destroy(struct wl_listener *listener, void *data)
{
struct xdg_popup *popup = wl_container_of(listener, popup, destroy);
struct wlr_xdg_popup *_popup, *tmp;
wl_list_for_each_safe(_popup, tmp, &popup->wlr_popup->base->popups, link) {
wlr_xdg_popup_destroy(_popup);
}
wl_list_remove(&popup->destroy.link);
wl_list_remove(&popup->new_popup.link);
wl_list_remove(&popup->reposition.link);
/* Usually already removed unless there was no commit at all */
if (popup->commit.notify) {
wl_list_remove(&popup->commit.link);
}
cursor_update_focus(popup->parent_view->server);
free(popup);
}
static void
handle_commit(struct wl_listener *listener, void *data)
{
struct xdg_popup *popup = wl_container_of(listener, popup, commit);
if (popup->wlr_popup->base->initial_commit) {
popup_unconstrain(popup);
/* Prevent getting called over and over again */
wl_list_remove(&popup->commit.link);
popup->commit.notify = NULL;
}
}
static void
handle_reposition(struct wl_listener *listener, void *data)
{
struct xdg_popup *popup = wl_container_of(listener, popup, reposition);
popup_unconstrain(popup);
}
static void
handle_new_popup(struct wl_listener *listener, void *data)
{
struct xdg_popup *popup = wl_container_of(listener, popup, new_popup);
struct wlr_xdg_popup *wlr_popup = data;
xdg_popup_create(popup->parent_view, wlr_popup);
}
void
xdg_popup_create(struct view *view, struct wlr_xdg_popup *wlr_popup)
{
struct wlr_xdg_surface *parent =
wlr_xdg_surface_try_from_wlr_surface(wlr_popup->parent);
if (!parent) {
wlr_log(WLR_ERROR, "parent is not a valid XDG surface");
return;
}
struct xdg_popup *popup = znew(*popup);
popup->parent_view = view;
popup->wlr_popup = wlr_popup;
CONNECT_SIGNAL(wlr_popup, popup, destroy);
CONNECT_SIGNAL(wlr_popup->base, popup, new_popup);
CONNECT_SIGNAL(wlr_popup->base->surface, popup, commit);
CONNECT_SIGNAL(wlr_popup, popup, reposition);
/*
* We must add xdg popups to the scene graph so they get rendered. The
* wlroots scene graph provides a helper for this, but to use it we must
* provide the proper parent scene node of the xdg popup. To enable
* this, we always set the user data field of wlr_surfaces to the
* corresponding scene node.
*
* xdg-popups live in server->xdg_popup_tree so that they can be
* rendered above always-on-top windows
*/
struct wlr_scene_tree *parent_tree = NULL;
if (parent->role == WLR_XDG_SURFACE_ROLE_POPUP) {
parent_tree = parent->surface->data;
} else {
parent_tree = view->server->xdg_popup_tree;
wlr_scene_node_set_position(&view->server->xdg_popup_tree->node,
view->current.x, view->current.y);
}
wlr_popup->base->surface->data =
wlr_scene_xdg_surface_create(parent_tree, wlr_popup->base);
node_descriptor_create(wlr_popup->base->surface->data,
LAB_NODE_XDG_POPUP, view, /*data*/ NULL);
wlr_scene_xdg_surface_create(&view->capture.scene->tree, wlr_popup->base);
}