summaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell_v6.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/xdg_shell_v6.c')
-rw-r--r--sway/desktop/xdg_shell_v6.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/sway/desktop/xdg_shell_v6.c b/sway/desktop/xdg_shell_v6.c
index c66cc39a..8361aab3 100644
--- a/sway/desktop/xdg_shell_v6.c
+++ b/sway/desktop/xdg_shell_v6.c
@@ -118,6 +118,15 @@ static void set_activated(struct sway_view *view, bool activated) {
118 } 118 }
119} 119}
120 120
121static void for_each_surface(struct sway_view *view,
122 wlr_surface_iterator_func_t iterator, void *user_data) {
123 if (xdg_shell_v6_view_from_view(view) == NULL) {
124 return;
125 }
126 wlr_xdg_surface_v6_for_each_surface(view->wlr_xdg_surface_v6, iterator,
127 user_data);
128}
129
121static void _close(struct sway_view *view) { 130static void _close(struct sway_view *view) {
122 if (xdg_shell_v6_view_from_view(view) == NULL) { 131 if (xdg_shell_v6_view_from_view(view) == NULL) {
123 return; 132 return;
@@ -146,6 +155,7 @@ static const struct sway_view_impl view_impl = {
146 .get_prop = get_prop, 155 .get_prop = get_prop,
147 .configure = configure, 156 .configure = configure,
148 .set_activated = set_activated, 157 .set_activated = set_activated,
158 .for_each_surface = for_each_surface,
149 .close = _close, 159 .close = _close,
150 .destroy = destroy, 160 .destroy = destroy,
151}; 161};