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 --- include/sway/layers.h | 3 +++ include/sway/tree/view.h | 10 ++++++++++ 2 files changed, 13 insertions(+) (limited to 'include') diff --git a/include/sway/layers.h b/include/sway/layers.h index ee47c5ad..96155eae 100644 --- a/include/sway/layers.h +++ b/include/sway/layers.h @@ -22,4 +22,7 @@ struct sway_layer_surface { struct sway_output; void arrange_layers(struct sway_output *output); +struct sway_layer_surface *layer_from_wlr_layer_surface( + struct wlr_layer_surface *layer_surface); + #endif diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index b99044d3..7dc8ac46 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -260,6 +260,16 @@ void view_child_init(struct sway_view_child *child, void view_child_destroy(struct sway_view_child *child); + +struct sway_view *view_from_wlr_xdg_surface( + struct wlr_xdg_surface *xdg_surface); +struct sway_view *view_from_wlr_xdg_surface_v6( + struct wlr_xdg_surface_v6 *xdg_surface_v6); +struct sway_view *view_from_wlr_xwayland_surface( + struct wlr_xwayland_surface *xsurface); + +struct sway_view *view_from_wlr_surface(struct wlr_surface *surface); + /** * Re-read the view's title property and update any relevant title bars. * The force argument makes it recreate the title bars even if the title hasn't -- cgit v1.2.3-54-g00ecf