aboutsummaryrefslogtreecommitdiffstats
path: root/include/layout.h
diff options
context:
space:
mode:
authorLibravatar taiyu <taiyu.len@gmail.com>2015-08-28 11:03:10 -0700
committerLibravatar taiyu <taiyu.len@gmail.com>2015-08-28 11:03:10 -0700
commit1820b3f0bb97406aefb51ef44f2c60b4f4fa5165 (patch)
tree30e7ed34d3bb3aa5df1aba0797ea7d2b54dbcdb1 /include/layout.h
parentforgot visibility of floating containers (diff)
downloadsway-1820b3f0bb97406aefb51ef44f2c60b4f4fa5165.tar.gz
sway-1820b3f0bb97406aefb51ef44f2c60b4f4fa5165.tar.zst
sway-1820b3f0bb97406aefb51ef44f2c60b4f4fa5165.zip
move function redone
Diffstat (limited to 'include/layout.h')
-rw-r--r--include/layout.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/layout.h b/include/layout.h
index 2d2a1113..f462bdb3 100644
--- a/include/layout.h
+++ b/include/layout.h
@@ -37,10 +37,13 @@ swayc_t *replace_child(swayc_t *child, swayc_t *new_child);
37// a sibling, or to a floating window, or NULL 37// a sibling, or to a floating window, or NULL
38swayc_t *remove_child(swayc_t *child); 38swayc_t *remove_child(swayc_t *child);
39 39
40// 2 containers are swapped, they inherit eachothers geometry and focus 40// 2 containers are swapped, they inherit eachothers focus
41void swap_container(swayc_t *a, swayc_t *b); 41void swap_container(swayc_t *a, swayc_t *b);
42 42
43void move_container(swayc_t* container,swayc_t* root,enum movement_direction direction); 43// 2 Containers geometry are swapped, used with `swap_container`
44void swap_geometry(swayc_t *a, swayc_t *b);
45
46void move_container(swayc_t* container, enum movement_direction direction);
44void move_container_to(swayc_t* container, swayc_t* destination); 47void move_container_to(swayc_t* container, swayc_t* destination);
45 48
46// Layout 49// Layout