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.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index f73b3880..6980ec9e 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -30,23 +30,23 @@ struct sway_root {
30 } events; 30 } events;
31}; 31};
32 32
33void init_layout(void); 33void layout_init(void);
34 34
35void add_child(struct sway_container *parent, struct sway_container *child); 35void container_add_child(struct sway_container *parent, struct sway_container *child);
36 36
37struct sway_container *add_sibling(struct sway_container *parent, 37struct sway_container *container_add_sibling(struct sway_container *parent,
38 struct sway_container *child); 38 struct sway_container *child);
39 39
40struct sway_container *remove_child(struct sway_container *child); 40struct sway_container *container_remove_child(struct sway_container *child);
41 41
42enum sway_container_layout default_layout(struct sway_container *output); 42enum sway_container_layout container_get_default_layout(struct sway_container *output);
43 43
44void sort_workspaces(struct sway_container *output); 44void container_sort_workspaces(struct sway_container *output);
45 45
46void arrange_windows(struct sway_container *container, 46void container_arrange_windows(struct sway_container *container,
47 double width, double height); 47 double width, double height);
48 48
49struct sway_container *get_swayc_in_direction(struct sway_container 49struct sway_container *container_get_in_direction(struct sway_container
50 *container, struct sway_seat *seat, enum movement_direction dir); 50 *container, struct sway_seat *seat, enum movement_direction dir);
51 51
52#endif 52#endif