2024-03-30 00:18:51 +01:00
|
|
|
#define _POSIX_C_SOURCE 200112L
|
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "xdg.h"
|
|
|
|
#include "cursor.h"
|
2024-03-31 16:09:01 +02:00
|
|
|
#include "node.h"
|
2024-04-01 15:38:57 +02:00
|
|
|
#include "view.h"
|
2024-03-31 16:09:01 +02:00
|
|
|
#include "output.h"
|
2024-04-12 21:18:42 +02:00
|
|
|
#include "foreign.h"
|
2024-03-30 00:18:51 +01:00
|
|
|
|
2024-03-31 16:09:01 +02:00
|
|
|
static void xdg_popup_create(struct diyac_view *view, struct wlr_xdg_popup *wlr_popup);
|
|
|
|
|
|
|
|
static void begin_interactive(struct diyac_view *toplevel,
|
2024-03-30 00:18:51 +01:00
|
|
|
enum diyac_cursor_mode mode, uint32_t edges)
|
|
|
|
{
|
|
|
|
/* This function sets up an interactive move or resize operation, where the
|
2024-04-01 15:38:57 +02:00
|
|
|
* compositor stops propagating pointer events to clients and instead
|
2024-03-30 00:18:51 +01:00
|
|
|
* consumes them itself, to move or resize windows. */
|
|
|
|
struct diyac_server *server = toplevel->server;
|
|
|
|
struct wlr_surface *focused_surface =
|
|
|
|
server->seat.wlr_seat->pointer_state.focused_surface;
|
|
|
|
if (toplevel->xdg_toplevel->base->surface !=
|
|
|
|
wlr_surface_get_root_surface(focused_surface))
|
|
|
|
{
|
|
|
|
/* Deny move/resize requests from unfocused clients. */
|
|
|
|
return;
|
|
|
|
}
|
2024-03-31 16:09:01 +02:00
|
|
|
server->grabbed_view = toplevel;
|
2024-03-30 00:18:51 +01:00
|
|
|
server->seat.cursor_mode = mode;
|
|
|
|
|
|
|
|
if (mode == DIYAC_CURSOR_MOVE)
|
|
|
|
{
|
|
|
|
server->grab_x = server->seat.cursor->x - toplevel->scene_tree->node.x;
|
|
|
|
server->grab_y = server->seat.cursor->y - toplevel->scene_tree->node.y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct wlr_box geo_box;
|
|
|
|
wlr_xdg_surface_get_geometry(toplevel->xdg_toplevel->base, &geo_box);
|
|
|
|
|
|
|
|
double border_x = (toplevel->scene_tree->node.x + geo_box.x) +
|
|
|
|
((edges & WLR_EDGE_RIGHT) ? geo_box.width : 0);
|
|
|
|
double border_y = (toplevel->scene_tree->node.y + geo_box.y) +
|
|
|
|
((edges & WLR_EDGE_BOTTOM) ? geo_box.height : 0);
|
|
|
|
server->grab_x = server->seat.cursor->x - border_x;
|
|
|
|
server->grab_y = server->seat.cursor->y - border_y;
|
|
|
|
|
|
|
|
server->grab_geobox = geo_box;
|
|
|
|
server->grab_geobox.x += toplevel->scene_tree->node.x;
|
|
|
|
server->grab_geobox.y += toplevel->scene_tree->node.y;
|
|
|
|
|
|
|
|
server->resize_edges = edges;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_map(struct wl_listener *listener, void *data)
|
|
|
|
{
|
2024-04-01 23:51:48 +02:00
|
|
|
|
2024-03-30 00:18:51 +01:00
|
|
|
/* Called when the surface is mapped, or ready to display on-screen. */
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel = wl_container_of(listener, toplevel, map);
|
2024-04-12 21:18:42 +02:00
|
|
|
if(toplevel->mapped)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2024-04-01 23:51:48 +02:00
|
|
|
/*
|
|
|
|
wlr_xdg_toplevel_set_wm_capabilities(toplevel->xdg_toplevel,
|
|
|
|
WLR_XDG_TOPLEVEL_WM_CAPABILITIES_MAXIMIZE |
|
|
|
|
WLR_XDG_TOPLEVEL_WM_CAPABILITIES_MINIMIZE);
|
|
|
|
//WLR_XDG_TOPLEVEL_WM_CAPABILITIES_FULLSCREEN
|
|
|
|
*/
|
2024-04-01 15:38:57 +02:00
|
|
|
wlr_xdg_surface_get_geometry(toplevel->xdg_toplevel->base, &toplevel->original);
|
|
|
|
wlr_scene_node_set_enabled(&toplevel->scene_tree->node, true);
|
|
|
|
toplevel->mapped = true;
|
2024-04-12 21:18:42 +02:00
|
|
|
diyac_init_foreign_toplevel(toplevel);
|
2024-03-31 16:09:01 +02:00
|
|
|
wl_list_insert(&toplevel->server->views, &toplevel->link);
|
2024-04-01 15:38:57 +02:00
|
|
|
toplevel->original.x = (toplevel->output->usable_area.width - toplevel->original.width) / 2;
|
|
|
|
toplevel->original.y = (toplevel->output->usable_area.height - toplevel->original.height) / 2;
|
2024-04-01 22:12:35 +02:00
|
|
|
if (toplevel->original.width > toplevel->output->usable_area.width)
|
2024-04-01 15:38:57 +02:00
|
|
|
{
|
|
|
|
toplevel->original.width = toplevel->output->usable_area.width;
|
|
|
|
}
|
2024-04-01 22:12:35 +02:00
|
|
|
if (toplevel->original.height > toplevel->output->usable_area.height)
|
2024-04-01 15:38:57 +02:00
|
|
|
{
|
|
|
|
toplevel->original.height = toplevel->output->usable_area.height;
|
|
|
|
}
|
|
|
|
diyac_view_update_geometry(toplevel, false);
|
2024-04-02 23:00:11 +02:00
|
|
|
diyac_focus_view(toplevel, false);
|
2024-03-30 00:18:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_unmap(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* Called when the surface is unmapped, and should no longer be shown. */
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel = wl_container_of(listener, toplevel, unmap);
|
2024-04-01 15:38:57 +02:00
|
|
|
toplevel->mapped = false;
|
2024-03-30 00:18:51 +01:00
|
|
|
/* Reset the cursor mode if the grabbed toplevel was unmapped. */
|
2024-03-31 16:09:01 +02:00
|
|
|
if (toplevel == toplevel->server->grabbed_view)
|
2024-03-30 00:18:51 +01:00
|
|
|
{
|
|
|
|
diyac_reset_cursor_mode(toplevel->server);
|
|
|
|
}
|
2024-04-03 00:48:59 +02:00
|
|
|
if(toplevel->state.fullscreen)
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* When a client exit during fullscreen mode, the top layer shall
|
|
|
|
* be restored as it is currently disabled
|
|
|
|
*/
|
|
|
|
wlr_scene_node_set_enabled(&toplevel->output->scenes.top->node, true);
|
|
|
|
}
|
2024-04-12 21:18:42 +02:00
|
|
|
if(toplevel->server->active_view == toplevel)
|
|
|
|
{
|
|
|
|
toplevel->server->active_view = NULL;
|
|
|
|
}
|
|
|
|
struct diyac_view *root = diyac_get_root_view(toplevel);
|
|
|
|
if (root && root->mapped)
|
|
|
|
{
|
|
|
|
diyac_focus_view(root, true);
|
|
|
|
//wlr_log(WLR_INFO, "focus root");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//wlr_log(WLR_INFO, "focus topmost");
|
|
|
|
diyac_focus_topmost_view(toplevel->server, true);
|
|
|
|
}
|
|
|
|
|
2024-03-30 00:18:51 +01:00
|
|
|
wl_list_remove(&toplevel->link);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_request_move(
|
|
|
|
struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when a client would like to begin an interactive
|
|
|
|
* move, typically because the user clicked on their client-side
|
|
|
|
* decorations. Note that a more sophisticated compositor should check the
|
|
|
|
* provided serial against a list of button press serials sent to this
|
|
|
|
* client, to prevent the client from requesting this whenever they want. */
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel = wl_container_of(listener, toplevel, request_move);
|
2024-03-30 00:18:51 +01:00
|
|
|
begin_interactive(toplevel, DIYAC_CURSOR_MOVE, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_request_resize(
|
|
|
|
struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when a client would like to begin an interactive
|
|
|
|
* resize, typically because the user clicked on their client-side
|
|
|
|
* decorations. Note that a more sophisticated compositor should check the
|
|
|
|
* provided serial against a list of button press serials sent to this
|
|
|
|
* client, to prevent the client from requesting this whenever they want. */
|
2024-04-03 00:48:59 +02:00
|
|
|
|
2024-03-30 00:18:51 +01:00
|
|
|
struct wlr_xdg_toplevel_resize_event *event = data;
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel = wl_container_of(listener, toplevel, request_resize);
|
2024-03-30 00:18:51 +01:00
|
|
|
begin_interactive(toplevel, DIYAC_CURSOR_RESIZE, event->edges);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_request_maximize(
|
|
|
|
struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when a client would like to maximize itself,
|
|
|
|
* typically because the user clicked on the maximize button on
|
|
|
|
* client-side decorations. diyac doesn't support maximization, but
|
|
|
|
* to conform to xdg-shell protocol we still must send a configure.
|
|
|
|
* wlr_xdg_surface_schedule_configure() is used to send an empty reply. */
|
|
|
|
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel =
|
2024-03-30 00:18:51 +01:00
|
|
|
wl_container_of(listener, toplevel, request_maximize);
|
2024-04-12 21:18:42 +02:00
|
|
|
diyac_view_set_maximize(toplevel, toplevel->xdg_toplevel->requested.maximized);
|
2024-03-30 00:18:51 +01:00
|
|
|
}
|
|
|
|
|
2024-04-01 22:12:35 +02:00
|
|
|
static void xdg_toplevel_request_fullscreen(struct wl_listener *listener, void *data)
|
2024-03-30 00:18:51 +01:00
|
|
|
{
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel =
|
2024-03-30 00:18:51 +01:00
|
|
|
wl_container_of(listener, toplevel, request_fullscreen);
|
2024-04-12 21:18:42 +02:00
|
|
|
diyac_view_set_fullscreen(toplevel,toplevel->xdg_toplevel->requested.fullscreen);
|
2024-04-01 15:38:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_request_minimize(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct diyac_view *toplevel =
|
|
|
|
wl_container_of(listener, toplevel, request_minimize);
|
2024-04-12 21:18:42 +02:00
|
|
|
diyac_view_set_mimimize(toplevel, toplevel->xdg_toplevel->requested.minimized);
|
2024-03-30 00:18:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_toplevel_destroy(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* Called when the xdg_toplevel is destroyed. */
|
2024-03-31 16:09:01 +02:00
|
|
|
struct diyac_view *toplevel = wl_container_of(listener, toplevel, destroy);
|
2024-03-30 00:18:51 +01:00
|
|
|
|
|
|
|
wl_list_remove(&toplevel->map.link);
|
|
|
|
wl_list_remove(&toplevel->unmap.link);
|
|
|
|
wl_list_remove(&toplevel->destroy.link);
|
|
|
|
wl_list_remove(&toplevel->request_move.link);
|
|
|
|
wl_list_remove(&toplevel->request_resize.link);
|
|
|
|
wl_list_remove(&toplevel->request_maximize.link);
|
|
|
|
wl_list_remove(&toplevel->request_fullscreen.link);
|
|
|
|
free(toplevel);
|
|
|
|
}
|
|
|
|
|
2024-03-31 16:09:01 +02:00
|
|
|
static void handle_xdg_popup_destroy(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct diyac_popup *popup = wl_container_of(listener, popup, destroy);
|
|
|
|
wl_list_remove(&popup->destroy.link);
|
|
|
|
wl_list_remove(&popup->new_popup.link);
|
|
|
|
|
|
|
|
/* Usually already removed unless there was no commit at all */
|
|
|
|
if (popup->commit.notify)
|
|
|
|
{
|
|
|
|
wl_list_remove(&popup->commit.link);
|
|
|
|
}
|
|
|
|
free(popup);
|
|
|
|
}
|
|
|
|
|
2024-04-01 15:38:57 +02:00
|
|
|
static void popup_unconstrain(struct diyac_popup *popup)
|
2024-03-31 16:09:01 +02:00
|
|
|
{
|
|
|
|
struct diyac_view *view = popup->parent;
|
|
|
|
struct diyac_server *server = view->server;
|
|
|
|
struct wlr_output_layout *output_layout = server->output_layout;
|
2024-04-01 15:38:57 +02:00
|
|
|
struct wlr_output *wlr_output = view->output->wlr_output;
|
2024-04-03 00:48:59 +02:00
|
|
|
struct wlr_box usable = {
|
|
|
|
.x = 0,
|
|
|
|
.y = 0,
|
|
|
|
.width = view->output->wlr_output->width,
|
|
|
|
.height = view->output->wlr_output->height
|
|
|
|
};
|
|
|
|
struct diyac_view *root = diyac_get_root_view(view);
|
|
|
|
if(!root || ! root->state.fullscreen)
|
|
|
|
{
|
|
|
|
usable = view->output->usable_area;
|
|
|
|
}
|
2024-04-01 15:38:57 +02:00
|
|
|
struct wlr_box geo_box = diyac_view_get_geometry(view);
|
2024-03-31 16:09:01 +02:00
|
|
|
struct wlr_box output_toplevel_box = {
|
2024-04-03 00:48:59 +02:00
|
|
|
.x = usable.x - geo_box.x,
|
|
|
|
.y = usable.y - geo_box.y,
|
|
|
|
.width = usable.width,
|
|
|
|
.height = usable.height,
|
2024-03-31 16:09:01 +02:00
|
|
|
};
|
|
|
|
wlr_xdg_popup_unconstrain_from_box(popup->wlr_popup, &output_toplevel_box);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_xdg_popup_commit(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct diyac_popup *popup = wl_container_of(listener, popup, commit);
|
2024-04-01 22:12:35 +02:00
|
|
|
struct wlr_box popup_box;
|
2024-04-01 15:38:57 +02:00
|
|
|
wlr_xdg_surface_get_geometry(popup->wlr_popup->base, &popup_box);
|
|
|
|
popup_unconstrain(popup);
|
|
|
|
if (!wlr_box_empty(&popup_box))
|
2024-04-01 22:12:35 +02:00
|
|
|
// if (popup->wlr_popup->base->initial_commit)
|
2024-03-31 16:09:01 +02:00
|
|
|
{
|
2024-04-01 15:38:57 +02:00
|
|
|
struct diyac_view *view = popup->parent;
|
2024-04-01 22:12:35 +02:00
|
|
|
// wlr_output_commit(view->output->wlr_output);
|
2024-03-31 16:09:01 +02:00
|
|
|
/* Prevent getting called over and over again */
|
|
|
|
wl_list_remove(&popup->commit.link);
|
|
|
|
popup->commit.notify = NULL;
|
2024-04-01 15:38:57 +02:00
|
|
|
// force commit output
|
|
|
|
}
|
2024-03-31 16:09:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_xdg_popup_new(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct diyac_popup *popup = wl_container_of(listener, popup, new_popup);
|
|
|
|
struct wlr_xdg_popup *wlr_popup = data;
|
2024-04-01 15:38:57 +02:00
|
|
|
|
2024-03-31 16:09:01 +02:00
|
|
|
xdg_popup_create(popup->parent, wlr_popup);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xdg_popup_create(struct diyac_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 diyac_popup *popup = calloc(1, sizeof(*popup));
|
|
|
|
popup->parent = view;
|
|
|
|
popup->wlr_popup = wlr_popup;
|
|
|
|
|
|
|
|
popup->destroy.notify = handle_xdg_popup_destroy;
|
|
|
|
wl_signal_add(&wlr_popup->base->events.destroy, &popup->destroy);
|
|
|
|
|
|
|
|
popup->new_popup.notify = handle_xdg_popup_new;
|
|
|
|
wl_signal_add(&wlr_popup->base->events.new_popup, &popup->new_popup);
|
|
|
|
|
|
|
|
popup->commit.notify = handle_xdg_popup_commit;
|
|
|
|
wl_signal_add(&wlr_popup->base->surface->events.commit, &popup->commit);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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 xdg_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;
|
2024-04-01 15:38:57 +02:00
|
|
|
struct wlr_box box = diyac_view_get_geometry(view);
|
2024-03-31 16:09:01 +02:00
|
|
|
wlr_scene_node_set_position(&view->server->xdg_popup_tree->node,
|
2024-04-01 15:38:57 +02:00
|
|
|
box.x, box.y);
|
2024-03-31 16:09:01 +02:00
|
|
|
}
|
2024-04-01 22:12:35 +02:00
|
|
|
struct wlr_scene_tree *tree = wlr_scene_xdg_surface_create(parent_tree, wlr_popup->base);
|
2024-04-01 15:38:57 +02:00
|
|
|
wlr_popup->base->surface->data = tree;
|
2024-04-01 22:12:35 +02:00
|
|
|
|
|
|
|
// wlr_scene_node_set_enabled(&parent_tree->node, false);
|
2024-03-31 16:09:01 +02:00
|
|
|
diyac_node_descriptor_create(wlr_popup->base->surface->data,
|
|
|
|
DIYAC_NODE_XDG_POPUP, view);
|
|
|
|
}
|
|
|
|
|
2024-04-01 15:38:57 +02:00
|
|
|
static void xdg_set_appid_notify(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct diyac_view *xdg_toplevel_view =
|
|
|
|
wl_container_of(listener, xdg_toplevel_view, set_app_id);
|
|
|
|
wlr_log(WLR_INFO, "set application id");
|
|
|
|
}
|
|
|
|
|
2024-03-31 16:09:01 +02:00
|
|
|
static void xdg_new_popup_notify(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct diyac_view *view =
|
|
|
|
wl_container_of(listener, view, new_popup);
|
|
|
|
struct wlr_xdg_popup *wlr_popup = data;
|
|
|
|
xdg_popup_create(view, wlr_popup);
|
|
|
|
}
|
|
|
|
|
2024-03-30 00:18:51 +01:00
|
|
|
void diyac_new_xdg_surface(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
/* This event is raised when wlr_xdg_shell receives a new xdg surface from a
|
|
|
|
* client, either a toplevel (application window) or popup. */
|
|
|
|
struct diyac_server *server =
|
|
|
|
wl_container_of(listener, server, new_xdg_surface);
|
|
|
|
struct wlr_xdg_surface *xdg_surface = data;
|
|
|
|
|
|
|
|
/* 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 xdg_surfaces to the corresponding
|
|
|
|
* scene node. */
|
|
|
|
if (xdg_surface->role == WLR_XDG_SURFACE_ROLE_POPUP)
|
|
|
|
{
|
2024-03-31 16:09:01 +02:00
|
|
|
/*struct wlr_xdg_surface *parent =
|
2024-03-30 00:18:51 +01:00
|
|
|
wlr_xdg_surface_try_from_wlr_surface(xdg_surface->popup->parent);
|
|
|
|
assert(parent != NULL);
|
|
|
|
struct wlr_scene_tree *parent_tree = parent->data;
|
|
|
|
xdg_surface->data = wlr_scene_xdg_surface_create(
|
|
|
|
parent_tree, xdg_surface);
|
2024-03-31 16:09:01 +02:00
|
|
|
return;*/
|
2024-04-01 16:07:07 +02:00
|
|
|
wlr_log(WLR_INFO, "diyac_new_xdg_surface: Creating new dialog using view popup");
|
2024-03-30 00:18:51 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(xdg_surface->role == WLR_XDG_SURFACE_ROLE_TOPLEVEL);
|
2024-03-31 16:09:01 +02:00
|
|
|
wlr_log(WLR_INFO, "diyac_new_xdg_surface: Creating new application windows");
|
|
|
|
wlr_xdg_surface_ping(xdg_surface);
|
|
|
|
/* Allocate a diyac_view for this surface */
|
2024-04-01 23:51:48 +02:00
|
|
|
struct diyac_view *toplevel = calloc(1, sizeof(*toplevel));
|
2024-04-03 00:48:59 +02:00
|
|
|
memset(&toplevel->state, 0, sizeof(toplevel->state));
|
|
|
|
memset(&toplevel->requested, 0, sizeof(toplevel->requested));
|
2024-03-30 00:18:51 +01:00
|
|
|
toplevel->server = server;
|
|
|
|
toplevel->xdg_toplevel = xdg_surface->toplevel;
|
2024-03-31 16:09:01 +02:00
|
|
|
toplevel->xdg_surface = xdg_surface;
|
2024-04-01 15:38:57 +02:00
|
|
|
toplevel->mapped = false;
|
2024-03-31 16:09:01 +02:00
|
|
|
toplevel->output = diyac_output_from_cursor(server);
|
2024-03-30 00:18:51 +01:00
|
|
|
toplevel->scene_tree = wlr_scene_xdg_surface_create(
|
2024-03-31 16:09:01 +02:00
|
|
|
toplevel->server->view_tree, toplevel->xdg_toplevel->base);
|
|
|
|
xdg_surface->data = toplevel;
|
2024-04-01 22:12:35 +02:00
|
|
|
|
|
|
|
if (toplevel->output)
|
|
|
|
{
|
|
|
|
wlr_fractional_scale_v1_notify_scale(xdg_surface->surface,
|
|
|
|
toplevel->output->wlr_output->scale);
|
|
|
|
}
|
|
|
|
|
2024-04-01 15:38:57 +02:00
|
|
|
wlr_scene_node_set_enabled(&toplevel->scene_tree->node, false);
|
2024-03-31 16:09:01 +02:00
|
|
|
diyac_node_descriptor_create(&toplevel->scene_tree->node,
|
2024-04-01 15:38:57 +02:00
|
|
|
DIYAC_NODE_VIEW, toplevel);
|
2024-03-30 00:18:51 +01:00
|
|
|
/* Listen to the various events it can emit */
|
|
|
|
toplevel->map.notify = xdg_toplevel_map;
|
|
|
|
wl_signal_add(&xdg_surface->surface->events.map, &toplevel->map);
|
|
|
|
toplevel->unmap.notify = xdg_toplevel_unmap;
|
|
|
|
wl_signal_add(&xdg_surface->surface->events.unmap, &toplevel->unmap);
|
|
|
|
toplevel->destroy.notify = xdg_toplevel_destroy;
|
|
|
|
wl_signal_add(&xdg_surface->events.destroy, &toplevel->destroy);
|
|
|
|
|
|
|
|
/* cotd */
|
|
|
|
struct wlr_xdg_toplevel *xdg_toplevel = xdg_surface->toplevel;
|
|
|
|
toplevel->request_move.notify = xdg_toplevel_request_move;
|
|
|
|
wl_signal_add(&xdg_toplevel->events.request_move, &toplevel->request_move);
|
|
|
|
toplevel->request_resize.notify = xdg_toplevel_request_resize;
|
|
|
|
wl_signal_add(&xdg_toplevel->events.request_resize, &toplevel->request_resize);
|
2024-04-01 15:38:57 +02:00
|
|
|
toplevel->request_minimize.notify = xdg_toplevel_request_minimize;
|
|
|
|
wl_signal_add(&xdg_toplevel->events.request_minimize, &toplevel->request_minimize);
|
2024-03-30 00:18:51 +01:00
|
|
|
toplevel->request_maximize.notify = xdg_toplevel_request_maximize;
|
|
|
|
wl_signal_add(&xdg_toplevel->events.request_maximize,
|
|
|
|
&toplevel->request_maximize);
|
|
|
|
toplevel->request_fullscreen.notify = xdg_toplevel_request_fullscreen;
|
|
|
|
wl_signal_add(&xdg_toplevel->events.request_fullscreen,
|
|
|
|
&toplevel->request_fullscreen);
|
2024-03-31 16:09:01 +02:00
|
|
|
toplevel->new_popup.notify = xdg_new_popup_notify;
|
|
|
|
wl_signal_add(&xdg_surface->events.new_popup, &toplevel->new_popup);
|
2024-04-01 15:38:57 +02:00
|
|
|
toplevel->set_app_id.notify = xdg_set_appid_notify;
|
|
|
|
wl_signal_add(&xdg_toplevel->events.set_app_id, &toplevel->set_app_id);
|
2024-03-30 00:18:51 +01:00
|
|
|
}
|