aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway
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
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')
-rw-r--r--include/sway/output.h8
-rw-r--r--include/sway/tree/container.h11
-rw-r--r--include/sway/tree/view.h11
3 files changed, 9 insertions, 21 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 80dcd37b..6283db68 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -67,18 +67,10 @@ struct sway_container *output_get_active_workspace(struct sway_output *output);
67void output_render(struct sway_output *output, struct timespec *when, 67void output_render(struct sway_output *output, struct timespec *when,
68 pixman_region32_t *damage); 68 pixman_region32_t *damage);
69 69
70void output_surface_for_each_surface(struct sway_output *output,
71 struct wlr_surface *surface, double ox, double oy,
72 sway_surface_iterator_func_t iterator, void *user_data);
73
74void output_view_for_each_surface(struct sway_output *output, 70void output_view_for_each_surface(struct sway_output *output,
75 struct sway_view *view, sway_surface_iterator_func_t iterator, 71 struct sway_view *view, sway_surface_iterator_func_t iterator,
76 void *user_data); 72 void *user_data);
77 73
78void output_view_for_each_popup(struct sway_output *output,
79 struct sway_view *view, sway_surface_iterator_func_t iterator,
80 void *user_data);
81
82void output_layer_for_each_surface(struct sway_output *output, 74void output_layer_for_each_surface(struct sway_output *output,
83 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator, 75 struct wl_list *layer_surfaces, sway_surface_iterator_func_t iterator,
84 void *user_data); 76 void *user_data);
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 12ff8a5a..d4a42a71 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -230,11 +230,18 @@ struct sway_container *container_parent(struct sway_container *container,
230 * surface-local coordinates of the given layout coordinates if the container 230 * surface-local coordinates of the given layout coordinates if the container
231 * is a view and the view contains a surface at those coordinates. 231 * is a view and the view contains a surface at those coordinates.
232 */ 232 */
233struct sway_container *container_at(struct sway_container *workspace, 233struct sway_container *container_at(struct sway_container *container,
234 double lx, double ly, struct wlr_surface **surface, 234 double ox, double oy, struct wlr_surface **surface,
235 double *sx, double *sy); 235 double *sx, double *sy);
236 236
237/** 237/**
238 * Same as container_at, but only checks floating views and expects coordinates
239 * to be layout coordinates, as that's what floating views use.
240 */
241struct sway_container *floating_container_at(double lx, double ly,
242 struct wlr_surface **surface, double *sx, double *sy);
243
244/**
238 * Apply the function for each descendant of the container breadth first. 245 * Apply the function for each descendant of the container breadth first.
239 */ 246 */
240void container_for_each_descendant_bfs(struct sway_container *container, 247void container_for_each_descendant_bfs(struct sway_container *container,
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,