explorer: Fix leak: always release the CFDictionary.
[wine] / programs / explorer / systray.c
1 /*
2  * Copyright (C) 2004 Mike Hearn, for CodeWeavers
3  * Copyright (C) 2005 Robert Shearman
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 /* There are two types of window involved here. The first is the
21  * listener window. This is like the taskbar in Windows. It doesn't
22  * ever appear on-screen in our implementation, instead we create
23  * individual mini "adaptor" windows which are docked by the native
24  * systray host.
25  *
26  * In future for those who don't have a systray we could make the
27  * listener window more clever so it can draw itself like the Windows
28  * tray area does (with a clock and stuff).
29  */
30
31 #include <assert.h>
32
33 #define UNICODE
34 #define _WIN32_IE 0x500
35 #include <windows.h>
36 #include <commctrl.h>
37
38 #include <wine/debug.h>
39 #include <wine/list.h>
40
41 #include "explorer_private.h"
42
43 WINE_DEFAULT_DEBUG_CHANNEL(systray);
44
45 #define IS_OPTION_FALSE(ch) \
46     ((ch) == 'n' || (ch) == 'N' || (ch) == 'f' || (ch) == 'F' || (ch) == '0')
47
48 static const WCHAR adaptor_classname[] = /* Adaptor */ {'A','d','a','p','t','o','r',0};
49
50 /* tray state */
51 struct tray
52 {
53     HWND           window;
54     struct list    icons;
55 };
56
57 /* an individual systray icon, unpacked from the NOTIFYICONDATA and always in unicode */
58 struct icon
59 {
60     struct list    entry;
61     HICON          image;    /* the image to render */
62     HWND           owner;    /* the HWND passed in to the Shell_NotifyIcon call */
63     HWND           window;   /* the adaptor window */
64     HWND           tooltip;  /* Icon tooltip */
65     UINT           id;       /* the unique id given by the app */
66     UINT           callback_message;
67 };
68
69 static struct tray tray;
70 static BOOL hide_systray;
71
72 /* adaptor code */
73
74 #define ICON_SIZE GetSystemMetrics(SM_CXSMICON)
75 /* space around icon (forces icon to center of KDE systray area) */
76 #define ICON_BORDER  4
77
78 static LRESULT WINAPI adaptor_wndproc(HWND window, UINT msg,
79                                       WPARAM wparam, LPARAM lparam)
80 {
81     struct icon *icon = NULL;
82     BOOL ret;
83
84     WINE_TRACE("hwnd=%p, msg=0x%x\n", window, msg);
85
86     /* set the icon data for the window from the data passed into CreateWindow */
87     if (msg == WM_NCCREATE)
88         SetWindowLongPtrW(window, GWLP_USERDATA, (LPARAM)((const CREATESTRUCT *)lparam)->lpCreateParams);
89
90     icon = (struct icon *) GetWindowLongPtr(window, GWLP_USERDATA);
91
92     switch (msg)
93     {
94         case WM_PAINT:
95         {
96             RECT rc;
97             int top;
98             PAINTSTRUCT  ps;
99             HDC          hdc;
100
101             WINE_TRACE("painting\n");
102
103             hdc = BeginPaint(window, &ps);
104             GetClientRect(window, &rc);
105
106             /* calculate top so we can deal with arbitrary sized trays */
107             top = ((rc.bottom-rc.top)/2) - ((ICON_SIZE)/2);
108
109             DrawIconEx(hdc, (ICON_BORDER/2), top, icon->image,
110                        ICON_SIZE, ICON_SIZE, 0, 0, DI_DEFAULTSIZE|DI_NORMAL);
111
112             EndPaint(window, &ps);
113             break;
114         }
115
116         case WM_MOUSEMOVE:
117         case WM_LBUTTONDOWN:
118         case WM_LBUTTONUP:
119         case WM_RBUTTONDOWN:
120         case WM_RBUTTONUP:
121         case WM_MBUTTONDOWN:
122         case WM_MBUTTONUP:
123         case WM_LBUTTONDBLCLK:
124         case WM_RBUTTONDBLCLK:
125         case WM_MBUTTONDBLCLK:
126             /* notify the owner hwnd of the message */
127             WINE_TRACE("relaying 0x%x\n", msg);
128             ret = PostMessage(icon->owner, icon->callback_message, (WPARAM) icon->id, (LPARAM) msg);
129             if (!ret && (GetLastError() == ERROR_INVALID_HANDLE))
130             {
131                 WINE_WARN("application window was destroyed without removing "
132                           "notification icon, removing automatically\n");
133                 DestroyWindow(window);
134             }
135             break;
136
137         case WM_NCDESTROY:
138             SetWindowLongPtr(window, GWLP_USERDATA, 0);
139
140             list_remove(&icon->entry);
141             DestroyIcon(icon->image);
142             HeapFree(GetProcessHeap(), 0, icon);
143             break;
144
145         default:
146             return DefWindowProc(window, msg, wparam, lparam);
147     }
148
149     return 0;
150 }
151
152
153 /* listener code */
154
155 static struct icon *get_icon(HWND owner, UINT id)
156 {
157     struct icon *this;
158
159     /* search for the icon */
160     LIST_FOR_EACH_ENTRY( this, &tray.icons, struct icon, entry )
161         if ((this->id == id) && (this->owner == owner)) return this;
162
163     return NULL;
164 }
165
166 static void set_tooltip(struct icon *icon, WCHAR *szTip, BOOL modify)
167 {
168     TTTOOLINFOW ti;
169
170     ti.cbSize = sizeof(TTTOOLINFOW);
171     ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND;
172     ti.hwnd = icon->window;
173     ti.hinst = 0;
174     ti.uId = (UINT_PTR)icon->window;
175     ti.lpszText = szTip;
176     ti.lParam = 0;
177     ti.lpReserved = NULL;
178
179     if (modify)
180         SendMessageW(icon->tooltip, TTM_UPDATETIPTEXTW, 0, (LPARAM)&ti);
181     else
182         SendMessageW(icon->tooltip, TTM_ADDTOOLW, 0, (LPARAM)&ti);
183 }
184
185 static void modify_icon(NOTIFYICONDATAW *nid, BOOL modify_tooltip)
186 {
187     struct icon    *icon;
188
189     WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
190
191     /* demarshal the request from the NID */
192     icon = get_icon(nid->hWnd, nid->uID);
193     if (!icon)
194     {
195         WINE_WARN("Invalid icon ID (0x%x) for HWND %p\n", nid->uID, nid->hWnd);
196         return;
197     }
198
199     if (nid->uFlags & NIF_ICON)
200     {
201         if (icon->image) DestroyIcon(icon->image);
202         icon->image = CopyIcon(nid->hIcon);
203
204         RedrawWindow(icon->window, NULL, NULL, RDW_ERASE | RDW_INVALIDATE | RDW_UPDATENOW);
205     }
206
207     if (nid->uFlags & NIF_MESSAGE)
208     {
209         icon->callback_message = nid->uCallbackMessage;
210     }
211     if (nid->uFlags & NIF_TIP)
212     {
213         set_tooltip(icon, nid->szTip, modify_tooltip);
214     }
215 }
216
217 static void add_icon(NOTIFYICONDATAW *nid)
218 {
219     RECT rect;
220     struct icon  *icon;
221     static const WCHAR adaptor_windowname[] = /* Wine System Tray Adaptor */ {'W','i','n','e',' ','S','y','s','t','e','m',' ','T','r','a','y',' ','A','d','a','p','t','o','r',0};
222     static BOOL tooltps_initialized = FALSE;
223
224     WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
225
226     if ((icon = get_icon(nid->hWnd, nid->uID)))
227     {
228         WINE_WARN("duplicate tray icon add, buggy app?\n");
229         return;
230     }
231
232     if (!(icon = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*icon))))
233     {
234         WINE_ERR("out of memory\n");
235         return;
236     }
237
238     icon->id    = nid->uID;
239     icon->owner = nid->hWnd;
240     icon->image = NULL;
241
242     rect.left = 0;
243     rect.top = 0;
244     rect.right = GetSystemMetrics(SM_CXSMICON) + ICON_BORDER;
245     rect.bottom = GetSystemMetrics(SM_CYSMICON) + ICON_BORDER;
246     AdjustWindowRect(&rect, WS_CLIPSIBLINGS | WS_CAPTION, FALSE);
247
248     /* create the adaptor window */
249     icon->window = CreateWindowEx(WS_EX_TRAYWINDOW, adaptor_classname,
250                                   adaptor_windowname,
251                                   WS_CLIPSIBLINGS | WS_CAPTION,
252                                   CW_USEDEFAULT, CW_USEDEFAULT,
253                                   rect.right - rect.left,
254                                   rect.bottom - rect.top,
255                                   NULL, NULL, NULL, icon);
256
257     if (!hide_systray)
258         ShowWindow(icon->window, SW_SHOWNA);
259
260     /* create icon tooltip */
261
262     /* Register tooltip classes if this is the first icon */
263     if (!tooltps_initialized)
264     {
265         INITCOMMONCONTROLSEX init_tooltip;
266
267         init_tooltip.dwSize = sizeof(INITCOMMONCONTROLSEX);
268         init_tooltip.dwICC = ICC_TAB_CLASSES;
269
270         InitCommonControlsEx(&init_tooltip);
271         tooltps_initialized = TRUE;
272     }
273
274     icon->tooltip = CreateWindowEx(WS_EX_TOPMOST, TOOLTIPS_CLASS, NULL,
275                                    WS_POPUP | TTS_ALWAYSTIP,
276                                    CW_USEDEFAULT, CW_USEDEFAULT,
277                                    CW_USEDEFAULT, CW_USEDEFAULT,
278                                    icon->window, NULL, NULL, NULL);
279
280     list_add_tail(&tray.icons, &icon->entry);
281
282     modify_icon(nid, FALSE);
283 }
284
285 static void delete_icon(const NOTIFYICONDATAW *nid)
286 {
287     struct icon *icon = get_icon(nid->hWnd, nid->uID);
288
289     WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
290    
291     if (!icon)
292     {
293         WINE_ERR("invalid tray icon ID specified: %ud\n", nid->uID);
294         return;
295     }
296
297     DestroyWindow(icon->tooltip);
298     DestroyWindow(icon->window);
299 }
300
301 static void handle_incoming(HWND hwndSource, COPYDATASTRUCT *cds)
302 {
303     NOTIFYICONDATAW nid;
304
305     if (cds->cbData < sizeof(nid)) return;
306     memcpy(&nid, cds->lpData, sizeof(nid));
307
308     /* FIXME: if statement only needed because we don't support interprocess
309      * icon handles */
310     if ((nid.uFlags & NIF_ICON) && (cds->cbData >= sizeof(nid) + 2 * sizeof(BITMAP)))
311     {
312         LONG cbMaskBits;
313         LONG cbColourBits;
314         BITMAP bmMask;
315         BITMAP bmColour;
316         const char *buffer = cds->lpData;
317
318         buffer += sizeof(nid);
319
320         memcpy(&bmMask, buffer, sizeof(bmMask));
321         buffer += sizeof(bmMask);
322         memcpy(&bmColour, buffer, sizeof(bmColour));
323         buffer += sizeof(bmColour);
324
325         cbMaskBits = (bmMask.bmPlanes * bmMask.bmWidth * bmMask.bmHeight * bmMask.bmBitsPixel) / 8;
326         cbColourBits = (bmColour.bmPlanes * bmColour.bmWidth * bmColour.bmHeight * bmColour.bmBitsPixel) / 8;
327
328         if (cds->cbData < sizeof(nid) + 2 * sizeof(BITMAP) + cbMaskBits + cbColourBits)
329         {
330             WINE_ERR("buffer underflow\n");
331             return;
332         }
333
334         /* sanity check */
335         if ((bmColour.bmWidth != bmMask.bmWidth) || (bmColour.bmHeight != bmMask.bmHeight))
336         {
337             WINE_ERR("colour and mask bitmaps aren't consistent\n");
338             return;
339         }
340
341         nid.hIcon = CreateIcon(NULL, bmColour.bmWidth, bmColour.bmHeight,
342                                bmColour.bmPlanes, bmColour.bmBitsPixel,
343                                buffer, buffer + cbMaskBits);
344     }
345
346     switch (cds->dwData)
347     {
348     case NIM_ADD:
349         add_icon(&nid);
350         break;
351     case NIM_DELETE:
352         delete_icon(&nid);
353         break;
354     case NIM_MODIFY:
355         modify_icon(&nid, TRUE);
356         break;
357     default:
358         WINE_FIXME("unhandled tray message: %ld\n", cds->dwData);
359         break;
360     }
361
362     /* FIXME: if statement only needed because we don't support interprocess
363      * icon handles */
364     if (nid.uFlags & NIF_ICON)
365         DestroyIcon(nid.hIcon);
366 }
367
368 static LRESULT WINAPI listener_wndproc(HWND window, UINT msg,
369                                        WPARAM wparam, LPARAM lparam)
370 {
371     if (msg == WM_COPYDATA)
372         handle_incoming((HWND)wparam, (COPYDATASTRUCT *)lparam);
373
374     return DefWindowProc(window, msg, wparam, lparam);
375 }
376
377
378 static BOOL is_systray_hidden(void)
379 {
380     const WCHAR show_systray_keyname[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
381                                           'X','1','1',' ','D','r','i','v','e','r',0};
382     const WCHAR show_systray_valuename[] = {'S','h','o','w','S','y','s','t','r','a','y',0};
383     HKEY hkey;
384     BOOL ret = FALSE;
385
386     /* @@ Wine registry key: HKCU\Software\Wine\X11 Driver */
387     if (RegOpenKeyW(HKEY_CURRENT_USER, show_systray_keyname, &hkey) == ERROR_SUCCESS)
388     {
389         WCHAR value[10];
390         DWORD type, size = sizeof(value);
391         if (RegQueryValueExW(hkey, show_systray_valuename, 0, &type, (LPBYTE)&value, &size) == ERROR_SUCCESS)
392         {
393             ret = IS_OPTION_FALSE(value[0]);
394         }
395         RegCloseKey(hkey);
396     }
397     return ret;
398 }
399
400 /* this function creates the the listener window */
401 void initialize_systray(void)
402 {
403     WNDCLASSEX class;
404     static const WCHAR classname[] = /* Shell_TrayWnd */ {'S','h','e','l','l','_','T','r','a','y','W','n','d',0};
405     static const WCHAR winname[]   = /* Wine Systray Listener */
406         {'W','i','n','e',' ','S','y','s','t','r','a','y',' ','L','i','s','t','e','n','e','r',0};
407
408     WINE_TRACE("initiaizing\n");
409
410     hide_systray = is_systray_hidden();
411
412     list_init(&tray.icons);
413
414     /* register the systray listener window class */
415     ZeroMemory(&class, sizeof(class));
416     class.cbSize        = sizeof(class);
417     class.lpfnWndProc   = &listener_wndproc;
418     class.hInstance     = NULL;
419     class.hIcon         = LoadIcon(0, IDI_WINLOGO);
420     class.hCursor       = LoadCursor(0, IDC_ARROW);
421     class.hbrBackground = (HBRUSH) COLOR_WINDOW;
422     class.lpszClassName = (WCHAR *) &classname;
423
424     if (!RegisterClassEx(&class))
425     {
426         WINE_ERR("Could not register SysTray window class\n");
427         return;
428     }
429
430     /* now register the adaptor window class */
431     ZeroMemory(&class, sizeof(class));
432     class.cbSize        = sizeof(class);
433     class.lpfnWndProc   = adaptor_wndproc;
434     class.hInstance     = NULL;
435     class.hIcon         = LoadIcon(0, IDI_WINLOGO);
436     class.hCursor       = LoadCursor(0, IDC_ARROW);
437     class.hbrBackground = (HBRUSH) COLOR_WINDOW;
438     class.lpszClassName = adaptor_classname;
439     class.style         = CS_SAVEBITS | CS_DBLCLKS;
440
441     if (!RegisterClassEx(&class))
442     {
443         WINE_ERR("Could not register adaptor class\n");
444         return;
445     }
446
447     tray.window = CreateWindow(classname, winname, WS_OVERLAPPED,
448                                CW_USEDEFAULT, CW_USEDEFAULT,
449                                0, 0, 0, 0, 0, 0);
450
451     if (!tray.window)
452     {
453         WINE_ERR("Could not create tray window\n");
454         return;
455     }
456 }