user: Defer all ExitWindowsEx processing to wineboot.
[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
37 #include <wine/debug.h>
38 #include <wine/list.h>
39
40 #include "explorer_private.h"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(systray);
43
44 #define IS_OPTION_FALSE(ch) \
45     ((ch) == 'n' || (ch) == 'N' || (ch) == 'f' || (ch) == 'F' || (ch) == '0')
46
47 static const WCHAR adaptor_classname[] = /* Adaptor */ {'A','d','a','p','t','o','r',0};
48
49 /* tray state */
50 struct tray
51 {
52     HWND           window;
53     struct list    icons;
54 };
55
56 /* an individual systray icon, unpacked from the NOTIFYICONDATA and always in unicode */
57 struct icon
58 {
59     struct list    entry;
60     HICON          image;    /* the image to render */
61     HWND           owner;    /* the HWND passed in to the Shell_NotifyIcon call */
62     HWND           window;   /* the adaptor window */
63     UINT           id;       /* the unique id given by the app */
64     UINT           callback_message;
65 };
66
67 static struct tray tray;
68 static BOOL hide_systray;
69
70 /* adaptor code */
71
72 #define ICON_SIZE GetSystemMetrics(SM_CXSMICON)
73 /* space around icon (forces icon to center of KDE systray area) */
74 #define ICON_BORDER  4
75
76 static LRESULT WINAPI adaptor_wndproc(HWND window, UINT msg,
77                                       WPARAM wparam, LPARAM lparam)
78 {
79     struct icon *icon = NULL;
80     BOOL ret;
81
82     WINE_TRACE("hwnd=%p, msg=0x%x\n", window, msg);
83
84     /* set the icon data for the window from the data passed into CreateWindow */
85     if (msg == WM_NCCREATE)
86         SetWindowLongPtrW(window, GWLP_USERDATA, (LPARAM)((const CREATESTRUCT *)lparam)->lpCreateParams);
87
88     icon = (struct icon *) GetWindowLongPtr(window, GWLP_USERDATA);
89
90     switch (msg)
91     {
92         case WM_PAINT:
93         {
94             RECT rc;
95             int top;
96             PAINTSTRUCT  ps;
97             HDC          hdc;
98
99             WINE_TRACE("painting\n");
100
101             hdc = BeginPaint(window, &ps);
102             GetClientRect(window, &rc);
103
104             /* calculate top so we can deal with arbitrary sized trays */
105             top = ((rc.bottom-rc.top)/2) - ((ICON_SIZE)/2);
106
107             DrawIconEx(hdc, (ICON_BORDER/2), top, icon->image,
108                        ICON_SIZE, ICON_SIZE, 0, 0, DI_DEFAULTSIZE|DI_NORMAL);
109
110             EndPaint(window, &ps);
111             break;
112         }
113
114         case WM_MOUSEMOVE:
115         case WM_LBUTTONDOWN:
116         case WM_LBUTTONUP:
117         case WM_RBUTTONDOWN:
118         case WM_RBUTTONUP:
119         case WM_MBUTTONDOWN:
120         case WM_MBUTTONUP:
121         case WM_LBUTTONDBLCLK:
122         case WM_RBUTTONDBLCLK:
123         case WM_MBUTTONDBLCLK:
124         {
125             /* notify the owner hwnd of the message */
126             WINE_TRACE("relaying 0x%x\n", msg);
127             ret = PostMessage(icon->owner, icon->callback_message, (WPARAM) icon->id, (LPARAM) msg);
128             if (!ret && (GetLastError() == ERROR_INVALID_HANDLE))
129             {
130                 WINE_WARN("application window was destroyed without removing "
131                           "notification icon, removing automatically\n");
132                 DestroyWindow(window);
133             }
134             return 0;
135         }
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
146     return DefWindowProc(window, msg, wparam, lparam);
147 }
148
149
150 /* listener code */
151
152 static struct icon *get_icon(HWND owner, UINT id)
153 {
154     struct icon *this;
155
156     /* search for the icon */
157     LIST_FOR_EACH_ENTRY( this, &tray.icons, struct icon, entry )
158         if ((this->id == id) && (this->owner == owner)) return this;
159
160     return NULL;
161 }
162
163 static void modify_icon(const NOTIFYICONDATAW *nid)
164 {
165     struct icon    *icon;
166
167     WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
168
169     /* demarshal the request from the NID */
170     icon = get_icon(nid->hWnd, nid->uID);
171     if (!icon)
172     {
173         WINE_WARN("Invalid icon ID (0x%x) for HWND %p\n", nid->uID, nid->hWnd);
174         return;
175     }
176
177     if (nid->uFlags & NIF_ICON)
178     {
179         if (icon->image) DestroyIcon(icon->image);
180         icon->image = CopyIcon(nid->hIcon);
181
182         RedrawWindow(icon->window, NULL, NULL, RDW_ERASE | RDW_INVALIDATE | RDW_UPDATENOW);
183     }
184
185     if (nid->uFlags & NIF_MESSAGE)
186     {
187         icon->callback_message = nid->uCallbackMessage;
188     }
189 }
190
191 static void add_icon(const NOTIFYICONDATAW *nid)
192 {
193     RECT rect;
194     struct icon  *icon;
195     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};
196
197     WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
198
199     if ((icon = get_icon(nid->hWnd, nid->uID)))
200     {
201         WINE_WARN("duplicate tray icon add, buggy app?\n");
202         return;
203     }
204
205     if (!(icon = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*icon))))
206     {
207         WINE_ERR("out of memory\n");
208         return;
209     }
210
211     icon->id    = nid->uID;
212     icon->owner = nid->hWnd;
213     icon->image = NULL;
214
215     rect.left = 0;
216     rect.top = 0;
217     rect.right = GetSystemMetrics(SM_CXSMICON) + ICON_BORDER;
218     rect.bottom = GetSystemMetrics(SM_CYSMICON) + ICON_BORDER;
219     AdjustWindowRect(&rect, WS_CLIPSIBLINGS | WS_CAPTION, FALSE);
220
221     /* create the adaptor window */
222     icon->window = CreateWindowEx(WS_EX_TRAYWINDOW, adaptor_classname,
223                                   adaptor_windowname,
224                                   WS_CLIPSIBLINGS | WS_CAPTION,
225                                   CW_USEDEFAULT, CW_USEDEFAULT,
226                                   rect.right - rect.left,
227                                   rect.bottom - rect.top,
228                                   NULL, NULL, NULL, icon);
229
230     if (!hide_systray)
231         ShowWindow(icon->window, SW_SHOWNA);
232
233     list_add_tail(&tray.icons, &icon->entry);
234
235     modify_icon(nid);
236 }
237
238 static void delete_icon(const NOTIFYICONDATAW *nid)
239 {
240     struct icon *icon = get_icon(nid->hWnd, nid->uID);
241
242     WINE_TRACE("id=0x%x, hwnd=%p\n", nid->uID, nid->hWnd);
243    
244     if (!icon)
245     {
246         WINE_ERR("invalid tray icon ID specified: %ud\n", nid->uID);
247         return;
248     }
249
250     DestroyWindow(icon->window);
251 }
252
253 static void handle_incoming(HWND hwndSource, COPYDATASTRUCT *cds)
254 {
255     NOTIFYICONDATAW nid;
256
257     if (cds->cbData < sizeof(nid)) return;
258     memcpy(&nid, cds->lpData, sizeof(nid));
259
260     /* FIXME: if statement only needed because we don't support interprocess
261      * icon handles */
262     if ((nid.uFlags & NIF_ICON) && (cds->cbData >= sizeof(nid) + 2 * sizeof(BITMAP)))
263     {
264         LONG cbMaskBits;
265         LONG cbColourBits;
266         BITMAP bmMask;
267         BITMAP bmColour;
268         const char *buffer = cds->lpData;
269
270         buffer += sizeof(nid);
271
272         memcpy(&bmMask, buffer, sizeof(bmMask));
273         buffer += sizeof(bmMask);
274         memcpy(&bmColour, buffer, sizeof(bmColour));
275         buffer += sizeof(bmColour);
276
277         cbMaskBits = (bmMask.bmPlanes * bmMask.bmWidth * bmMask.bmHeight * bmMask.bmBitsPixel) / 8;
278         cbColourBits = (bmColour.bmPlanes * bmColour.bmWidth * bmColour.bmHeight * bmColour.bmBitsPixel) / 8;
279
280         if (cds->cbData < sizeof(nid) + 2 * sizeof(BITMAP) + cbMaskBits + cbColourBits)
281         {
282             WINE_ERR("buffer underflow\n");
283             return;
284         }
285
286         /* sanity check */
287         if ((bmColour.bmWidth != bmMask.bmWidth) || (bmColour.bmHeight != bmMask.bmHeight))
288         {
289             WINE_ERR("colour and mask bitmaps aren't consistent\n");
290             return;
291         }
292
293         nid.hIcon = CreateIcon(NULL, bmColour.bmWidth, bmColour.bmHeight,
294                                bmColour.bmPlanes, bmColour.bmBitsPixel,
295                                buffer, buffer + cbMaskBits);
296     }
297
298     switch (cds->dwData)
299     {
300     case NIM_ADD:
301         add_icon(&nid);
302         break;
303     case NIM_DELETE:
304         delete_icon(&nid);
305         break;
306     case NIM_MODIFY:
307         modify_icon(&nid);
308         break;
309     default:
310         WINE_FIXME("unhandled tray message: %ld\n", cds->dwData);
311         break;
312     }
313
314     /* FIXME: if statement only needed because we don't support interprocess
315      * icon handles */
316     if (nid.uFlags & NIF_ICON)
317         DestroyIcon(nid.hIcon);
318 }
319
320 static LRESULT WINAPI listener_wndproc(HWND window, UINT msg,
321                                        WPARAM wparam, LPARAM lparam)
322 {
323     if (msg == WM_COPYDATA)
324         handle_incoming((HWND)wparam, (COPYDATASTRUCT *)lparam);
325
326     return DefWindowProc(window, msg, wparam, lparam);
327 }
328
329
330 static BOOL is_systray_hidden(void)
331 {
332     const WCHAR show_systray_keyname[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
333                                           'X','1','1',' ','D','r','i','v','e','r',0};
334     const WCHAR show_systray_valuename[] = {'S','h','o','w','S','y','s','t','r','a','y',0};
335     HKEY hkey;
336     BOOL ret = FALSE;
337
338     /* @@ Wine registry key: HKCU\Software\Wine\X11 Driver */
339     if (RegOpenKeyW(HKEY_CURRENT_USER, show_systray_keyname, &hkey) == ERROR_SUCCESS)
340     {
341         WCHAR value[10];
342         DWORD type, size = sizeof(value);
343         if (RegQueryValueExW(hkey, show_systray_valuename, 0, &type, (LPBYTE)&value, &size) == ERROR_SUCCESS)
344         {
345             ret = IS_OPTION_FALSE(value[0]);
346         }
347         RegCloseKey(hkey);
348     }
349     return ret;
350 }
351
352 /* this function creates the the listener window */
353 void initialize_systray(void)
354 {
355     WNDCLASSEX class;
356     static const WCHAR classname[] = /* Shell_TrayWnd */ {'S','h','e','l','l','_','T','r','a','y','W','n','d',0};
357     static const WCHAR winname[]   = /* Wine Systray Listener */
358         {'W','i','n','e',' ','S','y','s','t','r','a','y',' ','L','i','s','t','e','n','e','r',0};
359
360     WINE_TRACE("initiaizing\n");
361
362     hide_systray = is_systray_hidden();
363
364     list_init(&tray.icons);
365
366     /* register the systray listener window class */
367     ZeroMemory(&class, sizeof(class));
368     class.cbSize        = sizeof(class);
369     class.lpfnWndProc   = &listener_wndproc;
370     class.hInstance     = NULL;
371     class.hIcon         = LoadIcon(0, IDI_WINLOGO);
372     class.hCursor       = LoadCursor(0, IDC_ARROW);
373     class.hbrBackground = (HBRUSH) COLOR_WINDOW;
374     class.lpszClassName = (WCHAR *) &classname;
375
376     if (!RegisterClassEx(&class))
377     {
378         WINE_ERR("Could not register SysTray window class\n");
379         return;
380     }
381
382     /* now register the adaptor window class */
383     ZeroMemory(&class, sizeof(class));
384     class.cbSize        = sizeof(class);
385     class.lpfnWndProc   = adaptor_wndproc;
386     class.hInstance     = NULL;
387     class.hIcon         = LoadIcon(0, IDI_WINLOGO);
388     class.hCursor       = LoadCursor(0, IDC_ARROW);
389     class.hbrBackground = (HBRUSH) COLOR_WINDOW;
390     class.lpszClassName = adaptor_classname;
391     class.style         = CS_SAVEBITS | CS_DBLCLKS;
392
393     if (!RegisterClassEx(&class))
394     {
395         WINE_ERR("Could not register adaptor class\n");
396         return;
397     }
398
399     tray.window = CreateWindow(classname, winname, WS_OVERLAPPED,
400                                CW_USEDEFAULT, CW_USEDEFAULT,
401                                0, 0, 0, 0, 0, 0);
402
403     if (!tray.window)
404     {
405         WINE_ERR("Could not create tray window\n");
406         return;
407     }
408 }