aboutsummaryrefslogtreecommitdiff
path: root/rootston/xwayland.c
blob: 9f2cc849f6c9ada5ddd300664bea7add65d34fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#include <assert.h>
#include <stdlib.h>
#include <stdbool.h>
#include <wayland-server.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_surface.h>
#include <wlr/xwayland.h>
#include <wlr/util/log.h>
#include "rootston/desktop.h"
#include "rootston/server.h"

static void handle_destroy(struct wl_listener *listener, void *data) {
	struct roots_xwayland_surface *roots_surface =
		wl_container_of(listener, roots_surface, destroy);
	wl_list_remove(&roots_surface->destroy.link);
	view_destroy(roots_surface->view);
	free(roots_surface);
}

static void handle_configure(struct wl_listener *listener, void *data) {
	struct roots_xwayland_surface *roots_surface =
		wl_container_of(listener, roots_surface, destroy);
	struct wlr_xwayland_surface_configure_event *event = data;
	struct wlr_xwayland_surface *xwayland_surface = event->surface;

	xwayland_surface->x = event->x;
	xwayland_surface->y = event->y;
	xwayland_surface->width = event->width;
	xwayland_surface->height = event->height;

	roots_surface->view->x = (double)event->x;
	roots_surface->view->y = (double)event->y;

	wlr_xwayland_surface_configure(roots_surface->view->desktop->xwayland,
		xwayland_surface);
}

static void activate(struct roots_view *view, bool active) {
	wlr_xwayland_surface_activate(view->desktop->xwayland,
		view->xwayland_surface);
}

void handle_xwayland_surface(struct wl_listener *listener, void *data) {
	struct roots_desktop *desktop =
		wl_container_of(listener, desktop, xwayland_surface);

	struct wlr_xwayland_surface *surface = data;
	// TODO: get and log title, class, etc
	wlr_log(L_DEBUG, "new xwayland surface");

	struct roots_xwayland_surface *roots_surface =
		calloc(1, sizeof(struct roots_xwayland_surface));
	wl_list_init(&roots_surface->destroy.link);
	roots_surface->destroy.notify = handle_destroy;
	wl_signal_add(&surface->events.destroy, &roots_surface->destroy);
	wl_list_init(&roots_surface->request_configure.link);
	roots_surface->request_configure.notify = handle_configure;
	wl_signal_add(&surface->events.request_configure,
		&roots_surface->request_configure);

	struct roots_view *view = calloc(1, sizeof(struct roots_view));
	view->type = ROOTS_XWAYLAND_VIEW;
	view->x = (double)surface->x;
	view->y = (double)surface->y;
	view->xwayland_surface = surface;
	view->roots_xwayland_surface = roots_surface;
	view->wlr_surface = surface->surface;
	view->desktop = desktop;
	view->activate = activate;
	roots_surface->view = view;
	list_add(desktop->views, view);
}