aboutsummaryrefslogtreecommitdiff
path: root/apps/wm
diff options
context:
space:
mode:
authorMarvin Borner2021-05-23 23:19:26 +0200
committerMarvin Borner2021-05-23 23:19:26 +0200
commitcf1a6ed2998eb22b112f233d65975c27fa5ced5b (patch)
treed78e63704219a49657c6f3029d071ce746c6f932 /apps/wm
parent577b4f989020be27885bcd846e3c49843aa69c08 (diff)
Added title to app bar
Diffstat (limited to 'apps/wm')
-rw-r--r--apps/wm/main.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/wm/main.c b/apps/wm/main.c
index 0c30a3f..25478ff 100644
--- a/apps/wm/main.c
+++ b/apps/wm/main.c
@@ -20,7 +20,7 @@ struct client {
struct window {
u32 id;
u32 shid;
- struct context ctx;
+ struct gfx_context ctx;
struct client client;
u32 flags;
vec2 pos;
@@ -470,11 +470,12 @@ static void window_bar_mousemove(struct window *win, struct event_mouse *event,
window_move(win, vec2_sub(mouse_pos, vec2(win->ctx.size.x / 2, BAR_HEIGHT / 2)));
}
-static void window_bar_draw(struct window *win)
+static void window_bar_draw(struct window *win, char name[64])
{
if (!(win->flags & WF_BAR))
return;
+ gfx_write(&win->ctx, vec2(BAR_MARGIN, BAR_MARGIN), FONT_24, COLOR_WHITE, name);
gfx_load_image_filter(&win->ctx,
vec2(win->ctx.size.x - BAR_CLOSE_SIZE - BAR_MARGIN, BAR_MARGIN),
GFX_FILTER_INVERT, "/icons/close-" STRINGIFY(BAR_CLOSE_SIZE) ".png");
@@ -592,7 +593,7 @@ static void handle_message_new_window(struct message_new_window *msg)
{
struct window *win = window_new((struct client){ .conn = msg->header.bus.conn }, msg->pos,
vec2_add(msg->size, vec2(0, BAR_HEIGHT)), WF_BAR);
- window_bar_draw(win);
+ window_bar_draw(win, msg->name);
msg->ctx = win->ctx;
msg->off = vec2(0, BAR_HEIGHT);