summaryrefslogtreecommitdiffstats
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-08-02 09:05:46 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-08-02 09:05:46 -0400
commit9aa258d33a9baa42895214da7e82f4568fcb8f76 (patch)
tree229419214ed67a2e4237b36cf0d1185f1406dad1 /include/sway/tree/view.h
parentMerge pull request #2404 from RyanDwyer/move-containers-when-workspace-focused (diff)
downloadsway-9aa258d33a9baa42895214da7e82f4568fcb8f76.tar.gz
sway-9aa258d33a9baa42895214da7e82f4568fcb8f76.tar.zst
sway-9aa258d33a9baa42895214da7e82f4568fcb8f76.zip
Revert "Fix popups"
Diffstat (limited to 'include/sway/tree/view.h')
-rw-r--r--include/sway/tree/view.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 37fd02bc..6d8c3e6c 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -47,8 +47,6 @@ struct sway_view_impl {
47 bool (*has_client_side_decorations)(struct sway_view *view); 47 bool (*has_client_side_decorations)(struct sway_view *view);
48 void (*for_each_surface)(struct sway_view *view, 48 void (*for_each_surface)(struct sway_view *view,
49 wlr_surface_iterator_func_t iterator, void *user_data); 49 wlr_surface_iterator_func_t iterator, void *user_data);
50 void (*for_each_popup)(struct sway_view *view,
51 wlr_surface_iterator_func_t iterator, void *user_data);
52 void (*close)(struct sway_view *view); 50 void (*close)(struct sway_view *view);
53 void (*close_popups)(struct sway_view *view); 51 void (*close_popups)(struct sway_view *view);
54 void (*destroy)(struct sway_view *view); 52 void (*destroy)(struct sway_view *view);
@@ -256,18 +254,9 @@ void view_close_popups(struct sway_view *view);
256 254
257void view_damage_from(struct sway_view *view); 255void view_damage_from(struct sway_view *view);
258 256
259/**
260 * Iterate all surfaces of a view (toplevels + popups).
261 */
262void view_for_each_surface(struct sway_view *view, 257void view_for_each_surface(struct sway_view *view,
263 wlr_surface_iterator_func_t iterator, void *user_data); 258 wlr_surface_iterator_func_t iterator, void *user_data);
264 259
265/**
266 * Iterate all popups recursively.
267 */
268void view_for_each_popup(struct sway_view *view,
269 wlr_surface_iterator_func_t iterator, void *user_data);
270
271// view implementation 260// view implementation
272 261
273void view_init(struct sway_view *view, enum sway_view_type type, 262void view_init(struct sway_view *view, enum sway_view_type type,