2 * Copyright (C) 2004 Mike Hearn, for CodeWeavers
3 * Copyright (C) 2005 Robert Shearman
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.
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.
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
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
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).
34 #define _WIN32_IE 0x500
38 #include <wine/debug.h>
39 #include <wine/list.h>
41 #include "explorer_private.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(systray
);
45 #define IS_OPTION_FALSE(ch) \
46 ((ch) == 'n' || (ch) == 'N' || (ch) == 'f' || (ch) == 'F' || (ch) == '0')
48 static const WCHAR adaptor_classname
[] = /* Adaptor */ {'A','d','a','p','t','o','r',0};
57 /* an individual systray icon, unpacked from the NOTIFYICONDATA and always in unicode */
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
;
69 static struct tray tray
;
70 static BOOL hide_systray
;
74 #define ICON_SIZE GetSystemMetrics(SM_CXSMICON)
75 /* space around icon (forces icon to center of KDE systray area) */
78 static LRESULT WINAPI
adaptor_wndproc(HWND window
, UINT msg
,
79 WPARAM wparam
, LPARAM lparam
)
81 struct icon
*icon
= NULL
;
84 WINE_TRACE("hwnd=%p, msg=0x%x\n", window
, msg
);
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
);
90 icon
= (struct icon
*) GetWindowLongPtr(window
, GWLP_USERDATA
);
101 WINE_TRACE("painting\n");
103 hdc
= BeginPaint(window
, &ps
);
104 GetClientRect(window
, &rc
);
106 /* calculate top so we can deal with arbitrary sized trays */
107 top
= ((rc
.bottom
-rc
.top
)/2) - ((ICON_SIZE
)/2);
109 DrawIconEx(hdc
, (ICON_BORDER
/2), top
, icon
->image
,
110 ICON_SIZE
, ICON_SIZE
, 0, 0, DI_DEFAULTSIZE
|DI_NORMAL
);
112 EndPaint(window
, &ps
);
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
))
131 WINE_WARN("application window was destroyed without removing "
132 "notification icon, removing automatically\n");
133 DestroyWindow(window
);
138 SetWindowLongPtr(window
, GWLP_USERDATA
, 0);
140 list_remove(&icon
->entry
);
141 DestroyIcon(icon
->image
);
142 HeapFree(GetProcessHeap(), 0, icon
);
146 return DefWindowProc(window
, msg
, wparam
, lparam
);
155 static struct icon
*get_icon(HWND owner
, UINT id
)
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;
166 static void set_tooltip(struct icon
*icon
, WCHAR
*szTip
, BOOL modify
)
170 ti
.cbSize
= sizeof(TTTOOLINFOW
);
171 ti
.uFlags
= TTF_SUBCLASS
| TTF_IDISHWND
;
172 ti
.hwnd
= icon
->window
;
174 ti
.uId
= (UINT_PTR
)icon
->window
;
177 ti
.lpReserved
= NULL
;
180 SendMessageW(icon
->tooltip
, TTM_UPDATETIPTEXTW
, 0, (LPARAM
)&ti
);
182 SendMessageW(icon
->tooltip
, TTM_ADDTOOLW
, 0, (LPARAM
)&ti
);
185 static void modify_icon(NOTIFYICONDATAW
*nid
, BOOL modify_tooltip
)
189 WINE_TRACE("id=0x%x, hwnd=%p\n", nid
->uID
, nid
->hWnd
);
191 /* demarshal the request from the NID */
192 icon
= get_icon(nid
->hWnd
, nid
->uID
);
195 WINE_WARN("Invalid icon ID (0x%x) for HWND %p\n", nid
->uID
, nid
->hWnd
);
199 if (nid
->uFlags
& NIF_ICON
)
201 if (icon
->image
) DestroyIcon(icon
->image
);
202 icon
->image
= CopyIcon(nid
->hIcon
);
204 RedrawWindow(icon
->window
, NULL
, NULL
, RDW_ERASE
| RDW_INVALIDATE
| RDW_UPDATENOW
);
207 if (nid
->uFlags
& NIF_MESSAGE
)
209 icon
->callback_message
= nid
->uCallbackMessage
;
211 if (nid
->uFlags
& NIF_TIP
)
213 set_tooltip(icon
, nid
->szTip
, modify_tooltip
);
215 if (nid
->uFlags
& NIF_INFO
&& nid
->cbSize
>= NOTIFYICONDATAA_V2_SIZE
)
217 WINE_FIXME("balloon tip title %s, message %s\n", wine_dbgstr_w(nid
->szInfoTitle
), wine_dbgstr_w(nid
->szInfo
));
221 static void add_icon(NOTIFYICONDATAW
*nid
)
225 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};
226 static BOOL tooltps_initialized
= FALSE
;
228 WINE_TRACE("id=0x%x, hwnd=%p\n", nid
->uID
, nid
->hWnd
);
230 if ((icon
= get_icon(nid
->hWnd
, nid
->uID
)))
232 WINE_WARN("duplicate tray icon add, buggy app?\n");
236 if (!(icon
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*icon
))))
238 WINE_ERR("out of memory\n");
243 icon
->owner
= nid
->hWnd
;
248 rect
.right
= GetSystemMetrics(SM_CXSMICON
) + ICON_BORDER
;
249 rect
.bottom
= GetSystemMetrics(SM_CYSMICON
) + ICON_BORDER
;
250 AdjustWindowRect(&rect
, WS_CLIPSIBLINGS
| WS_CAPTION
, FALSE
);
252 /* create the adaptor window */
253 icon
->window
= CreateWindowEx(WS_EX_TRAYWINDOW
, adaptor_classname
,
255 WS_CLIPSIBLINGS
| WS_CAPTION
,
256 CW_USEDEFAULT
, CW_USEDEFAULT
,
257 rect
.right
- rect
.left
,
258 rect
.bottom
- rect
.top
,
259 NULL
, NULL
, NULL
, icon
);
262 ShowWindow(icon
->window
, SW_SHOWNA
);
264 /* create icon tooltip */
266 /* Register tooltip classes if this is the first icon */
267 if (!tooltps_initialized
)
269 INITCOMMONCONTROLSEX init_tooltip
;
271 init_tooltip
.dwSize
= sizeof(INITCOMMONCONTROLSEX
);
272 init_tooltip
.dwICC
= ICC_TAB_CLASSES
;
274 InitCommonControlsEx(&init_tooltip
);
275 tooltps_initialized
= TRUE
;
278 icon
->tooltip
= CreateWindowEx(WS_EX_TOPMOST
, TOOLTIPS_CLASS
, NULL
,
279 WS_POPUP
| TTS_ALWAYSTIP
,
280 CW_USEDEFAULT
, CW_USEDEFAULT
,
281 CW_USEDEFAULT
, CW_USEDEFAULT
,
282 icon
->window
, NULL
, NULL
, NULL
);
284 list_add_tail(&tray
.icons
, &icon
->entry
);
286 modify_icon(nid
, FALSE
);
289 static void delete_icon(const NOTIFYICONDATAW
*nid
)
291 struct icon
*icon
= get_icon(nid
->hWnd
, nid
->uID
);
293 WINE_TRACE("id=0x%x, hwnd=%p\n", nid
->uID
, nid
->hWnd
);
297 WINE_ERR("invalid tray icon ID specified: %u\n", nid
->uID
);
301 DestroyWindow(icon
->tooltip
);
302 DestroyWindow(icon
->window
);
305 static void handle_incoming(HWND hwndSource
, COPYDATASTRUCT
*cds
)
310 if (cds
->cbData
< NOTIFYICONDATAW_V1_SIZE
) return;
311 cbSize
= ((PNOTIFYICONDATA
)cds
->lpData
)->cbSize
;
312 if (cbSize
< NOTIFYICONDATAW_V1_SIZE
) return;
314 ZeroMemory(&nid
, sizeof(nid
));
315 memcpy(&nid
, cds
->lpData
, min(sizeof(nid
), cbSize
));
317 /* FIXME: if statement only needed because we don't support interprocess
319 if ((nid
.uFlags
& NIF_ICON
) && (cds
->cbData
>= nid
.cbSize
+ 2 * sizeof(BITMAP
)))
325 const char *buffer
= cds
->lpData
;
327 buffer
+= nid
.cbSize
;
329 memcpy(&bmMask
, buffer
, sizeof(bmMask
));
330 buffer
+= sizeof(bmMask
);
331 memcpy(&bmColour
, buffer
, sizeof(bmColour
));
332 buffer
+= sizeof(bmColour
);
334 cbMaskBits
= (bmMask
.bmPlanes
* bmMask
.bmWidth
* bmMask
.bmHeight
* bmMask
.bmBitsPixel
) / 8;
335 cbColourBits
= (bmColour
.bmPlanes
* bmColour
.bmWidth
* bmColour
.bmHeight
* bmColour
.bmBitsPixel
) / 8;
337 if (cds
->cbData
< nid
.cbSize
+ 2 * sizeof(BITMAP
) + cbMaskBits
+ cbColourBits
)
339 WINE_ERR("buffer underflow\n");
344 if ((bmColour
.bmWidth
!= bmMask
.bmWidth
) || (bmColour
.bmHeight
!= bmMask
.bmHeight
))
346 WINE_ERR("colour and mask bitmaps aren't consistent\n");
350 nid
.hIcon
= CreateIcon(NULL
, bmColour
.bmWidth
, bmColour
.bmHeight
,
351 bmColour
.bmPlanes
, bmColour
.bmBitsPixel
,
352 buffer
, buffer
+ cbMaskBits
);
364 modify_icon(&nid
, TRUE
);
367 WINE_FIXME("unhandled tray message: %ld\n", cds
->dwData
);
371 /* FIXME: if statement only needed because we don't support interprocess
373 if (nid
.uFlags
& NIF_ICON
)
374 DestroyIcon(nid
.hIcon
);
377 static LRESULT WINAPI
listener_wndproc(HWND window
, UINT msg
,
378 WPARAM wparam
, LPARAM lparam
)
380 if (msg
== WM_COPYDATA
)
381 handle_incoming((HWND
)wparam
, (COPYDATASTRUCT
*)lparam
);
383 return DefWindowProc(window
, msg
, wparam
, lparam
);
387 static BOOL
is_systray_hidden(void)
389 const WCHAR show_systray_keyname
[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e','\\',
390 'X','1','1',' ','D','r','i','v','e','r',0};
391 const WCHAR show_systray_valuename
[] = {'S','h','o','w','S','y','s','t','r','a','y',0};
395 /* @@ Wine registry key: HKCU\Software\Wine\X11 Driver */
396 if (RegOpenKeyW(HKEY_CURRENT_USER
, show_systray_keyname
, &hkey
) == ERROR_SUCCESS
)
399 DWORD type
, size
= sizeof(value
);
400 if (RegQueryValueExW(hkey
, show_systray_valuename
, 0, &type
, (LPBYTE
)&value
, &size
) == ERROR_SUCCESS
)
402 ret
= IS_OPTION_FALSE(value
[0]);
409 /* this function creates the listener window */
410 void initialize_systray(void)
413 static const WCHAR classname
[] = /* Shell_TrayWnd */ {'S','h','e','l','l','_','T','r','a','y','W','n','d',0};
414 static const WCHAR winname
[] = /* Wine Systray Listener */
415 {'W','i','n','e',' ','S','y','s','t','r','a','y',' ','L','i','s','t','e','n','e','r',0};
417 WINE_TRACE("initiaizing\n");
419 hide_systray
= is_systray_hidden();
421 list_init(&tray
.icons
);
423 /* register the systray listener window class */
424 ZeroMemory(&class, sizeof(class));
425 class.cbSize
= sizeof(class);
426 class.lpfnWndProc
= &listener_wndproc
;
427 class.hInstance
= NULL
;
428 class.hIcon
= LoadIcon(0, IDI_WINLOGO
);
429 class.hCursor
= LoadCursor(0, IDC_ARROW
);
430 class.hbrBackground
= (HBRUSH
) COLOR_WINDOW
;
431 class.lpszClassName
= (WCHAR
*) &classname
;
433 if (!RegisterClassEx(&class))
435 WINE_ERR("Could not register SysTray window class\n");
439 /* now register the adaptor window class */
440 ZeroMemory(&class, sizeof(class));
441 class.cbSize
= sizeof(class);
442 class.lpfnWndProc
= adaptor_wndproc
;
443 class.hInstance
= NULL
;
444 class.hIcon
= LoadIcon(0, IDI_WINLOGO
);
445 class.hCursor
= LoadCursor(0, IDC_ARROW
);
446 class.hbrBackground
= (HBRUSH
) COLOR_WINDOW
;
447 class.lpszClassName
= adaptor_classname
;
448 class.style
= CS_SAVEBITS
| CS_DBLCLKS
;
450 if (!RegisterClassEx(&class))
452 WINE_ERR("Could not register adaptor class\n");
456 tray
.window
= CreateWindow(classname
, winname
, WS_OVERLAPPED
,
457 CW_USEDEFAULT
, CW_USEDEFAULT
,
462 WINE_ERR("Could not create tray window\n");