X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fsystray%2Fsystraybar.c;h=57505aa6d141cd81b320177f35abeb34515bd67c;hb=462228f2e82c6e5f61baeb49b6358273728baa90;hp=86383ab7c66b2cc8a88898e6284d0e14be2ac1a3;hpb=bab0811f845cedb817a3c3a29dd91ade07d5a886;p=chaz%2Ftint2 diff --git a/src/systray/systraybar.c b/src/systray/systraybar.c index 86383ab..57505aa 100644 --- a/src/systray/systraybar.c +++ b/src/systray/systraybar.c @@ -102,7 +102,6 @@ void draw_systray(void *obj, cairo_t *c) XCopyArea(server.dsp, systray.area.pix, render_background, server.gc, 0, 0, systray.area.width, systray.area.height, 0, 0); } - // tint2 don't draw systray icons. just the background. refresh_systray = 1; } @@ -113,8 +112,8 @@ void resize_systray(void *obj) Panel *panel = sysbar->area.panel; TrayWindow *traywin; GSList *l; - int count, posx, posy; - int icon_size; + int count, icon_size; + int icons_per_column, icons_per_row, marging; if (panel_horizontal) icon_size = sysbar->area.height; @@ -133,9 +132,12 @@ void resize_systray(void *obj) if (panel_horizontal) { if (!count) systray.area.width = 0; else { - int icons_per_column = (sysbar->area.height - 2*sysbar->area.bg->border.width - 2*sysbar->area.paddingy + sysbar->area.paddingx) / (icon_size+sysbar->area.paddingx); - int row_count = count / icons_per_column + (count%icons_per_column != 0); - systray.area.width = (2 * systray.area.bg->border.width) + (2 * systray.area.paddingxlr) + (icon_size * row_count) + ((row_count-1) * systray.area.paddingx); + int height = sysbar->area.height - 2*sysbar->area.bg->border.width - 2*sysbar->area.paddingy; + // here icons_per_column always higher than 0 + icons_per_column = (height+sysbar->area.paddingx) / (icon_size+sysbar->area.paddingx); + marging = height - (icons_per_column-1)*(icon_size+sysbar->area.paddingx) - icon_size; + icons_per_row = count / icons_per_column + (count%icons_per_column != 0); + systray.area.width = (2 * systray.area.bg->border.width) + (2 * systray.area.paddingxlr) + (icon_size * icons_per_row) + ((icons_per_row-1) * systray.area.paddingx); } systray.area.posx = panel->area.width - panel->area.bg->border.width - panel->area.paddingxlr - systray.area.width; @@ -149,9 +151,12 @@ void resize_systray(void *obj) else { if (!count) systray.area.height = 0; else { - int icons_per_row = (sysbar->area.width - 2*sysbar->area.bg->border.width - 2*sysbar->area.paddingy + sysbar->area.paddingx) / (icon_size+sysbar->area.paddingx); - int column_count = count / icons_per_row+ (count%icons_per_row != 0); - systray.area.height = (2 * systray.area.bg->border.width) + (2 * systray.area.paddingxlr) + (icon_size * column_count) + ((column_count-1) * systray.area.paddingx); + int width = sysbar->area.width - 2*sysbar->area.bg->border.width - 2*sysbar->area.paddingy; + // here icons_per_row always higher than 0 + icons_per_row = (width+sysbar->area.paddingx) / (icon_size+sysbar->area.paddingx); + marging = width - (icons_per_row-1)*(icon_size+sysbar->area.paddingx) - icon_size; + icons_per_column = count / icons_per_row+ (count%icons_per_row != 0); + systray.area.height = (2 * systray.area.bg->border.width) + (2 * systray.area.paddingxlr) + (icon_size * icons_per_column) + ((icons_per_column-1) * systray.area.paddingx); } systray.area.posy = panel->area.bg->border.width + panel->area.paddingxlr; @@ -163,19 +168,18 @@ void resize_systray(void *obj) #endif } - int max_line_pos; + int i, posx, posy; + int start = panel->area.bg->border.width + panel->area.paddingy + systray.area.bg->border.width + systray.area.paddingy +marging/2; if (panel_horizontal) { - max_line_pos = sysbar->area.posy+sysbar->area.height - sysbar->area.bg->border.width - sysbar->area.paddingy - icon_size; - posy = panel->area.bg->border.width + panel->area.paddingy + systray.area.bg->border.width + systray.area.paddingy; + posy = start; posx = systray.area.posx + systray.area.bg->border.width + systray.area.paddingxlr; } else { - max_line_pos = sysbar->area.posx+sysbar->area.width - sysbar->area.bg->border.width - sysbar->area.paddingy - icon_size; - posx = panel->area.bg->border.width + panel->area.paddingy + systray.area.bg->border.width + systray.area.paddingy; + posx = start; posy = systray.area.posy + systray.area.bg->border.width + systray.area.paddingxlr; } - for (l = systray.list_icons; l ; l = l->next) { + for (i=1, l = systray.list_icons; l ; i++, l = l->next) { traywin = (TrayWindow*)l->data; if (traywin->hide) continue; @@ -184,19 +188,19 @@ void resize_systray(void *obj) traywin->width = icon_size; traywin->height = icon_size; if (panel_horizontal) { - if (posy + icon_size + sysbar->area.paddingxlr < max_line_pos) + if (i % icons_per_column) posy += icon_size + sysbar->area.paddingx; else { + posy = start; posx += (icon_size + systray.area.paddingx); - posy = panel->area.bg->border.width + panel->area.paddingy + systray.area.bg->border.width + systray.area.paddingy; } } else { - if (posx + icon_size + sysbar->area.paddingxlr < max_line_pos) + if (i % icons_per_row) posx += icon_size + systray.area.paddingx; else { + posx = start; posy += (icon_size + systray.area.paddingx); - posx = panel->area.bg->border.width + panel->area.paddingy + systray.area.bg->border.width + systray.area.paddingy; } } @@ -362,6 +366,7 @@ gboolean add_icon(Window id) XSetErrorHandler(old); if (error != FALSE) { fprintf(stderr, "tint2 : not icon_swallow\n"); + XDestroyWindow(server.dsp, parent_window); return FALSE; } @@ -384,6 +389,7 @@ gboolean add_icon(Window id) } else { fprintf(stderr, "tint2 : xembed error\n"); + XDestroyWindow(server.dsp, parent_window); return FALSE; } }