summaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 6b2d279e..611c4f0b 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -28,6 +28,8 @@ struct sway_view_impl {
28 void (*configure)(struct sway_view *view, double ox, double oy, int width, 28 void (*configure)(struct sway_view *view, double ox, double oy, int width,
29 int height); 29 int height);
30 void (*set_activated)(struct sway_view *view, bool activated); 30 void (*set_activated)(struct sway_view *view, bool activated);
31 void (*for_each_surface)(struct sway_view *view,
32 wlr_surface_iterator_func_t iterator, void *user_data);
31 void (*close)(struct sway_view *view); 33 void (*close)(struct sway_view *view);
32 void (*destroy)(struct sway_view *view); 34 void (*destroy)(struct sway_view *view);
33}; 35};
@@ -159,6 +161,9 @@ void view_damage_whole(struct sway_view *view);
159 161
160void view_damage_from(struct sway_view *view); 162void view_damage_from(struct sway_view *view);
161 163
164void view_for_each_surface(struct sway_view *view,
165 wlr_surface_iterator_func_t iterator, void *user_data);
166
162// view implementation 167// view implementation
163 168
164void view_init(struct sway_view *view, enum sway_view_type type, 169void view_init(struct sway_view *view, enum sway_view_type type,