aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-31 20:28:36 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-31 23:56:20 +1000
commit528c7495bb09e18a8b63e1c741b90f65ff5541c6 (patch)
treeb1dddeefb15f2511b33f7bed52d0df3b4110d8f8 /include/sway/tree/container.h
parentMerge pull request #3031 from atomnuker/master (diff)
downloadsway-528c7495bb09e18a8b63e1c741b90f65ff5541c6.tar.gz
sway-528c7495bb09e18a8b63e1c741b90f65ff5541c6.tar.zst
sway-528c7495bb09e18a8b63e1c741b90f65ff5541c6.zip
Move view border properties to container struct
This will be needed to implement layout saving and restoring, as we need to be able to configure borders on a placeholder container which has no view.
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 1dd23341..c0c803f1 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -53,16 +53,16 @@ struct sway_container_state {
53 struct sway_container *focused_inactive_child; 53 struct sway_container *focused_inactive_child;
54 bool focused; 54 bool focused;
55 55
56 // View properties
57 double view_x, view_y;
58 double view_width, view_height;
59
60 enum sway_container_border border; 56 enum sway_container_border border;
61 int border_thickness; 57 int border_thickness;
62 bool border_top; 58 bool border_top;
63 bool border_bottom; 59 bool border_bottom;
64 bool border_left; 60 bool border_left;
65 bool border_right; 61 bool border_right;
62
63 // View properties
64 double view_x, view_y;
65 double view_width, view_height;
66}; 66};
67 67
68struct sway_container { 68struct sway_container {
@@ -91,6 +91,18 @@ struct sway_container {
91 91
92 bool is_fullscreen; 92 bool is_fullscreen;
93 93
94 enum sway_container_border border;
95
96 // Used when the view changes to CSD unexpectedly. This will be a non-B_CSD
97 // border which we use to restore when the view returns to SSD.
98 enum sway_container_border saved_border;
99
100 int border_thickness;
101 bool border_top;
102 bool border_bottom;
103 bool border_left;
104 bool border_right;
105
94 // The gaps currently applied to the container. 106 // The gaps currently applied to the container.
95 double current_gaps; 107 double current_gaps;
96 108