1 /* Unit tests for appbars
3 * Copyright 2008 Vincent Povirk for CodeWeavers
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
24 #include "wine/test.h"
26 #define MSG_APPBAR WM_APP
28 static const CHAR testwindow_class
[] = "testwindow";
30 static HMONITOR (WINAPI
*pMonitorFromWindow
)(HWND
, DWORD
);
32 typedef BOOL (*boolean_function
)(void);
34 struct testwindow_info
44 static struct testwindow_info windows
[3];
46 static int expected_bottom
;
48 static void testwindow_setpos(HWND hwnd
)
50 struct testwindow_info
* info
= (struct testwindow_info
*)GetWindowLongPtr(hwnd
, GWLP_USERDATA
);
54 ok(info
!= NULL
, "got unexpected ABN_POSCHANGED notification\n");
56 if (!info
|| !info
->registered
)
61 if (info
->to_be_deleted
)
63 win_skip("Some Win95 and NT4 systems send messages to removed taskbars\n");
67 abd
.cbSize
= sizeof(abd
);
69 abd
.uEdge
= info
->edge
;
70 abd
.rc
= info
->desired_rect
;
71 ret
= SHAppBarMessage(ABM_QUERYPOS
, &abd
);
72 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
76 ok(info
->desired_rect
.top
== abd
.rc
.top
, "ABM_QUERYPOS changed top of rect from %i to %i\n", info
->desired_rect
.top
, abd
.rc
.top
);
77 abd
.rc
.top
= abd
.rc
.bottom
- (info
->desired_rect
.bottom
- info
->desired_rect
.top
);
80 ok(info
->desired_rect
.right
== abd
.rc
.right
, "ABM_QUERYPOS changed right of rect from %i to %i\n", info
->desired_rect
.right
, abd
.rc
.right
);
81 abd
.rc
.right
= abd
.rc
.left
+ (info
->desired_rect
.right
- info
->desired_rect
.left
);
84 ok(info
->desired_rect
.left
== abd
.rc
.left
, "ABM_QUERYPOS changed left of rect from %i to %i\n", info
->desired_rect
.left
, abd
.rc
.left
);
85 abd
.rc
.left
= abd
.rc
.right
- (info
->desired_rect
.right
- info
->desired_rect
.left
);
88 ok(info
->desired_rect
.bottom
== abd
.rc
.bottom
, "ABM_QUERYPOS changed bottom of rect from %i to %i\n", info
->desired_rect
.bottom
, abd
.rc
.bottom
);
89 abd
.rc
.bottom
= abd
.rc
.top
+ (info
->desired_rect
.bottom
- info
->desired_rect
.top
);
93 ret
= SHAppBarMessage(ABM_SETPOS
, &abd
);
94 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
96 info
->allocated_rect
= abd
.rc
;
97 MoveWindow(hwnd
, abd
.rc
.left
, abd
.rc
.top
, abd
.rc
.right
-abd
.rc
.left
, abd
.rc
.bottom
-abd
.rc
.top
, TRUE
);
100 static LRESULT CALLBACK
testwindow_wndproc(HWND hwnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
109 testwindow_setpos(hwnd
);
116 return DefWindowProc(hwnd
, msg
, wparam
, lparam
);
119 /* process pending messages until a condition is true or 3 seconds pass */
120 static void do_events_until(boolean_function test
)
126 timerid
= SetTimer(0, 0, 3000, NULL
);
130 while (PeekMessageA(&msg
, NULL
, 0, 0, PM_REMOVE
))
132 if (msg
.hwnd
== 0 && msg
.message
== WM_TIMER
&& msg
.wParam
== timerid
)
134 TranslateMessage(&msg
);
135 DispatchMessageA(&msg
);
137 if (timedout
|| test())
142 KillTimer(0, timerid
);
145 /* process any pending messages */
146 static void do_events(void)
150 while (PeekMessageA(&msg
, NULL
, 0, 0, PM_REMOVE
))
152 TranslateMessage(&msg
);
153 DispatchMessageA(&msg
);
157 static BOOL
no_appbars_intersect(void)
164 for (j
=i
+1; j
<3; j
++)
166 if (windows
[i
].registered
&& windows
[j
].registered
&&
167 IntersectRect(&rc
, &windows
[i
].allocated_rect
, &windows
[j
].allocated_rect
))
174 static BOOL
got_expected_bottom(void)
176 return (no_appbars_intersect() && windows
[1].allocated_rect
.bottom
== expected_bottom
);
179 static void register_testwindow_class(void)
183 ZeroMemory(&cls
, sizeof(cls
));
184 cls
.cbSize
= sizeof(cls
);
186 cls
.lpfnWndProc
= testwindow_wndproc
;
187 cls
.hInstance
= NULL
;
188 cls
.hCursor
= LoadCursor(0, IDC_ARROW
);
189 cls
.hbrBackground
= (HBRUSH
) COLOR_WINDOW
;
190 cls
.lpszClassName
= testwindow_class
;
192 RegisterClassExA(&cls
);
195 #define test_window_rects(a, b) \
196 ok(!IntersectRect(&rc, &windows[a].allocated_rect, &windows[b].allocated_rect), \
197 "rectangles intersect (%i,%i,%i,%i)/(%i,%i,%i,%i)\n", \
198 windows[a].allocated_rect.left, windows[a].allocated_rect.top, windows[a].allocated_rect.right, windows[a].allocated_rect.bottom, \
199 windows[b].allocated_rect.left, windows[b].allocated_rect.top, windows[b].allocated_rect.right, windows[b].allocated_rect.bottom)
201 static void test_setpos(void)
205 int screen_width
, screen_height
;
209 screen_width
= GetSystemMetrics(SM_CXSCREEN
);
210 screen_height
= GetSystemMetrics(SM_CYSCREEN
);
212 /* create and register windows[0] */
213 windows
[0].hwnd
= CreateWindowExA(WS_EX_TOOLWINDOW
|WS_EX_TOPMOST
,
214 testwindow_class
, testwindow_class
, WS_POPUP
|WS_VISIBLE
, 0, 0, 0, 0,
215 NULL
, NULL
, NULL
, NULL
);
216 ok(windows
[0].hwnd
!= NULL
, "couldn't create window\n");
218 abd
.cbSize
= sizeof(abd
);
219 abd
.hWnd
= windows
[0].hwnd
;
220 abd
.uCallbackMessage
= MSG_APPBAR
;
221 ret
= SHAppBarMessage(ABM_NEW
, &abd
);
222 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
224 /* ABM_NEW should return FALSE if the window is already registered */
225 ret
= SHAppBarMessage(ABM_NEW
, &abd
);
226 ok(ret
== FALSE
, "SHAppBarMessage returned %i\n", ret
);
229 /* dock windows[0] to the bottom of the screen */
230 windows
[0].registered
= TRUE
;
231 windows
[0].to_be_deleted
= FALSE
;
232 windows
[0].edge
= ABE_BOTTOM
;
233 windows
[0].desired_rect
.left
= 0;
234 windows
[0].desired_rect
.right
= screen_width
;
235 windows
[0].desired_rect
.top
= screen_height
- 15;
236 windows
[0].desired_rect
.bottom
= screen_height
;
237 SetWindowLongPtr(windows
[0].hwnd
, GWLP_USERDATA
, (LONG_PTR
)&windows
[0]);
238 testwindow_setpos(windows
[0].hwnd
);
241 /* create and register windows[1] */
242 windows
[1].hwnd
= CreateWindowExA(WS_EX_TOOLWINDOW
|WS_EX_TOPMOST
,
243 testwindow_class
, testwindow_class
, WS_POPUP
|WS_VISIBLE
, 0, 0, 0, 0,
244 NULL
, NULL
, NULL
, NULL
);
245 ok(windows
[1].hwnd
!= NULL
, "couldn't create window\n");
246 abd
.hWnd
= windows
[1].hwnd
;
247 ret
= SHAppBarMessage(ABM_NEW
, &abd
);
248 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
250 /* dock windows[1] to the bottom of the screen */
251 windows
[1].registered
= TRUE
;
252 windows
[1].to_be_deleted
= FALSE
;
253 windows
[1].edge
= ABE_BOTTOM
;
254 windows
[1].desired_rect
.left
= 0;
255 windows
[1].desired_rect
.right
= screen_width
;
256 windows
[1].desired_rect
.top
= screen_height
- 10;
257 windows
[1].desired_rect
.bottom
= screen_height
;
258 SetWindowLongPtr(windows
[1].hwnd
, GWLP_USERDATA
, (LONG_PTR
)&windows
[1]);
259 testwindow_setpos(windows
[1].hwnd
);
261 /* the windows are adjusted to they don't overlap */
262 do_events_until(no_appbars_intersect
);
263 test_window_rects(0, 1);
265 /* make windows[0] larger, forcing windows[1] to move out of its way */
266 windows
[0].desired_rect
.top
= screen_height
- 20;
267 testwindow_setpos(windows
[0].hwnd
);
268 do_events_until(no_appbars_intersect
);
269 test_window_rects(0, 1);
271 /* create and register windows[2] */
272 windows
[2].hwnd
= CreateWindowExA(WS_EX_TOOLWINDOW
|WS_EX_TOPMOST
,
273 testwindow_class
, testwindow_class
, WS_POPUP
|WS_VISIBLE
, 0, 0, 0, 0,
274 NULL
, NULL
, NULL
, NULL
);
275 ok(windows
[2].hwnd
!= NULL
, "couldn't create window\n");
278 abd
.hWnd
= windows
[2].hwnd
;
279 ret
= SHAppBarMessage(ABM_NEW
, &abd
);
280 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
282 /* dock windows[2] to the bottom of the screen */
283 windows
[2].registered
= TRUE
;
284 windows
[2].to_be_deleted
= FALSE
;
285 windows
[2].edge
= ABE_BOTTOM
;
286 windows
[2].desired_rect
.left
= 0;
287 windows
[2].desired_rect
.right
= screen_width
;
288 windows
[2].desired_rect
.top
= screen_height
- 10;
289 windows
[2].desired_rect
.bottom
= screen_height
;
290 SetWindowLongPtr(windows
[2].hwnd
, GWLP_USERDATA
, (LONG_PTR
)&windows
[2]);
291 testwindow_setpos(windows
[2].hwnd
);
293 do_events_until(no_appbars_intersect
);
294 test_window_rects(0, 1);
295 test_window_rects(0, 2);
296 test_window_rects(1, 2);
298 /* move windows[2] to the right side of the screen */
299 windows
[2].edge
= ABE_RIGHT
;
300 windows
[2].desired_rect
.left
= screen_width
- 15;
301 windows
[2].desired_rect
.right
= screen_width
;
302 windows
[2].desired_rect
.top
= 0;
303 windows
[2].desired_rect
.bottom
= screen_height
;
304 testwindow_setpos(windows
[2].hwnd
);
306 do_events_until(no_appbars_intersect
);
307 test_window_rects(0, 1);
308 test_window_rects(0, 2);
309 test_window_rects(1, 2);
311 /* move windows[1] to the top of the screen */
312 windows
[1].edge
= ABE_TOP
;
313 windows
[1].desired_rect
.left
= 0;
314 windows
[1].desired_rect
.right
= screen_width
;
315 windows
[1].desired_rect
.top
= 0;
316 windows
[1].desired_rect
.bottom
= 15;
317 testwindow_setpos(windows
[1].hwnd
);
319 do_events_until(no_appbars_intersect
);
320 test_window_rects(0, 1);
321 test_window_rects(0, 2);
322 test_window_rects(1, 2);
324 /* move windows[1] back to the bottom of the screen */
325 windows
[1].edge
= ABE_BOTTOM
;
326 windows
[1].desired_rect
.left
= 0;
327 windows
[1].desired_rect
.right
= screen_width
;
328 windows
[1].desired_rect
.top
= screen_height
- 10;
329 windows
[1].desired_rect
.bottom
= screen_height
;
330 testwindow_setpos(windows
[1].hwnd
);
332 do_events_until(no_appbars_intersect
);
333 test_window_rects(0, 1);
334 test_window_rects(0, 2);
335 test_window_rects(1, 2);
337 /* removing windows[0] will cause windows[1] to move down into its space */
338 expected_bottom
= max(windows
[0].allocated_rect
.bottom
, windows
[1].allocated_rect
.bottom
);
339 org_bottom1
= windows
[1].allocated_rect
.bottom
;
340 ok(windows
[0].allocated_rect
.bottom
> windows
[1].allocated_rect
.bottom
,
341 "Expected windows[0] to be lower than windows[1]\n");
343 abd
.hWnd
= windows
[0].hwnd
;
344 windows
[0].to_be_deleted
= TRUE
;
345 ret
= SHAppBarMessage(ABM_REMOVE
, &abd
);
346 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
347 windows
[0].registered
= FALSE
;
348 DestroyWindow(windows
[0].hwnd
);
350 do_events_until(got_expected_bottom
);
352 if (windows
[1].allocated_rect
.bottom
== org_bottom1
)
353 win_skip("Some broken Vista boxes don't move the higher appbar down\n");
355 ok(windows
[1].allocated_rect
.bottom
== expected_bottom
,
356 "windows[1]'s bottom is %i, expected %i\n",
357 windows
[1].allocated_rect
.bottom
, expected_bottom
);
359 test_window_rects(1, 2);
361 /* remove the other windows */
362 abd
.hWnd
= windows
[1].hwnd
;
363 windows
[1].to_be_deleted
= TRUE
;
364 ret
= SHAppBarMessage(ABM_REMOVE
, &abd
);
365 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
366 windows
[1].registered
= FALSE
;
367 DestroyWindow(windows
[1].hwnd
);
369 abd
.hWnd
= windows
[2].hwnd
;
370 windows
[2].to_be_deleted
= TRUE
;
371 ret
= SHAppBarMessage(ABM_REMOVE
, &abd
);
372 ok(ret
== TRUE
, "SHAppBarMessage returned %i\n", ret
);
373 windows
[2].registered
= FALSE
;
374 DestroyWindow(windows
[2].hwnd
);
377 static void test_appbarget(void)
380 HWND hwnd
, foregnd
, unset_hwnd
;
383 memset(&abd
, 0xcc, sizeof(abd
));
384 memset(&unset_hwnd
, 0xcc, sizeof(unset_hwnd
));
385 abd
.cbSize
= sizeof(abd
);
386 abd
.uEdge
= ABE_BOTTOM
;
388 hwnd
= (HWND
)SHAppBarMessage(ABM_GETAUTOHIDEBAR
, &abd
);
389 ok(hwnd
== NULL
|| IsWindow(hwnd
), "ret %p which is not a window\n", hwnd
);
390 ok(abd
.hWnd
== unset_hwnd
, "hWnd overwritten %p\n",abd
.hWnd
);
392 if (!pMonitorFromWindow
)
394 win_skip("MonitorFromWindow is not available\n");
398 /* Presumably one can pass a hwnd with ABM_GETAUTOHIDEBAR to specify a monitor.
399 Pass the foreground window and check */
400 foregnd
= GetForegroundWindow();
404 hwnd
= (HWND
)SHAppBarMessage(ABM_GETAUTOHIDEBAR
, &abd
);
405 ok(hwnd
== NULL
|| IsWindow(hwnd
), "ret %p which is not a window\n", hwnd
);
406 ok(abd
.hWnd
== foregnd
, "hWnd overwritten\n");
409 HMONITOR appbar_mon
, foregnd_mon
;
410 appbar_mon
= pMonitorFromWindow(hwnd
, MONITOR_DEFAULTTONEAREST
);
411 foregnd_mon
= pMonitorFromWindow(foregnd
, MONITOR_DEFAULTTONEAREST
);
412 ok(appbar_mon
== foregnd_mon
, "Windows on different monitors\n");
417 memset(&abd
, 0xcc, sizeof(abd
));
418 abd
.cbSize
= sizeof(abd
);
419 ret
= SHAppBarMessage(ABM_GETTASKBARPOS
, &abd
);
422 ok(abd
.hWnd
== (HWND
)0xcccccccc, "hWnd overwritten\n");
423 ok(abd
.uEdge
<= ABE_BOTTOM
||
424 broken(abd
.uEdge
== 0xcccccccc), /* Some Win95 and NT4 */
425 "uEdge not returned\n");
426 ok(abd
.rc
.left
!= 0xcccccccc, "rc not updated\n");
436 huser32
= GetModuleHandleA("user32.dll");
437 pMonitorFromWindow
= (void*)GetProcAddress(huser32
, "MonitorFromWindow");
439 register_testwindow_class();