all repos — tint2 @ b8675fa2082fefe49f40035717aeab2d3cca31be

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Compute text size correctly (issue #671)
o9000 mrovi9000@gmail.com
commit

b8675fa2082fefe49f40035717aeab2d3cca31be

parent

ddac8f78026bfbca1aabf2f7623daf430f1d4a5d

1 files changed, 36 insertions(+), 12 deletions(-)

jump to
M src/util/area.csrc/util/area.c

@@ -883,6 +883,33 @@ area_dump_geometry((Area *)l->data, indent);

} } +void area_compute_available_size(Area *area, + int *available_w, + int *available_h) +{ + Panel *panel = (Panel *)area->panel; + if (panel_horizontal) { + *available_w = panel->area.width; + *available_h = area->height - 2 * area->paddingy - left_right_border_width(area); + } else { + *available_w = area->width - 2 * area->paddingxlr - left_right_border_width(area); + *available_h = panel->area.height; + } +} + +void area_compute_inner_size(Area *area, + int *inner_w, + int *inner_h) +{ + if (panel_horizontal) { + *inner_w = area->width - 2 * area->paddingxlr - left_right_border_width(area); + *inner_h = area->height - 2 * area->paddingy - top_bottom_border_width(area); + } else { + *inner_w = area->width - 2 * area->paddingxlr - left_right_border_width(area); + *inner_h = area->height - 2 * area->paddingy - top_bottom_border_width(area); + } +} + void area_compute_text_geometry(Area *area, const char *line1, const char *line2,

@@ -895,15 +922,8 @@ int *line2_height_ink,

int *line2_height, int *line2_width) { - Panel *panel = (Panel *)area->panel; int available_w, available_h; - if (panel_horizontal) { - available_w = panel->area.width; - available_h = area->height - 2 * area->paddingy - left_right_border_width(area); - } else { - available_w = area->width - 2 * area->paddingxlr - left_right_border_width(area); - available_h = panel->area.height; - } + area_compute_available_size(area, &available_w, &available_h); if (line1 && line1[0]) get_text_size2(line1_font_desc,

@@ -959,7 +979,7 @@ if (panel_horizontal) {

int new_size = MAX(line1_width, line2_width) + 2 * area->paddingxlr + left_right_border_width(area); return new_size; } else { - int new_size = line1_height + line2_height + 2 * area->paddingxlr + top_bottom_border_width(area); + int new_size = line1_height + line2_height + 2 * area->paddingy + top_bottom_border_width(area); return new_size; } }

@@ -1035,18 +1055,22 @@ int line1_posy,

int line2_posy, Color *color) { + int inner_w, inner_h; + area_compute_inner_size(area, &inner_w, &inner_h); + PangoLayout *layout = pango_cairo_create_layout(c); pango_layout_set_alignment(layout, PANGO_ALIGN_CENTER); pango_layout_set_wrap(layout, PANGO_WRAP_WORD_CHAR); pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_NONE); - pango_layout_set_width(layout, area->width * PANGO_SCALE); + pango_layout_set_width(layout, inner_w * PANGO_SCALE); + pango_layout_set_height(layout, inner_h * PANGO_SCALE); cairo_set_source_rgba(c, color->rgb[0], color->rgb[1], color->rgb[2], color->alpha); if (line1 && line1[0]) { pango_layout_set_font_description(layout, line1_font_desc); pango_layout_set_text(layout, line1, strlen(line1)); pango_cairo_update_layout(c, layout); - draw_text(layout, c, 0, line1_posy, color, ((Panel *)area->panel)->font_shadow); + draw_text(layout, c, (area->width - inner_w) / 2, line1_posy, color, ((Panel *)area->panel)->font_shadow); } if (line2 && line2[0]) {

@@ -1054,7 +1078,7 @@ pango_layout_set_font_description(layout, line2_font_desc);

pango_layout_set_indent(layout, 0); pango_layout_set_text(layout, line2, strlen(line2)); pango_cairo_update_layout(c, layout); - draw_text(layout, c, 0, line2_posy, color, ((Panel *)area->panel)->font_shadow); + draw_text(layout, c, (area->width - inner_w) / 2, line2_posy, color, ((Panel *)area->panel)->font_shadow); } g_object_unref(layout);