all repos — tint2 @ 20f181fdef00b1aeb3a1e52275fd31da0fa0338a

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

cleanup

git-svn-id: http://tint2.googlecode.com/svn/trunk@435 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
thilor77 thilor77@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

20f181fdef00b1aeb3a1e52275fd31da0fa0338a

parent

a4c2956eca1b8538a553e4e1234ea4e93efe51de

2 files changed, 2 insertions(+), 4 deletions(-)

jump to
M src/taskbar/task.csrc/taskbar/task.c

@@ -352,20 +352,18 @@ pango_layout_set_text(layout, tsk->title, -1);

/* Drawing width and Cut text */ // pango use U+22EF or U+2026 - pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_END); pango_layout_set_width(layout, ((Taskbar*)tsk->area.parent)->text_width * PANGO_SCALE); pango_layout_set_height(layout, panel->g_task.text_height * PANGO_SCALE); pango_layout_set_wrap(layout, PANGO_WRAP_CHAR); + pango_layout_set_ellipsize (layout, PANGO_ELLIPSIZE_END); /* Center text */ if (panel->g_task.centered) pango_layout_set_alignment (layout, PANGO_ALIGN_CENTER); else pango_layout_set_alignment (layout, PANGO_ALIGN_LEFT); pango_layout_get_pixel_size (layout, &width, &height); - //printf("nombre de lignes %d, w %d, h %d, text_height %d\n", pango_layout_get_line_count(layout), width, height, (int)panel->g_task.text_height); config_text = &panel->g_task.font[tsk->current_state]; - cairo_set_source_rgba (c, config_text->color[0], config_text->color[1], config_text->color[2], config_text->alpha); pango_cairo_update_layout (c, layout);
M src/tooltip/tooltip.csrc/tooltip/tooltip.c

@@ -231,7 +231,7 @@ PangoRectangle r1, r2;

pango_layout_get_pixel_extents(layout, &r1, &r2); pango_layout_set_width(layout, width*PANGO_SCALE); pango_layout_set_height(layout, height*PANGO_SCALE); - pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_MIDDLE); + pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END); // I do not know why this is the right way, but with the below cairo_move_to it seems to be centered (horiz. and vert.) cairo_move_to(c, -r1.x/2+g_tooltip.bg->border.width+g_tooltip.paddingx, -r1.y/2+g_tooltip.bg->border.width+g_tooltip.paddingy); pango_cairo_show_layout (c, layout);