aboutsummaryrefslogtreecommitdiff
path: root/include/sway
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-05-02 23:07:52 +1000
committerRyan Dwyer <ryandwyer1@gmail.com>2018-05-03 15:12:00 +1000
commitb667298a0a1efead7949715a31ec86fe3b8b1cda (patch)
treebc658e3019d741f1f245350003b156d05cc354a2 /include/sway
parentf3d0885524f4f1dc568baf21fcc8e387a316703f (diff)
Render titles
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/config.h4
-rw-r--r--include/sway/tree/container.h7
2 files changed, 10 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index a0113e98..02ae3b63 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -206,7 +206,7 @@ struct bar_config {
struct border_colors {
float border[4];
float background[4];
- float text[4];
+ uint32_t text; /**< uint32_t because that's the format that cairo uses */
float indicator[4];
float child_border[4];
};
@@ -461,6 +461,8 @@ struct bar_config *default_bar_config(void);
void free_bar_config(struct bar_config *bar);
+int get_font_text_height(char *font);
+
/* Global config singleton. */
extern struct sway_config *config;
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 {
float alpha;
+ struct wlr_texture *title_focused;
+ struct wlr_texture *title_focused_inactive;
+ struct wlr_texture *title_unfocused;
+ struct wlr_texture *title_urgent;
+
struct {
struct wl_signal destroy;
// Raised after the tree updates, but before arrange_windows
@@ -191,4 +196,6 @@ struct sway_container *container_reap_empty_recursive(
struct sway_container *container_flatten(struct sway_container *container);
+void container_update_title_textures(struct sway_container *container);
+
#endif