summaryrefslogtreecommitdiff
path: root/lib/renderers/cairo.h
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2014-10-26 15:42:09 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2014-10-26 15:42:09 +0200
commita44b001e8260883c0876fba967b1d72a5b7ab7c3 (patch)
treee7a2dd45c9ee5de7adfe72e2bbe2b4f28a0cb1b8 /lib/renderers/cairo.h
parentfb6a49e69011f911b670ac3bdb08fe7868db3070 (diff)
downloadbemenu-a44b001e8260883c0876fba967b1d72a5b7ab7c3.tar.gz
bemenu-a44b001e8260883c0876fba967b1d72a5b7ab7c3.tar.bz2
bemenu-a44b001e8260883c0876fba967b1d72a5b7ab7c3.zip
Mkae highlighted item prefix configurable.
Diffstat (limited to 'lib/renderers/cairo.h')
-rw-r--r--lib/renderers/cairo.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/renderers/cairo.h b/lib/renderers/cairo.h
index 3132c09..32f8131 100644
--- a/lib/renderers/cairo.h
+++ b/lib/renderers/cairo.h
@@ -129,6 +129,12 @@ bm_cairo_paint(struct cairo *cairo, uint32_t width, uint32_t height, const struc
uint32_t displayed = 1;
uint32_t lines = MAX(height / paint.fe.height, menu->lines);
if (lines > 1) {
+ uint32_t start_x = 0;
+ if (menu->prefix) {
+ bm_cairo_get_text_extents(cairo, &result, "%s ", menu->prefix);
+ start_x = result.te.x_advance;
+ }
+
uint32_t count, cl = 1;
struct bm_item **items = bm_menu_get_filtered_items(menu, &count);
for (uint32_t i = (menu->index / (lines - 1)) * (lines - 1); i < count && cl < lines; ++i) {
@@ -145,8 +151,11 @@ bm_cairo_paint(struct cairo *cairo, uint32_t width, uint32_t height, const struc
bm_cairo_color_from_menu_color(menu, BM_COLOR_ITEM_BG, &paint.bg);
}
- bm_cairo_draw_line(cairo, &paint, &result, 0, width, 0, 4 + paint.fe.height * cl++,
- "%s%s", (highlighted ? ">> " : " "), (items[i]->text ? items[i]->text : ""));
+ if (menu->prefix && highlighted) {
+ bm_cairo_draw_line(cairo, &paint, &result, 0, width, 0, 4 + paint.fe.height * cl++, "%s %s", menu->prefix, (items[i]->text ? items[i]->text : ""));
+ } else {
+ bm_cairo_draw_line(cairo, &paint, &result, start_x, width, start_x, 4 + paint.fe.height * cl++, "%s", (items[i]->text ? items[i]->text : ""));
+ }
++displayed;
}