From 9ea4cc13a0cf2d231c4e4c71aa674cd76831e6f9 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Sat, 30 Jun 2018 14:00:24 +0900 Subject: sway views: add helpers to get view and layer from wlr_surface --- sway/desktop/xwayland.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sway/desktop/xwayland.c') diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c index 6e63c505..4bb35f60 100644 --- a/sway/desktop/xwayland.c +++ b/sway/desktop/xwayland.c @@ -417,6 +417,11 @@ static void handle_set_window_type(struct wl_listener *listener, void *data) { view_execute_criteria(view); } +struct sway_view *view_from_wlr_xwayland_surface( + struct wlr_xwayland_surface *xsurface) { + return xsurface->data; +} + void handle_xwayland_surface(struct wl_listener *listener, void *data) { struct sway_server *server = wl_container_of(listener, server, xwayland_surface); @@ -470,6 +475,8 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) { wl_signal_add(&xsurface->events.map, &xwayland_view->map); xwayland_view->map.notify = handle_map; + + xsurface->data = xwayland_view; } void handle_xwayland_ready(struct wl_listener *listener, void *data) { -- cgit v1.2.3