diff options
author | Drew DeVault <[email protected]> | 2015-08-23 15:38:51 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-23 15:38:51 -0400 |
commit | 9a7f48f87272dea8cb1e678673b2fe95dc993d68 (patch) | |
tree | 1a9e633ead0ff50f55987310621dab39531d2305 /include/layout.h | |
parent | 1ac0c8cd47f734809c20bf6a6a0a7278680ed597 (diff) | |
parent | 51ab3c918030565cefbb82dc8e899f324e6c5a21 (diff) |
Merge pull request #121 from taiyu-len/pointer_mod
Pointer mode clean and fix.
Diffstat (limited to 'include/layout.h')
-rw-r--r-- | include/layout.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/layout.h b/include/layout.h index f8aebe0a..8f269607 100644 --- a/include/layout.h +++ b/include/layout.h @@ -19,10 +19,12 @@ void add_floating(swayc_t *ws, swayc_t *child); 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 swap_container(swayc_t *a, swayc_t *b); void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction); // Layout +void update_geometry(swayc_t *view); void arrange_windows(swayc_t *container, double width, double height); swayc_t *get_focused_container(swayc_t *parent); |