diff options
author | emersion <contact@emersion.fr> | 2018-05-27 13:16:32 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-05-27 13:38:06 +0100 |
commit | 47f097e09b9cf426867f2f2f0cf14096d3bade8c (patch) | |
tree | 6bc3841f6c0ffe7e47cfd828bfbae2da4cc40f50 /include/wlr | |
parent | b597f5e3803c02e8292271899991f6c663097919 (diff) |
xdg-shell: add wlr_xdg_toplevel_set_tiled
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_xdg_shell.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h index 22008563..11709c75 100644 --- a/include/wlr/types/wlr_xdg_shell.h +++ b/include/wlr/types/wlr_xdg_shell.h @@ -86,6 +86,7 @@ enum wlr_xdg_surface_role { struct wlr_xdg_toplevel_state { bool maximized, fullscreen, resizing, activated; + uint32_t tiled; // enum wlr_edges uint32_t width, height; uint32_t max_width, max_height; uint32_t min_width, min_height; @@ -247,6 +248,14 @@ uint32_t wlr_xdg_toplevel_set_resizing(struct wlr_xdg_surface *surface, bool resizing); /** + * Request that this toplevel surface consider itself in a tiled layout and some + * edges are adjacent to another part of the tiling grid. `tiled_edges` is a + * bitfield of `enum wlr_edges`. Returns the associated configure serial. + */ +uint32_t wlr_xdg_toplevel_set_tiled(struct wlr_xdg_surface *surface, + uint32_t tiled_edges); + +/** * Request that this xdg surface closes. */ void wlr_xdg_surface_send_close(struct wlr_xdg_surface *surface); |