summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-02 13:23:43 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-02 13:23:43 -0400
commit5e024278a62e6fb00a0521240244c428d2382984 (patch)
treed9010d33d4d576297cc5e40d41bed4bb7bf5631a /include
parentdont copy input config (diff)
parentMerge pull request #1697 from RedSoxFan/back-and-forth (diff)
downloadsway-5e024278a62e6fb00a0521240244c428d2382984.tar.gz
sway-5e024278a62e6fb00a0521240244c428d2382984.tar.zst
sway-5e024278a62e6fb00a0521240244c428d2382984.zip
Merge branch 'wlroots' into seat-fixes
Diffstat (limited to 'include')
-rw-r--r--include/sway/output.h2
-rw-r--r--include/sway/tree/container.h5
-rw-r--r--include/sway/tree/layout.h12
3 files changed, 14 insertions, 5 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index b4980cd8..b343ecff 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -36,4 +36,6 @@ void output_damage_whole(struct sway_output *output);
36void output_damage_whole_view(struct sway_output *output, 36void output_damage_whole_view(struct sway_output *output,
37 struct sway_view *view); 37 struct sway_view *view);
38 38
39struct sway_container *output_by_name(const char *name);
40
39#endif 41#endif
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 6aa66da0..aff2e58e 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -84,9 +84,14 @@ struct sway_container {
84 84
85 struct { 85 struct {
86 struct wl_signal destroy; 86 struct wl_signal destroy;
87 // Raised after the tree updates, but before arrange_windows
88 // Passed the previous parent
89 struct wl_signal reparent;
87 } events; 90 } events;
88}; 91};
89 92
93const char *container_type_to_str(enum sway_container_type type);
94
90// TODO only one container create function and pass the type? 95// TODO only one container create function and pass the type?
91struct sway_container *container_output_create( 96struct sway_container *container_output_create(
92 struct sway_output *sway_output); 97 struct sway_output *sway_output);
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 0a904c4b..e1034657 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -11,9 +11,6 @@ enum movement_direction {
11 MOVE_DOWN, 11 MOVE_DOWN,
12 MOVE_PARENT, 12 MOVE_PARENT,
13 MOVE_CHILD, 13 MOVE_CHILD,
14 MOVE_NEXT,
15 MOVE_PREV,
16 MOVE_FIRST
17}; 14};
18 15
19struct sway_container; 16struct sway_container;
@@ -32,7 +29,8 @@ struct sway_root {
32 29
33void layout_init(void); 30void layout_init(void);
34 31
35void container_add_child(struct sway_container *parent, struct sway_container *child); 32void container_add_child(struct sway_container *parent,
33 struct sway_container *child);
36 34
37struct sway_container *container_add_sibling(struct sway_container *parent, 35struct sway_container *container_add_sibling(struct sway_container *parent,
38 struct sway_container *child); 36 struct sway_container *child);
@@ -44,7 +42,11 @@ struct sway_container *container_reap_empty(struct sway_container *container);
44void container_move_to(struct sway_container* container, 42void container_move_to(struct sway_container* container,
45 struct sway_container* destination); 43 struct sway_container* destination);
46 44
47enum sway_container_layout container_get_default_layout(struct sway_container *output); 45void container_move(struct sway_container *container,
46 enum movement_direction dir, int move_amt);
47
48enum sway_container_layout container_get_default_layout(
49 struct sway_container *output);
48 50
49void container_sort_workspaces(struct sway_container *output); 51void container_sort_workspaces(struct sway_container *output);
50 52