aboutsummaryrefslogtreecommitdiff
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorNate Symer <nate@symer.io>2018-06-09 09:34:56 -0400
committerNate Symer <nate@symer.io>2018-06-09 09:34:56 -0400
commit6a910b9ba5443aa31f7cc2468c943c2f9da4854b (patch)
tree24e4ea6634a734ed303c7aaf611df682adbf746c /include/sway/tree/container.h
parent21d98d5bfb19491f8fd486a2eddc8efe9fb3de6c (diff)
Implement gaps (PR #2047)
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 7ed6aab1..b3406bbe 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -86,6 +86,13 @@ struct sway_container {
double saved_x, saved_y;
double saved_width, saved_height;
+ // The gaps currently applied to the container.
+ double current_gaps;
+
+ bool has_gaps;
+ double gaps_inner;
+ double gaps_outer;
+
list_t *children;
struct sway_container *parent;