diff options
author | Drew DeVault <[email protected]> | 2017-12-13 20:36:06 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2017-12-13 20:36:06 -0500 |
commit | 1aab9ae3e74d15e2c346acbab2ef2def59db72eb (patch) | |
tree | 6a3479fef295dc673c6bcdaac822f44523f94d8e /include/sway/layout.h | |
parent | ab36a5a4d73ddb026c9b1d416c1e7388d63958ea (diff) | |
parent | cba592b3d2c516cab9f4e8325037dfdf6e30cb9a (diff) |
Merge pull request #1503 from emersion/output-config
Add output config
Diffstat (limited to 'include/sway/layout.h')
-rw-r--r-- | include/sway/layout.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/sway/layout.h b/include/sway/layout.h index f3b62b05..bfd96a02 100644 --- a/include/sway/layout.h +++ b/include/sway/layout.h @@ -1,8 +1,16 @@ #ifndef _SWAY_LAYOUT_H #define _SWAY_LAYOUT_H +#include <wlr/types/wlr_output_layout.h> + struct sway_container; +struct sway_root { + struct wlr_output_layout *output_layout; + + struct wl_listener output_layout_change; +}; + void init_layout(void); void add_child(struct sway_container *parent, struct sway_container *child); struct sway_container *remove_child(struct sway_container *child); |