aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
authorLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-06-30 14:00:24 +0900
committerLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-06-30 22:31:14 +0900
commit9ea4cc13a0cf2d231c4e4c71aa674cd76831e6f9 (patch)
treea4f6056b5cfa80e065f366d20e1d97957d3ee393 /include/sway/tree/view.h
parentMerge pull request #2072 from RyanDwyer/atomic (diff)
downloadsway-9ea4cc13a0cf2d231c4e4c71aa674cd76831e6f9.tar.gz
sway-9ea4cc13a0cf2d231c4e4c71aa674cd76831e6f9.tar.zst
sway-9ea4cc13a0cf2d231c4e4c71aa674cd76831e6f9.zip
sway views: add helpers to get view and layer from wlr_surface
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h10
1 files changed, 10 insertions, 0 deletions
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,
260 260
261void view_child_destroy(struct sway_view_child *child); 261void view_child_destroy(struct sway_view_child *child);
262 262
263
264struct sway_view *view_from_wlr_xdg_surface(
265 struct wlr_xdg_surface *xdg_surface);
266struct sway_view *view_from_wlr_xdg_surface_v6(
267 struct wlr_xdg_surface_v6 *xdg_surface_v6);
268struct sway_view *view_from_wlr_xwayland_surface(
269 struct wlr_xwayland_surface *xsurface);
270
271struct sway_view *view_from_wlr_surface(struct wlr_surface *surface);
272
263/** 273/**
264 * Re-read the view's title property and update any relevant title bars. 274 * Re-read the view's title property and update any relevant title bars.
265 * The force argument makes it recreate the title bars even if the title hasn't 275 * The force argument makes it recreate the title bars even if the title hasn't