aboutsummaryrefslogtreecommitdiff
path: root/include/xwayland
diff options
context:
space:
mode:
Diffstat (limited to 'include/xwayland')
-rw-r--r--include/xwayland/xwm.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/xwayland/xwm.h b/include/xwayland/xwm.h
index 05d229ae..d564a0e2 100644
--- a/include/xwayland/xwm.h
+++ b/include/xwayland/xwm.h
@@ -80,6 +80,7 @@ enum atom_name {
DND_ACTION_ASK,
DND_ACTION_PRIVATE,
NET_CLIENT_LIST,
+ NET_CLIENT_LIST_STACKING,
ATOM_LAST // keep last
};
@@ -106,7 +107,10 @@ struct wlr_xwm {
struct wlr_xwayland_surface *focus_surface;
+ // Surfaces in creation order
struct wl_list surfaces; // wlr_xwayland_surface::link
+ // Surfaces in bottom-to-top stacking order, for _NET_CLIENT_LIST_STACKING
+ struct wl_list surfaces_in_stack_order; // wlr_xwayland_surface::stack_link
struct wl_list unpaired_surfaces; // wlr_xwayland_surface::unpaired_link
struct wlr_drag *drag;