diff options
author | Drew DeVault <[email protected]> | 2015-08-21 07:24:17 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-21 07:24:17 -0400 |
commit | a436fc17ffe3b8c7a98e8b0f4ae7ec765635d4aa (patch) | |
tree | 100d217f50e6116fbc7823fcb474b1060fde06e6 /include/layout.h | |
parent | 0266b0666a837db946bc9bbb599136da0b569320 (diff) | |
parent | 68213d57c5c758d05582ef8a9f0db226ddbaefc7 (diff) |
Merge pull request #105 from Half-Shot/master
Basic 'move' functionality.
Diffstat (limited to 'include/layout.h')
-rw-r--r-- | include/layout.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/layout.h b/include/layout.h index 20044b95..55bb6709 100644 --- a/include/layout.h +++ b/include/layout.h @@ -17,6 +17,9 @@ swayc_t *add_sibling(swayc_t *sibling, swayc_t *child); swayc_t *replace_child(swayc_t *child, swayc_t *new_child); swayc_t *remove_child(swayc_t *child); +void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction); + + // Layout void arrange_windows(swayc_t *container, double width, double height); |