commit
8836b4f024
@ -0,0 +1,136 @@
|
|||||||
|
#include <wlr/interfaces/wlr_input_device.h>
|
||||||
|
#include <wlr/interfaces/wlr_keyboard.h>
|
||||||
|
#include <wlr/interfaces/wlr_pointer.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
|
#include <xcb/xcb.h>
|
||||||
|
#ifdef __linux__
|
||||||
|
#include <linux/input-event-codes.h>
|
||||||
|
#elif __FreeBSD__
|
||||||
|
#include <dev/evdev/input-event-codes.h>
|
||||||
|
#endif
|
||||||
|
#include "backend/x11.h"
|
||||||
|
#include "util/signal.h"
|
||||||
|
|
||||||
|
static uint32_t xcb_button_to_wl(uint32_t button) {
|
||||||
|
switch (button) {
|
||||||
|
case XCB_BUTTON_INDEX_1: return BTN_LEFT;
|
||||||
|
case XCB_BUTTON_INDEX_2: return BTN_MIDDLE;
|
||||||
|
case XCB_BUTTON_INDEX_3: return BTN_RIGHT;
|
||||||
|
// XXX: I'm not sure the scroll-wheel direction is right
|
||||||
|
case XCB_BUTTON_INDEX_4: return BTN_GEAR_UP;
|
||||||
|
case XCB_BUTTON_INDEX_5: return BTN_GEAR_DOWN;
|
||||||
|
default: return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool x11_handle_input_event(struct wlr_x11_backend *x11,
|
||||||
|
xcb_generic_event_t *event) {
|
||||||
|
switch (event->response_type & XCB_EVENT_RESPONSE_TYPE_MASK) {
|
||||||
|
case XCB_KEY_PRESS:
|
||||||
|
case XCB_KEY_RELEASE: {
|
||||||
|
xcb_key_press_event_t *ev = (xcb_key_press_event_t *)event;
|
||||||
|
struct wlr_event_keyboard_key key = {
|
||||||
|
.time_msec = ev->time,
|
||||||
|
.keycode = ev->detail - 8,
|
||||||
|
.state = event->response_type == XCB_KEY_PRESS ?
|
||||||
|
WLR_KEY_PRESSED : WLR_KEY_RELEASED,
|
||||||
|
.update_state = true,
|
||||||
|
};
|
||||||
|
|
||||||
|
// TODO use xcb-xkb for more precise modifiers state?
|
||||||
|
wlr_keyboard_notify_key(&x11->keyboard, &key);
|
||||||
|
x11->time = ev->time;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
case XCB_BUTTON_PRESS: {
|
||||||
|
xcb_button_press_event_t *ev = (xcb_button_press_event_t *)event;
|
||||||
|
|
||||||
|
if (ev->detail == XCB_BUTTON_INDEX_4 ||
|
||||||
|
ev->detail == XCB_BUTTON_INDEX_5) {
|
||||||
|
double delta = (ev->detail == XCB_BUTTON_INDEX_4 ? -15 : 15);
|
||||||
|
struct wlr_event_pointer_axis axis = {
|
||||||
|
.device = &x11->pointer_dev,
|
||||||
|
.time_msec = ev->time,
|
||||||
|
.source = WLR_AXIS_SOURCE_WHEEL,
|
||||||
|
.orientation = WLR_AXIS_ORIENTATION_VERTICAL,
|
||||||
|
.delta = delta,
|
||||||
|
};
|
||||||
|
wlr_signal_emit_safe(&x11->pointer.events.axis, &axis);
|
||||||
|
x11->time = ev->time;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* fallthrough */
|
||||||
|
case XCB_BUTTON_RELEASE: {
|
||||||
|
xcb_button_press_event_t *ev = (xcb_button_press_event_t *)event;
|
||||||
|
|
||||||
|
if (ev->detail != XCB_BUTTON_INDEX_4 &&
|
||||||
|
ev->detail != XCB_BUTTON_INDEX_5) {
|
||||||
|
struct wlr_event_pointer_button button = {
|
||||||
|
.device = &x11->pointer_dev,
|
||||||
|
.time_msec = ev->time,
|
||||||
|
.button = xcb_button_to_wl(ev->detail),
|
||||||
|
.state = event->response_type == XCB_BUTTON_PRESS ?
|
||||||
|
WLR_BUTTON_PRESSED : WLR_BUTTON_RELEASED,
|
||||||
|
};
|
||||||
|
|
||||||
|
wlr_signal_emit_safe(&x11->pointer.events.button, &button);
|
||||||
|
}
|
||||||
|
x11->time = ev->time;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
case XCB_MOTION_NOTIFY: {
|
||||||
|
xcb_motion_notify_event_t *ev = (xcb_motion_notify_event_t *)event;
|
||||||
|
|
||||||
|
struct wlr_x11_output *output =
|
||||||
|
x11_output_from_window_id(x11, ev->event);
|
||||||
|
if (output == NULL) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
struct wlr_output *wlr_output = &output->wlr_output;
|
||||||
|
|
||||||
|
struct wlr_box box = { .x = ev->event_x, .y = ev->event_y };
|
||||||
|
wlr_box_transform(&box, wlr_output->transform, wlr_output->width,
|
||||||
|
wlr_output->height, &box);
|
||||||
|
box.x /= wlr_output->scale;
|
||||||
|
box.y /= wlr_output->scale;
|
||||||
|
|
||||||
|
struct wlr_box layout_box;
|
||||||
|
x11_output_layout_get_box(x11, &layout_box);
|
||||||
|
|
||||||
|
double ox = wlr_output->lx / (double)layout_box.width;
|
||||||
|
double oy = wlr_output->ly / (double)layout_box.height;
|
||||||
|
|
||||||
|
struct wlr_event_pointer_motion_absolute wlr_event = {
|
||||||
|
.device = &x11->pointer_dev,
|
||||||
|
.time_msec = ev->time,
|
||||||
|
.x = box.x / (double)layout_box.width + ox,
|
||||||
|
.y = box.y / (double)layout_box.height + oy,
|
||||||
|
};
|
||||||
|
|
||||||
|
wlr_signal_emit_safe(&x11->pointer.events.motion_absolute, &wlr_event);
|
||||||
|
|
||||||
|
x11->time = ev->time;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
#ifdef WLR_HAS_XCB_XKB
|
||||||
|
if (x11->xkb_supported && event->response_type == x11->xkb_base_event) {
|
||||||
|
xcb_xkb_state_notify_event_t *ev =
|
||||||
|
(xcb_xkb_state_notify_event_t *)event;
|
||||||
|
wlr_keyboard_notify_modifiers(&x11->keyboard, ev->baseMods,
|
||||||
|
ev->latchedMods, ev->lockedMods, ev->lockedGroup);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const struct wlr_input_device_impl input_device_impl = { 0 };
|
||||||
|
|
||||||
|
bool wlr_input_device_is_x11(struct wlr_input_device *wlr_dev) {
|
||||||
|
return wlr_dev->impl == &input_device_impl;
|
||||||
|
}
|
@ -0,0 +1,187 @@
|
|||||||
|
#include <assert.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <wlr/interfaces/wlr_output.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
|
#include "backend/x11.h"
|
||||||
|
#include "util/signal.h"
|
||||||
|
|
||||||
|
static int signal_frame(void *data) {
|
||||||
|
struct wlr_x11_output *output = data;
|
||||||
|
wlr_output_send_frame(&output->wlr_output);
|
||||||
|
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void parse_xcb_setup(struct wlr_output *output, xcb_connection_t *xcb_conn) {
|
||||||
|
const xcb_setup_t *xcb_setup = xcb_get_setup(xcb_conn);
|
||||||
|
|
||||||
|
snprintf(output->make, sizeof(output->make), "%.*s",
|
||||||
|
xcb_setup_vendor_length(xcb_setup),
|
||||||
|
xcb_setup_vendor(xcb_setup));
|
||||||
|
snprintf(output->model, sizeof(output->model), "%"PRIu16".%"PRIu16,
|
||||||
|
xcb_setup->protocol_major_version,
|
||||||
|
xcb_setup->protocol_minor_version);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool output_set_custom_mode(struct wlr_output *wlr_output, int32_t width,
|
||||||
|
int32_t height, int32_t refresh) {
|
||||||
|
struct wlr_x11_output *output = (struct wlr_x11_output *)wlr_output;
|
||||||
|
struct wlr_x11_backend *x11 = output->x11;
|
||||||
|
|
||||||
|
wlr_output_update_custom_mode(&output->wlr_output, wlr_output->width,
|
||||||
|
wlr_output->height, refresh);
|
||||||
|
output->frame_delay = 1000000 / refresh;
|
||||||
|
|
||||||
|
const uint32_t values[] = { width, height };
|
||||||
|
xcb_configure_window(x11->xcb_conn, output->win,
|
||||||
|
XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT, values);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void output_transform(struct wlr_output *wlr_output,
|
||||||
|
enum wl_output_transform transform) {
|
||||||
|
struct wlr_x11_output *output = (struct wlr_x11_output *)wlr_output;
|
||||||
|
output->wlr_output.transform = transform;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void output_destroy(struct wlr_output *wlr_output) {
|
||||||
|
struct wlr_x11_output *output = (struct wlr_x11_output *)wlr_output;
|
||||||
|
struct wlr_x11_backend *x11 = output->x11;
|
||||||
|
|
||||||
|
wl_list_remove(&output->link);
|
||||||
|
wl_event_source_remove(output->frame_timer);
|
||||||
|
eglDestroySurface(x11->egl.display, output->surf);
|
||||||
|
xcb_destroy_window(x11->xcb_conn, output->win);
|
||||||
|
xcb_flush(x11->xcb_conn);
|
||||||
|
free(output);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool output_make_current(struct wlr_output *wlr_output, int *buffer_age) {
|
||||||
|
struct wlr_x11_output *output = (struct wlr_x11_output *)wlr_output;
|
||||||
|
struct wlr_x11_backend *x11 = output->x11;
|
||||||
|
|
||||||
|
return wlr_egl_make_current(&x11->egl, output->surf, buffer_age);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool output_swap_buffers(struct wlr_output *wlr_output,
|
||||||
|
pixman_region32_t *damage) {
|
||||||
|
struct wlr_x11_output *output = (struct wlr_x11_output *)wlr_output;
|
||||||
|
struct wlr_x11_backend *x11 = output->x11;
|
||||||
|
|
||||||
|
return wlr_egl_swap_buffers(&x11->egl, output->surf, damage);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct wlr_output_impl output_impl = {
|
||||||
|
.set_custom_mode = output_set_custom_mode,
|
||||||
|
.transform = output_transform,
|
||||||
|
.destroy = output_destroy,
|
||||||
|
.make_current = output_make_current,
|
||||||
|
.swap_buffers = output_swap_buffers,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wlr_output *wlr_x11_output_create(struct wlr_backend *backend) {
|
||||||
|
assert(wlr_backend_is_x11(backend));
|
||||||
|
struct wlr_x11_backend *x11 = (struct wlr_x11_backend *)backend;
|
||||||
|
|
||||||
|
if (!x11->started) {
|
||||||
|
++x11->requested_outputs;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wlr_x11_output *output = calloc(1, sizeof(struct wlr_x11_output));
|
||||||
|
if (output == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
output->x11 = x11;
|
||||||
|
|
||||||
|
struct wlr_output *wlr_output = &output->wlr_output;
|
||||||
|
wlr_output_init(wlr_output, &x11->backend, &output_impl, x11->wl_display);
|
||||||
|
|
||||||
|
wlr_output->refresh = 60 * 1000000;
|
||||||
|
output->frame_delay = 16; // 60 Hz
|
||||||
|
|
||||||
|
snprintf(wlr_output->name, sizeof(wlr_output->name), "X11-%d",
|
||||||
|
wl_list_length(&x11->outputs) + 1);
|
||||||
|
parse_xcb_setup(wlr_output, x11->xcb_conn);
|
||||||
|
|
||||||
|
uint32_t mask = XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK;
|
||||||
|
uint32_t values[2] = {
|
||||||
|
x11->screen->white_pixel,
|
||||||
|
XCB_EVENT_MASK_EXPOSURE |
|
||||||
|
XCB_EVENT_MASK_KEY_PRESS | XCB_EVENT_MASK_KEY_RELEASE |
|
||||||
|
XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE |
|
||||||
|
XCB_EVENT_MASK_POINTER_MOTION |
|
||||||
|
XCB_EVENT_MASK_STRUCTURE_NOTIFY
|
||||||
|
};
|
||||||
|
output->win = xcb_generate_id(x11->xcb_conn);
|
||||||
|
xcb_create_window(x11->xcb_conn, XCB_COPY_FROM_PARENT, output->win,
|
||||||
|
x11->screen->root, 0, 0, 1024, 768, 1, XCB_WINDOW_CLASS_INPUT_OUTPUT,
|
||||||
|
x11->screen->root_visual, mask, values);
|
||||||
|
|
||||||
|
output->surf = wlr_egl_create_surface(&x11->egl, &output->win);
|
||||||
|
if (!output->surf) {
|
||||||
|
wlr_log(L_ERROR, "Failed to create EGL surface");
|
||||||
|
free(output);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
xcb_change_property(x11->xcb_conn, XCB_PROP_MODE_REPLACE, output->win,
|
||||||
|
x11->atoms.wm_protocols, XCB_ATOM_ATOM, 32, 1,
|
||||||
|
&x11->atoms.wm_delete_window);
|
||||||
|
|
||||||
|
char title[32];
|
||||||
|
if (snprintf(title, sizeof(title), "wlroots - %s", wlr_output->name)) {
|
||||||
|
xcb_change_property(x11->xcb_conn, XCB_PROP_MODE_REPLACE, output->win,
|
||||||
|
x11->atoms.net_wm_name, x11->atoms.utf8_string, 8,
|
||||||
|
strlen(title), title);
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t cursor_values[] = { x11->cursor };
|
||||||
|
xcb_change_window_attributes(x11->xcb_conn, output->win, XCB_CW_CURSOR,
|
||||||
|
cursor_values);
|
||||||
|
|
||||||
|
xcb_map_window(x11->xcb_conn, output->win);
|
||||||
|
xcb_flush(x11->xcb_conn);
|
||||||
|
|
||||||
|
struct wl_event_loop *ev = wl_display_get_event_loop(x11->wl_display);
|
||||||
|
output->frame_timer = wl_event_loop_add_timer(ev, signal_frame, output);
|
||||||
|
|
||||||
|
wl_event_source_timer_update(output->frame_timer, output->frame_delay);
|
||||||
|
wlr_output_update_enabled(wlr_output, true);
|
||||||
|
|
||||||
|
wl_list_insert(&x11->outputs, &output->link);
|
||||||
|
wlr_signal_emit_safe(&x11->backend.events.new_output, wlr_output);
|
||||||
|
|
||||||
|
return wlr_output;
|
||||||
|
}
|
||||||
|
|
||||||
|
void x11_output_handle_configure_notify(struct wlr_x11_output *output,
|
||||||
|
xcb_configure_notify_event_t *ev) {
|
||||||
|
struct wlr_x11_backend *x11 = output->x11;
|
||||||
|
|
||||||
|
wlr_output_update_custom_mode(&output->wlr_output, ev->width,
|
||||||
|
ev->height, output->wlr_output.refresh);
|
||||||
|
|
||||||
|
// Move the pointer to its new location
|
||||||
|
xcb_query_pointer_cookie_t cookie =
|
||||||
|
xcb_query_pointer(x11->xcb_conn, output->win);
|
||||||
|
xcb_query_pointer_reply_t *pointer =
|
||||||
|
xcb_query_pointer_reply(x11->xcb_conn, cookie, NULL);
|
||||||
|
if (!pointer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wlr_event_pointer_motion_absolute abs = {
|
||||||
|
.device = &x11->pointer_dev,
|
||||||
|
.time_msec = x11->time,
|
||||||
|
.x = (double)pointer->root_x / output->wlr_output.width,
|
||||||
|
.y = (double)pointer->root_y / output->wlr_output.height,
|
||||||
|
};
|
||||||
|
|
||||||
|
wlr_signal_emit_safe(&x11->pointer.events.motion_absolute, &abs);
|
||||||
|
free(pointer);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool wlr_output_is_x11(struct wlr_output *wlr_output) {
|
||||||
|
return wlr_output->impl == &output_impl;
|
||||||
|
}
|
@ -0,0 +1,430 @@
|
|||||||
|
#define _POSIX_C_SOURCE 199309L
|
||||||
|
#include <assert.h>
|
||||||
|
#include <GLES2/gl2.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <wayland-client.h>
|
||||||
|
#include <wayland-cursor.h>
|
||||||
|
#include <wayland-egl.h>
|
||||||
|
#include <wlr/render/egl.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
|
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
|
||||||
|
|
||||||
|
static struct wl_compositor *compositor = NULL;
|
||||||
|
static struct wl_seat *seat = NULL;
|
||||||
|
static struct wl_shm *shm = NULL;
|
||||||
|
static struct wl_pointer *pointer = NULL;
|
||||||
|
//static struct wl_keyboard *keyboard = NULL;
|
||||||
|
static struct zwlr_layer_shell_v1 *layer_shell = NULL;
|
||||||
|
struct zwlr_layer_surface_v1 *layer_surface;
|
||||||
|
static struct wl_output *wl_output = NULL;
|
||||||
|
|
||||||
|
struct wl_surface *wl_surface;
|
||||||
|
struct wlr_egl egl;
|
||||||
|
struct wl_egl_window *egl_window;
|
||||||
|
struct wlr_egl_surface *egl_surface;
|
||||||
|
struct wl_callback *frame_callback;
|
||||||
|
|
||||||
|
static uint32_t output = 0;
|
||||||
|
static uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND;
|
||||||
|
static uint32_t anchor = 0;
|
||||||
|
static uint32_t width = 256, height = 256;
|
||||||
|
static int32_t margin_top = 0;
|
||||||
|
static double alpha = 1.0;
|
||||||
|
static bool run_display = true;
|
||||||
|
static bool animate = false;
|
||||||
|
static double frame = 0;
|
||||||
|
static int cur_x = -1, cur_y = -1;
|
||||||
|
static int buttons = 0;
|
||||||
|
|
||||||
|
struct wl_cursor_theme *cursor_theme;
|
||||||
|
struct wl_cursor_image *cursor_image;
|
||||||
|
struct wl_surface *cursor_surface;
|
||||||
|
|
||||||
|
static struct {
|
||||||
|
struct timespec last_frame;
|
||||||
|
float color[3];
|
||||||
|
int dec;
|
||||||
|
} demo;
|
||||||
|
|
||||||
|
static void draw(void);
|
||||||
|
|
||||||
|
static void surface_frame_callback(
|
||||||
|
void *data, struct wl_callback *cb, uint32_t time) {
|
||||||
|
wl_callback_destroy(cb);
|
||||||
|
frame_callback = NULL;
|
||||||
|
draw();
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct wl_callback_listener frame_listener = {
|
||||||
|
.done = surface_frame_callback
|
||||||
|
};
|
||||||
|
|
||||||
|
static void draw(void) {
|
||||||
|
eglMakeCurrent(egl.display, egl_surface, egl_surface, egl.context);
|
||||||
|
|
||||||
|
struct timespec ts;
|
||||||
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||||
|
|
||||||
|
long ms = (ts.tv_sec - demo.last_frame.tv_sec) * 1000 +
|
||||||
|
(ts.tv_nsec - demo.last_frame.tv_nsec) / 1000000;
|
||||||
|
int inc = (demo.dec + 1) % 3;
|
||||||
|
|
||||||
|
if (!buttons) {
|
||||||
|
demo.color[inc] += ms / 2000.0f;
|
||||||
|
demo.color[demo.dec] -= ms / 2000.0f;
|
||||||
|
|
||||||
|
if (demo.color[demo.dec] < 0.0f) {
|
||||||
|
demo.color[inc] = 1.0f;
|
||||||
|
demo.color[demo.dec] = 0.0f;
|
||||||
|
demo.dec = inc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (animate) {
|
||||||
|
frame += ms / 50.0;
|
||||||
|
int32_t old_top = margin_top;
|
||||||
|
margin_top = -(20 - ((int)frame % 20));
|
||||||
|
if (old_top != margin_top) {
|
||||||
|
zwlr_layer_surface_v1_set_margin(layer_surface,
|
||||||
|
margin_top, 0, 0, 0);
|
||||||
|
wl_surface_commit(wl_surface);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
glViewport(0, 0, width, height);
|
||||||
|
if (buttons) {
|
||||||
|
glClearColor(1, 1, 1, alpha);
|
||||||
|
} else {
|
||||||
|
glClearColor(demo.color[0], demo.color[1], demo.color[2], alpha);
|
||||||
|
}
|
||||||
|
glClear(GL_COLOR_BUFFER_BIT);
|
||||||
|
|
||||||
|
if (cur_x != -1 && cur_y != -1) {
|
||||||
|
glEnable(GL_SCISSOR_TEST);
|
||||||
|
glScissor(cur_x, height - cur_y, 5, 5);
|
||||||
|
glClearColor(0, 0, 0, 1);
|
||||||
|
glClear(GL_COLOR_BUFFER_BIT);
|
||||||
|
glDisable(GL_SCISSOR_TEST);
|
||||||
|
}
|
||||||
|
|
||||||
|
frame_callback = wl_surface_frame(wl_surface);
|
||||||
|
wl_callback_add_listener(frame_callback, &frame_listener, NULL);
|
||||||
|
|
||||||
|
eglSwapBuffers(egl.display, egl_surface);
|
||||||
|
|
||||||
|
demo.last_frame = ts;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_configure(void *data,
|
||||||
|
struct zwlr_layer_surface_v1 *surface,
|
||||||
|
uint32_t serial, uint32_t w, uint32_t h) {
|
||||||
|
width = w;
|
||||||
|
height = h;
|
||||||
|
if (egl_window) {
|
||||||
|
wl_egl_window_resize(egl_window, width, height, 0, 0);
|
||||||
|
}
|
||||||
|
zwlr_layer_surface_v1_ack_configure(surface, serial);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_closed(void *data,
|
||||||
|
struct zwlr_layer_surface_v1 *surface) {
|
||||||
|
eglDestroySurface(egl.display, egl_surface);
|
||||||
|
wl_egl_window_destroy(egl_window);
|
||||||
|
zwlr_layer_surface_v1_destroy(surface);
|
||||||
|
wl_surface_destroy(wl_surface);
|
||||||
|
run_display = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct zwlr_layer_surface_v1_listener layer_surface_listener = {
|
||||||
|
.configure = layer_surface_configure,
|
||||||
|
.closed = layer_surface_closed,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void wl_pointer_enter(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t serial, struct wl_surface *surface,
|
||||||
|
wl_fixed_t surface_x, wl_fixed_t surface_y) {
|
||||||
|
wl_surface_attach(cursor_surface,
|
||||||
|
wl_cursor_image_get_buffer(cursor_image), 0, 0);
|
||||||
|
wl_pointer_set_cursor(wl_pointer, serial, cursor_surface,
|
||||||
|
cursor_image->hotspot_x, cursor_image->hotspot_y);
|
||||||
|
wl_surface_commit(cursor_surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_leave(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t serial, struct wl_surface *surface) {
|
||||||
|
cur_x = cur_y = -1;
|
||||||
|
buttons = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_motion(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) {
|
||||||
|
cur_x = wl_fixed_to_int(surface_x);
|
||||||
|
cur_y = wl_fixed_to_int(surface_y);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_button(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t serial, uint32_t time, uint32_t button, uint32_t state) {
|
||||||
|
if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
|
||||||
|
buttons++;
|
||||||
|
} else {
|
||||||
|
buttons--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_axis(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t time, uint32_t axis, wl_fixed_t value) {
|
||||||
|
// Who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_frame(void *data, struct wl_pointer *wl_pointer) {
|
||||||
|
// Who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_axis_source(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t axis_source) {
|
||||||
|
// Who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_axis_stop(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t time, uint32_t axis) {
|
||||||
|
// Who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
static void wl_pointer_axis_discrete(void *data, struct wl_pointer *wl_pointer,
|
||||||
|
uint32_t axis, int32_t discrete) {
|
||||||
|
// Who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wl_pointer_listener pointer_listener = {
|
||||||
|
.enter = wl_pointer_enter,
|
||||||
|
.leave = wl_pointer_leave,
|
||||||
|
.motion = wl_pointer_motion,
|
||||||
|
.button = wl_pointer_button,
|
||||||
|
.axis = wl_pointer_axis,
|
||||||
|
.frame = wl_pointer_frame,
|
||||||
|
.axis_source = wl_pointer_axis_source,
|
||||||
|
.axis_stop = wl_pointer_axis_stop,
|
||||||
|
.axis_discrete = wl_pointer_axis_discrete,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat,
|
||||||
|
enum wl_seat_capability caps) {
|
||||||
|
if ((caps & WL_SEAT_CAPABILITY_POINTER)) {
|
||||||
|
pointer = wl_seat_get_pointer(wl_seat);
|
||||||
|
wl_pointer_add_listener(pointer, &pointer_listener, NULL);
|
||||||
|
}
|
||||||
|
if ((caps & WL_SEAT_CAPABILITY_KEYBOARD)) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void seat_handle_name(void *data, struct wl_seat *wl_seat,
|
||||||
|
const char *name) {
|
||||||
|
// Who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
const struct wl_seat_listener seat_listener = {
|
||||||
|
.capabilities = seat_handle_capabilities,
|
||||||
|
.name = seat_handle_name,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void handle_global(void *data, struct wl_registry *registry,
|
||||||
|
uint32_t name, const char *interface, uint32_t version) {
|
||||||
|
if (strcmp(interface, "wl_compositor") == 0) {
|
||||||
|
compositor = wl_registry_bind(registry, name,
|
||||||
|
&wl_compositor_interface, 1);
|
||||||
|
} else if (strcmp(interface, wl_shm_interface.name) == 0) {
|
||||||
|
shm = wl_registry_bind(registry, name,
|
||||||
|
&wl_shm_interface, 1);
|
||||||
|
} else if (strcmp(interface, "wl_output") == 0) {
|
||||||
|
if (output == 0 && !wl_output) {
|
||||||
|
wl_output = wl_registry_bind(registry, name,
|
||||||
|
&wl_output_interface, 1);
|
||||||
|
} else {
|
||||||
|
output--;
|
||||||
|
}
|
||||||
|
} else if (strcmp(interface, wl_seat_interface.name) == 0) {
|
||||||
|
seat = wl_registry_bind(registry, name,
|
||||||
|
&wl_seat_interface, 1);
|
||||||
|
wl_seat_add_listener(seat, &seat_listener, NULL);
|
||||||
|
} else if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) {
|
||||||
|
layer_shell = wl_registry_bind(
|
||||||
|
registry, name, &zwlr_layer_shell_v1_interface, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_global_remove(void *data, struct wl_registry *registry,
|
||||||
|
uint32_t name) {
|
||||||
|
// who cares
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct wl_registry_listener registry_listener = {
|
||||||
|
.global = handle_global,
|
||||||
|
.global_remove = handle_global_remove,
|
||||||
|
};
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
wlr_log_init(L_DEBUG, NULL);
|
||||||
|
char *namespace = "wlroots";
|
||||||
|
int exclusive_zone = 0;
|
||||||
|
int32_t margin_right = 0, margin_bottom = 0, margin_left = 0;
|
||||||
|
bool found;
|
||||||
|
int c;
|
||||||
|
while ((c = getopt(argc, argv, "nw:h:o:l:a:x:m:t:")) != -1) {
|
||||||
|
switch (c) {
|
||||||
|
case 'o':
|
||||||
|
output = atoi(optarg);
|
||||||
|
break;
|
||||||
|
case 'w':
|
||||||
|
width = atoi(optarg);
|
||||||
|
break;
|
||||||
|
case 'h':
|
||||||
|
height = atoi(optarg);
|
||||||
|
break;
|
||||||
|
case 'x':
|
||||||
|
exclusive_zone = atoi(optarg);
|
||||||
|
break;
|
||||||
|
case 'l': {
|
||||||
|
struct {
|
||||||
|
char *name;
|
||||||
|
enum zwlr_layer_shell_v1_layer value;
|
||||||
|
} layers[] = {
|
||||||
|
{ "background", ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND },
|
||||||
|
{ "bottom", ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM },
|
||||||
|
{ "top", ZWLR_LAYER_SHELL_V1_LAYER_TOP },
|
||||||
|
{ "overlay", ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY },
|
||||||
|
};
|
||||||
|
found = false;
|
||||||
|
for (size_t i = 0; i < sizeof(layers) / sizeof(layers[0]); ++i) {
|
||||||
|
if (strcmp(optarg, layers[i].name) == 0) {
|
||||||
|
layer = layers[i].value;
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!found) {
|
||||||
|
fprintf(stderr, "invalid layer %s\n", optarg);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'a': {
|
||||||
|
struct {
|
||||||
|
char *name;
|
||||||
|
uint32_t value;
|
||||||
|
} anchors[] = {
|
||||||
|
{ "top", ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP },
|
||||||
|
{ "bottom", ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM },
|
||||||
|
{ "left", ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT },
|
||||||
|
{ "right", ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT },
|
||||||
|
};
|
||||||
|
found = false;
|
||||||
|
for (size_t i = 0; i < sizeof(anchors) / sizeof(anchors[0]); ++i) {
|
||||||
|
if (strcmp(optarg, anchors[i].name) == 0) {
|
||||||
|
anchor |= anchors[i].value;
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!found) {
|
||||||
|
fprintf(stderr, "invalid anchor %s\n", optarg);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 't':
|
||||||
|
alpha = atof(optarg);
|
||||||
|
break;
|
||||||
|
case 'm': {
|
||||||
|
char *endptr = optarg;
|
||||||
|
margin_top = strtol(endptr, &endptr, 10);
|
||||||
|
assert(*endptr == ',');
|
||||||
|
margin_right = strtol(endptr + 1, &endptr, 10);
|
||||||
|
assert(*endptr == ',');
|
||||||
|
margin_bottom = strtol(endptr + 1, &endptr, 10);
|
||||||
|
assert(*endptr == ',');
|
||||||
|
margin_left = strtol(endptr + 1, &endptr, 10);
|
||||||
|
assert(!*endptr);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'n':
|
||||||
|
animate = true;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wl_display *display = wl_display_connect(NULL);
|
||||||
|
if (display == NULL) {
|
||||||
|
fprintf(stderr, "Failed to create display\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wl_registry *registry = wl_display_get_registry(display);
|
||||||
|
wl_registry_add_listener(registry, ®istry_listener, NULL);
|
||||||
|
wl_display_roundtrip(display);
|
||||||
|
|
||||||
|
if (compositor == NULL) {
|
||||||
|
fprintf(stderr, "wl_compositor not available\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (shm == NULL) {
|
||||||
|
fprintf(stderr, "wl_shm not available\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (layer_shell == NULL) {
|
||||||
|
fprintf(stderr, "layer_shell not available\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
if (wl_output == NULL) {
|
||||||
|
fprintf(stderr, "wl_output not available\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
assert(cursor_theme = wl_cursor_theme_load(NULL, 16, shm));
|
||||||
|
struct wl_cursor *cursor;
|
||||||
|
assert(cursor = wl_cursor_theme_get_cursor(cursor_theme, "crosshair"));
|
||||||
|
cursor_image = cursor->images[0];
|
||||||
|
assert(cursor_surface = wl_compositor_create_surface(compositor));
|
||||||
|
|
||||||
|
EGLint attribs[] = { EGL_ALPHA_SIZE, 8, EGL_NONE };
|
||||||
|
wlr_egl_init(&egl, EGL_PLATFORM_WAYLAND_EXT, display,
|
||||||
|
attribs, WL_SHM_FORMAT_ARGB8888);
|
||||||
|
|
||||||
|
wl_surface = wl_compositor_create_surface(compositor);
|
||||||
|
assert(wl_surface);
|
||||||
|
|
||||||
|
layer_surface = zwlr_layer_shell_v1_get_layer_surface(layer_shell,
|
||||||
|
wl_surface, wl_output, layer, namespace);
|
||||||
|
assert(layer_surface);
|
||||||
|
zwlr_layer_surface_v1_set_size(layer_surface, width, height);
|
||||||
|
zwlr_layer_surface_v1_set_anchor(layer_surface, anchor);
|
||||||
|
zwlr_layer_surface_v1_set_exclusive_zone(layer_surface, exclusive_zone);
|
||||||
|
zwlr_layer_surface_v1_set_margin(layer_surface,
|
||||||
|
margin_top, margin_right, margin_bottom, margin_left);
|
||||||
|
zwlr_layer_surface_v1_add_listener(layer_surface,
|
||||||
|
&layer_surface_listener, layer_surface);
|
||||||
|
// TODO: interactivity
|
||||||
|
wl_surface_commit(wl_surface);
|
||||||
|
wl_display_roundtrip(display);
|
||||||
|
|
||||||
|
egl_window = wl_egl_window_create(wl_surface, width, height);
|
||||||
|
assert(egl_window);
|
||||||
|
egl_surface = wlr_egl_create_surface(&egl, egl_window);
|
||||||
|
assert(egl_surface);
|
||||||
|
|
||||||
|
wl_display_roundtrip(display);
|
||||||
|
draw();
|
||||||
|
|
||||||
|
while (wl_display_dispatch(display) != -1 && run_display) {
|
||||||
|
// This space intentionally left blank
|
||||||
|
}
|
||||||
|
|
||||||
|
wl_cursor_theme_destroy(cursor_theme);
|
||||||
|
return 0;
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
#ifndef ROOTSTON_LAYERS_H
|
||||||
|
#define ROOTSTON_LAYERS_H
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <wlr/types/wlr_box.h>
|
||||||
|
#include <wlr/types/wlr_surface.h>
|
||||||
|
#include <wlr/types/wlr_layer_shell.h>
|
||||||
|
|
||||||
|
struct roots_layer_surface {
|
||||||
|
struct wlr_layer_surface *layer_surface;
|
||||||
|
struct wl_list link;
|
||||||
|
|
||||||
|
struct wl_listener destroy;
|
||||||
|
struct wl_listener map;
|
||||||
|
struct wl_listener unmap;
|
||||||
|
struct wl_listener surface_commit;
|
||||||
|
struct wl_listener output_destroy;
|
||||||
|
|
||||||
|
bool configured;
|
||||||
|
struct wlr_box geo;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct roots_output;
|
||||||
|
void arrange_layers(struct roots_output *output);
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,102 @@
|
|||||||
|
#ifndef WLR_TYPES_WLR_LAYER_SHELL_H
|
||||||
|
#define WLR_TYPES_WLR_LAYER_SHELL_H
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <wayland-server.h>
|
||||||
|
#include <wlr/types/wlr_box.h>
|
||||||
|
#include <wlr/types/wlr_surface.h>
|
||||||
|
#include "wlr-layer-shell-unstable-v1-protocol.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* wlr_layer_shell allows clients to arrange themselves in "layers" on the
|
||||||
|
* desktop in accordance with the wlr-layer-shell protocol. When a client is
|
||||||
|
* added, the new_surface signal will be raised and passed a reference to our
|
||||||
|
* wlr_layer_surface. At this time, the client will have configured the surface
|
||||||
|
* as it desires, including information like desired anchors and margins. The
|
||||||
|
* compositor should use this information to decide how to arrange the layer
|
||||||
|
* on-screen, then determine the dimensions of the layer and call
|
||||||
|
* wlr_layer_surface_configure. The client will then attach a buffer and commit
|
||||||
|
* the surface, at which point the wlr_layer_surface map signal is raised and
|
||||||
|
* the compositor should begin rendering the surface.
|
||||||
|
*/
|
||||||
|
struct wlr_layer_shell {
|
||||||
|
struct wl_global *wl_global;
|
||||||
|
struct wl_list client_resources; // wl_resource
|
||||||
|
struct wl_list surfaces; // wl_layer_surface
|
||||||
|
|
||||||
|
struct wl_listener display_destroy;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
struct wl_signal new_surface;
|
||||||
|
} events;
|
||||||
|
|
||||||
|
void *data;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wlr_layer_surface_state {
|
||||||
|
uint32_t anchor;
|
||||||
|
int32_t exclusive_zone;
|
||||||
|
struct {
|
||||||
|
uint32_t top, right, bottom, left;
|
||||||
|
} margin;
|
||||||
|
bool keyboard_interactive;
|
||||||
|
uint32_t desired_width, desired_height;
|
||||||
|
uint32_t actual_width, actual_height;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wlr_layer_surface_configure {
|
||||||
|
struct wl_list link; // wlr_layer_surface::configure_list
|
||||||
|
uint32_t serial;
|
||||||
|
struct wlr_layer_surface_state state;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wlr_layer_surface {
|
||||||
|
struct wl_list link; // wlr_layer_shell::surfaces
|
||||||
|
struct wlr_surface *surface;
|
||||||
|
struct wlr_output *output;
|
||||||
|
struct wl_resource *resource;
|
||||||
|
struct wlr_layer_shell *shell;
|
||||||
|
|
||||||
|
const char *namespace;
|
||||||
|
enum zwlr_layer_shell_v1_layer layer;
|
||||||
|
|
||||||
|
bool added, configured, mapped, closed;
|
||||||
|
uint32_t configure_serial;
|
||||||
|
struct wl_event_source *configure_idle;
|
||||||
|
uint32_t configure_next_serial;
|
||||||
|
struct wl_list configure_list;
|
||||||
|
|
||||||
|
struct wlr_layer_surface_configure *acked_configure;
|
||||||
|
|
||||||
|
struct wlr_layer_surface_state client_pending;
|
||||||
|
struct wlr_layer_surface_state server_pending;
|
||||||
|
struct wlr_layer_surface_state current;
|
||||||
|
|
||||||
|
struct wl_listener surface_destroy_listener;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
struct wl_signal destroy;
|
||||||
|
struct wl_signal map;
|
||||||
|
struct wl_signal unmap;
|
||||||
|
} events;
|
||||||
|
|
||||||
|
void *data;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct wlr_layer_shell *wlr_layer_shell_create(struct wl_display *display);
|
||||||
|
void wlr_layer_shell_destroy(struct wlr_layer_shell *layer_shell);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Notifies the layer surface to configure itself with this width/height. The
|
||||||
|
* layer_surface will signal its map event when the surface is ready to assume
|
||||||
|
* this size.
|
||||||
|
*/
|
||||||
|
void wlr_layer_surface_configure(struct wlr_layer_surface *surface,
|
||||||
|
uint32_t width, uint32_t height);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unmaps this layer surface and notifies the client that it has been closed.
|
||||||
|
*/
|
||||||
|
void wlr_layer_surface_close(struct wlr_layer_surface *surface);
|
||||||
|
|
||||||
|
#endif
|
@ -0,0 +1,281 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<protocol name="wlr_layer_shell_unstable_v1">
|
||||||
|
<copyright>
|
||||||
|
Copyright © 2017 Drew DeVault
|
||||||
|
|
||||||
|
Permission to use, copy, modify, distribute, and sell this
|
||||||
|
software and its documentation for any purpose is hereby granted
|
||||||
|
without fee, provided that the above copyright notice appear in
|
||||||
|
all copies and that both that copyright notice and this permission
|
||||||
|
notice appear in supporting documentation, and that the name of
|
||||||
|
the copyright holders not be used in advertising or publicity
|
||||||
|
pertaining to distribution of the software without specific,
|
||||||
|
written prior permission. The copyright holders make no
|
||||||
|
representations about the suitability of this software for any
|
||||||
|
purpose. It is provided "as is" without express or implied
|
||||||
|
warranty.
|
||||||
|
|
||||||
|
THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
||||||
|
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||||
|
FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
||||||
|
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||||
|
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||||
|
THIS SOFTWARE.
|
||||||
|
</copyright>
|
||||||
|
|
||||||
|
<interface name="zwlr_layer_shell_v1" version="1">
|
||||||
|
<description summary="create surfaces that are layers of the desktop">
|
||||||
|
Clients can use this interface to assign the surface_layer role to
|
||||||
|
wl_surfaces. Such surfaces are assigned to a "layer" of the output and
|
||||||
|
rendered with a defined z-depth respective to each other. They may also be
|
||||||
|
anchored to the edges and corners of a screen and specify input handling
|
||||||
|
semantics. This interface should be suitable for the implementation of
|
||||||
|
many desktop shell components, and a broad number of other applications
|
||||||
|
that interact with the desktop.
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<request name="get_layer_surface">
|
||||||
|
<description summary="create a layer_surface from a surface">
|
||||||
|
Create a layer surface for an existing surface. This assigns the role of
|
||||||
|
layer_surface, or raises a protocol error if another role is already
|
||||||
|
assigned.
|
||||||
|
|
||||||
|
Creating a layer surface from a wl_surface which has a buffer attached
|
||||||
|
or committed is a client error, and any attempts by a client to attach
|
||||||
|
or manipulate a buffer prior to the first layer_surface.configure call
|
||||||
|
must also be treated as errors.
|
||||||
|
|
||||||
|
Clients can specify a namespace that defines the purpose of the layer
|
||||||
|
surface.
|
||||||
|
</description>
|
||||||
|
<arg name="id" type="new_id" interface="zwlr_layer_surface_v1"/>
|
||||||
|
<arg name="surface" type="object" interface="wl_surface"/>
|
||||||
|
<arg name="output" type="object" interface="wl_output"/>
|
||||||
|
<arg name="layer" type="uint" enum="layer" summary="layer to add this surface to"/>
|
||||||
|
<arg name="namespace" type="string" summary="namespace for the layer surface"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<enum name="error">
|
||||||
|
<entry name="role" value="0" summary="wl_surface has another role"/>
|
||||||
|
<entry name="invalid_layer" value="1" summary="layer value is invalid"/>
|
||||||
|
<entry name="already_constructed" value="2" summary="wl_surface has a buffer attached or committed"/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<enum name="layer">
|
||||||
|
<description summary="available layers for surfaces">
|
||||||
|
These values indicate which layers a surface can be rendered in. They
|
||||||
|
are ordered by z depth, bottom-most first. Traditional shell surfaces
|
||||||
|
will typically be rendered between the bottom and top layers.
|
||||||
|
Fullscreen shell surfaces are typically rendered at the top layer.
|
||||||
|
Multiple surfaces can share a single layer, and ordering within a
|
||||||
|
single layer is undefined.
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<entry name="background" value="0"/>
|
||||||
|
<entry name="bottom" value="1"/>
|
||||||
|
<entry name="top" value="2"/>
|
||||||
|
<entry name="overlay" value="3"/>
|
||||||
|
</enum>
|
||||||
|
</interface>
|
||||||
|
|
||||||
|
<interface name="zwlr_layer_surface_v1" version="1">
|
||||||
|
<description summary="layer metadata interface">
|
||||||
|
An interface that may be implemented by a wl_surface, for surfaces that
|
||||||
|
are designed to be rendered as a layer of a stacked desktop-like
|
||||||
|
environment.
|
||||||
|
|
||||||
|
Layer surface state (size, anchor, exclusive zone, margin, interactivity)
|
||||||
|
is double-buffered, and will be applied at the time wl_surface.commit of
|
||||||
|
the corresponding wl_surface is called.
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<request name="set_size">
|
||||||
|
<description summary="sets the size of the surface">
|
||||||
|
Sets the size of the surface in surface-local coordinates. The
|
||||||
|
compositor will display the surface centered with respect to its
|
||||||
|
anchors.
|
||||||
|
|
||||||
|
If you pass 0 for either value, the compositor will assign it and
|
||||||
|
inform you of the assignment in the configure event. You must set your
|
||||||
|
anchor to opposite edges in the dimensions you omit; not doing so is a
|
||||||
|
protocol error. Both values are 0 by default.
|
||||||
|
|
||||||
|
Size is double-buffered, see wl_surface.commit.
|
||||||
|
</description>
|
||||||
|
<arg name="width" type="uint"/>
|
||||||
|
<arg name="height" type="uint"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="set_anchor">
|
||||||
|
<description summary="configures the anchor point of the surface">
|
||||||
|
Requests that the compositor anchor the surface to the specified edges
|
||||||
|
and corners. If two orthoginal edges are specified (e.g. 'top' and
|
||||||
|
'left'), then the anchor point will be the intersection of the edges
|
||||||
|
(e.g. the top left corner of the output); otherwise the anchor point
|
||||||
|
will be centered on that edge, or in the center if none is specified.
|
||||||
|
|
||||||
|
Anchor is double-buffered, see wl_surface.commit.
|
||||||
|
</description>
|
||||||
|
<arg name="anchor" type="uint" enum="anchor"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="set_exclusive_zone">
|
||||||
|
<description summary="configures the exclusive geometry of this surface">
|
||||||
|
Requests that the compositor avoids occluding an area of the surface
|
||||||
|
with other surfaces. The compositor's use of this information is
|
||||||
|
implementation-dependent - do not assume that this region will not
|
||||||
|
actually be occluded.
|
||||||
|
|
||||||
|
A positive value is only meaningful if the surface is anchored to an
|
||||||
|
edge, rather than a corner. The zone is the number of surface-local
|
||||||
|
coordinates from the edge that are considered exclusive.
|
||||||
|
|
||||||
|
Surfaces that do not wish to have an exclusive zone may instead specify
|
||||||
|
how they should interact with surfaces that do. If set to zero, the
|
||||||
|
surface indicates that it would like to be moved to avoid occluding
|
||||||
|
surfaces with a positive excluzive zone. If set to -1, the surface
|
||||||
|
indicates that it would not like to be moved to accomodate for other
|
||||||
|
surfaces, and the compositor should extend it all the way to the edges
|
||||||
|
it is anchored to.
|
||||||
|
|
||||||
|
For example, a panel might set its exclusive zone to 10, so that
|
||||||
|
maximized shell surfaces are not shown on top of it. A notification
|
||||||
|
might set its exclusive zone to 0, so that it is moved to avoid
|
||||||
|
occluding the panel, but shell surfaces are shown underneath it. A
|
||||||
|
wallpaper or lock screen might set their exclusive zone to -1, so that
|
||||||
|
they stretch below or over the panel.
|
||||||
|
|
||||||
|
The default value is 0.
|
||||||
|
|
||||||
|
Exclusive zone is double-buffered, see wl_surface.commit.
|
||||||
|
</description>
|
||||||
|
<arg name="zone" type="int"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="set_margin">
|
||||||
|
<description summary="sets a margin from the anchor point">
|
||||||
|
Requests that the surface be placed some distance away from the anchor
|
||||||
|
point on the output, in surface-local coordinates. Setting this value
|
||||||
|
for edges you are not anchored to has no effect.
|
||||||
|
|
||||||
|
The exclusive zone includes the margin.
|
||||||
|
|
||||||
|
Margin is double-buffered, see wl_surface.commit.
|
||||||
|
</description>
|
||||||
|
<arg name="top" type="int"/>
|
||||||
|
<arg name="right" type="int"/>
|
||||||
|
<arg name="bottom" type="int"/>
|
||||||
|
<arg name="left" type="int"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="set_keyboard_interactivity">
|
||||||
|
<description summary="requests keyboard events">
|
||||||
|
Set to 1 to request that the seat send keyboard events to this layer
|
||||||
|
surface. For layers below the shell surface layer, the seat will use
|
||||||
|
normal focus semantics. For layers above the shell surface layers, the
|
||||||
|
seat will always give exclusive keyboard focus to the top-most layer
|
||||||
|
which has keyboard interactivity set to true.
|
||||||
|
|
||||||
|
Layer surfaces receive pointer, touch, and tablet events normally. If
|
||||||
|
you do not want to receive them, set the input region on your surface
|
||||||
|
to an empty region.
|
||||||
|
|
||||||
|
Events is double-buffered, see wl_surface.commit.
|
||||||
|
</description>
|
||||||
|
<arg name="keyboard_interactivity" type="uint"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="get_popup">
|
||||||
|
<description summary="assign this layer_surface as an xdg_popup parent">
|
||||||
|
This assigns an xdg_popup's parent to this layer_surface. This popup
|
||||||
|
should have been created via xdg_surface::get_popup with the parent set
|
||||||
|
to NULL, and this request must be invoked before committing the popup's
|
||||||
|
initial state.
|
||||||
|
|
||||||
|
See the documentation of xdg_popup for more details about what an
|
||||||
|
xdg_popup is and how it is used.
|
||||||
|
</description>
|
||||||
|
<arg name="popup" type="object" interface="xdg_popup"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="ack_configure">
|
||||||
|
<description summary="ack a configure event">
|
||||||
|
When a configure event is received, if a client commits the
|
||||||
|
surface in response to the configure event, then the client
|
||||||
|
must make an ack_configure request sometime before the commit
|
||||||
|
request, passing along the serial of the configure event.
|
||||||
|
|
||||||
|
If the client receives multiple configure events before it
|
||||||
|
can respond to one, it only has to ack the last configure event.
|
||||||
|
|
||||||
|
A client is not required to commit immediately after sending
|
||||||
|
an ack_configure request - it may even ack_configure several times
|
||||||
|
before its next surface commit.
|
||||||
|
|
||||||
|
A client may send multiple ack_configure requests before committing, but
|
||||||
|
only the last request sent before a commit indicates which configure
|
||||||
|
event the client really is responding to.
|
||||||
|
</description>
|
||||||
|
<arg name="serial" type="uint" summary="the serial from the configure event"/>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<request name="destroy" type="destructor">
|
||||||
|
<description summary="destroy the layer_surface">
|
||||||
|
This request destroys the layer surface.
|
||||||
|
</description>
|
||||||
|
</request>
|
||||||
|
|
||||||
|
<event name="configure">
|
||||||
|
<description summary="suggest a surface change">
|
||||||
|
The configure event asks the client to resize its surface.
|
||||||
|
|
||||||
|
Clients should arrange their surface for the new states, and then send
|
||||||
|
an ack_configure request with the serial sent in this configure event at
|
||||||
|
some point before committing the new surface.
|
||||||
|
|
||||||
|
The client is free to dismiss all but the last configure event it
|
||||||
|
received.
|
||||||
|
|
||||||
|
The width and height arguments specify the size of the window in
|
||||||
|
surface-local coordinates.
|
||||||
|
|
||||||
|
The size is a hint, in the sense that the client is free to ignore it if
|
||||||
|
it doesn't resize, pick a smaller size (to satisfy aspect ratio or
|
||||||
|
resize in steps of NxM pixels). If the client picks a smaller size and
|
||||||
|
is anchored to two opposite anchors (e.g. 'top' and 'bottom'), the
|
||||||
|
surface will be centered on this axis.
|
||||||
|
|
||||||
|
If the width or height arguments are zero, it means the client should
|
||||||
|
decide its own window dimension.
|
||||||
|
</description>
|
||||||
|
<arg name="serial" type="uint"/>
|
||||||
|
<arg name="width" type="uint"/>
|
||||||
|
<arg name="height" type="uint"/>
|
||||||
|
</event>
|
||||||
|
|
||||||
|
<event name="closed">
|
||||||
|
<description summary="surface should be closed">
|
||||||
|
The closed event is sent by the compositor when the surface will no
|
||||||
|
longer be shown. The output may have been destroyed or the user may
|
||||||
|
have asked for it to be removed. Further changes to the surface will be
|
||||||
|
ignored. The client should destroy the resource after receiving this
|
||||||
|
event, and create a new surface if they so choose.
|
||||||
|
</description>
|
||||||
|
</event>
|
||||||
|
|
||||||
|
<enum name="error">
|
||||||
|
<entry name="invalid_surface_state" value="0" summary="provided surface state is invalid"/>
|
||||||
|
<entry name="invalid_size" value="1" summary="size is invalid"/>
|
||||||
|
<entry name="invalid_anchor" value="2" summary="anchor bitfield is invalid"/>
|
||||||
|
</enum>
|
||||||
|
|
||||||
|
<enum name="anchor" bitfield="true">
|
||||||
|
<entry name="top" value="1" summary="the top edge of the anchor rectangle"/>
|
||||||
|
<entry name="bottom" value="2" summary="the bottom edge of the anchor rectangle"/>
|
||||||
|
<entry name="left" value="4" summary="the left edge of the anchor rectangle"/>
|
||||||
|
<entry name="right" value="8" summary="the right edge of the anchor rectangle"/>
|
||||||
|
</enum>
|
||||||
|
</interface>
|
||||||
|
</protocol>
|
@ -0,0 +1,315 @@
|
|||||||
|
#include <assert.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <wayland-server.h>
|
||||||
|
#include <wlr/types/wlr_box.h>
|
||||||
|
#include <wlr/types/wlr_surface.h>
|
||||||
|
#include <wlr/types/wlr_layer_shell.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
|
#include "rootston/desktop.h"
|
||||||
|
#include "rootston/layers.h"
|
||||||
|
#include "rootston/output.h"
|
||||||
|
#include "rootston/server.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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void arrange_layer(struct wlr_output *output, struct wl_list *list,
|
||||||
|
struct wlr_box *usable_area, bool exclusive) {
|
||||||
|
struct roots_layer_surface *roots_surface;
|
||||||
|
struct wlr_box full_area = { 0 };
|
||||||
|
wlr_output_effective_resolution(output,
|
||||||
|
&full_area.width, &full_area.height);
|
||||||
|
wl_list_for_each(roots_surface, list, link) {
|
||||||
|
struct wlr_layer_surface *layer = roots_surface->layer_surface;
|
||||||
|
struct wlr_layer_surface_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) {
|
||||||
|
// TODO: Bubble up a protocol error?
|
||||||
|
wlr_layer_surface_close(layer);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// Apply
|
||||||
|
roots_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_configure(layer, box.width, box.height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void arrange_layers(struct roots_output *output) {
|
||||||
|
struct wlr_box usable_area = { 0 };
|
||||||
|
wlr_output_effective_resolution(output->wlr_output,
|
||||||
|
&usable_area.width, &usable_area.height);
|
||||||
|
|
||||||
|
// Arrange exclusive surfaces from top->bottom
|
||||||
|
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));
|
||||||
|
|
||||||
|
struct roots_view *view;
|
||||||
|
wl_list_for_each(view, &output->desktop->views, link) {
|
||||||
|
if (view->maximized) {
|
||||||
|
view_arrange_maximized(view);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Arrange non-exlusive surfaces from top->bottom
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_output_destroy(struct wl_listener *listener, void *data) {
|
||||||
|
struct roots_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_close(layer->layer_surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_surface_commit(struct wl_listener *listener, void *data) {
|
||||||
|
struct roots_layer_surface *layer =
|
||||||
|
wl_container_of(listener, layer, surface_commit);
|
||||||
|
struct wlr_layer_surface *layer_surface = layer->layer_surface;
|
||||||
|
struct wlr_output *wlr_output = layer_surface->output;
|
||||||
|
if (wlr_output != NULL) {
|
||||||
|
struct roots_output *output = wlr_output->data;
|
||||||
|
struct wlr_box old_geo = layer->geo;
|
||||||
|
arrange_layers(output);
|
||||||
|
if (memcmp(&old_geo, &layer->geo, sizeof(struct wlr_box)) != 0) {
|
||||||
|
output_damage_whole_local_surface(output, layer_surface->surface,
|
||||||
|
old_geo.x, old_geo.y, 0);
|
||||||
|
output_damage_whole_local_surface(output, layer_surface->surface,
|
||||||
|
layer->geo.x, layer->geo.y, 0);
|
||||||
|
} else {
|
||||||
|
output_damage_from_local_surface(output, layer_surface->surface,
|
||||||
|
layer->geo.x, layer->geo.y, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void unmap(struct wlr_layer_surface *layer_surface) {
|
||||||
|
struct roots_layer_surface *layer = layer_surface->data;
|
||||||
|
struct wlr_output *wlr_output = layer_surface->output;
|
||||||
|
if (wlr_output != NULL) {
|
||||||
|
struct roots_output *output = wlr_output->data;
|
||||||
|
wlr_output_damage_add_box(output->damage, &layer->geo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_destroy(struct wl_listener *listener, void *data) {
|
||||||
|
struct roots_layer_surface *layer = wl_container_of(
|
||||||
|
listener, layer, destroy);
|
||||||
|
if (layer->layer_surface->mapped) {
|
||||||
|
unmap(layer->layer_surface);
|
||||||
|
}
|
||||||
|
wl_list_remove(&layer->link);
|
||||||
|
wl_list_remove(&layer->destroy.link);
|
||||||
|
wl_list_remove(&layer->map.link);
|
||||||
|
wl_list_remove(&layer->unmap.link);
|
||||||
|
wl_list_remove(&layer->surface_commit.link);
|
||||||
|
wl_list_remove(&layer->output_destroy.link);
|
||||||
|
arrange_layers((struct roots_output *)layer->layer_surface->output->data);
|
||||||
|
free(layer);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_map(struct wl_listener *listener, void *data) {
|
||||||
|
struct wlr_layer_surface *layer_surface = data;
|
||||||
|
struct roots_layer_surface *layer = layer_surface->data;
|
||||||
|
struct wlr_output *wlr_output = layer_surface->output;
|
||||||
|
struct roots_output *output = wlr_output->data;
|
||||||
|
wlr_output_damage_add_box(output->damage, &layer->geo);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_unmap(struct wl_listener *listener, void *data) {
|
||||||
|
struct roots_layer_surface *layer = wl_container_of(
|
||||||
|
listener, layer, unmap);
|
||||||
|
unmap(layer->layer_surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
|
||||||
|
struct wlr_layer_surface *layer_surface = data;
|
||||||
|
struct roots_desktop *desktop =
|
||||||
|
wl_container_of(listener, desktop, layer_shell_surface);
|
||||||
|
wlr_log(L_DEBUG, "new layer surface: namespace %s layer %d anchor %d "
|
||||||
|
"size %dx%d margin %d,%d,%d,%d",
|
||||||
|
layer_surface->namespace, layer_surface->layer, layer_surface->layer,
|
||||||
|
layer_surface->client_pending.desired_width,
|
||||||
|
layer_surface->client_pending.desired_height,
|
||||||
|
layer_surface->client_pending.margin.top,
|
||||||
|
layer_surface->client_pending.margin.right,
|
||||||
|
layer_surface->client_pending.margin.bottom,
|
||||||
|
layer_surface->client_pending.margin.left);
|
||||||
|
|
||||||
|
struct roots_layer_surface *roots_surface =
|
||||||
|
calloc(1, sizeof(struct roots_layer_surface));
|
||||||
|
if (!roots_surface) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
roots_surface->surface_commit.notify = handle_surface_commit;
|
||||||
|
wl_signal_add(&layer_surface->surface->events.commit,
|
||||||
|
&roots_surface->surface_commit);
|
||||||
|
|
||||||
|
roots_surface->output_destroy.notify = handle_output_destroy;
|
||||||
|
wl_signal_add(&layer_surface->output->events.destroy,
|
||||||
|
&roots_surface->output_destroy);
|
||||||
|
|
||||||
|
roots_surface->destroy.notify = handle_destroy;
|
||||||
|
wl_signal_add(&layer_surface->events.destroy, &roots_surface->destroy);
|
||||||
|
roots_surface->map.notify = handle_map;
|
||||||
|
wl_signal_add(&layer_surface->events.map, &roots_surface->map);
|
||||||
|
roots_surface->unmap.notify = handle_unmap;
|
||||||
|
wl_signal_add(&layer_surface->events.unmap, &roots_surface->unmap);
|
||||||
|
// TODO: Listen for subsurfaces
|
||||||
|
|
||||||
|
roots_surface->layer_surface = layer_surface;
|
||||||
|
layer_surface->data = roots_surface;
|
||||||
|
|
||||||
|
struct roots_output *output = layer_surface->output->data;
|
||||||
|
wl_list_insert(&output->layers[layer_surface->layer], &roots_surface->link);
|
||||||
|
|
||||||
|
// Temporarily set the layer's current state to client_pending
|
||||||
|
// So that we can easily arrange it
|
||||||
|
struct wlr_layer_surface_state old_state = layer_surface->current;
|
||||||
|
layer_surface->current = layer_surface->client_pending;
|
||||||
|
|
||||||
|
arrange_layers(output);
|
||||||
|
|
||||||
|
layer_surface->current = old_state;
|
||||||
|
}
|
@ -0,0 +1,427 @@
|
|||||||
|
#define _POSIX_C_SOURCE 200809L
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <wayland-server.h>
|
||||||
|
#include <wlr/types/wlr_layer_shell.h>
|
||||||
|
#include <wlr/types/wlr_output.h>
|
||||||
|
#include <wlr/types/wlr_surface.h>
|
||||||
|
#include <wlr/util/log.h>
|
||||||
|
#include "util/signal.h"
|
||||||
|
#include "wlr-layer-shell-unstable-v1-protocol.h"
|
||||||
|
|
||||||
|
static const char *zwlr_layer_surface_role = "zwlr_layer_surface";
|
||||||
|
|
||||||
|
static void resource_handle_destroy(struct wl_client *client,
|
||||||
|
struct wl_resource *resource) {
|
||||||
|
wl_resource_destroy(resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct zwlr_layer_shell_v1_interface layer_shell_implementation;
|
||||||
|
static const struct zwlr_layer_surface_v1_interface layer_surface_implementation;
|
||||||
|
|
||||||
|
static struct wlr_layer_shell *layer_shell_from_resource(
|
||||||
|
struct wl_resource *resource) {
|
||||||
|
assert(wl_resource_instance_of(resource, &zwlr_layer_shell_v1_interface,
|
||||||
|
&layer_shell_implementation));
|
||||||
|
return wl_resource_get_user_data(resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct wlr_layer_surface *layer_surface_from_resource(
|
||||||
|
struct wl_resource *resource) {
|
||||||
|
assert(wl_resource_instance_of(resource, &zwlr_layer_surface_v1_interface,
|
||||||
|
&layer_surface_implementation));
|
||||||
|
return wl_resource_get_user_data(resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_configure_destroy(
|
||||||
|
struct wlr_layer_surface_configure *configure) {
|
||||||
|
if (configure == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
wl_list_remove(&configure->link);
|
||||||
|
free(configure);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_ack_configure(struct wl_client *client,
|
||||||
|
struct wl_resource *resource, uint32_t serial) {
|
||||||
|
struct wlr_layer_surface *surface = layer_surface_from_resource(resource);
|
||||||
|
|
||||||
|
bool found = false;
|
||||||
|
struct wlr_layer_surface_configure *configure, *tmp;
|
||||||
|
wl_list_for_each_safe(configure, tmp, &surface->configure_list, link) {
|
||||||
|
if (configure->serial < serial) {
|
||||||
|
layer_surface_configure_destroy(configure);
|
||||||
|
} else if (configure->serial == serial) {
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!found) {
|
||||||
|
wl_resource_post_error(resource,
|
||||||
|
ZWLR_LAYER_SURFACE_V1_ERROR_INVALID_SURFACE_STATE,
|
||||||
|
"wrong configure serial: %u", serial);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (surface->acked_configure) {
|
||||||
|
layer_surface_configure_destroy(surface->acked_configure);
|
||||||
|
}
|
||||||
|
surface->acked_configure = configure;
|
||||||
|
wl_list_remove(&configure->link);
|
||||||
|
wl_list_init(&configure->link);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_set_size(struct wl_client *client,
|
||||||
|
struct wl_resource *resource, uint32_t width, uint32_t height) {
|
||||||
|
struct wlr_layer_surface *surface = layer_surface_from_resource(resource);
|
||||||
|
surface->client_pending.desired_width = width;
|
||||||
|
surface->client_pending.desired_height = height;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_set_anchor(struct wl_client *client,
|
||||||
|
struct wl_resource *resource, uint32_t anchor) {
|
||||||
|
const uint32_t max_anchor =
|
||||||
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP |
|
||||||
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM |
|
||||||
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT |
|
||||||
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
||||||
|
if (anchor > max_anchor) {
|
||||||
|
wl_resource_post_error(resource,
|
||||||
|
ZWLR_LAYER_SURFACE_V1_ERROR_INVALID_ANCHOR,
|
||||||
|
"invalid anchor %d", anchor);
|
||||||
|
}
|
||||||
|
struct wlr_layer_surface *surface = layer_surface_from_resource(resource);
|
||||||
|
surface->client_pending.anchor = anchor;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_set_exclusive_zone(struct wl_client *client,
|
||||||
|
struct wl_resource *resource, int32_t zone) {
|
||||||
|
struct wlr_layer_surface *surface = layer_surface_from_resource(resource);
|
||||||
|
surface->client_pending.exclusive_zone = zone;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_set_margin(
|
||||||
|
struct wl_client *client, struct wl_resource *resource,
|
||||||
|
int32_t top, int32_t right, int32_t bottom, int32_t left) {
|
||||||
|
struct wlr_layer_surface *surface = layer_surface_from_resource(resource);
|
||||||
|
surface->client_pending.margin.top = top;
|
||||||
|
surface->client_pending.margin.right = right;
|
||||||
|
surface->client_pending.margin.bottom = bottom;
|
||||||
|
surface->client_pending.margin.left = left;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_set_keyboard_interactivity(
|
||||||
|
struct wl_client *client, struct wl_resource *resource,
|
||||||
|
uint32_t interactive) {
|
||||||
|
struct wlr_layer_surface *surface = layer_surface_from_resource(resource);
|
||||||
|
surface->client_pending.keyboard_interactive = !!interactive;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_handle_get_popup(struct wl_client *client,
|
||||||
|
struct wl_resource *resource, struct wl_resource *popup) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct zwlr_layer_surface_v1_interface layer_surface_implementation = {
|
||||||
|
.destroy = resource_handle_destroy,
|
||||||
|
.ack_configure = layer_surface_handle_ack_configure,
|
||||||
|
.set_size = layer_surface_handle_set_size,
|
||||||
|
.set_anchor = layer_surface_handle_set_anchor,
|
||||||
|
.set_exclusive_zone = layer_surface_handle_set_exclusive_zone,
|
||||||
|
.set_margin = layer_surface_handle_set_margin,
|
||||||
|
.set_keyboard_interactivity = layer_surface_handle_set_keyboard_interactivity,
|
||||||
|
.get_popup = layer_surface_handle_get_popup,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void layer_surface_unmap(struct wlr_layer_surface *surface) {
|
||||||
|
// TODO: probably need to ungrab before this event
|
||||||
|
wlr_signal_emit_safe(&surface->events.unmap, surface);
|
||||||
|
|
||||||
|
struct wlr_layer_surface_configure *configure, *tmp;
|
||||||
|
wl_list_for_each_safe(configure, tmp, &surface->configure_list, link) {
|
||||||
|
layer_surface_configure_destroy(configure);
|
||||||
|
}
|
||||||
|
|
||||||
|
surface->configured = surface->mapped = false;
|
||||||
|
surface->configure_serial = 0;
|
||||||
|
if (surface->configure_idle) {
|
||||||
|
wl_event_source_remove(surface->configure_idle);
|
||||||
|
surface->configure_idle = NULL;
|
||||||
|
}
|
||||||
|
surface->configure_next_serial = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_destroy(struct wlr_layer_surface *surface) {
|
||||||
|
layer_surface_unmap(surface);
|
||||||
|
wlr_signal_emit_safe(&surface->events.destroy, surface);
|
||||||
|
wl_resource_set_user_data(surface->resource, NULL);
|
||||||
|
wl_list_remove(&surface->surface_destroy_listener.link);
|
||||||
|
wl_list_init(&surface->surface_destroy_listener.link);
|
||||||
|
wlr_surface_set_role_committed(surface->surface, NULL, NULL);
|
||||||
|
wl_list_remove(&surface->link);
|
||||||
|
free(surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_surface_resource_destroy(struct wl_resource *resource) {
|
||||||
|
struct wlr_layer_surface *surface =
|
||||||
|
layer_surface_from_resource(resource);
|
||||||
|
if (surface != NULL) {
|
||||||
|
layer_surface_destroy(surface);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool wlr_layer_surface_state_changed(struct wlr_layer_surface *surface) {
|
||||||
|
struct wlr_layer_surface_state *state;
|
||||||
|
if (wl_list_empty(&surface->configure_list)) {
|
||||||
|
if (surface->acked_configure) {
|
||||||
|
state = &surface->acked_configure->state;
|
||||||
|
} else if (!surface->configured) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
state = &surface->current;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
struct wlr_layer_surface_configure *configure =
|
||||||
|
wl_container_of(surface->configure_list.prev, configure, link);
|
||||||
|
state = &configure->state;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool changed = state->actual_width != surface->server_pending.actual_width
|
||||||
|
|| state->actual_height != surface->server_pending.actual_height;
|
||||||
|
return changed;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wlr_layer_surface_configure(struct wlr_layer_surface *surface,
|
||||||
|
uint32_t width, uint32_t height) {
|
||||||
|
surface->server_pending.actual_width = width;
|
||||||
|
surface->server_pending.actual_height = height;
|
||||||
|
if (wlr_layer_surface_state_changed(surface)) {
|
||||||
|
struct wl_display *display =
|
||||||
|
wl_client_get_display(wl_resource_get_client(surface->resource));
|
||||||
|
struct wlr_layer_surface_configure *configure =
|
||||||
|
calloc(1, sizeof(struct wlr_layer_surface_configure));
|
||||||
|
if (configure == NULL) {
|
||||||
|
wl_client_post_no_memory(wl_resource_get_client(surface->resource));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
surface->configure_next_serial = wl_display_next_serial(display);
|
||||||
|
wl_list_insert(surface->configure_list.prev, &configure->link);
|
||||||
|
configure->state.actual_width = width;
|
||||||
|
configure->state.actual_height = height;
|
||||||
|
configure->serial = surface->configure_next_serial;
|
||||||
|
zwlr_layer_surface_v1_send_configure(surface->resource,
|
||||||
|
configure->serial, configure->state.actual_width,
|
||||||
|
configure->state.actual_height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void wlr_layer_surface_close(struct wlr_layer_surface *surface) {
|
||||||
|
if (surface->closed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
surface->closed = true;
|
||||||
|
layer_surface_unmap(surface);
|
||||||
|
zwlr_layer_surface_v1_send_closed(surface->resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_wlr_surface_committed(struct wlr_surface *wlr_surface,
|
||||||
|
void *role_data) {
|
||||||
|
struct wlr_layer_surface *surface = role_data;
|
||||||
|
|
||||||
|
if (surface->closed) {
|
||||||
|
// Ignore commits after the compositor has closed it
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (surface->acked_configure) {
|
||||||
|
struct wlr_layer_surface_configure *configure =
|
||||||
|
surface->acked_configure;
|
||||||
|
surface->configured = true;
|
||||||
|
surface->configure_serial = configure->serial;
|
||||||
|
surface->current.actual_width = configure->state.actual_width;
|
||||||
|
surface->current.actual_height = configure->state.actual_height;
|
||||||
|
layer_surface_configure_destroy(configure);
|
||||||
|
surface->acked_configure = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wlr_surface_has_buffer(surface->surface) && !surface->configured) {
|
||||||
|
wl_resource_post_error(surface->resource,
|
||||||
|
ZWLR_LAYER_SHELL_V1_ERROR_ALREADY_CONSTRUCTED,
|
||||||
|
"layer_surface has never been configured");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
surface->current.anchor = surface->client_pending.anchor;
|
||||||
|
surface->current.exclusive_zone = surface->client_pending.exclusive_zone;
|
||||||
|
surface->current.margin = surface->client_pending.margin;
|
||||||
|
surface->current.keyboard_interactive =
|
||||||
|
surface->client_pending.keyboard_interactive;
|
||||||
|
surface->current.desired_width = surface->client_pending.desired_width;
|
||||||
|
surface->current.desired_height = surface->client_pending.desired_height;
|
||||||
|
|
||||||
|
if (!surface->added) {
|
||||||
|
surface->added = true;
|
||||||
|
wlr_signal_emit_safe(&surface->shell->events.new_surface,
|
||||||
|
surface);
|
||||||
|
}
|
||||||
|
if (surface->configured && wlr_surface_has_buffer(surface->surface) &&
|
||||||
|
!surface->mapped) {
|
||||||
|
surface->mapped = true;
|
||||||
|
wlr_signal_emit_safe(&surface->events.map, surface);
|
||||||
|
}
|
||||||
|
if (surface->configured && !wlr_surface_has_buffer(surface->surface) &&
|
||||||
|
surface->mapped) {
|
||||||
|
layer_surface_unmap(surface);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_wlr_surface_destroyed(struct wl_listener *listener,
|
||||||
|
void *data) {
|
||||||
|
struct wlr_layer_surface *layer_surface =
|
||||||
|
wl_container_of(listener, layer_surface, surface_destroy_listener);
|
||||||
|
layer_surface_destroy(layer_surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_shell_handle_get_layer_surface(struct wl_client *wl_client,
|
||||||
|
struct wl_resource *client_resource, uint32_t id,
|
||||||
|
struct wl_resource *surface_resource,
|
||||||
|
struct wl_resource *output_resource,
|
||||||
|
uint32_t layer, const char *namespace) {
|
||||||
|
struct wlr_layer_shell *shell =
|
||||||
|
layer_shell_from_resource(client_resource);
|
||||||
|
struct wlr_surface *wlr_surface =
|
||||||
|
wlr_surface_from_resource(surface_resource);
|
||||||
|
|
||||||
|
if (wlr_surface_set_role(wlr_surface, zwlr_layer_surface_role,
|
||||||
|
client_resource, ZWLR_LAYER_SHELL_V1_ERROR_ROLE)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wlr_layer_surface *surface =
|
||||||
|
calloc(1, sizeof(struct wlr_layer_surface));
|
||||||
|
if (surface == NULL) {
|
||||||
|
wl_client_post_no_memory(wl_client);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
surface->shell = shell;
|
||||||
|
surface->surface = wlr_surface;
|
||||||
|
surface->output = wlr_output_from_resource(output_resource);
|
||||||
|
surface->resource = wl_resource_create(wl_client,
|
||||||
|
&zwlr_layer_surface_v1_interface,
|
||||||
|
wl_resource_get_version(client_resource),
|
||||||
|
id);
|
||||||
|
surface->namespace = strdup(namespace);
|
||||||
|
surface->layer = layer;
|
||||||
|
if (surface->resource == NULL || surface->namespace == NULL) {
|
||||||
|
free(surface);
|
||||||
|
wl_client_post_no_memory(wl_client);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (layer > ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY) {
|
||||||
|
wl_resource_post_error(surface->resource,
|
||||||
|
ZWLR_LAYER_SHELL_V1_ERROR_INVALID_LAYER,
|
||||||
|
"Invalid layer %d", layer);
|
||||||
|
free(surface);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
wl_list_init(&surface->configure_list);
|
||||||
|
|
||||||
|
wl_signal_init(&surface->events.destroy);
|
||||||
|
wl_signal_add(&surface->surface->events.destroy,
|
||||||
|
&surface->surface_destroy_listener);
|
||||||
|
surface->surface_destroy_listener.notify = handle_wlr_surface_destroyed;
|
||||||
|
wl_signal_init(&surface->events.map);
|
||||||
|
wl_signal_init(&surface->events.unmap);
|
||||||
|
|
||||||
|
wlr_surface_set_role_committed(surface->surface,
|
||||||
|
handle_wlr_surface_committed, surface);
|
||||||
|
|
||||||
|
wlr_log(L_DEBUG, "new layer_surface %p (res %p)",
|
||||||
|
surface, surface->resource);
|
||||||
|
wl_resource_set_implementation(surface->resource,
|
||||||
|
&layer_surface_implementation, surface, layer_surface_resource_destroy);
|
||||||
|
wl_list_insert(&shell->surfaces, &surface->link);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct zwlr_layer_shell_v1_interface layer_shell_implementation = {
|
||||||
|
.get_layer_surface = layer_shell_handle_get_layer_surface,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void client_handle_destroy(struct wl_resource *resource) {
|
||||||
|
struct wl_client *client = wl_resource_get_client(resource);
|
||||||
|
struct wlr_layer_shell *shell = layer_shell_from_resource(resource);
|
||||||
|
struct wlr_layer_surface *surface, *tmp = NULL;
|
||||||
|
wl_list_for_each_safe(surface, tmp, &shell->surfaces, link) {
|
||||||
|
if (wl_resource_get_client(surface->resource) == client) {
|
||||||
|
layer_surface_destroy(surface);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
wl_list_remove(wl_resource_get_link(resource));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void layer_shell_bind(struct wl_client *wl_client, void *data,
|
||||||
|
uint32_t version, uint32_t id) {
|
||||||
|
struct wlr_layer_shell *layer_shell = data;
|
||||||
|
assert(wl_client && layer_shell);
|
||||||
|
|
||||||
|
struct wl_resource *resource = wl_resource_create(
|
||||||
|
wl_client, &zwlr_layer_shell_v1_interface, version, id);
|
||||||
|
if (resource == NULL) {
|
||||||
|
wl_client_post_no_memory(wl_client);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
wl_resource_set_implementation(resource,
|
||||||
|
&layer_shell_implementation, layer_shell, client_handle_destroy);
|
||||||
|
wl_list_insert(&layer_shell->client_resources,
|
||||||
|
wl_resource_get_link(resource));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
||||||
|
struct wlr_layer_shell *layer_shell =
|
||||||
|
wl_container_of(listener, layer_shell, display_destroy);
|
||||||
|
wlr_layer_shell_destroy(layer_shell);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wlr_layer_shell *wlr_layer_shell_create(struct wl_display *display) {
|
||||||
|
struct wlr_layer_shell *layer_shell =
|
||||||
|
calloc(1, sizeof(struct wlr_layer_shell));
|
||||||
|
if (!layer_shell) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
wl_list_init(&layer_shell->client_resources);
|
||||||
|
wl_list_init(&layer_shell->surfaces);
|
||||||
|
|
||||||
|
struct wl_global *wl_global = wl_global_create(display,
|
||||||
|
&zwlr_layer_shell_v1_interface, 1, layer_shell, layer_shell_bind);
|
||||||
|
if (!wl_global) {
|
||||||
|
free(layer_shell);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
layer_shell->wl_global = wl_global;
|
||||||
|
|
||||||
|
wl_signal_init(&layer_shell->events.new_surface);
|
||||||
|
|
||||||
|
layer_shell->display_destroy.notify = handle_display_destroy;
|
||||||
|
wl_display_add_destroy_listener(display, &layer_shell->display_destroy);
|
||||||
|
|
||||||
|
return layer_shell;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wlr_layer_shell_destroy(struct wlr_layer_shell *layer_shell) {
|
||||||
|
if (!layer_shell) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
struct wl_resource *client, *tmp;
|
||||||
|
wl_resource_for_each_safe(client, tmp, &layer_shell->client_resources) {
|
||||||
|
wl_resource_destroy(client);
|
||||||
|
}
|
||||||
|
wl_list_remove(&layer_shell->display_destroy.link);
|
||||||
|
wl_global_destroy(layer_shell->wl_global);
|
||||||
|
free(layer_shell);
|
||||||
|
}
|
Loading…
Reference in new issue