aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-02 23:07:52 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-03 15:12:00 +1000
commitb667298a0a1efead7949715a31ec86fe3b8b1cda (patch)
treebc658e3019d741f1f245350003b156d05cc354a2 /include/sway/tree/container.h
parentMerge pull request #1893 from swaywm/touch (diff)
downloadsway-b667298a0a1efead7949715a31ec86fe3b8b1cda.tar.gz
sway-b667298a0a1efead7949715a31ec86fe3b8b1cda.tar.zst
sway-b667298a0a1efead7949715a31ec86fe3b8b1cda.zip
Render titles
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 d092af49..b508f310 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -85,6 +85,11 @@ struct sway_container {
85 85
86 float alpha; 86 float alpha;
87 87
88 struct wlr_texture *title_focused;
89 struct wlr_texture *title_focused_inactive;
90 struct wlr_texture *title_unfocused;
91 struct wlr_texture *title_urgent;
92
88 struct { 93 struct {
89 struct wl_signal destroy; 94 struct wl_signal destroy;
90 // Raised after the tree updates, but before arrange_windows 95 // Raised after the tree updates, but before arrange_windows
@@ -191,4 +196,6 @@ struct sway_container *container_reap_empty_recursive(
191 196
192struct sway_container *container_flatten(struct sway_container *container); 197struct sway_container *container_flatten(struct sway_container *container);
193 198
199void container_update_title_textures(struct sway_container *container);
200
194#endif 201#endif