2017-09-28 14:54:57 +02:00
|
|
|
#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) {
|
2017-09-28 23:26:31 +02:00
|
|
|
struct roots_xwayland_surface *roots_surface =
|
2017-09-28 14:54:57 +02:00
|
|
|
wl_container_of(listener, roots_surface, destroy);
|
|
|
|
wl_list_remove(&roots_surface->destroy.link);
|
|
|
|
view_destroy(roots_surface->view);
|
|
|
|
free(roots_surface);
|
|
|
|
}
|
|
|
|
|
2017-09-28 15:11:16 +02:00
|
|
|
static void x11_activate(struct roots_view *view, bool active) {
|
2017-09-28 23:26:31 +02:00
|
|
|
wlr_xwayland_surface_activate(view->desktop->xwayland,
|
|
|
|
view->xwayland_surface);
|
2017-09-28 15:11:16 +02:00
|
|
|
}
|
|
|
|
|
2017-09-28 14:54:57 +02:00
|
|
|
void handle_xwayland_surface(struct wl_listener *listener, void *data) {
|
|
|
|
struct roots_desktop *desktop =
|
|
|
|
wl_container_of(listener, desktop, xwayland_surface);
|
|
|
|
|
2017-09-28 23:26:31 +02:00
|
|
|
struct wlr_xwayland_surface *surface = data;
|
2017-09-28 14:54:57 +02:00
|
|
|
// TODO: get and log title, class, etc
|
|
|
|
wlr_log(L_DEBUG, "new xwayland surface");
|
|
|
|
|
2017-09-28 23:26:31 +02:00
|
|
|
struct roots_xwayland_surface *roots_surface =
|
|
|
|
calloc(1, sizeof(struct roots_xwayland_surface));
|
2017-09-28 14:54:57 +02:00
|
|
|
wl_list_init(&roots_surface->destroy.link);
|
|
|
|
roots_surface->destroy.notify = handle_destroy;
|
|
|
|
wl_signal_add(&surface->events.destroy, &roots_surface->destroy);
|
|
|
|
|
|
|
|
struct roots_view *view = calloc(1, sizeof(struct roots_view));
|
|
|
|
view->type = ROOTS_XWAYLAND_VIEW;
|
|
|
|
view->x = view->y = 200;
|
2017-09-28 23:26:31 +02:00
|
|
|
view->xwayland_surface = surface;
|
|
|
|
view->roots_xwayland_surface = roots_surface;
|
2017-09-28 14:54:57 +02:00
|
|
|
view->wlr_surface = surface->surface;
|
|
|
|
view->desktop = desktop;
|
2017-09-28 15:11:16 +02:00
|
|
|
view->activate = x11_activate;
|
2017-09-28 14:54:57 +02:00
|
|
|
roots_surface->view = view;
|
2017-09-29 01:48:55 +02:00
|
|
|
list_add(desktop->views, view);
|
2017-09-28 14:54:57 +02:00
|
|
|
}
|