wlroots-hyprland/rootston/xdg_shell_v6.c

147 lines
5.0 KiB
C
Raw Normal View History

2017-09-23 23:48:13 +02:00
#include <assert.h>
2017-09-23 17:13:18 +02:00
#include <stdlib.h>
2017-09-23 23:48:13 +02:00
#include <stdbool.h>
2017-09-23 17:13:18 +02:00
#include <wayland-server.h>
2017-09-23 23:48:13 +02:00
#include <wlr/types/wlr_box.h>
2017-09-23 17:13:18 +02:00
#include <wlr/types/wlr_surface.h>
2017-09-23 23:48:13 +02:00
#include <wlr/types/wlr_xdg_shell_v6.h>
2017-09-23 17:13:18 +02:00
#include <wlr/util/log.h>
#include "rootston/desktop.h"
#include "rootston/server.h"
2017-09-24 00:18:19 +02:00
#include "rootston/input.h"
2017-09-23 17:13:18 +02:00
2017-09-30 14:02:09 +02:00
static void get_size(struct roots_view *view, struct wlr_box *box) {
2017-09-23 23:48:13 +02:00
assert(view->type == ROOTS_XDG_SHELL_V6_VIEW);
struct wlr_xdg_surface_v6 *surf = view->xdg_surface_v6;
// TODO: surf->geometry can be NULL
2017-09-23 23:48:13 +02:00
memcpy(box, surf->geometry, sizeof(struct wlr_box));
2017-09-30 14:02:09 +02:00
}
2017-09-23 23:48:13 +02:00
static void activate(struct roots_view *view, bool active) {
assert(view->type == ROOTS_XDG_SHELL_V6_VIEW);
struct wlr_xdg_surface_v6 *surf = view->xdg_surface_v6;
if (surf->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) {
wlr_xdg_toplevel_v6_set_activated(surf, active);
}
}
2017-09-30 11:57:39 +02:00
static void resize(struct roots_view *view, uint32_t width, uint32_t height) {
assert(view->type == ROOTS_XDG_SHELL_V6_VIEW);
struct wlr_xdg_surface_v6 *surf = view->xdg_surface_v6;
if (surf->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) {
2017-10-28 11:58:34 +02:00
struct wlr_xdg_toplevel_v6_state *state =
&surf->toplevel_state->current;
if (width < state->min_width) {
width = state->min_width;
} else if (state->max_width > 0 &&
2017-10-30 00:12:17 +01:00
width > state->max_width) {
2017-10-28 11:58:34 +02:00
width = state->max_width;
}
if (height < state->min_height) {
height = state->min_height;
} else if (state->max_height > 0 &&
2017-10-30 00:12:17 +01:00
height > state->max_height) {
2017-10-28 11:58:34 +02:00
height = state->max_height;
}
2017-09-30 11:57:39 +02:00
wlr_xdg_toplevel_v6_set_size(surf, width, height);
}
}
static void close(struct roots_view *view) {
assert(view->type == ROOTS_XDG_SHELL_V6_VIEW);
struct wlr_xdg_surface_v6 *surf = view->xdg_surface_v6;
if (surf->role == WLR_XDG_SURFACE_V6_ROLE_TOPLEVEL) {
wlr_xdg_toplevel_v6_send_close(surf);
}
}
2017-09-24 00:18:19 +02:00
static void handle_request_move(struct wl_listener *listener, void *data) {
struct roots_xdg_surface_v6 *roots_xdg_surface =
wl_container_of(listener, roots_xdg_surface, request_move);
struct roots_view *view = roots_xdg_surface->view;
struct roots_input *input = view->desktop->server->input;
struct wlr_xdg_toplevel_v6_move_event *e = data;
2017-09-29 01:48:55 +02:00
const struct roots_input_event *event = get_input_event(input, e->serial);
2017-09-24 00:18:19 +02:00
if (!event || input->mode != ROOTS_CURSOR_PASSTHROUGH) {
return;
}
2017-09-29 01:48:55 +02:00
view_begin_move(input, event->cursor, view);
2017-09-24 00:18:19 +02:00
}
2017-09-30 10:39:06 +02:00
static void handle_request_resize(struct wl_listener *listener, void *data) {
struct roots_xdg_surface_v6 *roots_xdg_surface =
wl_container_of(listener, roots_xdg_surface, request_resize);
struct roots_view *view = roots_xdg_surface->view;
struct roots_input *input = view->desktop->server->input;
struct wlr_xdg_toplevel_v6_resize_event *e = data;
const struct roots_input_event *event = get_input_event(input, e->serial);
if (!event || input->mode != ROOTS_CURSOR_PASSTHROUGH) {
return;
}
2017-09-30 11:57:39 +02:00
view_begin_resize(input, event->cursor, view, e->edges);
2017-09-30 10:39:06 +02:00
}
2017-10-08 12:17:25 +02:00
static void handle_commit(struct wl_listener *listener, void *data) {
2017-10-16 20:35:16 +02:00
// TODO is there anything we need to do here?
2017-10-08 12:17:25 +02:00
}
2017-09-23 17:13:18 +02:00
static void handle_destroy(struct wl_listener *listener, void *data) {
struct roots_xdg_surface_v6 *roots_xdg_surface =
wl_container_of(listener, roots_xdg_surface, destroy);
2017-10-25 20:34:40 +02:00
view_teardown(roots_xdg_surface->view);
wl_list_remove(&roots_xdg_surface->commit.link);
2017-09-23 17:13:18 +02:00
wl_list_remove(&roots_xdg_surface->destroy.link);
wl_list_remove(&roots_xdg_surface->request_move.link);
wl_list_remove(&roots_xdg_surface->request_resize.link);
view_destroy(roots_xdg_surface->view);
free(roots_xdg_surface);
}
void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data) {
struct wlr_xdg_surface_v6 *surface = data;
assert(surface->role != WLR_XDG_SURFACE_V6_ROLE_NONE);
if (surface->role == WLR_XDG_SURFACE_V6_ROLE_POPUP) {
wlr_log(L_DEBUG, "new xdg popup");
return;
}
2017-09-23 17:13:18 +02:00
struct roots_desktop *desktop =
wl_container_of(listener, desktop, xdg_shell_v6_surface);
wlr_log(L_DEBUG, "new xdg toplevel: title=%s, app_id=%s",
2017-09-23 17:13:18 +02:00
surface->title, surface->app_id);
wlr_xdg_surface_v6_ping(surface);
struct roots_xdg_surface_v6 *roots_surface =
calloc(1, sizeof(struct roots_xdg_surface_v6));
2017-10-08 12:17:25 +02:00
if (!roots_surface) {
return;
}
roots_surface->commit.notify = handle_commit;
wl_signal_add(&surface->events.commit, &roots_surface->commit);
2017-09-23 17:13:18 +02:00
roots_surface->destroy.notify = handle_destroy;
wl_signal_add(&surface->events.destroy, &roots_surface->destroy);
2017-09-24 00:18:19 +02:00
roots_surface->request_move.notify = handle_request_move;
wl_signal_add(&surface->events.request_move, &roots_surface->request_move);
2017-09-30 10:39:06 +02:00
roots_surface->request_resize.notify = handle_request_resize;
wl_signal_add(&surface->events.request_resize,
&roots_surface->request_resize);
2017-09-23 17:13:18 +02:00
struct roots_view *view = calloc(1, sizeof(struct roots_view));
view->type = ROOTS_XDG_SHELL_V6_VIEW;
view->xdg_surface_v6 = surface;
view->roots_xdg_surface_v6 = roots_surface;
view->wlr_surface = surface->surface;
2017-09-30 14:02:09 +02:00
view->get_size = get_size;
2017-09-23 23:48:13 +02:00
view->activate = activate;
2017-09-30 11:57:39 +02:00
view->resize = resize;
view->close = close;
2017-09-24 00:18:19 +02:00
view->desktop = desktop;
2017-09-23 17:13:18 +02:00
roots_surface->view = view;
2017-10-22 16:56:40 +02:00
wlr_list_add(desktop->views, view);
2017-10-16 20:35:16 +02:00
2017-10-25 20:34:40 +02:00
view_setup(view);
2017-09-23 17:13:18 +02:00
}