diff options
author | taiyu <[email protected]> | 2015-08-22 18:01:38 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-08-22 18:01:38 -0700 |
commit | e139de0857a1ba015fa324dcc662a39eca88761b (patch) | |
tree | 1b3406300ed364e2d0449c2e08ab4c39a654ac6c /include/layout.h | |
parent | 232940f81302ca7c07c08744ada0be0fa37dd2ff (diff) |
floating/tiling move + floating resize cleaned and fixed
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); |