winex11: Use the XShm extension to copy window surfaces.
[wine] / dlls / winex11.drv / systray.c
1 /*
2  * X11 system tray management
3  *
4  * Copyright (C) 2004 Mike Hearn, for CodeWeavers
5  * Copyright (C) 2005 Robert Shearman
6  * Copyright (C) 2008 Alexandre Julliard
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include "config.h"
24
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <stdlib.h>
28 #include <stdio.h>
29 #ifdef HAVE_UNISTD_H
30 # include <unistd.h>
31 #endif
32
33 #include <X11/Xlib.h>
34
35 #define NONAMELESSUNION
36 #include "windef.h"
37 #include "winbase.h"
38 #include "wingdi.h"
39 #include "winuser.h"
40 #include "commctrl.h"
41 #include "shellapi.h"
42
43 #include "x11drv.h"
44 #include "wine/list.h"
45 #include "wine/debug.h"
46
47 WINE_DEFAULT_DEBUG_CHANNEL(systray);
48
49 /* an individual systray icon */
50 struct tray_icon
51 {
52     struct list    entry;
53     HICON          image;    /* the image to render */
54     HWND           owner;    /* the HWND passed in to the Shell_NotifyIcon call */
55     HWND           window;   /* the adaptor window */
56     BOOL           layered;  /* whether we are using a layered window */
57     HWND           tooltip;  /* Icon tooltip */
58     UINT           state;    /* state flags */
59     UINT           id;       /* the unique id given by the app */
60     UINT           callback_message;
61     int            display;  /* display index, or -1 if hidden */
62     WCHAR          tiptext[128];    /* tooltip text */
63     WCHAR          info_text[256];  /* info balloon text */
64     WCHAR          info_title[64];  /* info balloon title */
65     UINT           info_flags;      /* flags for info balloon */
66     UINT           info_timeout;    /* timeout for info balloon */
67     HICON          info_icon;       /* info balloon icon */
68 };
69
70 static struct list icon_list = LIST_INIT( icon_list );
71
72 static const WCHAR icon_classname[] = {'_','_','w','i','n','e','x','1','1','_','t','r','a','y','_','i','c','o','n',0};
73 static const WCHAR tray_classname[] = {'_','_','w','i','n','e','x','1','1','_','s','t','a','n','d','a','l','o','n','e','_','t','r','a','y',0};
74
75 static BOOL show_icon( struct tray_icon *icon );
76 static BOOL hide_icon( struct tray_icon *icon );
77 static BOOL delete_icon( struct tray_icon *icon );
78
79 #define SYSTEM_TRAY_REQUEST_DOCK  0
80 #define SYSTEM_TRAY_BEGIN_MESSAGE   1
81 #define SYSTEM_TRAY_CANCEL_MESSAGE  2
82
83 Atom systray_atom = 0;
84
85 #define MIN_DISPLAYED 8
86 #define ICON_BORDER 2
87
88 #define VALID_WIN_TIMER      1
89 #define BALLOON_CREATE_TIMER 2
90 #define BALLOON_SHOW_TIMER   3
91
92 #define VALID_WIN_TIMEOUT        2000
93 #define BALLOON_CREATE_TIMEOUT   2000
94 #define BALLOON_SHOW_MIN_TIMEOUT 10000
95 #define BALLOON_SHOW_MAX_TIMEOUT 30000
96
97 static struct tray_icon *balloon_icon;
98 static HWND balloon_window;
99 static POINT balloon_pos;
100
101 /* stand-alone tray window */
102 static HWND standalone_tray;
103 static int icon_cx, icon_cy;
104 static unsigned int nb_displayed;
105
106 /* retrieves icon record by owner window and ID */
107 static struct tray_icon *get_icon(HWND owner, UINT id)
108 {
109     struct tray_icon *this;
110
111     LIST_FOR_EACH_ENTRY( this, &icon_list, struct tray_icon, entry )
112         if ((this->id == id) && (this->owner == owner)) return this;
113     return NULL;
114 }
115
116 static void init_common_controls(void)
117 {
118     static BOOL initialized = FALSE;
119
120     if (!initialized)
121     {
122         INITCOMMONCONTROLSEX init_tooltip;
123
124         init_tooltip.dwSize = sizeof(INITCOMMONCONTROLSEX);
125         init_tooltip.dwICC = ICC_TAB_CLASSES;
126
127         InitCommonControlsEx(&init_tooltip);
128         initialized = TRUE;
129     }
130 }
131
132 /* create tooltip window for icon */
133 static void create_tooltip(struct tray_icon *icon)
134 {
135     init_common_controls();
136     icon->tooltip = CreateWindowExW( WS_EX_TOPMOST, TOOLTIPS_CLASSW, NULL,
137                                      WS_POPUP | TTS_ALWAYSTIP,
138                                      CW_USEDEFAULT, CW_USEDEFAULT,
139                                      CW_USEDEFAULT, CW_USEDEFAULT,
140                                      icon->window, NULL, NULL, NULL);
141     if (icon->tooltip)
142     {
143         TTTOOLINFOW ti;
144         ZeroMemory(&ti, sizeof(ti));
145         ti.cbSize = sizeof(TTTOOLINFOW);
146         ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND;
147         ti.hwnd = icon->window;
148         ti.uId = (UINT_PTR)icon->window;
149         ti.lpszText = icon->tiptext;
150         SendMessageW(icon->tooltip, TTM_ADDTOOLW, 0, (LPARAM)&ti);
151     }
152 }
153
154 void update_systray_balloon_position(void)
155 {
156     RECT rect;
157     POINT pos;
158
159     if (!balloon_icon) return;
160     GetWindowRect( balloon_icon->window, &rect );
161     pos.x = (rect.left + rect.right) / 2;
162     pos.y = (rect.top + rect.bottom) / 2;
163     if (pos.x == balloon_pos.x && pos.y == balloon_pos.y) return;  /* nothing changed */
164     balloon_pos = pos;
165     SendMessageW( balloon_window, TTM_TRACKPOSITION, 0, MAKELONG( pos.x, pos.y ));
166 }
167
168 static void balloon_create_timer( struct tray_icon *icon )
169 {
170     TTTOOLINFOW ti;
171
172     init_common_controls();
173     balloon_window = CreateWindowExW( WS_EX_TOPMOST, TOOLTIPS_CLASSW, NULL,
174                                       WS_POPUP | TTS_ALWAYSTIP | TTS_NOPREFIX | TTS_BALLOON | TTS_CLOSE,
175                                       CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
176                                       icon->window, NULL, NULL, NULL);
177
178     memset( &ti, 0, sizeof(ti) );
179     ti.cbSize = sizeof(TTTOOLINFOW);
180     ti.hwnd = icon->window;
181     ti.uId = (UINT_PTR)icon->window;
182     ti.uFlags = TTF_TRACK | TTF_IDISHWND;
183     ti.lpszText = icon->info_text;
184     SendMessageW( balloon_window, TTM_ADDTOOLW, 0, (LPARAM)&ti );
185     if ((icon->info_flags & NIIF_ICONMASK) == NIIF_USER)
186         SendMessageW( balloon_window, TTM_SETTITLEW, (WPARAM)icon->info_icon, (LPARAM)icon->info_title );
187     else
188         SendMessageW( balloon_window, TTM_SETTITLEW, icon->info_flags, (LPARAM)icon->info_title );
189     balloon_icon = icon;
190     balloon_pos.x = balloon_pos.y = MAXLONG;
191     update_systray_balloon_position();
192     SendMessageW( balloon_window, TTM_TRACKACTIVATE, TRUE, (LPARAM)&ti );
193     KillTimer( icon->window, BALLOON_CREATE_TIMER );
194     SetTimer( icon->window, BALLOON_SHOW_TIMER, icon->info_timeout, NULL );
195 }
196
197 static BOOL show_balloon( struct tray_icon *icon )
198 {
199     if (standalone_tray && !show_systray) return FALSE;  /* no systray window */
200     if (!icon->window) return FALSE;  /* not displayed */
201     if (!icon->info_text[0]) return FALSE;  /* no balloon */
202     balloon_icon = icon;
203     SetTimer( icon->window, BALLOON_CREATE_TIMER, BALLOON_CREATE_TIMEOUT, NULL );
204     return TRUE;
205 }
206
207 static void hide_balloon(void)
208 {
209     if (!balloon_icon) return;
210     if (balloon_window)
211     {
212         KillTimer( balloon_icon->window, BALLOON_SHOW_TIMER );
213         DestroyWindow( balloon_window );
214         balloon_window = 0;
215     }
216     else KillTimer( balloon_icon->window, BALLOON_CREATE_TIMER );
217     balloon_icon = NULL;
218 }
219
220 static void show_next_balloon(void)
221 {
222     struct tray_icon *icon;
223
224     LIST_FOR_EACH_ENTRY( icon, &icon_list, struct tray_icon, entry )
225         if (show_balloon( icon )) break;
226 }
227
228 static void update_balloon( struct tray_icon *icon )
229 {
230     if (balloon_icon == icon)
231     {
232         hide_balloon();
233         show_balloon( icon );
234     }
235     else if (!balloon_icon)
236     {
237         if (!show_balloon( icon )) return;
238     }
239     if (!balloon_icon) show_next_balloon();
240 }
241
242 static void balloon_timer(void)
243 {
244     if (balloon_icon) balloon_icon->info_text[0] = 0;  /* clear text now that balloon has been shown */
245     hide_balloon();
246     show_next_balloon();
247 }
248
249 /* synchronize tooltip text with tooltip window */
250 static void update_tooltip_text(struct tray_icon *icon)
251 {
252     TTTOOLINFOW ti;
253
254     ZeroMemory(&ti, sizeof(ti));
255     ti.cbSize = sizeof(TTTOOLINFOW);
256     ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND;
257     ti.hwnd = icon->window;
258     ti.uId = (UINT_PTR)icon->window;
259     ti.lpszText = icon->tiptext;
260
261     SendMessageW(icon->tooltip, TTM_UPDATETIPTEXTW, 0, (LPARAM)&ti);
262 }
263
264 /* get the size of the stand-alone tray window */
265 static SIZE get_window_size(void)
266 {
267     SIZE size;
268     RECT rect;
269
270     rect.left = 0;
271     rect.top = 0;
272     rect.right = icon_cx * max( nb_displayed, MIN_DISPLAYED );
273     rect.bottom = icon_cy;
274     AdjustWindowRect( &rect, WS_CAPTION, FALSE );
275     size.cx = rect.right - rect.left;
276     size.cy = rect.bottom - rect.top;
277     return size;
278 }
279
280 /* get the position of an icon in the stand-alone tray */
281 static POINT get_icon_pos( struct tray_icon *icon )
282 {
283     POINT pos;
284
285     pos.x = icon_cx * icon->display;
286     pos.y = 0;
287     return pos;
288 }
289
290 /* window procedure for the standalone tray window */
291 static LRESULT WINAPI standalone_tray_wndproc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
292 {
293     switch (msg)
294     {
295     case WM_MOVE:
296         update_systray_balloon_position();
297         break;
298     case WM_CLOSE:
299         ShowWindow( hwnd, SW_HIDE );
300         hide_balloon();
301         show_systray = FALSE;
302         return 0;
303     case WM_DESTROY:
304         standalone_tray = 0;
305         break;
306     }
307     return DefWindowProcW( hwnd, msg, wparam, lparam );
308 }
309
310 /* add an icon to the standalone tray window */
311 static void add_to_standalone_tray( struct tray_icon *icon )
312 {
313     SIZE size;
314     POINT pos;
315
316     if (!standalone_tray)
317     {
318         static const WCHAR winname[] = {'W','i','n','e',' ','S','y','s','t','e','m',' ','T','r','a','y',0};
319
320         size = get_window_size();
321         standalone_tray = CreateWindowExW( 0, tray_classname, winname, WS_CAPTION | WS_SYSMENU,
322                                            CW_USEDEFAULT, CW_USEDEFAULT, size.cx, size.cy, 0, 0, 0, 0 );
323         if (!standalone_tray) return;
324     }
325
326     icon->display = nb_displayed;
327     pos = get_icon_pos( icon );
328     icon->window = CreateWindowW( icon_classname, NULL, WS_CHILD | WS_VISIBLE,
329                                   pos.x, pos.y, icon_cx, icon_cy, standalone_tray, NULL, NULL, icon );
330     if (!icon->window)
331     {
332         icon->display = -1;
333         return;
334     }
335     create_tooltip( icon );
336
337     nb_displayed++;
338     size = get_window_size();
339     SetWindowPos( standalone_tray, 0, 0, 0, size.cx, size.cy, SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER );
340     if (nb_displayed == 1 && show_systray) ShowWindow( standalone_tray, SW_SHOWNA );
341     TRACE( "added %u now %d icons\n", icon->id, nb_displayed );
342 }
343
344 /* remove an icon from the stand-alone tray */
345 static void remove_from_standalone_tray( struct tray_icon *icon )
346 {
347     struct tray_icon *ptr;
348     POINT pos;
349
350     if (icon->display == -1) return;
351
352     LIST_FOR_EACH_ENTRY( ptr, &icon_list, struct tray_icon, entry )
353     {
354         if (ptr == icon) continue;
355         if (ptr->display < icon->display) continue;
356         ptr->display--;
357         pos = get_icon_pos( ptr );
358         SetWindowPos( ptr->window, 0, pos.x, pos.y, 0, 0, SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOZORDER );
359     }
360     icon->display = -1;
361     if (!--nb_displayed) ShowWindow( standalone_tray, SW_HIDE );
362     TRACE( "removed %u now %d icons\n", icon->id, nb_displayed );
363 }
364
365 static void repaint_tray_icon( struct tray_icon *icon )
366 {
367     BLENDFUNCTION blend = { AC_SRC_OVER, 0, 255, AC_SRC_ALPHA };
368     int width = GetSystemMetrics( SM_CXSMICON );
369     int height = GetSystemMetrics( SM_CYSMICON );
370     BITMAPINFO *info;
371     HBITMAP dib, mask;
372     HDC hdc;
373     RECT rc;
374     SIZE size;
375     POINT pos;
376     int i, x, y;
377     void *color_bits, *mask_bits;
378     DWORD *ptr;
379     BOOL has_alpha = FALSE;
380
381     GetWindowRect( icon->window, &rc );
382     size.cx = rc.right - rc.left;
383     size.cy = rc.bottom - rc.top;
384     pos.x = (size.cx - width) / 2;
385     pos.y = (size.cy - height) / 2;
386
387     info = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, FIELD_OFFSET( BITMAPINFO, bmiColors[2] ));
388     if (!info) return;
389     info->bmiHeader.biSize = sizeof(info->bmiHeader);
390     info->bmiHeader.biWidth = size.cx;
391     info->bmiHeader.biHeight = size.cy;
392     info->bmiHeader.biBitCount = 32;
393     info->bmiHeader.biPlanes = 1;
394     info->bmiHeader.biCompression = BI_RGB;
395
396     hdc = CreateCompatibleDC( 0 );
397     if (!(dib = CreateDIBSection( 0, info, DIB_RGB_COLORS, &color_bits, NULL, 0 ))) goto done;
398     SelectObject( hdc, dib );
399     DrawIconEx( hdc, pos.x, pos.y, icon->image, width, height, 0, 0, DI_DEFAULTSIZE | DI_NORMAL );
400
401     /* check if the icon was drawn with an alpha channel */
402     for (i = 0, ptr = color_bits; i < size.cx * size.cy; i++)
403         if ((has_alpha = (ptr[i] & 0xff000000) != 0)) break;
404
405     if (!has_alpha)
406     {
407         unsigned int width_bytes = (size.cx + 31) / 32 * 4;
408
409         info->bmiHeader.biBitCount = 1;
410         info->bmiColors[0].rgbRed      = 0;
411         info->bmiColors[0].rgbGreen    = 0;
412         info->bmiColors[0].rgbBlue     = 0;
413         info->bmiColors[0].rgbReserved = 0;
414         info->bmiColors[1].rgbRed      = 0xff;
415         info->bmiColors[1].rgbGreen    = 0xff;
416         info->bmiColors[1].rgbBlue     = 0xff;
417         info->bmiColors[1].rgbReserved = 0;
418
419         if (!(mask = CreateDIBSection( 0, info, DIB_RGB_COLORS, &mask_bits, NULL, 0 ))) goto done;
420         memset( mask_bits, 0xff, width_bytes * size.cy );
421         SelectObject( hdc, mask );
422         DrawIconEx( hdc, pos.x, pos.y, icon->image, width, height, 0, 0, DI_DEFAULTSIZE | DI_MASK );
423
424         for (y = 0, ptr = color_bits; y < size.cy; y++)
425             for (x = 0; x < size.cx; x++, ptr++)
426                 if (!((((BYTE *)mask_bits)[y * width_bytes + x / 8] << (x % 8)) & 0x80))
427                     *ptr |= 0xff000000;
428
429         SelectObject( hdc, dib );
430         DeleteObject( mask );
431     }
432
433     UpdateLayeredWindow( icon->window, 0, NULL, NULL, hdc, NULL, 0, &blend, ULW_ALPHA );
434 done:
435     if (hdc) DeleteDC( hdc );
436     if (dib) DeleteObject( dib );
437 }
438
439 /* window procedure for the individual tray icon window */
440 static LRESULT WINAPI tray_icon_wndproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
441 {
442     struct tray_icon *icon = NULL;
443     BOOL ret;
444
445     TRACE("hwnd=%p, msg=0x%x\n", hwnd, msg);
446
447     /* set the icon data for the window from the data passed into CreateWindow */
448     if (msg == WM_NCCREATE)
449         SetWindowLongPtrW(hwnd, GWLP_USERDATA, (LPARAM)((const CREATESTRUCTW *)lparam)->lpCreateParams);
450
451     icon = (struct tray_icon *) GetWindowLongPtrW(hwnd, GWLP_USERDATA);
452
453     switch (msg)
454     {
455     case WM_CREATE:
456         SetTimer( hwnd, VALID_WIN_TIMER, VALID_WIN_TIMEOUT, NULL );
457         break;
458
459     case WM_SIZE:
460         if (icon->window && icon->layered) repaint_tray_icon( icon );
461         break;
462
463     case WM_PAINT:
464         {
465             PAINTSTRUCT ps;
466             RECT rc;
467             HDC hdc;
468             int cx = GetSystemMetrics( SM_CXSMICON );
469             int cy = GetSystemMetrics( SM_CYSMICON );
470
471             hdc = BeginPaint(hwnd, &ps);
472             GetClientRect(hwnd, &rc);
473             TRACE("painting rect %s\n", wine_dbgstr_rect(&rc));
474             DrawIconEx( hdc, (rc.left + rc.right - cx) / 2, (rc.top + rc.bottom - cy) / 2,
475                         icon->image, cx, cy, 0, 0, DI_DEFAULTSIZE|DI_NORMAL );
476             EndPaint(hwnd, &ps);
477             return 0;
478         }
479
480     case WM_MOUSEMOVE:
481     case WM_LBUTTONDOWN:
482     case WM_LBUTTONUP:
483     case WM_RBUTTONDOWN:
484     case WM_RBUTTONUP:
485     case WM_MBUTTONDOWN:
486     case WM_MBUTTONUP:
487     case WM_LBUTTONDBLCLK:
488     case WM_RBUTTONDBLCLK:
489     case WM_MBUTTONDBLCLK:
490         /* notify the owner hwnd of the message */
491         TRACE("relaying 0x%x\n", msg);
492         ret = PostMessageW(icon->owner, icon->callback_message, icon->id, msg);
493         if (!ret && (GetLastError() == ERROR_INVALID_WINDOW_HANDLE))
494         {
495             WARN( "application window was destroyed, removing icon %u\n", icon->id );
496             delete_icon( icon );
497         }
498         return 0;
499
500     case WM_WINDOWPOSCHANGED:
501         update_systray_balloon_position();
502         break;
503
504     case WM_TIMER:
505         switch (wparam)
506         {
507         case VALID_WIN_TIMER:
508             if (!IsWindow( icon->owner )) delete_icon( icon );
509             break;
510         case BALLOON_CREATE_TIMER:
511             balloon_create_timer( icon );
512             break;
513         case BALLOON_SHOW_TIMER:
514             balloon_timer();
515             break;
516         }
517         return 0;
518
519     case WM_CLOSE:
520         if (icon->display == -1)
521         {
522             TRACE( "icon %u no longer embedded\n", icon->id );
523             hide_icon( icon );
524             add_to_standalone_tray( icon );
525         }
526         return 0;
527     }
528     return DefWindowProcW( hwnd, msg, wparam, lparam );
529 }
530
531 /* find the X11 window owner the system tray selection */
532 static Window get_systray_selection_owner( Display *display )
533 {
534     return XGetSelectionOwner( display, systray_atom );
535 }
536
537 static void get_systray_visual_info( Display *display, Window systray_window, XVisualInfo *info )
538 {
539     XVisualInfo *list, template;
540     VisualID *visual_id;
541     Atom type;
542     int format, num;
543     unsigned long count, remaining;
544
545     *info = default_visual;
546     if (XGetWindowProperty( display, systray_window, x11drv_atom(_NET_SYSTEM_TRAY_VISUAL), 0,
547                             65536/sizeof(CARD32), False, XA_VISUALID, &type, &format, &count,
548                             &remaining, (unsigned char **)&visual_id ))
549         return;
550
551     if (type == XA_VISUALID && format == 32)
552     {
553         template.visualid = visual_id[0];
554         if ((list = XGetVisualInfo( display, VisualIDMask, &template, &num )))
555         {
556             *info = list[0];
557             TRACE( "systray window %lx got visual %lx\n", systray_window, info->visualid );
558             XFree( list );
559         }
560     }
561     XFree( visual_id );
562 }
563
564 static BOOL init_systray(void)
565 {
566     static BOOL init_done;
567     WNDCLASSEXW class;
568     Display *display;
569
570     if (root_window != DefaultRootWindow( gdi_display )) return FALSE;
571     if (init_done) return TRUE;
572
573     icon_cx = GetSystemMetrics( SM_CXSMICON ) + 2 * ICON_BORDER;
574     icon_cy = GetSystemMetrics( SM_CYSMICON ) + 2 * ICON_BORDER;
575
576     memset( &class, 0, sizeof(class) );
577     class.cbSize        = sizeof(class);
578     class.lpfnWndProc   = tray_icon_wndproc;
579     class.hIcon         = LoadIconW(0, (LPCWSTR)IDI_WINLOGO);
580     class.hCursor       = LoadCursorW( 0, (LPCWSTR)IDC_ARROW );
581     class.lpszClassName = icon_classname;
582     class.style         = CS_HREDRAW | CS_VREDRAW | CS_DBLCLKS;
583
584     if (!RegisterClassExW( &class ) && GetLastError() != ERROR_CLASS_ALREADY_EXISTS)
585     {
586         ERR( "Could not register icon tray window class\n" );
587         return FALSE;
588     }
589
590     class.lpfnWndProc   = standalone_tray_wndproc;
591     class.hbrBackground = (HBRUSH)COLOR_WINDOW;
592     class.lpszClassName = tray_classname;
593     class.style         = CS_DBLCLKS;
594
595     if (!RegisterClassExW( &class ) && GetLastError() != ERROR_CLASS_ALREADY_EXISTS)
596     {
597         ERR( "Could not register standalone tray window class\n" );
598         return FALSE;
599     }
600
601     display = thread_init_display();
602     if (DefaultScreen( display ) == 0)
603         systray_atom = x11drv_atom(_NET_SYSTEM_TRAY_S0);
604     else
605     {
606         char systray_buffer[29]; /* strlen(_NET_SYSTEM_TRAY_S4294967295)+1 */
607         sprintf( systray_buffer, "_NET_SYSTEM_TRAY_S%u", DefaultScreen( display ) );
608         systray_atom = XInternAtom( display, systray_buffer, False );
609     }
610     XSelectInput( display, root_window, StructureNotifyMask );
611
612     init_done = TRUE;
613     return TRUE;
614 }
615
616 /* dock the given icon with the NETWM system tray */
617 static void dock_systray_icon( Display *display, struct tray_icon *icon, Window systray_window )
618 {
619     Window window;
620     XEvent ev;
621     XSetWindowAttributes attr;
622     XVisualInfo visual;
623     struct x11drv_win_data *data;
624
625     get_systray_visual_info( display, systray_window, &visual );
626
627     icon->layered = (visual.visualid != default_visual.visualid);
628     icon->window = CreateWindowExW( icon->layered ? WS_EX_LAYERED : 0,
629                                     icon_classname, NULL, WS_CLIPSIBLINGS | WS_POPUP,
630                                     CW_USEDEFAULT, CW_USEDEFAULT, icon_cx, icon_cy,
631                                     NULL, NULL, NULL, icon );
632
633     if (!(data = get_win_data( icon->window ))) return;
634     if (icon->layered) set_window_visual( data, &visual );
635     make_window_embedded( data );
636     window = data->whole_window;
637     release_win_data( data );
638
639     create_tooltip( icon );
640     ShowWindow( icon->window, SW_SHOWNA );
641
642     TRACE( "icon window %p/%lx\n", icon->window, window );
643
644     /* send the docking request message */
645     ev.xclient.type = ClientMessage;
646     ev.xclient.window = systray_window;
647     ev.xclient.message_type = x11drv_atom( _NET_SYSTEM_TRAY_OPCODE );
648     ev.xclient.format = 32;
649     ev.xclient.data.l[0] = CurrentTime;
650     ev.xclient.data.l[1] = SYSTEM_TRAY_REQUEST_DOCK;
651     ev.xclient.data.l[2] = window;
652     ev.xclient.data.l[3] = 0;
653     ev.xclient.data.l[4] = 0;
654     XSendEvent( display, systray_window, False, NoEventMask, &ev );
655
656     if (!icon->layered)
657     {
658         attr.background_pixmap = ParentRelative;
659         attr.bit_gravity = ForgetGravity;
660         XChangeWindowAttributes( display, window, CWBackPixmap | CWBitGravity, &attr );
661     }
662     else repaint_tray_icon( icon );
663 }
664
665 /* dock systray windows again with the new owner */
666 void change_systray_owner( Display *display, Window systray_window )
667 {
668     struct tray_icon *icon;
669
670     TRACE( "new owner %lx\n", systray_window );
671     LIST_FOR_EACH_ENTRY( icon, &icon_list, struct tray_icon, entry )
672     {
673         if (icon->display == -1) continue;
674         hide_icon( icon );
675         dock_systray_icon( display, icon, systray_window );
676     }
677 }
678
679 /* hide a tray icon */
680 static BOOL hide_icon( struct tray_icon *icon )
681 {
682     struct x11drv_win_data *data;
683
684     TRACE( "id=0x%x, hwnd=%p\n", icon->id, icon->owner );
685
686     if (!icon->window) return TRUE;  /* already hidden */
687
688     /* make sure we don't try to unmap it, it confuses some systray docks */
689     if ((data = get_win_data( icon->window )))
690     {
691         if (data->embedded) data->mapped = FALSE;
692         release_win_data( data );
693     }
694     DestroyWindow(icon->window);
695     DestroyWindow(icon->tooltip);
696     icon->window = 0;
697     icon->layered = FALSE;
698     icon->tooltip = 0;
699     remove_from_standalone_tray( icon );
700     update_balloon( icon );
701     return TRUE;
702 }
703
704 /* make the icon visible */
705 static BOOL show_icon( struct tray_icon *icon )
706 {
707     Window systray_window;
708     Display *display = thread_init_display();
709
710     TRACE( "id=0x%x, hwnd=%p\n", icon->id, icon->owner );
711
712     if (icon->window) return TRUE;  /* already shown */
713
714     if ((systray_window = get_systray_selection_owner( display )))
715         dock_systray_icon( display, icon, systray_window );
716     else
717         add_to_standalone_tray( icon );
718
719     update_balloon( icon );
720     return TRUE;
721 }
722
723 /* Modifies an existing icon record */
724 static BOOL modify_icon( struct tray_icon *icon, NOTIFYICONDATAW *nid )
725 {
726     TRACE( "id=0x%x hwnd=%p flags=%x\n", nid->uID, nid->hWnd, nid->uFlags );
727
728     if (nid->uFlags & NIF_STATE)
729     {
730         icon->state = (icon->state & ~nid->dwStateMask) | (nid->dwState & nid->dwStateMask);
731     }
732
733     if (nid->uFlags & NIF_ICON)
734     {
735         if (icon->image) DestroyIcon(icon->image);
736         icon->image = CopyIcon(nid->hIcon);
737         if (icon->window)
738         {
739             if (icon->display != -1) InvalidateRect( icon->window, NULL, TRUE );
740             else if (icon->layered) repaint_tray_icon( icon );
741             else
742             {
743                 Window win = X11DRV_get_whole_window( icon->window );
744                 if (win) XClearArea( gdi_display, win, 0, 0, 0, 0, True );
745             }
746         }
747     }
748
749     if (nid->uFlags & NIF_MESSAGE)
750     {
751         icon->callback_message = nid->uCallbackMessage;
752     }
753     if (nid->uFlags & NIF_TIP)
754     {
755         lstrcpynW(icon->tiptext, nid->szTip, sizeof(icon->tiptext)/sizeof(WCHAR));
756         if (icon->tooltip) update_tooltip_text(icon);
757     }
758     if (nid->uFlags & NIF_INFO && nid->cbSize >= NOTIFYICONDATAA_V2_SIZE)
759     {
760         lstrcpynW( icon->info_text, nid->szInfo, sizeof(icon->info_text)/sizeof(WCHAR) );
761         lstrcpynW( icon->info_title, nid->szInfoTitle, sizeof(icon->info_title)/sizeof(WCHAR) );
762         icon->info_flags = nid->dwInfoFlags;
763         icon->info_timeout = max(min(nid->u.uTimeout, BALLOON_SHOW_MAX_TIMEOUT), BALLOON_SHOW_MIN_TIMEOUT);
764         icon->info_icon = nid->hBalloonIcon;
765         update_balloon( icon );
766     }
767     if (icon->state & NIS_HIDDEN) hide_icon( icon );
768     else show_icon( icon );
769     return TRUE;
770 }
771
772 /* Adds a new icon record to the list */
773 static BOOL add_icon(NOTIFYICONDATAW *nid)
774 {
775     struct tray_icon  *icon;
776
777     TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
778
779     if ((icon = get_icon(nid->hWnd, nid->uID)))
780     {
781         WARN("duplicate tray icon add, buggy app?\n");
782         return FALSE;
783     }
784
785     if (!(icon = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*icon))))
786     {
787         ERR("out of memory\n");
788         return FALSE;
789     }
790
791     ZeroMemory(icon, sizeof(struct tray_icon));
792     icon->id     = nid->uID;
793     icon->owner  = nid->hWnd;
794     icon->display = -1;
795
796     list_add_tail(&icon_list, &icon->entry);
797
798     return modify_icon( icon, nid );
799 }
800
801 /* delete tray icon window and icon structure */
802 static BOOL delete_icon( struct tray_icon *icon )
803 {
804     hide_icon( icon );
805     list_remove( &icon->entry );
806     DestroyIcon( icon->image );
807     HeapFree( GetProcessHeap(), 0, icon );
808     return TRUE;
809 }
810
811
812 /***********************************************************************
813  *              wine_notify_icon   (X11DRV.@)
814  *
815  * Driver-side implementation of Shell_NotifyIcon.
816  */
817 int CDECL wine_notify_icon( DWORD msg, NOTIFYICONDATAW *data )
818 {
819     BOOL ret = FALSE;
820     struct tray_icon *icon;
821
822     switch (msg)
823     {
824     case NIM_ADD:
825         if (!init_systray()) return -1;  /* fall back to default handling */
826         ret = add_icon( data );
827         break;
828     case NIM_DELETE:
829         if ((icon = get_icon( data->hWnd, data->uID ))) ret = delete_icon( icon );
830         break;
831     case NIM_MODIFY:
832         if ((icon = get_icon( data->hWnd, data->uID ))) ret = modify_icon( icon, data );
833         break;
834     default:
835         FIXME( "unhandled tray message: %u\n", msg );
836         break;
837     }
838     return ret;
839 }