summaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 423c0a22..bd02197c 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -85,9 +85,14 @@ struct sway_container {
85 85
86 struct { 86 struct {
87 struct wl_signal destroy; 87 struct wl_signal destroy;
88 // Raised after the tree updates, but before arrange_windows
89 // Passed the previous parent
90 struct wl_signal reparent;
88 } events; 91 } events;
89}; 92};
90 93
94const char *container_type_to_str(enum sway_container_type type);
95
91// TODO only one container create function and pass the type? 96// TODO only one container create function and pass the type?
92struct sway_container *container_output_create( 97struct sway_container *container_output_create(
93 struct sway_output *sway_output); 98 struct sway_output *sway_output);