all repos — tint2 @ d492f80468095b597b254cc8b9c81bfbc4b9cfd4

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

systray: Redirect resize events
o9000 o9000
commit

d492f80468095b597b254cc8b9c81bfbc4b9cfd4

parent

78bc3304484e978ef2aff7a419fb4b1401ee8f43

3 files changed, 67 insertions(+), 0 deletions(-)

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

@@ -924,6 +924,61 @@ panel_refresh = 1;

refresh_systray = 1; } +void systray_resize_request_event(TrayWindow *traywin, XEvent *e) +{ + if (1 || systray_profile) + fprintf(stderr, "XResizeRequest event: win = %lu (%s), w = %d, h = %d\n", + traywin->win, traywin->name, e->xresizerequest.width, e->xresizerequest.height); + + //fprintf(stderr, "move tray %d\n", traywin->x); + + if (!traywin->reparented) + return; + + if (e->xresizerequest.width != traywin->width || e->xresizerequest.height != traywin->height) { + if (traywin->bad_size_counter < max_bad_resize_events) { + struct timespec now; + clock_gettime(CLOCK_MONOTONIC, &now); + struct timespec earliest_resize = add_msec_to_timespec(traywin->time_last_resize, resize_period_threshold); + if (compare_timespecs(&earliest_resize, &now) > 0) { + // Fast resize, but below the threshold + traywin->bad_size_counter++; + } else { + // Slow resize, reset counter + traywin->time_last_resize.tv_sec = now.tv_sec; + traywin->time_last_resize.tv_nsec = now.tv_nsec; + traywin->bad_size_counter = 0; + } + if (traywin->bad_size_counter < min_bad_resize_events) { + systray_resize_icon(traywin); + } else { + if (!traywin->resize_timeout) + traywin->resize_timeout = add_timeout(fast_resize_period, 0, systray_resize_icon, traywin, &traywin->resize_timeout); + } + } else { + if (traywin->bad_size_counter == max_bad_resize_events) { + traywin->bad_size_counter++; + fprintf(stderr, RED "Detected resize loop for tray icon %lu (%s), throttling resize events\n" RESET, traywin->win, traywin->name); + } + // Delayed resize + // FIXME Normally we should force the icon to resize back to the size we resized it to when we embedded it. + // However this triggers a resize loop in new versions of GTK, which we must avoid. + if (!traywin->resize_timeout) + traywin->resize_timeout = add_timeout(slow_resize_period, 0, systray_resize_icon, traywin, &traywin->resize_timeout); + return; + } + } else { + // Correct size + stop_timeout(traywin->resize_timeout); + } + + // Resize and redraw the systray + if (systray_profile) + fprintf(stderr, BLUE "[%f] %s:%d trigger resize & redraw\n" RESET, profiling_get_time(), __FUNCTION__, __LINE__); + panel_refresh = 1; + refresh_systray = 1; +} + void systray_destroy_event(TrayWindow *traywin) { if (systray_profile)
M src/systray/systraybar.hsrc/systray/systraybar.h

@@ -99,6 +99,7 @@

void refresh_systray_icons(); void systray_render_icon(void *t); gboolean request_embed_icon(TrayWindow *traywin); +void systray_resize_request_event(TrayWindow *traywin, XEvent *e); void systray_reconfigure_event(TrayWindow *traywin, XEvent *e); void systray_destroy_event(TrayWindow *traywin); void kde_update_icons();
M src/tint.csrc/tint.c

@@ -1316,6 +1316,17 @@ }

} break; + case ResizeRequest: + // 'win' is a trayer icon + for (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; + } + } + break; + case ReparentNotify: if (!systray_enabled) break;