286 lines
8.2 KiB
C
286 lines
8.2 KiB
C
#include "monitor.h"
|
|
|
|
#include <cairo-xcb.h>
|
|
#include <cairo.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <xcb/xcb_aux.h>
|
|
#include <xcb/xcb_icccm.h>
|
|
|
|
#include "app.h"
|
|
#include "base.h"
|
|
#include "client.h"
|
|
#include "color.h"
|
|
#include "text.h"
|
|
#include "types.h"
|
|
#include "utils.h"
|
|
#include "wm.h"
|
|
#include "xcursor.h"
|
|
#include "xwindow.h"
|
|
|
|
uint32_t monitor_initialize_tag(monitor_t *monitor, const char **tags,
|
|
uint32_t tag_index_start_at) {
|
|
uint32_t tag_count = 0;
|
|
int i = 0;
|
|
const char *tag_name = nullptr;
|
|
tag_t *prev_tag = nullptr;
|
|
for (tag_name = tags[i]; tag_name; tag_name = tags[++i]) {
|
|
tag_t *tag = p_new(tag_t, 1);
|
|
tag->name = strdup(tag_name);
|
|
tag->mask = 1u << i;
|
|
tag->index = tag_index_start_at + tag_count;
|
|
|
|
if (wm.layout_count > 0 && wm.layout_list) {
|
|
tag->layout = &wm.layout_list[0];
|
|
}
|
|
|
|
if (prev_tag) {
|
|
prev_tag->next = tag;
|
|
} else {
|
|
monitor->tag_list = tag;
|
|
}
|
|
|
|
prev_tag = tag;
|
|
tag_count++;
|
|
}
|
|
|
|
monitor->selected_tag = monitor->tag_list;
|
|
return tag_count;
|
|
}
|
|
|
|
void monitor_deal_focus(monitor_t *monitor) {
|
|
if (!monitor->selected_tag->task_list) {
|
|
client_focus(nullptr);
|
|
return;
|
|
}
|
|
|
|
client_t *client = nullptr;
|
|
for (client_t *c = wm.client_stack_list; c; c = c->stack_next) {
|
|
if (client_get_task_in_tag(c, monitor->selected_tag)) {
|
|
client = c;
|
|
break;
|
|
}
|
|
}
|
|
client_focus(client);
|
|
}
|
|
|
|
void monitor_select_tag(monitor_t *monitor, uint32_t tag_mask) {
|
|
if (monitor->selected_tag->mask == tag_mask) return;
|
|
|
|
for (tag_t *tag = monitor->tag_list; tag; tag = tag->next) {
|
|
if (tag->mask == tag_mask) {
|
|
monitor->selected_tag = tag;
|
|
monitor_arrange(monitor);
|
|
monitor_draw_bar(monitor);
|
|
break;
|
|
}
|
|
}
|
|
|
|
monitor_deal_focus(monitor);
|
|
xcb_flush(wm.xcb_conn);
|
|
}
|
|
|
|
static void tag_clean(tag_t *tag) {
|
|
tag_t *next_tag = nullptr;
|
|
for (tag_t *t = tag; t; t = next_tag) {
|
|
p_delete(&t->name);
|
|
|
|
next_tag = t->next;
|
|
p_delete(&t);
|
|
}
|
|
}
|
|
|
|
void monitor_clean(monitor_t *monitor) {
|
|
monitor_t *next_monitor = nullptr;
|
|
for (monitor_t *m = monitor; m; m = next_monitor) {
|
|
p_delete(&m->name);
|
|
tag_clean(m->tag_list);
|
|
|
|
m->selected_tag = nullptr;
|
|
m->tag_list = nullptr;
|
|
|
|
cairo_destroy(m->bar_cr);
|
|
m->bar_cr = nullptr;
|
|
|
|
next_monitor = m->next;
|
|
p_delete(&m);
|
|
}
|
|
}
|
|
|
|
void monitor_init_bar(monitor_t *monitor) {
|
|
static xcb_colormap_t colormap = XCB_NONE;
|
|
visual_t *visual = xwindow_get_xcb_visual(true);
|
|
xcb_visualid_t visual_id = visual->visual->visual_id;
|
|
xcb_connection_t *conn = wm.xcb_conn;
|
|
if (colormap == XCB_NONE) {
|
|
colormap = xcb_generate_id(conn);
|
|
uint8_t alloc = XCB_COLORMAP_ALLOC_NONE;
|
|
xcb_create_colormap(conn, alloc, colormap, wm.screen->root, visual_id);
|
|
}
|
|
|
|
xcb_window_t window = xcb_generate_id(conn);
|
|
uint32_t value_mask = XCB_CW_OVERRIDE_REDIRECT | XCB_CW_BACK_PIXEL |
|
|
XCB_CW_BORDER_PIXEL | XCB_CW_EVENT_MASK |
|
|
XCB_CW_CURSOR | XCB_CW_COLORMAP;
|
|
const xcb_create_window_value_list_t value_list = {
|
|
.override_redirect = true,
|
|
.background_pixel = wm.color_set.bar_bg.argb,
|
|
.border_pixel = 0,
|
|
.event_mask = XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_EXPOSURE,
|
|
.cursor = xcursor_get_xcb_cursor(cursor_normal),
|
|
.colormap = colormap,
|
|
};
|
|
xcb_void_cookie_t cookie;
|
|
cookie = xcb_create_window_aux_checked(
|
|
conn, visual->depth, window, wm.screen->root, monitor->geometry.x,
|
|
monitor->geometry.y, monitor->geometry.width, wm.bar_height, 0,
|
|
XCB_WINDOW_CLASS_INPUT_OUTPUT, visual_id, value_mask, &value_list);
|
|
if (xcb_request_check(conn, cookie)) fatal("cannot create bar window");
|
|
|
|
cookie = xcb_map_window(conn, window);
|
|
if (xcb_request_check(conn, cookie)) fatal("cannot map bar window:");
|
|
|
|
xwindow_set_class_instance(window);
|
|
xwindow_set_name_static(window, APP_NAME "_bar");
|
|
|
|
xcb_aux_sync(conn);
|
|
|
|
uint16_t width = monitor->geometry.width;
|
|
monitor->workarea.x = monitor->geometry.x;
|
|
monitor->workarea.y = monitor->geometry.y + wm.bar_height;
|
|
monitor->workarea.width = width;
|
|
monitor->workarea.height = monitor->geometry.height - wm.bar_height;
|
|
monitor->bar_window = window;
|
|
cairo_surface_t *surface = cairo_xcb_surface_create(
|
|
wm.xcb_conn, window, visual->visual, width, wm.bar_height);
|
|
cairo_t *cr = cairo_create(surface);
|
|
cairo_surface_destroy(surface);
|
|
p_delete(&visual);
|
|
|
|
cairo_status_t status = cairo_status(cr);
|
|
if (status != CAIRO_STATUS_SUCCESS) {
|
|
fatal("cannot create cairo context: %s", cairo_status_to_string(status));
|
|
}
|
|
monitor->bar_cr = cr;
|
|
}
|
|
|
|
static void monitor_draw_tags(monitor_t *monitor) {
|
|
int16_t x = 0;
|
|
for (tag_t *tag = monitor->tag_list; tag; tag = tag->next) {
|
|
bool selected = monitor->selected_tag == tag;
|
|
bool has_client = tag->task_list;
|
|
color_t *bg = nullptr;
|
|
color_t *color = nullptr;
|
|
if (selected) {
|
|
bg = &wm.color_set.active_tag_bg;
|
|
color = &wm.color_set.active_tag_color;
|
|
} else {
|
|
bg = &wm.color_set.tag_bg;
|
|
color = &wm.color_set.tag_color;
|
|
}
|
|
int width = 0, height = 0;
|
|
text_get_size(tag->name, &width, &height);
|
|
width += 2 * wm.padding.tag_x;
|
|
tag->bar_extent.start = x;
|
|
tag->bar_extent.end = x + width;
|
|
|
|
area_t tag_rect = {.x = x, .y = 0, .width = width, .height = wm.bar_height};
|
|
if (bg->rgba != wm.color_set.bar_bg.rgba) {
|
|
draw_background(monitor->bar_cr, bg, tag_rect);
|
|
}
|
|
if (has_client) {
|
|
area_t rect = {.x = x, .y = 0, .width = 4, .height = 4};
|
|
draw_rect(monitor->bar_cr, rect, selected, color, 1);
|
|
}
|
|
area_t text_rect = tag_rect;
|
|
tag_rect.y = (int16_t)((int)wm.bar_height - height) / 2;
|
|
tag_rect.height = (int16_t)height;
|
|
draw_text(monitor->bar_cr, tag->name, color, text_rect, true);
|
|
x += width;
|
|
}
|
|
|
|
monitor->tag_extent.start = 0;
|
|
monitor->tag_extent.end = x;
|
|
}
|
|
|
|
static void monitor_draw_layout_symbol(monitor_t *monitor) {
|
|
const layout_t *layout = monitor->selected_tag->layout;
|
|
if (layout && layout->symbol) {
|
|
color_t *color = &wm.color_set.tag_color;
|
|
int width = 0;
|
|
text_get_size(layout->symbol, &width, nullptr);
|
|
area_t area = {
|
|
.x = monitor->tag_extent.end,
|
|
.y = monitor->geometry.y,
|
|
.width = width + 2 * wm.padding.tag_x,
|
|
.height = wm.bar_height,
|
|
};
|
|
monitor->layout_symbol_extent.start = area.x;
|
|
monitor->layout_symbol_extent.end = area.x + area.width;
|
|
draw_text(monitor->bar_cr, layout->symbol, color, area, true);
|
|
}
|
|
}
|
|
|
|
static void monitor_draw_tasks(monitor_t *monitor) {
|
|
task_in_tag_t *task_list = monitor->selected_tag->task_list;
|
|
if (!task_list) return;
|
|
|
|
uint16_t task_count = 0;
|
|
for (task_in_tag_t *task = task_list; task; task = task->next) ++task_count;
|
|
if (task_count == 0) return;
|
|
|
|
int16_t x = monitor->layout_symbol_extent.end;
|
|
uint16_t task_width = (monitor->geometry.width - x) / task_count;
|
|
for (task_in_tag_t *task = task_list; task; task = task->next) {
|
|
task->bar_extent.start = x;
|
|
task->bar_extent.end = x + task_width;
|
|
x += task_width;
|
|
|
|
char **title = client_get_task_title(task->client);
|
|
if (title == nullptr || *title == nullptr) continue;
|
|
color_t *color = &wm.color_set.active_tag_color;
|
|
area_t area = {
|
|
.x = task->bar_extent.start,
|
|
.y = monitor->geometry.y,
|
|
.width = task_width,
|
|
.height = wm.bar_height,
|
|
};
|
|
draw_text(monitor->bar_cr, *title, color, area, false);
|
|
}
|
|
}
|
|
|
|
void monitor_draw_bar(monitor_t *monitor) {
|
|
cairo_t *cr = monitor->bar_cr;
|
|
uint16_t height = wm.bar_height;
|
|
area_t bar_area = {
|
|
.x = 0,
|
|
.y = 0,
|
|
.width = monitor->geometry.width,
|
|
.height = height,
|
|
};
|
|
draw_background(cr, &wm.color_set.bar_bg, bar_area);
|
|
|
|
monitor_draw_tags(monitor);
|
|
monitor_draw_layout_symbol(monitor);
|
|
monitor_draw_tasks(monitor);
|
|
}
|
|
|
|
void monitor_arrange(monitor_t *monitor) {
|
|
tag_t *tag = monitor->selected_tag;
|
|
if (tag->layout && tag->layout->arrange) tag->layout->arrange(tag);
|
|
|
|
for (client_t *c = wm.client_list; c; c = c->next) {
|
|
task_in_tag_t *task = client_get_task_in_tag(c, tag);
|
|
if (task) {
|
|
client_apply_task_geometry(c, task);
|
|
} else {
|
|
int16_t x = -client_width(c);
|
|
int16_t y = -client_height(c);
|
|
if (x != c->geometry.x || y != c->geometry.y) {
|
|
client_move_to(c, x, y);
|
|
}
|
|
}
|
|
}
|
|
xcb_flush(wm.xcb_conn);
|
|
}
|