1 /**************************************************************************
4 * Copyright (C) 2009 thierry lorthiois (lorthiois@bbsoft.fr)
5 * based on 'docker-1.5' from Ben Jansens.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 **************************************************************************/
21 #include <X11/Xutil.h>
22 #include <X11/Xatom.h>
28 #include <X11/extensions/Xdamage.h>
29 #include <X11/extensions/Xcomposite.h>
30 #include <X11/extensions/Xrender.h>
33 #include "systraybar.h"
39 /* defined in the systray spec */
40 #define SYSTEM_TRAY_REQUEST_DOCK 0
41 #define SYSTEM_TRAY_BEGIN_MESSAGE 1
42 #define SYSTEM_TRAY_CANCEL_MESSAGE 2
45 Window net_sel_win
= None
;
47 // freedesktop specification doesn't allow multi systray
51 int systray_max_icon_size
;
53 // background pixmap if we render ourselves the icons
54 static Pixmap render_background
;
57 void default_systray()
59 memset(&systray
, 0, sizeof(Systraybar
));
60 render_background
= 0;
63 systray
.area
._draw_foreground
= draw_systray
;
64 systray
.area
.size_mode
= SIZE_BY_CONTENT
;
65 systray
.area
._resize
= resize_systray
;
68 void cleanup_systray()
72 systray_max_icon_size
= 0;
73 systray
.area
.on_screen
= 0;
74 free_area(&systray
.area
);
75 if (render_background
) {
76 XFreePixmap(server
.dsp
, render_background
);
77 render_background
= 0;
88 if (!server
.visual32
&& (systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0)) {
89 printf("No 32 bit visual for your X implementation. 'systray_asb = 100 0 0' will be forced\n");
91 systray
.brightness
= systray
.saturation
= 0;
93 systray
.area
.resize
= 1;
94 systray
.area
.redraw
= 1;
95 systray
.area
.on_screen
= 1;
100 void init_systray_panel(void *p
)
102 Panel
*panel
=(Panel
*)p
;
104 if (panel_horizontal
) {
105 systray
.area
.posy
= panel
->area
.bg
->border
.width
+ panel
->area
.paddingy
;
106 systray
.area
.height
= panel
->area
.height
- (2 * systray
.area
.posy
);
109 systray
.area
.posx
= panel
->area
.bg
->border
.width
+ panel
->area
.paddingy
;
110 systray
.area
.width
= panel
->area
.width
- (2 * panel
->area
.bg
->border
.width
) - (2 * panel
->area
.paddingy
);
112 systray
.area
.parent
= p
;
113 systray
.area
.panel
= p
;
117 void draw_systray(void *obj
, cairo_t
*c
)
119 if (server
.real_transparency
|| systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0) {
120 if (render_background
) XFreePixmap(server
.dsp
, render_background
);
121 render_background
= XCreatePixmap(server
.dsp
, server
.root_win
, systray
.area
.width
, systray
.area
.height
, server
.depth
);
122 XCopyArea(server
.dsp
, systray
.area
.pix
, render_background
, server
.gc
, 0, 0, systray
.area
.width
, systray
.area
.height
, 0, 0);
129 void resize_systray(void *obj
)
131 Systraybar
*sysbar
= obj
;
132 Panel
*panel
= sysbar
->area
.panel
;
135 int count
, icon_size
;
136 int icons_per_column
=1, icons_per_row
=1, marging
=0;
138 if (panel_horizontal
)
139 icon_size
= sysbar
->area
.height
;
141 icon_size
= sysbar
->area
.width
;
142 icon_size
= icon_size
- (2 * sysbar
->area
.bg
->border
.width
) - (2 * sysbar
->area
.paddingy
);
143 if (systray_max_icon_size
> 0 && icon_size
> systray_max_icon_size
)
144 icon_size
= systray_max_icon_size
;
146 for (l
= systray
.list_icons
; l
; l
= l
->next
) {
147 if (!((TrayWindow
*)l
->data
)->hide
)
150 //printf("count %d\n", count);
152 if (panel_horizontal
) {
153 if (!count
) systray
.area
.width
= 0;
155 int height
= sysbar
->area
.height
- 2*sysbar
->area
.bg
->border
.width
- 2*sysbar
->area
.paddingy
;
156 // here icons_per_column always higher than 0
157 icons_per_column
= (height
+sysbar
->area
.paddingx
) / (icon_size
+sysbar
->area
.paddingx
);
158 marging
= height
- (icons_per_column
-1)*(icon_size
+sysbar
->area
.paddingx
) - icon_size
;
159 icons_per_row
= count
/ icons_per_column
+ (count%icons_per_column
!= 0);
160 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
);
163 systray
.area
.posx
= panel
->area
.width
- panel
->area
.bg
->border
.width
- panel
->area
.paddingxlr
- systray
.area
.width
;
164 if (panel
->clock
.area
.on_screen
)
165 systray
.area
.posx
-= (panel
->clock
.area
.width
+ panel
->area
.paddingx
);
166 #ifdef ENABLE_BATTERY
167 if (panel
->battery
.area
.on_screen
)
168 systray
.area
.posx
-= (panel
->battery
.area
.width
+ panel
->area
.paddingx
);
172 if (!count
) systray
.area
.height
= 0;
174 int width
= sysbar
->area
.width
- 2*sysbar
->area
.bg
->border
.width
- 2*sysbar
->area
.paddingy
;
175 // here icons_per_row always higher than 0
176 icons_per_row
= (width
+sysbar
->area
.paddingx
) / (icon_size
+sysbar
->area
.paddingx
);
177 marging
= width
- (icons_per_row
-1)*(icon_size
+sysbar
->area
.paddingx
) - icon_size
;
178 icons_per_column
= count
/ icons_per_row
+ (count%icons_per_row
!= 0);
179 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
);
182 systray
.area
.posy
= panel
->area
.bg
->border
.width
+ panel
->area
.paddingxlr
;
183 if (panel
->clock
.area
.on_screen
)
184 systray
.area
.posy
+= (panel
->clock
.area
.height
+ panel
->area
.paddingx
);
185 #ifdef ENABLE_BATTERY
186 if (panel
->battery
.area
.on_screen
)
187 systray
.area
.posy
+= (panel
->battery
.area
.height
+ panel
->area
.paddingx
);
192 int start
= panel
->area
.bg
->border
.width
+ panel
->area
.paddingy
+ systray
.area
.bg
->border
.width
+ systray
.area
.paddingy
+marging
/2;
193 if (panel_horizontal
) {
195 posx
= systray
.area
.posx
+ systray
.area
.bg
->border
.width
+ systray
.area
.paddingxlr
;
199 posy
= systray
.area
.posy
+ systray
.area
.bg
->border
.width
+ systray
.area
.paddingxlr
;
202 for (i
=1, l
= systray
.list_icons
; l
; i
++, l
= l
->next
) {
203 traywin
= (TrayWindow
*)l
->data
;
204 if (traywin
->hide
) continue;
208 traywin
->width
= icon_size
;
209 traywin
->height
= icon_size
;
210 if (panel_horizontal
) {
211 if (i
% icons_per_column
)
212 posy
+= icon_size
+ sysbar
->area
.paddingx
;
215 posx
+= (icon_size
+ systray
.area
.paddingx
);
219 if (i
% icons_per_row
)
220 posx
+= icon_size
+ systray
.area
.paddingx
;
223 posy
+= (icon_size
+ systray
.area
.paddingx
);
227 // position and size the icon window
228 XMoveResizeWindow(server
.dsp
, traywin
->id
, traywin
->x
, traywin
->y
, icon_size
, icon_size
);
229 XResizeWindow(server
.dsp
, traywin
->tray_id
, icon_size
, icon_size
);
231 // resize force the redraw
232 systray
.area
.redraw
= 1;
236 // ***********************************************
242 // protocol already started
243 if (!systray_enabled
)
248 if (!systray_enabled
)
251 Window win
= XGetSelectionOwner(server
.dsp
, server
.atom
._NET_SYSTEM_TRAY_SCREEN
);
253 // freedesktop systray specification
256 Atom _NET_WM_PID
, actual_type
;
258 unsigned long nitems
;
259 unsigned long bytes_after
;
260 unsigned char *prop
= 0;
263 _NET_WM_PID
= XInternAtom(server
.dsp
, "_NET_WM_PID", True
);
264 int ret
= XGetWindowProperty(server
.dsp
, win
, _NET_WM_PID
, 0, 1024, False
, AnyPropertyType
, &actual_type
, &actual_format
, &nitems
, &bytes_after
, &prop
);
266 fprintf(stderr
, "tint2 : another systray is running");
267 if (ret
== Success
&& prop
) {
270 fprintf(stderr
, " pid=%d", pid
);
272 fprintf(stderr
, "\n");
276 // init systray protocol
277 net_sel_win
= XCreateSimpleWindow(server
.dsp
, server
.root_win
, -1, -1, 1, 1, 0, 0, 0);
279 // v0.3 trayer specification. tint2 always horizontal.
280 // Vertical panel will draw the systray horizontal.
282 XChangeProperty(server
.dsp
, net_sel_win
, server
.atom
._NET_SYSTEM_TRAY_ORIENTATION
, XA_CARDINAL
, 32, PropModeReplace
, (unsigned char *) &orient
, 1);
284 if (server
.visual32
&& (systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0))
285 vid
= XVisualIDFromVisual(server
.visual32
);
287 vid
= XVisualIDFromVisual(server
.visual
);
288 XChangeProperty(server
.dsp
, net_sel_win
, XInternAtom(server
.dsp
, "_NET_SYSTEM_TRAY_VISUAL", False
), XA_VISUALID
, 32, PropModeReplace
, (unsigned char*)&vid
, 1);
290 XSetSelectionOwner(server
.dsp
, server
.atom
._NET_SYSTEM_TRAY_SCREEN
, net_sel_win
, CurrentTime
);
291 if (XGetSelectionOwner(server
.dsp
, server
.atom
._NET_SYSTEM_TRAY_SCREEN
) != net_sel_win
) {
293 fprintf(stderr
, "tint2 : can't get systray manager\n");
297 //fprintf(stderr, "tint2 : systray started\n");
298 XClientMessageEvent ev
;
299 ev
.type
= ClientMessage
;
300 ev
.window
= server
.root_win
;
301 ev
.message_type
= server
.atom
.MANAGER
;
303 ev
.data
.l
[0] = CurrentTime
;
304 ev
.data
.l
[1] = server
.atom
._NET_SYSTEM_TRAY_SCREEN
;
305 ev
.data
.l
[2] = net_sel_win
;
308 XSendEvent(server
.dsp
, server
.root_win
, False
, StructureNotifyMask
, (XEvent
*)&ev
);
314 //fprintf(stderr, "tint2 : systray stopped\n");
315 if (systray
.list_icons
) {
316 // remove_icon change systray.list_icons
317 while(systray
.list_icons
)
318 remove_icon((TrayWindow
*)systray
.list_icons
->data
);
320 g_slist_free(systray
.list_icons
);
321 systray
.list_icons
= 0;
324 if (net_sel_win
!= None
) {
325 XDestroyWindow(server
.dsp
, net_sel_win
);
332 int window_error_handler(Display
*d
, XErrorEvent
*e
)
336 if (e
->error_code
!= BadWindow
) {
337 printf("error_handler %d\n", e
->error_code
);
343 static gint
compare_traywindows(gconstpointer a
, gconstpointer b
)
345 const TrayWindow
* traywin_a
= (TrayWindow
*)a
;
346 const TrayWindow
* traywin_b
= (TrayWindow
*)b
;
347 XTextProperty name_a
, name_b
;
349 if(XGetWMName(server
.dsp
, traywin_a
->tray_id
, &name_a
) == 0) {
352 else if(XGetWMName(server
.dsp
, traywin_b
->tray_id
, &name_b
) == 0) {
357 gint retval
= g_ascii_strncasecmp((char*)name_a
.value
, (char*)name_b
.value
, -1) * systray
.sort
;
365 gboolean
add_icon(Window id
)
369 Panel
*panel
= systray
.area
.panel
;
373 XWindowAttributes attr
;
374 if ( XGetWindowAttributes(server
.dsp
, id
, &attr
) == False
) return FALSE
;
375 unsigned long mask
= 0;
376 XSetWindowAttributes set_attr
;
377 //printf("icon with depth: %d, width %d, height %d\n", attr.depth, attr.width, attr.height);
378 printf("icon with depth: %d\n", attr
.depth
);
379 if (attr
.depth
!= server
.depth
|| systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0) {
380 set_attr
.colormap
= attr
.colormap
;
381 set_attr
.background_pixel
= 0;
382 set_attr
.border_pixel
= 0;
383 mask
= CWColormap
|CWBackPixel
|CWBorderPixel
;
386 set_attr
.background_pixmap
= ParentRelative
;
389 Window parent_window
;
390 parent_window
= XCreateWindow(server
.dsp
, panel
->main_win
, 0, 0, 30, 30, 0, attr
.depth
, InputOutput
, attr
.visual
, mask
, &set_attr
);
391 old
= XSetErrorHandler(window_error_handler
);
392 XReparentWindow(server
.dsp
, id
, parent_window
, 0, 0);
393 XSync(server
.dsp
, False
);
394 XSetErrorHandler(old
);
395 if (error
!= FALSE
) {
396 fprintf(stderr
, "tint2 : not icon_swallow\n");
397 XDestroyWindow(server
.dsp
, parent_window
);
404 unsigned long nbitem
, bytes
;
405 unsigned char *data
= 0;
408 ret
= XGetWindowProperty(server
.dsp
, id
, server
.atom
._XEMBED_INFO
, 0, 2, False
, server
.atom
._XEMBED_INFO
, &acttype
, &actfmt
, &nbitem
, &bytes
, &data
);
409 if (ret
== Success
) {
412 //hide = ((data[1] & XEMBED_MAPPED) == 0);
413 //printf("hide %d\n", hide);
419 fprintf(stderr
, "tint2 : xembed error\n");
420 XDestroyWindow(server
.dsp
, parent_window
);
426 e
.xclient
.type
= ClientMessage
;
427 e
.xclient
.serial
= 0;
428 e
.xclient
.send_event
= True
;
429 e
.xclient
.message_type
= server
.atom
._XEMBED
;
430 e
.xclient
.window
= id
;
431 e
.xclient
.format
= 32;
432 e
.xclient
.data
.l
[0] = CurrentTime
;
433 e
.xclient
.data
.l
[1] = XEMBED_EMBEDDED_NOTIFY
;
434 e
.xclient
.data
.l
[2] = 0;
435 e
.xclient
.data
.l
[3] = parent_window
;
436 e
.xclient
.data
.l
[4] = 0;
437 XSendEvent(server
.dsp
, id
, False
, 0xFFFFFF, &e
);
440 traywin
= g_new0(TrayWindow
, 1);
441 traywin
->id
= parent_window
;
442 traywin
->tray_id
= id
;
443 traywin
->hide
= hide
;
444 traywin
->depth
= attr
.depth
;
447 if (systray
.sort
== 3)
448 systray
.list_icons
= g_slist_prepend(systray
.list_icons
, traywin
);
449 else if (systray
.sort
== 2)
450 systray
.list_icons
= g_slist_append(systray
.list_icons
, traywin
);
452 systray
.list_icons
= g_slist_insert_sorted(systray
.list_icons
, traywin
, compare_traywindows
);
453 systray
.area
.resize
= 1;
454 //printf("add_icon id %lx, %d\n", id, g_slist_length(systray.list_icons));
456 // watch for the icon trying to resize itself!
457 XSelectInput(server
.dsp
, traywin
->tray_id
, StructureNotifyMask
);
458 if (server
.real_transparency
|| systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0) {
459 traywin
->damage
= XDamageCreate(server
.dsp
, traywin
->id
, XDamageReportRawRectangles
);
460 XCompositeRedirectWindow(server
.dsp
, traywin
->id
, CompositeRedirectManual
);
465 XMapWindow(server
.dsp
, traywin
->tray_id
);
466 if (!traywin
->hide
&& !panel
->is_hidden
)
467 XMapRaised(server
.dsp
, traywin
->id
);
469 // changed in systray force resize on panel
470 panel
->area
.resize
= 1;
476 void remove_icon(TrayWindow
*traywin
)
480 // remove from our list
481 systray
.list_icons
= g_slist_remove(systray
.list_icons
, traywin
);
482 systray
.area
.resize
= 1;
483 //printf("remove_icon id %lx, %d\n", traywin->id);
485 XSelectInput(server
.dsp
, traywin
->tray_id
, NoEventMask
);
487 XDamageDestroy(server
.dsp
, traywin
->damage
);
491 old
= XSetErrorHandler(window_error_handler
);
493 XUnmapWindow(server
.dsp
, traywin
->tray_id
);
494 XReparentWindow(server
.dsp
, traywin
->tray_id
, server
.root_win
, 0, 0);
495 XDestroyWindow(server
.dsp
, traywin
->id
);
496 XSync(server
.dsp
, False
);
497 XSetErrorHandler(old
);
498 if (traywin
->render_timeout
)
499 stop_timeout(traywin
->render_timeout
);
502 // changed in systray force resize on panel
503 Panel
*panel
= systray
.area
.panel
;
504 panel
->area
.resize
= 1;
509 void net_message(XClientMessageEvent
*e
)
511 unsigned long opcode
;
514 opcode
= e
->data
.l
[1];
516 case SYSTEM_TRAY_REQUEST_DOCK
:
518 if (id
) add_icon(id
);
521 case SYSTEM_TRAY_BEGIN_MESSAGE
:
522 case SYSTEM_TRAY_CANCEL_MESSAGE
:
523 // we don't show baloons messages.
527 if (opcode
== server
.atom
._NET_SYSTEM_TRAY_MESSAGE_DATA
)
528 printf("message from dockapp: %s\n", e
->data
.b
);
530 fprintf(stderr
, "SYSTEM_TRAY : unknown message type\n");
535 void systray_render_icon_now(void* t
)
537 // we end up in this function only in real transparency mode or if systray_task_asb != 100 0 0
538 // we made also sure, that we always have a 32 bit visual, i.e. we can safely create 32 bit pixmaps here
539 TrayWindow
* traywin
= t
;
540 traywin
->render_timeout
= 0;
542 // good systray icons support 32 bit depth, but some icons are still 24 bit.
543 // We create a heuristic mask for these icons, i.e. we get the rgb value in the top left corner, and
544 // mask out all pixel with the same rgb value
545 Panel
* panel
= systray
.area
.panel
;
547 // Very ugly hack, but somehow imlib2 is not able to get the image from the traywindow itself,
548 // so we first render the tray window onto a pixmap, and then we tell imlib2 to use this pixmap as
549 // drawable. If someone knows why it does not work with the traywindow itself, please tell me ;)
550 Pixmap tmp_pmap
= XCreatePixmap(server
.dsp
, server
.root_win
, traywin
->width
, traywin
->height
, 32);
551 XRenderPictFormat
* f
;
552 if (traywin
->depth
== 24)
553 f
= XRenderFindStandardFormat(server
.dsp
, PictStandardRGB24
);
554 else if (traywin
->depth
== 32)
555 f
= XRenderFindStandardFormat(server
.dsp
, PictStandardARGB32
);
557 printf("Strange tray icon found with depth: %d\n", traywin
->depth
);
561 //if (server.real_transparency)
562 //pict_image = XRenderCreatePicture(server.dsp, traywin->id, f, 0, 0);
563 // reverted Rev 407 because here it's breaking alls icon with systray + xcompmgr
564 pict_image
= XRenderCreatePicture(server
.dsp
, traywin
->tray_id
, f
, 0, 0);
565 Picture pict_drawable
= XRenderCreatePicture(server
.dsp
, tmp_pmap
, XRenderFindVisualFormat(server
.dsp
, server
.visual32
), 0, 0);
566 XRenderComposite(server
.dsp
, PictOpSrc
, pict_image
, None
, pict_drawable
, 0, 0, 0, 0, 0, 0, traywin
->width
, traywin
->height
);
567 XRenderFreePicture(server
.dsp
, pict_image
);
568 XRenderFreePicture(server
.dsp
, pict_drawable
);
569 // end of the ugly hack and we can continue as before
571 imlib_context_set_visual(server
.visual32
);
572 imlib_context_set_colormap(server
.colormap32
);
573 imlib_context_set_drawable(tmp_pmap
);
574 Imlib_Image image
= imlib_create_image_from_drawable(0, 0, 0, traywin
->width
, traywin
->height
, 1);
578 imlib_context_set_image(image
);
579 //if (traywin->depth == 24)
580 //imlib_save_image("/home/thil77/test.jpg");
581 imlib_image_set_has_alpha(1);
582 DATA32
* data
= imlib_image_get_data();
583 if (traywin
->depth
== 24) {
584 createHeuristicMask(data
, traywin
->width
, traywin
->height
);
586 if (systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0)
587 adjust_asb(data
, traywin
->width
, traywin
->height
, systray
.alpha
, (float)systray
.saturation
/100, (float)systray
.brightness
/100);
588 imlib_image_put_back_data(data
);
589 XCopyArea(server
.dsp
, render_background
, systray
.area
.pix
, server
.gc
, traywin
->x
-systray
.area
.posx
, traywin
->y
-systray
.area
.posy
, traywin
->width
, traywin
->height
, traywin
->x
-systray
.area
.posx
, traywin
->y
-systray
.area
.posy
);
590 render_image(systray
.area
.pix
, traywin
->x
-systray
.area
.posx
, traywin
->y
-systray
.area
.posy
, traywin
->width
, traywin
->height
);
591 XCopyArea(server
.dsp
, systray
.area
.pix
, panel
->main_win
, server
.gc
, traywin
->x
-systray
.area
.posx
, traywin
->y
-systray
.area
.posy
, traywin
->width
, traywin
->height
, traywin
->x
, traywin
->y
);
592 imlib_free_image_and_decache();
593 XFreePixmap(server
.dsp
, tmp_pmap
);
594 imlib_context_set_visual(server
.visual
);
595 imlib_context_set_colormap(server
.colormap
);
598 XDamageSubtract(server
.dsp
, traywin
->damage
, None
, None
);
603 void systray_render_icon(TrayWindow
* traywin
)
605 if (server
.real_transparency
|| systray
.alpha
!= 100 || systray
.brightness
!= 0 || systray
.saturation
!= 0) {
606 // wine tray icons update whenever mouse is over them, so we limit the updates to 50 ms
607 if (traywin
->render_timeout
== 0)
608 traywin
->render_timeout
= add_timeout(50, 0, systray_render_icon_now
, traywin
);
611 // comment by andreas: I'm still not sure, what exactly we need to do here... Somehow trayicons which do not
612 // offer the same depth as tint2 does, need to draw a background pixmap, but this cannot be done with
613 // XCopyArea... So we actually need XRenderComposite???
614 // Pixmap pix = XCreatePixmap(server.dsp, server.root_win, traywin->width, traywin->height, server.depth);
615 // XCopyArea(server.dsp, panel->temp_pmap, pix, server.gc, traywin->x, traywin->y, traywin->width, traywin->height, 0, 0);
616 // XSetWindowBackgroundPixmap(server.dsp, traywin->id, pix);
617 XClearArea(server
.dsp
, traywin
->tray_id
, 0, 0, traywin
->width
, traywin
->height
, True
);
622 void refresh_systray_icon()
626 for (l
= systray
.list_icons
; l
; l
= l
->next
) {
627 traywin
= (TrayWindow
*)l
->data
;
628 if (traywin
->hide
) continue;
629 systray_render_icon(traywin
);