2016-01-23 19:55:01 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2016-01-25 20:44:27 +00:00
|
|
|
#include "client/cairo.h"
|
2016-01-23 19:55:01 +00:00
|
|
|
#include "client/pango.h"
|
|
|
|
#include "client/window.h"
|
2016-09-01 12:18:37 +00:00
|
|
|
#include "swaybar/config.h"
|
|
|
|
#include "swaybar/status_line.h"
|
|
|
|
#include "swaybar/render.h"
|
2017-06-07 23:45:28 +00:00
|
|
|
#ifdef ENABLE_TRAY
|
|
|
|
#include "swaybar/tray/tray.h"
|
|
|
|
#include "swaybar/tray/sni.h"
|
|
|
|
#endif
|
2016-09-05 15:36:48 +00:00
|
|
|
#include "log.h"
|
2016-01-23 19:55:01 +00:00
|
|
|
|
2016-01-23 23:23:09 +00:00
|
|
|
|
|
|
|
/* internal spacing */
|
|
|
|
static int margin = 3;
|
|
|
|
static int ws_horizontal_padding = 5;
|
|
|
|
static double ws_vertical_padding = 1.5;
|
|
|
|
static int ws_spacing = 1;
|
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
/**
|
|
|
|
* Renders a sharp line of any width and height.
|
|
|
|
*
|
|
|
|
* The line is drawn from (x,y) to (x+width,y+height) where width/height is 0
|
|
|
|
* if the line has a width/height of one pixel, respectively.
|
|
|
|
*/
|
|
|
|
static void render_sharp_line(cairo_t *cairo, uint32_t color, double x, double y, double width, double height) {
|
|
|
|
cairo_set_source_u32(cairo, color);
|
|
|
|
|
|
|
|
if (width > 1 && height > 1) {
|
|
|
|
cairo_rectangle(cairo, x, y, width, height);
|
|
|
|
cairo_fill(cairo);
|
|
|
|
} else {
|
|
|
|
if (width == 1) {
|
|
|
|
x += 0.5;
|
|
|
|
height += y;
|
|
|
|
width = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (height == 1) {
|
|
|
|
y += 0.5;
|
|
|
|
width += x;
|
|
|
|
height = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
cairo_move_to(cairo, x, y);
|
|
|
|
cairo_set_line_width(cairo, 1.0);
|
|
|
|
cairo_line_to(cairo, width, height);
|
|
|
|
cairo_stroke(cairo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 17:48:43 +00:00
|
|
|
static void render_block(struct window *window, struct config *config, struct status_block *block, double *x, bool edge, bool is_focused) {
|
2016-01-23 19:55:01 +00:00
|
|
|
int width, height, sep_width;
|
2016-09-05 15:52:52 +00:00
|
|
|
get_text_size(window->cairo, window->font, &width, &height,
|
|
|
|
window->scale, block->markup, "%s", block->full_text);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
int textwidth = width;
|
|
|
|
double block_width = width;
|
|
|
|
|
|
|
|
if (width < block->min_width) {
|
|
|
|
width = block->min_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
*x -= width;
|
|
|
|
|
|
|
|
if (block->border != 0 && block->border_left > 0) {
|
2016-01-23 23:23:09 +00:00
|
|
|
*x -= (block->border_left + margin);
|
|
|
|
block_width += block->border_left + margin;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (block->border != 0 && block->border_right > 0) {
|
2016-01-23 23:23:09 +00:00
|
|
|
*x -= (block->border_right + margin);
|
|
|
|
block_width += block->border_right + margin;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add separator
|
|
|
|
if (!edge) {
|
|
|
|
if (config->sep_symbol) {
|
2016-09-05 15:52:52 +00:00
|
|
|
get_text_size(window->cairo, window->font, &sep_width, &height,
|
|
|
|
window->scale, false, "%s", config->sep_symbol);
|
2016-01-23 19:55:01 +00:00
|
|
|
if (sep_width > block->separator_block_width) {
|
2016-01-23 23:23:09 +00:00
|
|
|
block->separator_block_width = sep_width + margin * 2;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*x -= block->separator_block_width;
|
|
|
|
} else {
|
2016-01-23 23:23:09 +00:00
|
|
|
*x -= margin;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double pos = *x;
|
|
|
|
|
2017-08-29 15:33:06 +00:00
|
|
|
block->x = (int)pos;
|
|
|
|
block->width = (int)block_width;
|
2017-08-29 09:19:43 +00:00
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
// render background
|
|
|
|
if (block->background != 0x0) {
|
|
|
|
cairo_set_source_u32(window->cairo, block->background);
|
2016-09-29 12:31:35 +00:00
|
|
|
cairo_rectangle(window->cairo, pos - 0.5, 1, block_width, (window->height * window->scale) - 2);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_fill(window->cairo);
|
|
|
|
}
|
|
|
|
|
|
|
|
// render top border
|
|
|
|
if (block->border != 0 && block->border_top > 0) {
|
|
|
|
render_sharp_line(window->cairo, block->border,
|
|
|
|
pos - 0.5,
|
|
|
|
1,
|
|
|
|
block_width,
|
|
|
|
block->border_top);
|
|
|
|
}
|
|
|
|
|
|
|
|
// render bottom border
|
|
|
|
if (block->border != 0 && block->border_bottom > 0) {
|
|
|
|
render_sharp_line(window->cairo, block->border,
|
|
|
|
pos - 0.5,
|
2016-09-29 12:31:35 +00:00
|
|
|
(window->height * window->scale) - 1 - block->border_bottom,
|
2016-01-23 19:55:01 +00:00
|
|
|
block_width,
|
|
|
|
block->border_bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
// render left border
|
|
|
|
if (block->border != 0 && block->border_left > 0) {
|
|
|
|
render_sharp_line(window->cairo, block->border,
|
|
|
|
pos - 0.5,
|
|
|
|
1,
|
|
|
|
block->border_left,
|
2016-09-29 12:31:35 +00:00
|
|
|
(window->height * window->scale) - 2);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
2016-01-23 23:23:09 +00:00
|
|
|
pos += block->border_left + margin;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// render text
|
|
|
|
double offset = 0;
|
|
|
|
|
|
|
|
if (strncmp(block->align, "left", 5) == 0) {
|
|
|
|
offset = pos;
|
|
|
|
} else if (strncmp(block->align, "right", 5) == 0) {
|
|
|
|
offset = pos + width - textwidth;
|
|
|
|
} else if (strncmp(block->align, "center", 6) == 0) {
|
|
|
|
offset = pos + (width - textwidth) / 2;
|
|
|
|
}
|
|
|
|
|
2016-01-23 23:23:09 +00:00
|
|
|
cairo_move_to(window->cairo, offset, margin);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_set_source_u32(window->cairo, block->color);
|
2016-09-05 15:52:52 +00:00
|
|
|
pango_printf(window->cairo, window->font, window->scale,
|
|
|
|
block->markup, "%s", block->full_text);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
pos += width;
|
|
|
|
|
|
|
|
// render right border
|
|
|
|
if (block->border != 0 && block->border_right > 0) {
|
2016-01-23 23:23:09 +00:00
|
|
|
pos += margin;
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
render_sharp_line(window->cairo, block->border,
|
|
|
|
pos - 0.5,
|
|
|
|
1,
|
|
|
|
block->border_right,
|
2016-09-29 12:31:35 +00:00
|
|
|
(window->height * window->scale) - 2);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
pos += block->border_right;
|
|
|
|
}
|
|
|
|
|
|
|
|
// render separator
|
|
|
|
if (!edge && block->separator) {
|
2016-11-02 17:48:43 +00:00
|
|
|
if (is_focused) {
|
|
|
|
cairo_set_source_u32(window->cairo, config->colors.focused_separator);
|
|
|
|
} else {
|
|
|
|
cairo_set_source_u32(window->cairo, config->colors.separator);
|
|
|
|
}
|
2016-01-23 19:55:01 +00:00
|
|
|
if (config->sep_symbol) {
|
|
|
|
offset = pos + (block->separator_block_width - sep_width) / 2;
|
2016-01-23 23:23:09 +00:00
|
|
|
cairo_move_to(window->cairo, offset, margin);
|
2016-09-05 15:52:52 +00:00
|
|
|
pango_printf(window->cairo, window->font, window->scale,
|
|
|
|
false, "%s", config->sep_symbol);
|
2016-01-23 19:55:01 +00:00
|
|
|
} else {
|
|
|
|
cairo_set_line_width(window->cairo, 1);
|
|
|
|
cairo_move_to(window->cairo, pos + block->separator_block_width/2,
|
2016-01-23 23:23:09 +00:00
|
|
|
margin);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_line_to(window->cairo, pos + block->separator_block_width/2,
|
2016-09-29 12:31:35 +00:00
|
|
|
(window->height * window->scale) - margin);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_stroke(window->cairo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-07-11 03:47:10 +00:00
|
|
|
static const char *strip_workspace_name(bool strip_num, const char *ws_name) {
|
2016-01-23 19:55:01 +00:00
|
|
|
bool strip = false;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (strip_num) {
|
|
|
|
int len = strlen(ws_name);
|
|
|
|
for (i = 0; i < len; ++i) {
|
|
|
|
if (!('0' <= ws_name[i] && ws_name[i] <= '9')) {
|
|
|
|
if (':' == ws_name[i] && i < len-1 && i > 0) {
|
|
|
|
strip = true;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strip) {
|
2016-07-11 03:47:10 +00:00
|
|
|
return ws_name + i;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2016-07-11 03:47:10 +00:00
|
|
|
return ws_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void workspace_button_size(struct window *window, const char *workspace_name, int *width, int *height) {
|
|
|
|
const char *stripped_name = strip_workspace_name(swaybar.config->strip_workspace_numbers, workspace_name);
|
|
|
|
|
2016-09-05 15:52:52 +00:00
|
|
|
get_text_size(window->cairo, window->font, width, height,
|
2016-10-07 09:27:06 +00:00
|
|
|
window->scale, true, "%s", stripped_name);
|
2016-07-11 03:47:10 +00:00
|
|
|
*width += 2 * ws_horizontal_padding;
|
|
|
|
*height += 2 * ws_vertical_padding;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:34:20 +00:00
|
|
|
static void render_workspace_button(struct window *window, struct config *config, struct workspace *ws, double *x) {
|
2016-07-11 03:47:10 +00:00
|
|
|
const char *stripped_name = strip_workspace_name(config->strip_workspace_numbers, ws->name);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
struct box_colors box_colors;
|
|
|
|
if (ws->urgent) {
|
|
|
|
box_colors = config->colors.urgent_workspace;
|
|
|
|
} else if (ws->focused) {
|
|
|
|
box_colors = config->colors.focused_workspace;
|
|
|
|
} else if (ws->visible) {
|
|
|
|
box_colors = config->colors.active_workspace;
|
|
|
|
} else {
|
|
|
|
box_colors = config->colors.inactive_workspace;
|
|
|
|
}
|
|
|
|
|
2016-07-11 03:47:10 +00:00
|
|
|
int width, height;
|
|
|
|
workspace_button_size(window, stripped_name, &width, &height);
|
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
// background
|
|
|
|
cairo_set_source_u32(window->cairo, box_colors.background);
|
2016-07-11 03:47:10 +00:00
|
|
|
cairo_rectangle(window->cairo, *x, 1.5, width - 1, height);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_fill(window->cairo);
|
|
|
|
|
|
|
|
// border
|
|
|
|
cairo_set_source_u32(window->cairo, box_colors.border);
|
2016-07-11 03:47:10 +00:00
|
|
|
cairo_rectangle(window->cairo, *x, 1.5, width - 1, height);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_stroke(window->cairo);
|
|
|
|
|
|
|
|
// text
|
|
|
|
cairo_set_source_u32(window->cairo, box_colors.text);
|
2016-01-23 23:23:09 +00:00
|
|
|
cairo_move_to(window->cairo, (int)*x + ws_horizontal_padding, margin);
|
2016-09-05 15:52:52 +00:00
|
|
|
pango_printf(window->cairo, window->font, window->scale,
|
2016-10-07 09:27:06 +00:00
|
|
|
true, "%s", stripped_name);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
2016-07-11 03:47:10 +00:00
|
|
|
*x += width + ws_spacing;
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:34:20 +00:00
|
|
|
static void render_binding_mode_indicator(struct window *window, struct config *config, double pos) {
|
2016-01-23 19:55:01 +00:00
|
|
|
int width, height;
|
2016-09-05 15:52:52 +00:00
|
|
|
get_text_size(window->cairo, window->font, &width, &height,
|
|
|
|
window->scale, false, "%s", config->mode);
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
// background
|
|
|
|
cairo_set_source_u32(window->cairo, config->colors.binding_mode.background);
|
2016-01-23 23:23:09 +00:00
|
|
|
cairo_rectangle(window->cairo, pos, 1.5, width + ws_horizontal_padding * 2 - 1,
|
|
|
|
height + ws_vertical_padding * 2);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_fill(window->cairo);
|
|
|
|
|
|
|
|
// border
|
|
|
|
cairo_set_source_u32(window->cairo, config->colors.binding_mode.border);
|
2016-01-23 23:23:09 +00:00
|
|
|
cairo_rectangle(window->cairo, pos, 1.5, width + ws_horizontal_padding * 2 - 1,
|
|
|
|
height + ws_vertical_padding * 2);
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_stroke(window->cairo);
|
|
|
|
|
|
|
|
// text
|
|
|
|
cairo_set_source_u32(window->cairo, config->colors.binding_mode.text);
|
2016-01-23 23:23:09 +00:00
|
|
|
cairo_move_to(window->cairo, (int)pos + ws_horizontal_padding, margin);
|
2016-09-05 15:52:52 +00:00
|
|
|
pango_printf(window->cairo, window->font, window->scale,
|
|
|
|
false, "%s", config->mode);
|
2016-01-23 19:55:01 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:34:20 +00:00
|
|
|
void render(struct output *output, struct config *config, struct status_line *line) {
|
2016-01-23 19:55:01 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
struct window *window = output->window;
|
|
|
|
cairo_t *cairo = window->cairo;
|
2016-11-02 17:48:43 +00:00
|
|
|
bool is_focused = output->focused;
|
2016-01-23 19:55:01 +00:00
|
|
|
|
|
|
|
// Clear
|
|
|
|
cairo_save(cairo);
|
|
|
|
cairo_set_operator(cairo, CAIRO_OPERATOR_CLEAR);
|
|
|
|
cairo_paint(cairo);
|
|
|
|
cairo_restore(cairo);
|
|
|
|
|
2016-10-13 03:44:19 +00:00
|
|
|
cairo_set_operator(cairo, CAIRO_OPERATOR_SOURCE);
|
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
// Background
|
2016-11-02 17:48:43 +00:00
|
|
|
if (is_focused) {
|
|
|
|
cairo_set_source_u32(cairo, config->colors.focused_background);
|
|
|
|
} else {
|
|
|
|
cairo_set_source_u32(cairo, config->colors.background);
|
|
|
|
}
|
2016-01-23 19:55:01 +00:00
|
|
|
cairo_paint(cairo);
|
|
|
|
|
2017-06-07 23:45:28 +00:00
|
|
|
#ifdef ENABLE_TRAY
|
2017-06-08 04:32:48 +00:00
|
|
|
uint32_t tray_width = tray_render(output, config);
|
2017-06-07 23:45:28 +00:00
|
|
|
#else
|
2017-06-08 04:32:48 +00:00
|
|
|
const uint32_t tray_width = window->width * window->scale;
|
2017-06-07 23:45:28 +00:00
|
|
|
#endif
|
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
// Command output
|
2016-11-02 17:48:43 +00:00
|
|
|
if (is_focused) {
|
|
|
|
cairo_set_source_u32(cairo, config->colors.focused_statusline);
|
|
|
|
} else {
|
|
|
|
cairo_set_source_u32(cairo, config->colors.statusline);
|
|
|
|
}
|
|
|
|
|
2016-01-23 19:55:01 +00:00
|
|
|
int width, height;
|
|
|
|
|
|
|
|
if (line->protocol == TEXT) {
|
2016-09-05 15:52:52 +00:00
|
|
|
get_text_size(window->cairo, window->font, &width, &height,
|
|
|
|
window->scale, config->pango_markup, "%s", line->text_line);
|
2017-06-07 23:45:28 +00:00
|
|
|
cairo_move_to(cairo, tray_width - margin - width, margin);
|
2016-09-05 15:52:52 +00:00
|
|
|
pango_printf(window->cairo, window->font, window->scale,
|
|
|
|
config->pango_markup, "%s", line->text_line);
|
2016-01-23 19:55:01 +00:00
|
|
|
} else if (line->protocol == I3BAR && line->block_line) {
|
2017-06-07 23:45:28 +00:00
|
|
|
double pos = tray_width - 0.5;
|
2016-01-23 19:55:01 +00:00
|
|
|
bool edge = true;
|
|
|
|
for (i = line->block_line->length - 1; i >= 0; --i) {
|
|
|
|
struct status_block *block = line->block_line->items[i];
|
|
|
|
if (block->full_text && block->full_text[0]) {
|
2016-11-02 17:48:43 +00:00
|
|
|
render_block(window, config, block, &pos, edge, is_focused);
|
2016-01-23 19:55:01 +00:00
|
|
|
edge = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cairo_set_line_width(cairo, 1.0);
|
|
|
|
double x = 0.5;
|
|
|
|
|
|
|
|
// Workspaces
|
|
|
|
if (config->workspace_buttons) {
|
|
|
|
for (i = 0; i < output->workspaces->length; ++i) {
|
|
|
|
struct workspace *ws = output->workspaces->items[i];
|
|
|
|
render_workspace_button(window, config, ws, &x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// binding mode indicator
|
|
|
|
if (config->mode && config->binding_mode_indicator) {
|
|
|
|
render_binding_mode_indicator(window, config, x);
|
|
|
|
}
|
|
|
|
}
|
2016-01-23 23:23:09 +00:00
|
|
|
|
|
|
|
void set_window_height(struct window *window, int height) {
|
2016-09-05 15:36:48 +00:00
|
|
|
int text_width, text_height;
|
|
|
|
get_text_size(window->cairo, window->font,
|
2016-09-05 15:52:52 +00:00
|
|
|
&text_width, &text_height, window->scale, false,
|
2016-09-05 15:36:48 +00:00
|
|
|
"Test string for measuring purposes");
|
|
|
|
if (height > 0) {
|
|
|
|
margin = (height - text_height) / 2;
|
|
|
|
ws_vertical_padding = margin - 1.5;
|
|
|
|
}
|
|
|
|
window->height = (text_height + margin * 2) / window->scale;
|
2016-01-23 23:23:09 +00:00
|
|
|
}
|