summaryrefslogtreecommitdiffstats
path: root/include/sway/tree/layout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/layout.h')
-rw-r--r--include/sway/tree/layout.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 519189d9..5c834ad2 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -19,9 +19,15 @@ enum wlr_edges;
19 19
20struct sway_container; 20struct sway_container;
21 21
22void container_handle_fullscreen_reparent(struct sway_container *con,
23 struct sway_container *old_parent);
24
22void container_add_child(struct sway_container *parent, 25void container_add_child(struct sway_container *parent,
23 struct sway_container *child); 26 struct sway_container *child);
24 27
28void container_insert_child(struct sway_container *parent,
29 struct sway_container *child, int i);
30
25struct sway_container *container_add_sibling(struct sway_container *parent, 31struct sway_container *container_add_sibling(struct sway_container *parent,
26 struct sway_container *child); 32 struct sway_container *child);
27 33
@@ -30,18 +36,11 @@ struct sway_container *container_remove_child(struct sway_container *child);
30struct sway_container *container_replace_child(struct sway_container *child, 36struct sway_container *container_replace_child(struct sway_container *child,
31 struct sway_container *new_child); 37 struct sway_container *new_child);
32 38
33void container_move_to(struct sway_container* container, 39bool sway_dir_to_wlr(enum movement_direction dir, enum wlr_direction *out);
34 struct sway_container* destination);
35
36void container_move(struct sway_container *container,
37 enum movement_direction dir, int move_amt);
38 40
39enum sway_container_layout container_get_default_layout( 41enum sway_container_layout container_get_default_layout(
40 struct sway_container *con); 42 struct sway_container *con);
41 43
42struct sway_container *container_get_in_direction(struct sway_container
43 *container, struct sway_seat *seat, enum movement_direction dir);
44
45struct sway_container *container_split(struct sway_container *child, 44struct sway_container *container_split(struct sway_container *child,
46 enum sway_container_layout layout); 45 enum sway_container_layout layout);
47 46