all repos — tint2 @ 228d20a72c43a07a2c2cdf16fd2cc202a12dc95d

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

Systray: handle changing icon names and reorder if necessary
o9000 mrovi9000@gmail.com
commit

228d20a72c43a07a2c2cdf16fd2cc202a12dc95d

parent

29a34083c9b495c49975e9b3d6bf9eae1cea1949

3 files changed, 81 insertions(+), 37 deletions(-)

jump to
M src/systray/systraybar.csrc/systray/systraybar.c

@@ -506,6 +506,24 @@

return 0; } +void print_icons() +{ + fprintf(stderr, "systray.list_icons: \n"); + for (GSList *l = systray.list_icons; l; l = l->next) { + TrayWindow *t = l->data; + fprintf(stderr, "%s\n", t->name); + } + fprintf(stderr, "systray.list_icons order: \n"); + for (GSList *l = systray.list_icons; l; l = l->next) { + if (l->next) { + TrayWindow *t = l->data; + TrayWindow *u = l->next->data; + int cmp = compare_traywindows(t, u); + fprintf(stderr, "%s %s %s\n", t->name, cmp < 0 ? "<" : cmp == 0 ? "=" : ">" , u->name); + } + } +} + gboolean add_icon(Window win) { XTextProperty xname;

@@ -714,6 +732,7 @@ systray.list_icons = g_slist_prepend(systray.list_icons, traywin);

else systray.list_icons = g_slist_append(systray.list_icons, traywin); systray.list_icons = g_slist_sort(systray.list_icons, compare_traywindows); + // print_icons(); if (!traywin->hide && !panel->is_hidden) { if (systray_profile)

@@ -1117,6 +1136,28 @@ panel_refresh = TRUE;

refresh_systray = 1; } +void systray_property_notify(TrayWindow *traywin, XEvent *e) +{ + Atom at = e->xproperty.atom; + if (at == server.atom.WM_NAME) { + free(traywin->name); + + XTextProperty xname; + if (XGetWMName(server.display, traywin->win, &xname)) { + traywin->name = strdup((char *)xname.value); + XFree(xname.value); + } else { + traywin->name = strdup(""); + } + + if (systray.sort == SYSTRAY_SORT_ASCENDING || + systray.sort == SYSTRAY_SORT_DESCENDING) { + systray.list_icons = g_slist_sort(systray.list_icons, compare_traywindows); + // print_icons(); + } + } +} + void systray_resize_request_event(TrayWindow *traywin, XEvent *e) { if (systray_profile)

@@ -1366,7 +1407,7 @@ if (traywin->depth == 24) {

create_heuristic_mask(data, traywin->width, traywin->height); } - int empty = image_empty(data, traywin->width, traywin->height); + gboolean empty = FALSE; //image_empty(data, traywin->width, traywin->height); if (systray.alpha != 100 || systray.brightness != 0 || systray.saturation != 0) adjust_asb(data, traywin->width,

@@ -1389,6 +1430,7 @@

if (traywin->empty != empty) { traywin->empty = empty; systray.list_icons = g_slist_sort(systray.list_icons, compare_traywindows); + // print_icons(); // Resize and redraw the systray if (systray_profile) fprintf(stderr,

@@ -1542,3 +1584,13 @@ {

return (i_monitor == systray_monitor) || (i_monitor == 0 && (systray_monitor >= num_panelss || systray_monitor < 0)); } + +TrayWindow *systray_find_icon(Window win) +{ + for (GSList *l = systray.list_icons; l; l = l->next) { + TrayWindow *traywin = (TrayWindow *)l->data; + if (traywin->win == win || traywin->parent == win) + return traywin; + } + return NULL; +}
M src/systray/systraybar.hsrc/systray/systraybar.h

@@ -102,7 +102,10 @@ gboolean request_embed_icon(TrayWindow *traywin);

void systray_resize_request_event(TrayWindow *traywin, XEvent *e); gboolean request_embed_icon(TrayWindow *traywin); void systray_reconfigure_event(TrayWindow *traywin, XEvent *e); +void systray_property_notify(TrayWindow *traywin, XEvent *e); void systray_destroy_event(TrayWindow *traywin); void kde_update_icons(); + +TrayWindow *systray_find_icon(Window win); #endif
M src/tint.csrc/tint.c

@@ -1048,6 +1048,12 @@ }

panel_refresh = TRUE; } } else { + TrayWindow *traywin = systray_find_icon(win); + if (traywin) { + systray_property_notify(traywin, e); + return; + } + Task *task = task_get_task(win); if (debug) { char *atom_name = XGetAtomName(server.display, at);

@@ -1161,15 +1167,10 @@ signal_pending = SIGUSR1;

return; } - // 'win' is a trayer icon - TrayWindow *traywin; - GSList *l; - for (l = systray.list_icons; l; l = l->next) { - traywin = (TrayWindow *)l->data; - if (traywin->win == win) { - systray_reconfigure_event(traywin, e); - return; - } + TrayWindow *traywin = systray_find_icon(win); + if (traywin) { + systray_reconfigure_event(traywin, e); + return; } // 'win' move in another monitor

@@ -1646,27 +1647,19 @@ case ConfigureNotify:

event_configure_notify(&e); break; - case ConfigureRequest: - // 'win' is a trayer icon - for (GSList *it = systray.list_icons; it; it = g_slist_next(it)) { - TrayWindow *traywin = (TrayWindow *)it->data; - if (traywin->win == e.xany.window) { - systray_reconfigure_event(traywin, &e); - break; - } - } + case ConfigureRequest: { + TrayWindow *traywin = systray_find_icon(e.xany.window); + if (traywin) + systray_reconfigure_event(traywin, &e); break; + } - case ResizeRequest: - // 'win' is a trayer icon - for (GSList *it = systray.list_icons; it; it = g_slist_next(it)) { - TrayWindow *traywin = (TrayWindow *)it->data; - if (traywin->win == e.xany.window) { - systray_resize_request_event(traywin, &e); - break; - } - } + case ResizeRequest: { + TrayWindow *traywin = systray_find_icon(e.xany.window); + if (traywin) + systray_resize_request_event(traywin, &e); break; + } case ReparentNotify: { if (!systray_enabled)

@@ -1674,8 +1667,8 @@ break;

Panel *systray_panel = (Panel *)systray.area.panel; if (e.xany.window == systray_panel->main_win) // don't care break; - for (GSList *it = systray.list_icons; it; it = g_slist_next(it)) { - TrayWindow *traywin = (TrayWindow *)it->data; + TrayWindow *traywin = systray_find_icon(e.xreparent.window); + if (traywin) { if (traywin->win == e.xreparent.window) { if (traywin->parent == e.xreparent.parent) { embed_icon(traywin);

@@ -1855,13 +1848,9 @@

default: if (e.type == XDamageNotify + damage_event) { XDamageNotifyEvent *de = (XDamageNotifyEvent *)&e; - for (GSList *l = systray.list_icons; l; l = l->next) { - TrayWindow *traywin = (TrayWindow *)l->data; - if (traywin->parent == de->drawable) { - systray_render_icon(traywin); - break; - } - } + TrayWindow *traywin = systray_find_icon(de->drawable); + if (traywin) + systray_render_icon(traywin); } } }