summaryrefslogtreecommitdiff
path: root/include/sway/tree/view.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-08-02 09:05:46 -0400
committerDrew DeVault <[email protected]>2018-08-02 09:05:46 -0400
commit9aa258d33a9baa42895214da7e82f4568fcb8f76 (patch)
tree229419214ed67a2e4237b36cf0d1185f1406dad1 /include/sway/tree/view.h
parent8e60f6a73263c444ab5fecdeacdaf7883a9b1505 (diff)
Revert "Fix popups"
This reverts commit de86d65627e96cffe77f4abf11c4a0b982326ff9.
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 {
bool (*has_client_side_decorations)(struct sway_view *view);
void (*for_each_surface)(struct sway_view *view,
wlr_surface_iterator_func_t iterator, void *user_data);
- void (*for_each_popup)(struct sway_view *view,
- wlr_surface_iterator_func_t iterator, void *user_data);
void (*close)(struct sway_view *view);
void (*close_popups)(struct sway_view *view);
void (*destroy)(struct sway_view *view);
@@ -256,18 +254,9 @@ void view_close_popups(struct sway_view *view);
void view_damage_from(struct sway_view *view);
-/**
- * Iterate all surfaces of a view (toplevels + popups).
- */
void view_for_each_surface(struct sway_view *view,
wlr_surface_iterator_func_t iterator, void *user_data);
-/**
- * Iterate all popups recursively.
- */
-void view_for_each_popup(struct sway_view *view,
- wlr_surface_iterator_func_t iterator, void *user_data);
-
// view implementation
void view_init(struct sway_view *view, enum sway_view_type type,