diff options
author | emersion <[email protected]> | 2017-12-12 20:02:01 +0100 |
---|---|---|
committer | emersion <[email protected]> | 2017-12-12 20:02:01 +0100 |
commit | c7abb77f2217cc4d5642ef1650f7fc75e1c1a9a4 (patch) | |
tree | 8118cd69c22ec2545572a8e443080907f087d401 /include/sway/layout.h | |
parent | f3d880b0ec9eae246ef0d70dd67bed6d7488ab33 (diff) |
Listen to output layout change
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); |