mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#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 activate(struct roots_view *view, bool active) {
 | 
						|
	assert(view->type == ROOTS_XWAYLAND_VIEW);
 | 
						|
	if (active) {
 | 
						|
		wlr_xwayland_surface_activate(view->desktop->xwayland,
 | 
						|
			view->xwayland_surface);
 | 
						|
	} else {
 | 
						|
		wlr_xwayland_surface_activate(view->desktop->xwayland, NULL);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
static void resize(struct roots_view *view, uint32_t width, uint32_t height) {
 | 
						|
	assert(view->type == ROOTS_XWAYLAND_VIEW);
 | 
						|
	struct wlr_xwayland_surface *xwayland_surface = view->xwayland_surface;
 | 
						|
	wlr_xwayland_surface_configure(view->desktop->xwayland, xwayland_surface,
 | 
						|
		xwayland_surface->x, xwayland_surface->y, width, height);
 | 
						|
}
 | 
						|
 | 
						|
static void close(struct roots_view *view) {
 | 
						|
	assert(view->type == ROOTS_XWAYLAND_VIEW);
 | 
						|
	wlr_xwayland_surface_close(view->desktop->xwayland, view->xwayland_surface);
 | 
						|
}
 | 
						|
 | 
						|
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_request_configure(struct wl_listener *listener, void *data) {
 | 
						|
	struct roots_xwayland_surface *roots_surface =
 | 
						|
		wl_container_of(listener, roots_surface, request_configure);
 | 
						|
	struct wlr_xwayland_surface *xwayland_surface =
 | 
						|
		roots_surface->view->xwayland_surface;
 | 
						|
	struct wlr_xwayland_surface_configure_event *event = data;
 | 
						|
 | 
						|
	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, event->x, event->y, event->width, event->height);
 | 
						|
}
 | 
						|
 | 
						|
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;
 | 
						|
	wlr_log(L_DEBUG, "new xwayland surface: title=%s, class=%s, instance=%s",
 | 
						|
		surface->title, surface->class, surface->instance);
 | 
						|
 | 
						|
	struct roots_xwayland_surface *roots_surface =
 | 
						|
		calloc(1, sizeof(struct roots_xwayland_surface));
 | 
						|
	if (roots_surface == NULL) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	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_request_configure;
 | 
						|
	wl_signal_add(&surface->events.request_configure,
 | 
						|
		&roots_surface->request_configure);
 | 
						|
 | 
						|
	struct roots_view *view = calloc(1, sizeof(struct roots_view));
 | 
						|
	if (view == NULL) {
 | 
						|
		free(roots_surface);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	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;
 | 
						|
	view->resize = resize;
 | 
						|
	view->close = close;
 | 
						|
	roots_surface->view = view;
 | 
						|
	list_add(desktop->views, view);
 | 
						|
}
 |