diff options
author | Isaac Freund <ifreund@ifreund.xyz> | 2020-09-08 18:03:33 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-09-10 17:44:55 +0200 |
commit | 8ad2cc39eb420c22dde7e49c01bde916b7bc58cc (patch) | |
tree | f14be1161c5360262bc7099f43d6306260b4ef2e /include/wlr | |
parent | bae8d7593c4ac9d72ddc90bded52e96056330ca2 (diff) |
layer-shell: add for_each_popup
This brings the layer-shell api in line with that of xdg-shell and
avoids reimplementing this function in every compositor in order to
render layer shell popups correctly.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_layer_shell_v1.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_layer_shell_v1.h b/include/wlr/types/wlr_layer_shell_v1.h index b6a0a135..f13eadb7 100644 --- a/include/wlr/types/wlr_layer_shell_v1.h +++ b/include/wlr/types/wlr_layer_shell_v1.h @@ -138,6 +138,10 @@ struct wlr_layer_surface_v1 *wlr_layer_surface_v1_from_wlr_surface( void wlr_layer_surface_v1_for_each_surface(struct wlr_layer_surface_v1 *surface, wlr_surface_iterator_func_t iterator, void *user_data); +/* Calls the iterator function for each popup of this surface */ +void wlr_layer_surface_v1_for_each_popup(struct wlr_layer_surface_v1 *surface, + wlr_surface_iterator_func_t iterator, void *user_data); + /** * Find a surface within this layer-surface tree at the given surface-local * coordinates. Returns the surface and coordinates in the leaf surface |