aboutsummaryrefslogtreecommitdiff
path: root/include/sway/tree/layout.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-02 20:44:56 -0400
committerGitHub <noreply@github.com>2018-04-02 20:44:56 -0400
commitd3eaf6468cf45007e63386afb3d148919959babe (patch)
tree6c0d05d8605ff5bec4d87a2064e46e6e8cb25385 /include/sway/tree/layout.h
parent64b9b4b1556c1c45273bfbe0ae1c92245414cfed (diff)
parent32ef182f474dbb40c4bedb69256ca6ec8bd31039 (diff)
downloadsway-d3eaf6468cf45007e63386afb3d148919959babe.tar.xz
Merge pull request #1668 from acrisci/split-containers
Basic split containers
Diffstat (limited to 'include/sway/tree/layout.h')
-rw-r--r--include/sway/tree/layout.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index a14152e8..8badb244 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -29,31 +29,43 @@ struct sway_root {
void layout_init(void);
+// TODO move to tree.h
void container_add_child(struct sway_container *parent,
struct sway_container *child);
+// TODO move to tree.h
struct sway_container *container_add_sibling(struct sway_container *parent,
struct sway_container *child);
+// TODO move to tree.h
struct sway_container *container_remove_child(struct sway_container *child);
+// TODO PRIVATE in tree.h
struct sway_container *container_reap_empty(struct sway_container *container);
+// TODO move to tree.h
void container_move_to(struct sway_container* container,
struct sway_container* destination);
void container_move(struct sway_container *container,
enum movement_direction dir, int move_amt);
+// TODO move to output.c
enum sway_container_layout container_get_default_layout(
struct sway_container *output);
+// TODO move to output.c
void container_sort_workspaces(struct sway_container *output);
void arrange_windows(struct sway_container *container,
double width, double height);
+// TODO move to container.h
struct sway_container *container_get_in_direction(struct sway_container
*container, struct sway_seat *seat, enum movement_direction dir);
+// TODO move to tree.h
+struct sway_container *container_split(struct sway_container *child,
+ enum sway_container_layout layout);
+
#endif