aboutsummaryrefslogtreecommitdiffstats
path: root/include/layout.h
diff options
context:
space:
mode:
authorLibravatar taiyu <taiyu.len@gmail.com>2015-08-22 18:01:38 -0700
committerLibravatar taiyu <taiyu.len@gmail.com>2015-08-22 18:01:38 -0700
commite139de0857a1ba015fa324dcc662a39eca88761b (patch)
tree1b3406300ed364e2d0449c2e08ab4c39a654ac6c /include/layout.h
parentWhoops (diff)
downloadsway-e139de0857a1ba015fa324dcc662a39eca88761b.tar.gz
sway-e139de0857a1ba015fa324dcc662a39eca88761b.tar.zst
sway-e139de0857a1ba015fa324dcc662a39eca88761b.zip
floating/tiling move + floating resize cleaned and fixed
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h2
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);
19swayc_t *add_sibling(swayc_t *sibling, swayc_t *child); 19swayc_t *add_sibling(swayc_t *sibling, swayc_t *child);
20swayc_t *replace_child(swayc_t *child, swayc_t *new_child); 20swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
21swayc_t *remove_child(swayc_t *child); 21swayc_t *remove_child(swayc_t *child);
22void swap_container(swayc_t *a, swayc_t *b);
22 23
23void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction); 24void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction);
24 25
25// Layout 26// Layout
27void update_geometry(swayc_t *view);
26void arrange_windows(swayc_t *container, double width, double height); 28void arrange_windows(swayc_t *container, double width, double height);
27 29
28swayc_t *get_focused_container(swayc_t *parent); 30swayc_t *get_focused_container(swayc_t *parent);