mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
...for unused variables. We should damage the surface really, but this will soon be overtaken by events when wlr_scene is implemented.
607 lines
17 KiB
C
607 lines
17 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* layers.c - layer-shell implementation
|
|
*
|
|
* Based on:
|
|
* - https://git.sr.ht/~sircmpwm/wio
|
|
* - https://github.com/swaywm/sway
|
|
* Copyright (C) 2019 Drew DeVault and Sway developers
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/types/wlr_layer_shell_v1.h>
|
|
#include <wlr/util/log.h>
|
|
#include "layers.h"
|
|
#include "labwc.h"
|
|
|
|
static void
|
|
apply_exclusive(struct wlr_box *usable_area, uint32_t anchor, int32_t exclusive,
|
|
int32_t margin_top, int32_t margin_right, int32_t margin_bottom,
|
|
int32_t margin_left)
|
|
{
|
|
if (exclusive <= 0) {
|
|
return;
|
|
}
|
|
struct {
|
|
uint32_t anchors;
|
|
int *positive_axis;
|
|
int *negative_axis;
|
|
int margin;
|
|
} edges[] = {
|
|
{
|
|
.anchors =
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP,
|
|
.positive_axis = &usable_area->y,
|
|
.negative_axis = &usable_area->height,
|
|
.margin = margin_top,
|
|
},
|
|
{
|
|
.anchors =
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM,
|
|
.positive_axis = NULL,
|
|
.negative_axis = &usable_area->height,
|
|
.margin = margin_bottom,
|
|
},
|
|
{
|
|
.anchors =
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM,
|
|
.positive_axis = &usable_area->x,
|
|
.negative_axis = &usable_area->width,
|
|
.margin = margin_left,
|
|
},
|
|
{
|
|
.anchors =
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP |
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM,
|
|
.positive_axis = NULL,
|
|
.negative_axis = &usable_area->width,
|
|
.margin = margin_right,
|
|
},
|
|
};
|
|
for (size_t i = 0; i < sizeof(edges) / sizeof(edges[0]); ++i) {
|
|
if ((anchor & edges[i].anchors) == edges[i].anchors) {
|
|
if (edges[i].positive_axis) {
|
|
*edges[i].positive_axis +=
|
|
exclusive + edges[i].margin;
|
|
}
|
|
if (edges[i].negative_axis) {
|
|
*edges[i].negative_axis -=
|
|
exclusive + edges[i].margin;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @list: struct lab_layer_surface
|
|
*/
|
|
static void
|
|
arrange_layer(struct wlr_output *output, struct wl_list *list,
|
|
struct wlr_box *usable_area, bool exclusive)
|
|
{
|
|
struct lab_layer_surface *surface;
|
|
struct wlr_box full_area = { 0 };
|
|
wlr_output_effective_resolution(output, &full_area.width,
|
|
&full_area.height);
|
|
wl_list_for_each_reverse(surface, list, link) {
|
|
struct wlr_layer_surface_v1 *layer = surface->layer_surface;
|
|
struct wlr_layer_surface_v1_state *state = &layer->current;
|
|
if (exclusive != (state->exclusive_zone > 0)) {
|
|
continue;
|
|
}
|
|
struct wlr_box bounds;
|
|
if (state->exclusive_zone == -1) {
|
|
bounds = full_area;
|
|
} else {
|
|
bounds = *usable_area;
|
|
}
|
|
struct wlr_box box = {
|
|
.width = state->desired_width,
|
|
.height = state->desired_height
|
|
};
|
|
/* Horizontal axis */
|
|
const uint32_t both_horiz = ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT
|
|
| ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
|
if ((state->anchor & both_horiz) && box.width == 0) {
|
|
box.x = bounds.x;
|
|
box.width = bounds.width;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT)) {
|
|
box.x = bounds.x;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT)) {
|
|
box.x = bounds.x + (bounds.width - box.width);
|
|
} else {
|
|
box.x = bounds.x + ((bounds.width / 2) - (box.width / 2));
|
|
}
|
|
/* Vertical axis */
|
|
const uint32_t both_vert = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP
|
|
| ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM;
|
|
if ((state->anchor & both_vert) && box.height == 0) {
|
|
box.y = bounds.y;
|
|
box.height = bounds.height;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP)) {
|
|
box.y = bounds.y;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM)) {
|
|
box.y = bounds.y + (bounds.height - box.height);
|
|
} else {
|
|
box.y = bounds.y + ((bounds.height / 2) - (box.height / 2));
|
|
}
|
|
/* Margin */
|
|
if ((state->anchor & both_horiz) == both_horiz) {
|
|
box.x += state->margin.left;
|
|
box.width -= state->margin.left + state->margin.right;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT)) {
|
|
box.x += state->margin.left;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT)) {
|
|
box.x -= state->margin.right;
|
|
}
|
|
if ((state->anchor & both_vert) == both_vert) {
|
|
box.y += state->margin.top;
|
|
box.height -= state->margin.top + state->margin.bottom;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP)) {
|
|
box.y += state->margin.top;
|
|
} else if ((state->anchor & ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM)) {
|
|
box.y -= state->margin.bottom;
|
|
}
|
|
if (box.width < 0 || box.height < 0) {
|
|
wlr_log(WLR_ERROR, "surface has no positive size");
|
|
continue;
|
|
}
|
|
|
|
/* Apply */
|
|
surface->geo = box;
|
|
apply_exclusive(usable_area, state->anchor,
|
|
state->exclusive_zone, state->margin.top,
|
|
state->margin.right, state->margin.bottom,
|
|
state->margin.left);
|
|
wlr_layer_surface_v1_configure(layer, box.width, box.height);
|
|
}
|
|
}
|
|
|
|
void
|
|
arrange_layers(struct output *output)
|
|
{
|
|
assert(output);
|
|
|
|
struct wlr_box usable_area = { 0 };
|
|
wlr_output_effective_resolution(output->wlr_output,
|
|
&usable_area.width, &usable_area.height);
|
|
|
|
/* Exclusive surfaces */
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY],
|
|
&usable_area, true);
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP],
|
|
&usable_area, true);
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM],
|
|
&usable_area, true);
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND],
|
|
&usable_area, true);
|
|
memcpy(&output->usable_area, &usable_area, sizeof(struct wlr_box));
|
|
|
|
/* TODO: re-arrange all views taking into account updated usable_area */
|
|
|
|
/* Non-exclusive surfaces */
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY],
|
|
&usable_area, false);
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_TOP],
|
|
&usable_area, false);
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM],
|
|
&usable_area, false);
|
|
arrange_layer(output->wlr_output,
|
|
&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND],
|
|
&usable_area, false);
|
|
|
|
/* Find topmost keyboard interactive layer, if such a layer exists */
|
|
uint32_t layers_above_shell[] = {
|
|
ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY,
|
|
ZWLR_LAYER_SHELL_V1_LAYER_TOP,
|
|
};
|
|
size_t nlayers = sizeof(layers_above_shell) / sizeof(layers_above_shell[0]);
|
|
struct lab_layer_surface *layer, *topmost = NULL;
|
|
for (size_t i = 0; i < nlayers; ++i) {
|
|
wl_list_for_each_reverse (layer,
|
|
&output->layers[layers_above_shell[i]], link) {
|
|
if (layer->layer_surface->current.keyboard_interactive) {
|
|
topmost = layer;
|
|
break;
|
|
}
|
|
}
|
|
if (topmost) {
|
|
break;
|
|
}
|
|
}
|
|
struct seat *seat = &output->server->seat;
|
|
if (topmost) {
|
|
seat_set_focus_layer(seat, topmost->layer_surface);
|
|
} else if (seat->focused_layer &&
|
|
!seat->focused_layer->current.keyboard_interactive) {
|
|
seat_set_focus_layer(seat, NULL);
|
|
}
|
|
}
|
|
|
|
static void
|
|
output_destroy_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_surface *layer =
|
|
wl_container_of(listener, layer, output_destroy);
|
|
layer->layer_surface->output = NULL;
|
|
wl_list_remove(&layer->output_destroy.link);
|
|
wlr_layer_surface_v1_destroy(layer->layer_surface);
|
|
}
|
|
|
|
static void
|
|
surface_commit_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_surface *layer =
|
|
wl_container_of(listener, layer, surface_commit);
|
|
struct wlr_layer_surface_v1 *layer_surface = layer->layer_surface;
|
|
struct wlr_output *wlr_output = layer->layer_surface->output;
|
|
|
|
if (!wlr_output) {
|
|
return;
|
|
}
|
|
|
|
if (layer_surface->current.committed
|
|
|| layer->mapped != layer_surface->mapped) {
|
|
layer->mapped = layer_surface->mapped;
|
|
struct output *output =
|
|
output_from_wlr_output(layer->server, wlr_output);
|
|
arrange_layers(output);
|
|
}
|
|
damage_all_outputs(layer->server);
|
|
}
|
|
|
|
static void
|
|
unmap(struct lab_layer_surface *layer)
|
|
{
|
|
struct seat *seat = &layer->server->seat;
|
|
if (seat->focused_layer == layer->layer_surface) {
|
|
seat_set_focus_layer(seat, NULL);
|
|
}
|
|
damage_all_outputs(layer->server);
|
|
}
|
|
|
|
static void
|
|
destroy_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_surface *layer = wl_container_of(
|
|
listener, layer, destroy);
|
|
if (layer->layer_surface->mapped) {
|
|
unmap(layer);
|
|
}
|
|
wl_list_remove(&layer->link);
|
|
wl_list_remove(&layer->destroy.link);
|
|
wl_list_remove(&layer->map.link);
|
|
wl_list_remove(&layer->surface_commit.link);
|
|
if (layer->layer_surface->output) {
|
|
wl_list_remove(&layer->output_destroy.link);
|
|
struct output *output = output_from_wlr_output(
|
|
layer->server, layer->layer_surface->output);
|
|
arrange_layers(output);
|
|
}
|
|
free(layer);
|
|
}
|
|
|
|
static void
|
|
unmap_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_surface *l = wl_container_of(listener, l, unmap);
|
|
unmap(l);
|
|
}
|
|
|
|
static void
|
|
map_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct wlr_layer_surface_v1 *l = data;
|
|
wlr_surface_send_enter(l->surface, l->output);
|
|
}
|
|
|
|
static void
|
|
subsurface_damage(struct lab_layer_subsurface *subsurface, bool whole)
|
|
{
|
|
struct lab_layer_surface *layer = subsurface->layer_surface;
|
|
struct wlr_output *wlr_output = layer->layer_surface->output;
|
|
if (!wlr_output) {
|
|
return;
|
|
}
|
|
// struct output *output = wlr_output->data;
|
|
// int ox = subsurface->wlr_subsurface->current.x + layer->geo.x;
|
|
// int oy = subsurface->wlr_subsurface->current.y + layer->geo.y;
|
|
damage_all_outputs(layer->server);
|
|
}
|
|
|
|
static void
|
|
subsurface_handle_unmap(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_subsurface *subsurface =
|
|
wl_container_of(listener, subsurface, unmap);
|
|
subsurface_damage(subsurface, true);
|
|
}
|
|
|
|
static void
|
|
subsurface_handle_map(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_subsurface *subsurface =
|
|
wl_container_of(listener, subsurface, map);
|
|
subsurface_damage(subsurface, true);
|
|
}
|
|
|
|
static void
|
|
subsurface_handle_commit(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_subsurface *subsurface =
|
|
wl_container_of(listener, subsurface, commit);
|
|
subsurface_damage(subsurface, false);
|
|
}
|
|
|
|
static void
|
|
subsurface_handle_destroy(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_subsurface *subsurface =
|
|
wl_container_of(listener, subsurface, destroy);
|
|
|
|
wl_list_remove(&subsurface->map.link);
|
|
wl_list_remove(&subsurface->unmap.link);
|
|
wl_list_remove(&subsurface->destroy.link);
|
|
wl_list_remove(&subsurface->commit.link);
|
|
free(subsurface);
|
|
}
|
|
|
|
static struct
|
|
lab_layer_subsurface *create_subsurface(struct wlr_subsurface *wlr_subsurface,
|
|
struct lab_layer_surface *layer_surface)
|
|
{
|
|
struct lab_layer_subsurface *subsurface =
|
|
calloc(1, sizeof(struct lab_layer_subsurface));
|
|
if (!subsurface) {
|
|
return NULL;
|
|
}
|
|
|
|
subsurface->wlr_subsurface = wlr_subsurface;
|
|
subsurface->layer_surface = layer_surface;
|
|
|
|
subsurface->map.notify = subsurface_handle_map;
|
|
wl_signal_add(&wlr_subsurface->events.map, &subsurface->map);
|
|
subsurface->unmap.notify = subsurface_handle_unmap;
|
|
wl_signal_add(&wlr_subsurface->events.unmap, &subsurface->unmap);
|
|
subsurface->destroy.notify = subsurface_handle_destroy;
|
|
wl_signal_add(&wlr_subsurface->events.destroy, &subsurface->destroy);
|
|
subsurface->commit.notify = subsurface_handle_commit;
|
|
wl_signal_add(&wlr_subsurface->surface->events.commit,
|
|
&subsurface->commit);
|
|
|
|
return subsurface;
|
|
}
|
|
|
|
static void
|
|
new_subsurface_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_surface *lab_layer_surface =
|
|
wl_container_of(listener, lab_layer_surface, new_subsurface);
|
|
struct wlr_subsurface *wlr_subsurface = data;
|
|
create_subsurface(wlr_subsurface, lab_layer_surface);
|
|
}
|
|
|
|
|
|
static struct
|
|
lab_layer_surface *popup_get_layer(struct lab_layer_popup *popup)
|
|
{
|
|
while (popup->parent_type == LAYER_PARENT_POPUP) {
|
|
popup = popup->parent_popup;
|
|
}
|
|
return popup->parent_layer;
|
|
}
|
|
|
|
static void
|
|
popup_damage(struct lab_layer_popup *layer_popup, bool whole)
|
|
{
|
|
struct lab_layer_surface *layer;
|
|
while (true) {
|
|
if (layer_popup->parent_type == LAYER_PARENT_POPUP) {
|
|
layer_popup = layer_popup->parent_popup;
|
|
} else {
|
|
layer = layer_popup->parent_layer;
|
|
break;
|
|
}
|
|
}
|
|
damage_all_outputs(layer->server);
|
|
}
|
|
|
|
static void
|
|
popup_handle_map(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_popup *popup = wl_container_of(listener, popup, map);
|
|
struct lab_layer_surface *layer = popup_get_layer(popup);
|
|
struct wlr_output *wlr_output = layer->layer_surface->output;
|
|
wlr_surface_send_enter(popup->wlr_popup->base->surface, wlr_output);
|
|
popup_damage(popup, true);
|
|
}
|
|
|
|
static void
|
|
popup_handle_unmap(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_popup *popup = wl_container_of(listener, popup, unmap);
|
|
popup_damage(popup, true);
|
|
}
|
|
|
|
static void
|
|
popup_handle_commit(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_popup *popup = wl_container_of(listener, popup, commit);
|
|
popup_damage(popup, false);
|
|
}
|
|
|
|
static void
|
|
popup_handle_destroy(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_popup *popup =
|
|
wl_container_of(listener, popup, destroy);
|
|
|
|
wl_list_remove(&popup->map.link);
|
|
wl_list_remove(&popup->unmap.link);
|
|
wl_list_remove(&popup->destroy.link);
|
|
wl_list_remove(&popup->commit.link);
|
|
free(popup);
|
|
}
|
|
|
|
static void
|
|
popup_unconstrain(struct lab_layer_popup *popup)
|
|
{
|
|
struct lab_layer_surface *layer = popup_get_layer(popup);
|
|
struct wlr_xdg_popup *wlr_popup = popup->wlr_popup;
|
|
struct output *output = layer->layer_surface->output->data;
|
|
|
|
struct wlr_box output_box = { 0 };
|
|
wlr_output_effective_resolution(output->wlr_output, &output_box.width,
|
|
&output_box.height);
|
|
|
|
struct wlr_box output_toplevel_sx_box = {
|
|
.x = -layer->geo.x,
|
|
.y = -layer->geo.y,
|
|
.width = output_box.width,
|
|
.height = output_box.height,
|
|
};
|
|
|
|
wlr_xdg_popup_unconstrain_from_box(wlr_popup, &output_toplevel_sx_box);
|
|
}
|
|
|
|
static void popup_handle_new_popup(struct wl_listener *listener, void *data);
|
|
|
|
static struct lab_layer_popup *
|
|
create_popup(struct wlr_xdg_popup *wlr_popup,
|
|
enum layer_parent parent_type, void *parent)
|
|
{
|
|
struct lab_layer_popup *popup =
|
|
calloc(1, sizeof(struct lab_layer_popup));
|
|
if (!popup) {
|
|
return NULL;
|
|
}
|
|
|
|
popup->wlr_popup = wlr_popup;
|
|
popup->parent_type = parent_type;
|
|
popup->parent_layer = parent;
|
|
|
|
popup->map.notify = popup_handle_map;
|
|
wl_signal_add(&wlr_popup->base->events.map, &popup->map);
|
|
popup->unmap.notify = popup_handle_unmap;
|
|
wl_signal_add(&wlr_popup->base->events.unmap, &popup->unmap);
|
|
popup->destroy.notify = popup_handle_destroy;
|
|
wl_signal_add(&wlr_popup->base->events.destroy, &popup->destroy);
|
|
popup->commit.notify = popup_handle_commit;
|
|
wl_signal_add(&wlr_popup->base->surface->events.commit, &popup->commit);
|
|
popup->new_popup.notify = popup_handle_new_popup;
|
|
wl_signal_add(&wlr_popup->base->events.new_popup, &popup->new_popup);
|
|
|
|
popup_unconstrain(popup);
|
|
|
|
return popup;
|
|
}
|
|
|
|
static void
|
|
popup_handle_new_popup(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_popup *lab_layer_popup =
|
|
wl_container_of(listener, lab_layer_popup, new_popup);
|
|
struct wlr_xdg_popup *wlr_popup = data;
|
|
create_popup(wlr_popup, LAYER_PARENT_POPUP, lab_layer_popup);
|
|
}
|
|
|
|
static void
|
|
new_popup_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct lab_layer_surface *lab_layer_surface =
|
|
wl_container_of(listener, lab_layer_surface, new_popup);
|
|
struct wlr_xdg_popup *wlr_popup = data;
|
|
create_popup(wlr_popup, LAYER_PARENT_LAYER, lab_layer_surface);
|
|
}
|
|
|
|
static void
|
|
new_layer_surface_notify(struct wl_listener *listener, void *data)
|
|
{
|
|
struct server *server = wl_container_of(
|
|
listener, server, new_layer_surface);
|
|
struct wlr_layer_surface_v1 *layer_surface = data;
|
|
|
|
if (!layer_surface->output) {
|
|
struct wlr_output *output = wlr_output_layout_output_at(
|
|
server->output_layout, server->seat.cursor->x,
|
|
server->seat.cursor->y);
|
|
layer_surface->output = output;
|
|
}
|
|
|
|
struct lab_layer_surface *surface =
|
|
calloc(1, sizeof(struct lab_layer_surface));
|
|
if (!surface) {
|
|
return;
|
|
}
|
|
|
|
surface->surface_commit.notify = surface_commit_notify;
|
|
wl_signal_add(&layer_surface->surface->events.commit,
|
|
&surface->surface_commit);
|
|
|
|
surface->destroy.notify = destroy_notify;
|
|
wl_signal_add(&layer_surface->events.destroy, &surface->destroy);
|
|
|
|
surface->map.notify = map_notify;
|
|
wl_signal_add(&layer_surface->events.map, &surface->map);
|
|
|
|
surface->unmap.notify = unmap_notify;
|
|
wl_signal_add(&layer_surface->events.unmap, &surface->unmap);
|
|
|
|
surface->new_popup.notify = new_popup_notify;
|
|
wl_signal_add(&layer_surface->events.new_popup, &surface->new_popup);
|
|
|
|
surface->new_subsurface.notify = new_subsurface_notify;
|
|
wl_signal_add(&layer_surface->surface->events.new_subsurface,
|
|
&surface->new_subsurface);
|
|
|
|
surface->layer_surface = layer_surface;
|
|
layer_surface->data = surface;
|
|
surface->server = server;
|
|
|
|
struct output *output = layer_surface->output->data;
|
|
surface->output_destroy.notify = output_destroy_notify;
|
|
wl_signal_add(&layer_surface->output->events.destroy,
|
|
&surface->output_destroy);
|
|
|
|
if (!output) {
|
|
wlr_log(WLR_ERROR, "no output for layer");
|
|
return;
|
|
}
|
|
|
|
wl_list_insert(&output->layers[layer_surface->pending.layer],
|
|
&surface->link);
|
|
/*
|
|
* Temporarily set the layer's current state to pending so that
|
|
* it can easily be arranged.
|
|
*/
|
|
struct wlr_layer_surface_v1_state old_state = layer_surface->current;
|
|
layer_surface->current = layer_surface->pending;
|
|
arrange_layers(output);
|
|
layer_surface->current = old_state;
|
|
}
|
|
|
|
void
|
|
layers_init(struct server *server)
|
|
{
|
|
server->layer_shell = wlr_layer_shell_v1_create(server->wl_display);
|
|
server->new_layer_surface.notify = new_layer_surface_notify;
|
|
wl_signal_add(&server->layer_shell->events.new_surface,
|
|
&server->new_layer_surface);
|
|
}
|