diff options
Diffstat (limited to 'include/wlr/xwayland/xwayland.h')
-rw-r--r-- | include/wlr/xwayland/xwayland.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/xwayland/xwayland.h b/include/wlr/xwayland/xwayland.h index c1dbc339..a8983f1f 100644 --- a/include/wlr/xwayland/xwayland.h +++ b/include/wlr/xwayland/xwayland.h @@ -136,6 +136,7 @@ struct wlr_xwayland_surface { bool fullscreen; bool maximized_vert, maximized_horz; bool minimized; + bool withdrawn; bool has_alpha; @@ -226,6 +227,9 @@ void wlr_xwayland_surface_configure(struct wlr_xwayland_surface *surface, void wlr_xwayland_surface_close(struct wlr_xwayland_surface *surface); +void wlr_xwayland_surface_set_withdrawn(struct wlr_xwayland_surface *surface, + bool withdrawn); + void wlr_xwayland_surface_set_minimized(struct wlr_xwayland_surface *surface, bool minimized); |