| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | #include <stdbool.h>
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | #include <wayland-server.h>
 | 
					
						
							| 
									
										
										
										
											2017-12-27 14:37:55 +01:00
										 |  |  | #include <wlr/config.h>
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | #include <wlr/types/wlr_box.h>
 | 
					
						
							|  |  |  | #include <wlr/types/wlr_surface.h>
 | 
					
						
							|  |  |  | #include <wlr/util/log.h>
 | 
					
						
							| 
									
										
										
										
											2018-02-12 21:29:23 +01:00
										 |  |  | #include <wlr/xwayland.h>
 | 
					
						
							| 
									
										
										
										
											2017-12-26 18:51:27 +01:00
										 |  |  | #include "rootston/server.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | #include "rootston/server.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 18:28:38 +02:00
										 |  |  | static void activate(struct roots_view *view, bool active) { | 
					
						
							| 
									
										
										
										
											2017-10-06 15:39:39 +02:00
										 |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_activate(view->xwayland_surface, active); | 
					
						
							| 
									
										
										
										
											2017-09-28 09:11:16 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | static void move(struct roots_view *view, double x, double y) { | 
					
						
							| 
									
										
										
										
											2017-10-06 15:39:39 +02:00
										 |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							|  |  |  | 	struct wlr_xwayland_surface *xwayland_surface = view->xwayland_surface; | 
					
						
							| 
									
										
										
										
											2018-01-18 12:25:39 +01:00
										 |  |  | 	view_update_position(view, x, y); | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_configure(xwayland_surface, x, y, | 
					
						
							|  |  |  | 		xwayland_surface->width, xwayland_surface->height); | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void apply_size_constraints( | 
					
						
							|  |  |  | 		struct wlr_xwayland_surface *xwayland_surface, uint32_t width, | 
					
						
							|  |  |  | 		uint32_t height, uint32_t *dest_width, uint32_t *dest_height) { | 
					
						
							|  |  |  | 	*dest_width = width; | 
					
						
							|  |  |  | 	*dest_height = height; | 
					
						
							| 
									
										
										
										
											2017-10-28 11:58:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	struct wlr_xwayland_surface_size_hints *size_hints = | 
					
						
							|  |  |  | 		xwayland_surface->size_hints; | 
					
						
							|  |  |  | 	if (size_hints != NULL) { | 
					
						
							|  |  |  | 		if (width < (uint32_t)size_hints->min_width) { | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 			*dest_width = size_hints->min_width; | 
					
						
							| 
									
										
										
										
											2017-10-28 11:58:34 +02:00
										 |  |  | 		} else if (size_hints->max_width > 0 && | 
					
						
							|  |  |  | 				width > (uint32_t)size_hints->max_width) { | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 			*dest_width = size_hints->max_width; | 
					
						
							| 
									
										
										
										
											2017-10-28 11:58:34 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if (height < (uint32_t)size_hints->min_height) { | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 			*dest_height = size_hints->min_height; | 
					
						
							| 
									
										
										
										
											2017-10-28 11:58:34 +02:00
										 |  |  | 		} else if (size_hints->max_height > 0 && | 
					
						
							|  |  |  | 				height > (uint32_t)size_hints->max_height) { | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 			*dest_height = size_hints->max_height; | 
					
						
							| 
									
										
										
										
											2017-10-28 11:58:34 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-05 10:22:42 +01:00
										 |  |  | 	uint32_t constrained_width, constrained_height; | 
					
						
							|  |  |  | 	apply_size_constraints(xwayland_surface, width, height, &constrained_width, | 
					
						
							|  |  |  | 		&constrained_height); | 
					
						
							| 
									
										
										
										
											2017-10-28 11:58:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_configure(xwayland_surface, xwayland_surface->x, | 
					
						
							|  |  |  | 			xwayland_surface->y, constrained_width, constrained_height); | 
					
						
							| 
									
										
										
										
											2017-10-06 15:39:39 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | static void move_resize(struct roots_view *view, double x, double y, | 
					
						
							|  |  |  | 		uint32_t width, uint32_t height) { | 
					
						
							| 
									
										
										
										
											2017-10-19 12:33:02 -04:00
										 |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							|  |  |  | 	struct wlr_xwayland_surface *xwayland_surface = view->xwayland_surface; | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 	bool update_x = x != view->x; | 
					
						
							|  |  |  | 	bool update_y = y != view->y; | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-05 10:22:42 +01:00
										 |  |  | 	uint32_t constrained_width, constrained_height; | 
					
						
							|  |  |  | 	apply_size_constraints(xwayland_surface, width, height, &constrained_width, | 
					
						
							|  |  |  | 		&constrained_height); | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 	if (update_x) { | 
					
						
							|  |  |  | 		x = x + width - constrained_width; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (update_y) { | 
					
						
							|  |  |  | 		y = y + height - constrained_height; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 	view->pending_move_resize.update_x = update_x; | 
					
						
							|  |  |  | 	view->pending_move_resize.update_y = update_y; | 
					
						
							|  |  |  | 	view->pending_move_resize.x = x; | 
					
						
							|  |  |  | 	view->pending_move_resize.y = y; | 
					
						
							|  |  |  | 	view->pending_move_resize.width = constrained_width; | 
					
						
							|  |  |  | 	view->pending_move_resize.height = constrained_height; | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_configure(xwayland_surface, x, y, constrained_width, | 
					
						
							|  |  |  | 		constrained_height); | 
					
						
							| 
									
										
										
										
											2017-10-19 12:33:02 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-06 15:39:39 +02:00
										 |  |  | static void close(struct roots_view *view) { | 
					
						
							|  |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_close(view->xwayland_surface); | 
					
						
							| 
									
										
										
										
											2017-10-06 15:39:39 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | static void maximize(struct roots_view *view, bool maximized) { | 
					
						
							|  |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_set_maximized(view->xwayland_surface, maximized); | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 17:58:26 +01:00
										 |  |  | static void set_fullscreen(struct roots_view *view, bool fullscreen) { | 
					
						
							|  |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_set_fullscreen(view->xwayland_surface, fullscreen); | 
					
						
							| 
									
										
										
										
											2017-11-20 17:58:26 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-12 09:17:06 +01:00
										 |  |  | static void destroy(struct roots_view *view) { | 
					
						
							|  |  |  | 	assert(view->type == ROOTS_XWAYLAND_VIEW); | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = view->roots_xwayland_surface; | 
					
						
							| 
									
										
										
										
											2017-10-06 16:44:55 +02:00
										 |  |  | 	wl_list_remove(&roots_surface->destroy.link); | 
					
						
							| 
									
										
										
										
											2017-11-09 20:08:43 +01:00
										 |  |  | 	wl_list_remove(&roots_surface->request_configure.link); | 
					
						
							|  |  |  | 	wl_list_remove(&roots_surface->request_move.link); | 
					
						
							|  |  |  | 	wl_list_remove(&roots_surface->request_resize.link); | 
					
						
							|  |  |  | 	wl_list_remove(&roots_surface->request_maximize.link); | 
					
						
							| 
									
										
										
										
											2018-03-30 11:01:23 -04:00
										 |  |  | 	wl_list_remove(&roots_surface->map.link); | 
					
						
							|  |  |  | 	wl_list_remove(&roots_surface->unmap.link); | 
					
						
							| 
									
										
										
										
											2017-10-06 16:44:55 +02:00
										 |  |  | 	free(roots_surface); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-12 09:17:06 +01:00
										 |  |  | static void handle_destroy(struct wl_listener *listener, void *data) { | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							|  |  |  | 		wl_container_of(listener, roots_surface, destroy); | 
					
						
							|  |  |  | 	view_destroy(roots_surface->view); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-06 16:44:55 +02:00
										 |  |  | 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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 12:25:39 +01:00
										 |  |  | 	view_update_position(roots_surface->view, event->x, event->y); | 
					
						
							| 
									
										
										
										
											2017-10-06 16:44:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 17:30:57 -05:00
										 |  |  | 	wlr_xwayland_surface_configure(xwayland_surface, event->x, event->y, | 
					
						
							|  |  |  | 		event->width, event->height); | 
					
						
							| 
									
										
										
										
											2017-10-06 16:44:55 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | static struct roots_seat *guess_seat_for_view(struct roots_view *view) { | 
					
						
							| 
									
										
										
										
											2017-11-08 08:19:23 -05:00
										 |  |  | 	// the best we can do is to pick the first seat that has the surface focused
 | 
					
						
							|  |  |  | 	// for the pointer
 | 
					
						
							|  |  |  | 	struct roots_input *input = view->desktop->server->input; | 
					
						
							|  |  |  | 	struct roots_seat *seat; | 
					
						
							|  |  |  | 	wl_list_for_each(seat, &input->seats, link) { | 
					
						
							|  |  |  | 		if (seat->seat->pointer_state.focused_surface == view->wlr_surface) { | 
					
						
							|  |  |  | 			return seat; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void handle_request_move(struct wl_listener *listener, void *data) { | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							|  |  |  | 		wl_container_of(listener, roots_surface, request_move); | 
					
						
							|  |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | 	struct roots_seat *seat = guess_seat_for_view(view); | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | 	if (!seat || seat->cursor->mode != ROOTS_CURSOR_PASSTHROUGH) { | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | 	roots_seat_begin_move(seat, view); | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void handle_request_resize(struct wl_listener *listener, void *data) { | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							|  |  |  | 		wl_container_of(listener, roots_surface, request_resize); | 
					
						
							|  |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | 	struct roots_seat *seat = guess_seat_for_view(view); | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 	struct wlr_xwayland_resize_event *e = data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | 	if (!seat || seat->cursor->mode != ROOTS_CURSOR_PASSTHROUGH) { | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-11-07 15:56:11 -05:00
										 |  |  | 	roots_seat_begin_resize(seat, view, e->edges); | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | static void handle_request_maximize(struct wl_listener *listener, void *data) { | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							| 
									
										
										
										
											2017-11-09 11:21:55 +01:00
										 |  |  | 		wl_container_of(listener, roots_surface, request_maximize); | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							|  |  |  | 	struct wlr_xwayland_surface *xwayland_surface = view->xwayland_surface; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool maximized = xwayland_surface->maximized_vert && | 
					
						
							|  |  |  | 		xwayland_surface->maximized_horz; | 
					
						
							|  |  |  | 	view_maximize(view, maximized); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 17:58:26 +01:00
										 |  |  | static void handle_request_fullscreen(struct wl_listener *listener, | 
					
						
							|  |  |  | 		void *data) { | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							|  |  |  | 		wl_container_of(listener, roots_surface, request_fullscreen); | 
					
						
							|  |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							|  |  |  | 	struct wlr_xwayland_surface *xwayland_surface = view->xwayland_surface; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	view_set_fullscreen(view, xwayland_surface->fullscreen, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | static void handle_surface_commit(struct wl_listener *listener, void *data) { | 
					
						
							|  |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							|  |  |  | 		wl_container_of(listener, roots_surface, surface_commit); | 
					
						
							|  |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							| 
									
										
										
										
											2017-11-20 12:16:10 +01:00
										 |  |  | 	struct wlr_surface *wlr_surface = view->wlr_surface; | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 01:04:35 +01:00
										 |  |  | 	view_apply_damage(view); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:16:10 +01:00
										 |  |  | 	int width = wlr_surface->current->width; | 
					
						
							|  |  |  | 	int height = wlr_surface->current->height; | 
					
						
							| 
									
										
										
										
											2018-01-28 10:11:31 +01:00
										 |  |  | 	view_update_size(view, width, height); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 01:04:35 +01:00
										 |  |  | 	double x = view->x; | 
					
						
							|  |  |  | 	double y = view->y; | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 	if (view->pending_move_resize.update_x) { | 
					
						
							| 
									
										
										
										
											2018-01-20 01:04:35 +01:00
										 |  |  | 		x = view->pending_move_resize.x + view->pending_move_resize.width - | 
					
						
							|  |  |  | 			width; | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 		view->pending_move_resize.update_x = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (view->pending_move_resize.update_y) { | 
					
						
							| 
									
										
										
										
											2018-01-20 01:04:35 +01:00
										 |  |  | 		y = view->pending_move_resize.y + view->pending_move_resize.height - | 
					
						
							|  |  |  | 			height; | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 		view->pending_move_resize.update_y = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-20 01:04:35 +01:00
										 |  |  | 	view_update_position(view, x, y); | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-30 11:01:23 -04:00
										 |  |  | static void handle_map(struct wl_listener *listener, void *data) { | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							| 
									
										
										
										
											2018-03-30 11:01:23 -04:00
										 |  |  | 		wl_container_of(listener, roots_surface, map); | 
					
						
							| 
									
										
										
										
											2017-11-17 12:45:07 +01:00
										 |  |  | 	struct wlr_xwayland_surface *xsurface = data; | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 12:25:39 +01:00
										 |  |  | 	view->x = xsurface->x; | 
					
						
							|  |  |  | 	view->y = xsurface->y; | 
					
						
							| 
									
										
										
										
											2018-01-28 10:11:31 +01:00
										 |  |  | 	view->width = xsurface->surface->current->width; | 
					
						
							|  |  |  | 	view->height = xsurface->surface->current->height; | 
					
						
							| 
									
										
										
										
											2018-01-21 14:50:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 10:29:22 +01:00
										 |  |  | 	view_map(view, xsurface->surface); | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 	roots_surface->surface_commit.notify = handle_surface_commit; | 
					
						
							|  |  |  | 	wl_signal_add(&xsurface->surface->events.commit, | 
					
						
							|  |  |  | 		&roots_surface->surface_commit); | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-30 11:01:23 -04:00
										 |  |  | static void handle_unmap(struct wl_listener *listener, void *data) { | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							| 
									
										
										
										
											2018-03-30 11:01:23 -04:00
										 |  |  | 		wl_container_of(listener, roots_surface, unmap); | 
					
						
							| 
									
										
										
										
											2018-01-21 14:50:37 +01:00
										 |  |  | 	struct roots_view *view = roots_surface->view; | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 12:25:39 +01:00
										 |  |  | 	wl_list_remove(&roots_surface->surface_commit.link); | 
					
						
							| 
									
										
										
										
											2018-01-21 14:50:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 10:29:22 +01:00
										 |  |  | 	view_unmap(view); | 
					
						
							| 
									
										
										
										
											2017-10-24 21:07:46 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04: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-29 22:26:03 +02:00
										 |  |  | 	wlr_log(L_DEBUG, "new xwayland surface: title=%s, class=%s, instance=%s", | 
					
						
							|  |  |  | 		surface->title, surface->class, surface->instance); | 
					
						
							| 
									
										
										
										
											2018-04-08 16:28:01 -04:00
										 |  |  | 	wlr_xwayland_surface_ping(surface); | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 23:26:31 +02:00
										 |  |  | 	struct roots_xwayland_surface *roots_surface = | 
					
						
							|  |  |  | 		calloc(1, sizeof(struct roots_xwayland_surface)); | 
					
						
							| 
									
										
										
										
											2017-09-29 22:26:03 +02:00
										 |  |  | 	if (roots_surface == NULL) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | 	roots_surface->destroy.notify = handle_destroy; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->events.destroy, &roots_surface->destroy); | 
					
						
							| 
									
										
										
										
											2017-09-30 10:39:06 +02:00
										 |  |  | 	roots_surface->request_configure.notify = handle_request_configure; | 
					
						
							| 
									
										
										
										
											2017-09-29 18:28:38 +02:00
										 |  |  | 	wl_signal_add(&surface->events.request_configure, | 
					
						
							|  |  |  | 		&roots_surface->request_configure); | 
					
						
							| 
									
										
										
										
											2018-03-30 11:01:23 -04:00
										 |  |  | 	roots_surface->map.notify = handle_map; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->events.map, &roots_surface->map); | 
					
						
							|  |  |  | 	roots_surface->unmap.notify = handle_unmap; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->events.unmap, &roots_surface->unmap); | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 	roots_surface->request_move.notify = handle_request_move; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->events.request_move, &roots_surface->request_move); | 
					
						
							|  |  |  | 	roots_surface->request_resize.notify = handle_request_resize; | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | 	wl_signal_add(&surface->events.request_resize, | 
					
						
							|  |  |  | 		&roots_surface->request_resize); | 
					
						
							|  |  |  | 	roots_surface->request_maximize.notify = handle_request_maximize; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->events.request_maximize, | 
					
						
							|  |  |  | 		&roots_surface->request_maximize); | 
					
						
							| 
									
										
										
										
											2017-11-20 17:58:26 +01:00
										 |  |  | 	roots_surface->request_fullscreen.notify = handle_request_fullscreen; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->events.request_fullscreen, | 
					
						
							|  |  |  | 		&roots_surface->request_fullscreen); | 
					
						
							| 
									
										
										
										
											2017-10-27 10:48:09 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 12:05:21 +01:00
										 |  |  | 	roots_surface->surface_commit.notify = handle_surface_commit; | 
					
						
							|  |  |  | 	wl_signal_add(&surface->surface->events.commit, | 
					
						
							|  |  |  | 		&roots_surface->surface_commit); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 10:29:22 +01:00
										 |  |  | 	struct roots_view *view = view_create(desktop); | 
					
						
							| 
									
										
										
										
											2017-09-29 22:26:03 +02:00
										 |  |  | 	if (view == NULL) { | 
					
						
							|  |  |  | 		free(roots_surface); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | 	view->type = ROOTS_XWAYLAND_VIEW; | 
					
						
							| 
									
										
										
										
											2017-09-29 20:44:00 +02:00
										 |  |  | 	view->x = (double)surface->x; | 
					
						
							|  |  |  | 	view->y = (double)surface->y; | 
					
						
							| 
									
										
										
										
											2018-01-28 10:11:31 +01:00
										 |  |  | 	view->width = surface->surface->current->width; | 
					
						
							|  |  |  | 	view->height = surface->surface->current->height; | 
					
						
							| 
									
										
										
										
											2018-01-16 07:50:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-28 23:26:31 +02:00
										 |  |  | 	view->xwayland_surface = surface; | 
					
						
							|  |  |  | 	view->roots_xwayland_surface = roots_surface; | 
					
						
							| 
									
										
										
										
											2017-09-29 18:28:38 +02:00
										 |  |  | 	view->activate = activate; | 
					
						
							| 
									
										
										
										
											2017-09-30 16:05:18 +02:00
										 |  |  | 	view->resize = resize; | 
					
						
							| 
									
										
										
										
											2017-11-03 14:49:15 +01:00
										 |  |  | 	view->move = move; | 
					
						
							|  |  |  | 	view->move_resize = move_resize; | 
					
						
							| 
									
										
										
										
											2017-11-08 23:03:07 +01:00
										 |  |  | 	view->maximize = maximize; | 
					
						
							| 
									
										
										
										
											2017-11-20 17:58:26 +01:00
										 |  |  | 	view->set_fullscreen = set_fullscreen; | 
					
						
							| 
									
										
										
										
											2017-10-06 15:39:39 +02:00
										 |  |  | 	view->close = close; | 
					
						
							| 
									
										
										
										
											2018-03-12 09:17:06 +01:00
										 |  |  | 	view->destroy = destroy; | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | 	roots_surface->view = view; | 
					
						
							| 
									
										
										
										
											2018-03-09 10:29:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	view_map(view, surface->surface); | 
					
						
							| 
									
										
										
										
											2017-10-19 12:33:02 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!surface->override_redirect) { | 
					
						
							| 
									
										
										
										
											2018-01-23 08:16:43 -05:00
										 |  |  | 		if (surface->decorations == WLR_XWAYLAND_SURFACE_DECORATIONS_ALL) { | 
					
						
							|  |  |  | 			view->decorated = true; | 
					
						
							|  |  |  | 			view->border_width = 4; | 
					
						
							|  |  |  | 			view->titlebar_height = 12; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-16 07:50:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-25 20:34:40 +02:00
										 |  |  | 		view_setup(view); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:57:30 +01:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		view_initial_focus(view); | 
					
						
							| 
									
										
										
										
											2017-10-19 12:33:02 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-09-28 08:54:57 -04:00
										 |  |  | } |