push 98299ad1251baa2727aab065c47e9d935978c732
[wine/hacks.git] / dlls / user32 / tests / win.c
blobc72c114d40898d9e9b5042ebacb104a1f19e938a
1 /*
2 * Unit tests for window handling
4 * Copyright 2002 Bill Medland
5 * Copyright 2002 Alexandre Julliard
6 * Copyright 2003 Dmitry Timoshkov
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.
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.
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
23 /* To get ICON_SMALL2 with the MSVC headers */
24 #define _WIN32_WINNT 0x0501
26 #include <assert.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stdio.h>
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
36 #include "wine/test.h"
38 #ifndef SPI_GETDESKWALLPAPER
39 #define SPI_GETDESKWALLPAPER 0x0073
40 #endif
42 #define LONG_PTR INT_PTR
43 #define ULONG_PTR UINT_PTR
45 void dump_region(HRGN hrgn);
47 static HWND (WINAPI *pGetAncestor)(HWND,UINT);
48 static BOOL (WINAPI *pGetWindowInfo)(HWND,WINDOWINFO*);
49 static UINT (WINAPI *pGetWindowModuleFileNameA)(HWND,LPSTR,UINT);
50 static BOOL (WINAPI *pGetLayeredWindowAttributes)(HWND,COLORREF*,BYTE*,DWORD*);
51 static BOOL (WINAPI *pSetLayeredWindowAttributes)(HWND,COLORREF,BYTE,DWORD);
52 static BOOL (WINAPI *pGetMonitorInfoA)(HMONITOR,LPMONITORINFO);
53 static HMONITOR (WINAPI *pMonitorFromPoint)(POINT,DWORD);
55 static BOOL test_lbuttondown_flag;
56 static HWND hwndMessage;
57 static HWND hwndMain, hwndMain2;
58 static HHOOK hhook;
60 static const char* szAWRClass = "Winsize";
61 static HMENU hmenu;
62 static DWORD our_pid;
64 #define COUNTOF(arr) (sizeof(arr)/sizeof(arr[0]))
66 static void dump_minmax_info( const MINMAXINFO *minmax )
68 trace("Reserved=%d,%d MaxSize=%d,%d MaxPos=%d,%d MinTrack=%d,%d MaxTrack=%d,%d\n",
69 minmax->ptReserved.x, minmax->ptReserved.y,
70 minmax->ptMaxSize.x, minmax->ptMaxSize.y,
71 minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
72 minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
73 minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
76 /* try to make sure pending X events have been processed before continuing */
77 static void flush_events( BOOL remove_messages )
79 MSG msg;
80 int diff = 200;
81 int min_timeout = 100;
82 DWORD time = GetTickCount() + diff;
84 while (diff > 0)
86 if (MsgWaitForMultipleObjects( 0, NULL, FALSE, min_timeout, QS_ALLINPUT ) == WAIT_TIMEOUT) break;
87 if (remove_messages)
88 while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessage( &msg );
89 diff = time - GetTickCount();
90 min_timeout = 50;
94 /* check the values returned by the various parent/owner functions on a given window */
95 static void check_parents( HWND hwnd, HWND ga_parent, HWND gwl_parent, HWND get_parent,
96 HWND gw_owner, HWND ga_root, HWND ga_root_owner )
98 HWND res;
100 if (pGetAncestor)
102 res = pGetAncestor( hwnd, GA_PARENT );
103 ok( res == ga_parent, "Wrong result for GA_PARENT %p expected %p\n", res, ga_parent );
105 res = (HWND)GetWindowLongPtrA( hwnd, GWLP_HWNDPARENT );
106 ok( res == gwl_parent, "Wrong result for GWL_HWNDPARENT %p expected %p\n", res, gwl_parent );
107 res = GetParent( hwnd );
108 ok( res == get_parent, "Wrong result for GetParent %p expected %p\n", res, get_parent );
109 res = GetWindow( hwnd, GW_OWNER );
110 ok( res == gw_owner, "Wrong result for GW_OWNER %p expected %p\n", res, gw_owner );
111 if (pGetAncestor)
113 res = pGetAncestor( hwnd, GA_ROOT );
114 ok( res == ga_root, "Wrong result for GA_ROOT %p expected %p\n", res, ga_root );
115 res = pGetAncestor( hwnd, GA_ROOTOWNER );
116 ok( res == ga_root_owner, "Wrong result for GA_ROOTOWNER %p expected %p\n", res, ga_root_owner );
120 static BOOL CALLBACK EnumChildProc( HWND hwndChild, LPARAM lParam)
122 (*(LPINT)lParam)++;
123 trace("EnumChildProc on %p\n", hwndChild);
124 if (*(LPINT)lParam > 1) return FALSE;
125 return TRUE;
128 /* will search for the given window */
129 static BOOL CALLBACK EnumChildProc1( HWND hwndChild, LPARAM lParam)
131 trace("EnumChildProc1 on %p\n", hwndChild);
132 if ((HWND)lParam == hwndChild) return FALSE;
133 return TRUE;
136 static HWND create_tool_window( LONG style, HWND parent )
138 HWND ret = CreateWindowExA(0, "ToolWindowClass", "Tool window 1", style,
139 0, 0, 100, 100, parent, 0, 0, NULL );
140 ok( ret != 0, "Creation failed\n" );
141 return ret;
144 /* test parent and owner values for various combinations */
145 static void test_parent_owner(void)
147 LONG style;
148 HWND test, owner, ret;
149 HWND desktop = GetDesktopWindow();
150 HWND child = create_tool_window( WS_CHILD, hwndMain );
151 INT numChildren;
153 trace( "main window %p main2 %p desktop %p child %p\n", hwndMain, hwndMain2, desktop, child );
155 /* child without parent, should fail */
156 SetLastError(0xdeadbeef);
157 test = CreateWindowExA(0, "ToolWindowClass", "Tool window 1",
158 WS_CHILD, 0, 0, 100, 100, 0, 0, 0, NULL );
159 ok( !test, "WS_CHILD without parent created\n" );
160 ok( GetLastError() == ERROR_TLW_WITH_WSCHILD ||
161 broken(GetLastError() == 0xdeadbeef), /* win9x */
162 "CreateWindowExA error %u\n", GetLastError() );
164 /* desktop window */
165 check_parents( desktop, 0, 0, 0, 0, 0, 0 );
166 style = GetWindowLongA( desktop, GWL_STYLE );
167 ok( !SetWindowLongA( desktop, GWL_STYLE, WS_POPUP ), "Set GWL_STYLE on desktop succeeded\n" );
168 ok( !SetWindowLongA( desktop, GWL_STYLE, 0 ), "Set GWL_STYLE on desktop succeeded\n" );
169 ok( GetWindowLongA( desktop, GWL_STYLE ) == style, "Desktop style changed\n" );
171 /* normal child window */
172 test = create_tool_window( WS_CHILD, hwndMain );
173 trace( "created child %p\n", test );
174 check_parents( test, hwndMain, hwndMain, hwndMain, 0, hwndMain, hwndMain );
175 SetWindowLongA( test, GWL_STYLE, 0 );
176 check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
177 SetWindowLongA( test, GWL_STYLE, WS_POPUP );
178 check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
179 SetWindowLongA( test, GWL_STYLE, WS_POPUP|WS_CHILD );
180 check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
181 SetWindowLongA( test, GWL_STYLE, WS_CHILD );
182 DestroyWindow( test );
184 /* normal child window with WS_MAXIMIZE */
185 test = create_tool_window( WS_CHILD | WS_MAXIMIZE, hwndMain );
186 DestroyWindow( test );
188 /* normal child window with WS_THICKFRAME */
189 test = create_tool_window( WS_CHILD | WS_THICKFRAME, hwndMain );
190 DestroyWindow( test );
192 /* popup window with WS_THICKFRAME */
193 test = create_tool_window( WS_POPUP | WS_THICKFRAME, hwndMain );
194 DestroyWindow( test );
196 /* child of desktop */
197 test = create_tool_window( WS_CHILD, desktop );
198 trace( "created child of desktop %p\n", test );
199 check_parents( test, desktop, 0, desktop, 0, test, desktop );
200 SetWindowLongA( test, GWL_STYLE, WS_POPUP );
201 check_parents( test, desktop, 0, 0, 0, test, test );
202 SetWindowLongA( test, GWL_STYLE, 0 );
203 check_parents( test, desktop, 0, 0, 0, test, test );
204 DestroyWindow( test );
206 /* child of desktop with WS_MAXIMIZE */
207 test = create_tool_window( WS_CHILD | WS_MAXIMIZE, desktop );
208 DestroyWindow( test );
210 /* child of desktop with WS_MINIMIZE */
211 test = create_tool_window( WS_CHILD | WS_MINIMIZE, desktop );
212 DestroyWindow( test );
214 /* child of child */
215 test = create_tool_window( WS_CHILD, child );
216 trace( "created child of child %p\n", test );
217 check_parents( test, child, child, child, 0, hwndMain, hwndMain );
218 SetWindowLongA( test, GWL_STYLE, 0 );
219 check_parents( test, child, child, 0, 0, hwndMain, test );
220 SetWindowLongA( test, GWL_STYLE, WS_POPUP );
221 check_parents( test, child, child, 0, 0, hwndMain, test );
222 DestroyWindow( test );
224 /* child of child with WS_MAXIMIZE */
225 test = create_tool_window( WS_CHILD | WS_MAXIMIZE, child );
226 DestroyWindow( test );
228 /* child of child with WS_MINIMIZE */
229 test = create_tool_window( WS_CHILD | WS_MINIMIZE, child );
230 DestroyWindow( test );
232 /* not owned top-level window */
233 test = create_tool_window( 0, 0 );
234 trace( "created top-level %p\n", test );
235 check_parents( test, desktop, 0, 0, 0, test, test );
236 SetWindowLongA( test, GWL_STYLE, WS_POPUP );
237 check_parents( test, desktop, 0, 0, 0, test, test );
238 SetWindowLongA( test, GWL_STYLE, WS_CHILD );
239 check_parents( test, desktop, 0, desktop, 0, test, desktop );
240 DestroyWindow( test );
242 /* not owned top-level window with WS_MAXIMIZE */
243 test = create_tool_window( WS_MAXIMIZE, 0 );
244 DestroyWindow( test );
246 /* owned top-level window */
247 test = create_tool_window( 0, hwndMain );
248 trace( "created owned top-level %p\n", test );
249 check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
250 SetWindowLongA( test, GWL_STYLE, WS_POPUP );
251 check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
252 SetWindowLongA( test, GWL_STYLE, WS_CHILD );
253 check_parents( test, desktop, hwndMain, desktop, hwndMain, test, desktop );
254 DestroyWindow( test );
256 /* owned top-level window with WS_MAXIMIZE */
257 test = create_tool_window( WS_MAXIMIZE, hwndMain );
258 DestroyWindow( test );
260 /* not owned popup */
261 test = create_tool_window( WS_POPUP, 0 );
262 trace( "created popup %p\n", test );
263 check_parents( test, desktop, 0, 0, 0, test, test );
264 SetWindowLongA( test, GWL_STYLE, WS_CHILD );
265 check_parents( test, desktop, 0, desktop, 0, test, desktop );
266 SetWindowLongA( test, GWL_STYLE, 0 );
267 check_parents( test, desktop, 0, 0, 0, test, test );
268 DestroyWindow( test );
270 /* not owned popup with WS_MAXIMIZE */
271 test = create_tool_window( WS_POPUP | WS_MAXIMIZE, 0 );
272 DestroyWindow( test );
274 /* owned popup */
275 test = create_tool_window( WS_POPUP, hwndMain );
276 trace( "created owned popup %p\n", test );
277 check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
278 SetWindowLongA( test, GWL_STYLE, WS_CHILD );
279 check_parents( test, desktop, hwndMain, desktop, hwndMain, test, desktop );
280 SetWindowLongA( test, GWL_STYLE, 0 );
281 check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
282 DestroyWindow( test );
284 /* owned popup with WS_MAXIMIZE */
285 test = create_tool_window( WS_POPUP | WS_MAXIMIZE, hwndMain );
286 DestroyWindow( test );
288 /* top-level window owned by child (same as owned by top-level) */
289 test = create_tool_window( 0, child );
290 trace( "created top-level owned by child %p\n", test );
291 check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
292 DestroyWindow( test );
294 /* top-level window owned by child (same as owned by top-level) with WS_MAXIMIZE */
295 test = create_tool_window( WS_MAXIMIZE, child );
296 DestroyWindow( test );
298 /* popup owned by desktop (same as not owned) */
299 test = create_tool_window( WS_POPUP, desktop );
300 trace( "created popup owned by desktop %p\n", test );
301 check_parents( test, desktop, 0, 0, 0, test, test );
302 DestroyWindow( test );
304 /* popup owned by desktop (same as not owned) with WS_MAXIMIZE */
305 test = create_tool_window( WS_POPUP | WS_MAXIMIZE, desktop );
306 DestroyWindow( test );
308 /* popup owned by child (same as owned by top-level) */
309 test = create_tool_window( WS_POPUP, child );
310 trace( "created popup owned by child %p\n", test );
311 check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
312 DestroyWindow( test );
314 /* popup owned by child (same as owned by top-level) with WS_MAXIMIZE */
315 test = create_tool_window( WS_POPUP | WS_MAXIMIZE, child );
316 DestroyWindow( test );
318 /* not owned popup with WS_CHILD (same as WS_POPUP only) */
319 test = create_tool_window( WS_POPUP | WS_CHILD, 0 );
320 trace( "created WS_CHILD popup %p\n", test );
321 check_parents( test, desktop, 0, 0, 0, test, test );
322 DestroyWindow( test );
324 /* not owned popup with WS_CHILD | WS_MAXIMIZE (same as WS_POPUP only) */
325 test = create_tool_window( WS_POPUP | WS_CHILD | WS_MAXIMIZE, 0 );
326 DestroyWindow( test );
328 /* owned popup with WS_CHILD (same as WS_POPUP only) */
329 test = create_tool_window( WS_POPUP | WS_CHILD, hwndMain );
330 trace( "created owned WS_CHILD popup %p\n", test );
331 check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
332 DestroyWindow( test );
334 /* owned popup with WS_CHILD (same as WS_POPUP only) with WS_MAXIMIZE */
335 test = create_tool_window( WS_POPUP | WS_CHILD | WS_MAXIMIZE, hwndMain );
336 DestroyWindow( test );
338 /******************** parent changes *************************/
339 trace( "testing parent changes\n" );
341 /* desktop window */
342 check_parents( desktop, 0, 0, 0, 0, 0, 0 );
343 if (0)
345 /* this test succeeds on NT but crashes on win9x systems */
346 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
347 ok( !ret, "Set GWL_HWNDPARENT succeeded on desktop\n" );
348 check_parents( desktop, 0, 0, 0, 0, 0, 0 );
349 ok( !SetParent( desktop, hwndMain ), "SetParent succeeded on desktop\n" );
350 check_parents( desktop, 0, 0, 0, 0, 0, 0 );
352 /* normal child window */
353 test = create_tool_window( WS_CHILD, hwndMain );
354 trace( "created child %p\n", test );
356 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
357 ok( ret == hwndMain, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain );
358 check_parents( test, hwndMain2, hwndMain2, hwndMain2, 0, hwndMain2, hwndMain2 );
360 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
361 ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
362 check_parents( test, child, child, child, 0, hwndMain, hwndMain );
364 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)desktop );
365 ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
366 check_parents( test, desktop, 0, desktop, 0, test, desktop );
368 /* window is now child of desktop so GWLP_HWNDPARENT changes owner from now on */
369 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
370 ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
371 check_parents( test, desktop, child, desktop, child, test, desktop );
373 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, 0 );
374 ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
375 check_parents( test, desktop, 0, desktop, 0, test, desktop );
376 DestroyWindow( test );
378 /* not owned top-level window */
379 test = create_tool_window( 0, 0 );
380 trace( "created top-level %p\n", test );
382 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
383 ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
384 check_parents( test, desktop, hwndMain2, 0, hwndMain2, test, test );
386 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
387 ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
388 check_parents( test, desktop, child, 0, child, test, test );
390 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, 0 );
391 ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
392 check_parents( test, desktop, 0, 0, 0, test, test );
393 DestroyWindow( test );
395 /* not owned popup */
396 test = create_tool_window( WS_POPUP, 0 );
397 trace( "created popup %p\n", test );
399 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
400 ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
401 check_parents( test, desktop, hwndMain2, hwndMain2, hwndMain2, test, hwndMain2 );
403 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
404 ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
405 check_parents( test, desktop, child, child, child, test, hwndMain );
407 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, 0 );
408 ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
409 check_parents( test, desktop, 0, 0, 0, test, test );
410 DestroyWindow( test );
412 /* normal child window */
413 test = create_tool_window( WS_CHILD, hwndMain );
414 trace( "created child %p\n", test );
416 ret = SetParent( test, desktop );
417 ok( ret == hwndMain, "SetParent return value %p expected %p\n", ret, hwndMain );
418 check_parents( test, desktop, 0, desktop, 0, test, desktop );
420 ret = SetParent( test, child );
421 ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
422 check_parents( test, child, child, child, 0, hwndMain, hwndMain );
424 ret = SetParent( test, hwndMain2 );
425 ok( ret == child, "SetParent return value %p expected %p\n", ret, child );
426 check_parents( test, hwndMain2, hwndMain2, hwndMain2, 0, hwndMain2, hwndMain2 );
427 DestroyWindow( test );
429 /* not owned top-level window */
430 test = create_tool_window( 0, 0 );
431 trace( "created top-level %p\n", test );
433 ret = SetParent( test, child );
434 ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
435 check_parents( test, child, child, 0, 0, hwndMain, test );
436 DestroyWindow( test );
438 /* owned popup */
439 test = create_tool_window( WS_POPUP, hwndMain2 );
440 trace( "created owned popup %p\n", test );
442 ret = SetParent( test, child );
443 ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
444 check_parents( test, child, child, hwndMain2, hwndMain2, hwndMain, hwndMain2 );
446 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (ULONG_PTR)hwndMain );
447 ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
448 check_parents( test, hwndMain, hwndMain, hwndMain2, hwndMain2, hwndMain, hwndMain2 );
449 DestroyWindow( test );
451 /**************** test owner destruction *******************/
453 /* owned child popup */
454 owner = create_tool_window( 0, 0 );
455 test = create_tool_window( WS_POPUP, owner );
456 trace( "created owner %p and popup %p\n", owner, test );
457 ret = SetParent( test, child );
458 ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
459 check_parents( test, child, child, owner, owner, hwndMain, owner );
460 /* window is now child of 'child' but owned by 'owner' */
461 DestroyWindow( owner );
462 ok( IsWindow(test), "Window %p destroyed by owner destruction\n", test );
463 /* Win98 doesn't pass this test. It doesn't allow a destroyed owner,
464 * while Win95, Win2k, WinXP do.
466 /*check_parents( test, child, child, owner, owner, hwndMain, owner );*/
467 ok( !IsWindow(owner), "Owner %p not destroyed\n", owner );
468 DestroyWindow(test);
470 /* owned top-level popup */
471 owner = create_tool_window( 0, 0 );
472 test = create_tool_window( WS_POPUP, owner );
473 trace( "created owner %p and popup %p\n", owner, test );
474 check_parents( test, desktop, owner, owner, owner, test, owner );
475 DestroyWindow( owner );
476 ok( !IsWindow(test), "Window %p not destroyed by owner destruction\n", test );
478 /* top-level popup owned by child */
479 owner = create_tool_window( WS_CHILD, hwndMain2 );
480 test = create_tool_window( WS_POPUP, 0 );
481 trace( "created owner %p and popup %p\n", owner, test );
482 ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (ULONG_PTR)owner );
483 ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
484 check_parents( test, desktop, owner, owner, owner, test, hwndMain2 );
485 DestroyWindow( owner );
486 ok( IsWindow(test), "Window %p destroyed by owner destruction\n", test );
487 ok( !IsWindow(owner), "Owner %p not destroyed\n", owner );
488 /* Win98 doesn't pass this test. It doesn't allow a destroyed owner,
489 * while Win95, Win2k, WinXP do.
491 /*check_parents( test, desktop, owner, owner, owner, test, owner );*/
492 DestroyWindow(test);
494 /* final cleanup */
495 DestroyWindow(child);
498 owner = create_tool_window( WS_OVERLAPPED, 0 );
499 test = create_tool_window( WS_POPUP, desktop );
501 ok( !GetWindow( test, GW_OWNER ), "Wrong owner window\n" );
502 numChildren = 0;
503 ok( !EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
504 "EnumChildWindows should have returned FALSE\n" );
505 ok( numChildren == 0, "numChildren should be 0 got %d\n", numChildren );
507 SetWindowLongA( test, GWL_STYLE, (GetWindowLongA( test, GWL_STYLE ) & ~WS_POPUP) | WS_CHILD );
508 ret = SetParent( test, owner );
509 ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
511 numChildren = 0;
512 ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
513 "EnumChildWindows should have returned TRUE\n" );
514 ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
516 child = create_tool_window( WS_CHILD, owner );
517 numChildren = 0;
518 ok( !EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
519 "EnumChildWindows should have returned FALSE\n" );
520 ok( numChildren == 2, "numChildren should be 2 got %d\n", numChildren );
521 DestroyWindow( child );
523 child = create_tool_window( WS_VISIBLE | WS_OVERLAPPEDWINDOW, owner );
524 ok( GetWindow( child, GW_OWNER ) == owner, "Wrong owner window\n" );
525 numChildren = 0;
526 ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
527 "EnumChildWindows should have returned TRUE\n" );
528 ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
530 ret = SetParent( child, owner );
531 ok( GetWindow( child, GW_OWNER ) == owner, "Wrong owner window\n" );
532 ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
533 numChildren = 0;
534 ok( !EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
535 "EnumChildWindows should have returned FALSE\n" );
536 ok( numChildren == 2, "numChildren should be 2 got %d\n", numChildren );
538 ret = SetParent( child, NULL );
539 ok( GetWindow( child, GW_OWNER ) == owner, "Wrong owner window\n" );
540 ok( ret == owner, "SetParent return value %p expected %p\n", ret, owner );
541 numChildren = 0;
542 ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
543 "EnumChildWindows should have returned TRUE\n" );
544 ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
546 /* even GW_OWNER == owner it's still a desktop's child */
547 ok( !EnumChildWindows( desktop, EnumChildProc1, (LPARAM)child ),
548 "EnumChildWindows should have found %p and returned FALSE\n", child );
550 DestroyWindow( child );
551 child = create_tool_window( WS_VISIBLE | WS_OVERLAPPEDWINDOW, NULL );
553 ok( !EnumChildWindows( desktop, EnumChildProc1, (LPARAM)child ),
554 "EnumChildWindows should have found %p and returned FALSE\n", child );
556 DestroyWindow( child );
557 DestroyWindow( test );
558 DestroyWindow( owner );
562 static LRESULT WINAPI main_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
564 switch (msg)
566 case WM_GETMINMAXINFO:
568 MINMAXINFO* minmax = (MINMAXINFO *)lparam;
570 trace("WM_GETMINMAXINFO: hwnd %p, %08lx, %08lx\n", hwnd, wparam, lparam);
571 dump_minmax_info( minmax );
572 SetWindowLongPtrA(hwnd, GWLP_USERDATA, 0x20031021);
573 break;
575 case WM_WINDOWPOSCHANGING:
577 BOOL is_win9x = GetWindowLongPtrW(hwnd, GWLP_WNDPROC) == 0;
578 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
579 trace("main: WM_WINDOWPOSCHANGING %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
580 winpos->hwnd, winpos->hwndInsertAfter,
581 winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
582 if (!(winpos->flags & SWP_NOMOVE))
584 ok(winpos->x >= -32768 && winpos->x <= 32767, "bad winpos->x %d\n", winpos->x);
585 ok(winpos->y >= -32768 && winpos->y <= 32767, "bad winpos->y %d\n", winpos->y);
587 /* Win9x does not fixup cx/xy for WM_WINDOWPOSCHANGING */
588 if (!(winpos->flags & SWP_NOSIZE) && !is_win9x)
590 ok(winpos->cx >= 0 && winpos->cx <= 32767, "bad winpos->cx %d\n", winpos->cx);
591 ok(winpos->cy >= 0 && winpos->cy <= 32767, "bad winpos->cy %d\n", winpos->cy);
593 break;
595 case WM_WINDOWPOSCHANGED:
597 RECT rc1, rc2;
598 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
599 trace("main: WM_WINDOWPOSCHANGED %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
600 winpos->hwnd, winpos->hwndInsertAfter,
601 winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
602 ok(winpos->x >= -32768 && winpos->x <= 32767, "bad winpos->x %d\n", winpos->x);
603 ok(winpos->y >= -32768 && winpos->y <= 32767, "bad winpos->y %d\n", winpos->y);
605 ok(winpos->cx >= 0 && winpos->cx <= 32767, "bad winpos->cx %d\n", winpos->cx);
606 ok(winpos->cy >= 0 && winpos->cy <= 32767, "bad winpos->cy %d\n", winpos->cy);
608 GetWindowRect(hwnd, &rc1);
609 SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
610 /* note: winpos coordinates are relative to parent */
611 MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
612 if (0)
614 /* Uncomment this once the test succeeds in all cases */
615 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
616 rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom );
618 GetClientRect(hwnd, &rc2);
619 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
620 MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
621 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
622 rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom );
624 break;
626 case WM_NCCREATE:
628 BOOL got_getminmaxinfo = GetWindowLongPtrA(hwnd, GWLP_USERDATA) == 0x20031021;
629 CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
631 trace("WM_NCCREATE: hwnd %p, parent %p, style %08x\n", hwnd, cs->hwndParent, cs->style);
632 if (got_getminmaxinfo)
633 trace("%p got WM_GETMINMAXINFO\n", hwnd);
635 if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
636 ok(got_getminmaxinfo, "main: WM_GETMINMAXINFO should have been received before WM_NCCREATE\n");
637 else
638 ok(!got_getminmaxinfo, "main: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
639 break;
641 case WM_COMMAND:
642 if (test_lbuttondown_flag)
644 ShowWindow((HWND)wparam, SW_SHOW);
645 flush_events( FALSE );
647 break;
650 return DefWindowProcA(hwnd, msg, wparam, lparam);
653 static LRESULT WINAPI tool_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
655 switch (msg)
657 case WM_GETMINMAXINFO:
659 MINMAXINFO* minmax = (MINMAXINFO *)lparam;
661 trace("hwnd %p, WM_GETMINMAXINFO, %08lx, %08lx\n", hwnd, wparam, lparam);
662 dump_minmax_info( minmax );
663 SetWindowLongPtrA(hwnd, GWLP_USERDATA, 0x20031021);
664 break;
666 case WM_NCCREATE:
668 BOOL got_getminmaxinfo = GetWindowLongPtrA(hwnd, GWLP_USERDATA) == 0x20031021;
669 CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
671 trace("WM_NCCREATE: hwnd %p, parent %p, style %08x\n", hwnd, cs->hwndParent, cs->style);
672 if (got_getminmaxinfo)
673 trace("%p got WM_GETMINMAXINFO\n", hwnd);
675 if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
676 ok(got_getminmaxinfo, "tool: WM_GETMINMAXINFO should have been received before WM_NCCREATE\n");
677 else
678 ok(!got_getminmaxinfo, "tool: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
679 break;
683 return DefWindowProcA(hwnd, msg, wparam, lparam);
686 static BOOL RegisterWindowClasses(void)
688 WNDCLASSA cls;
690 cls.style = CS_DBLCLKS;
691 cls.lpfnWndProc = main_window_procA;
692 cls.cbClsExtra = 0;
693 cls.cbWndExtra = 0;
694 cls.hInstance = GetModuleHandleA(0);
695 cls.hIcon = 0;
696 cls.hCursor = LoadCursorA(0, IDC_ARROW);
697 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
698 cls.lpszMenuName = NULL;
699 cls.lpszClassName = "MainWindowClass";
701 if(!RegisterClassA(&cls)) return FALSE;
703 cls.style = 0;
704 cls.lpfnWndProc = tool_window_procA;
705 cls.cbClsExtra = 0;
706 cls.cbWndExtra = 0;
707 cls.hInstance = GetModuleHandleA(0);
708 cls.hIcon = 0;
709 cls.hCursor = LoadCursorA(0, IDC_ARROW);
710 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
711 cls.lpszMenuName = NULL;
712 cls.lpszClassName = "ToolWindowClass";
714 if(!RegisterClassA(&cls)) return FALSE;
716 return TRUE;
719 static void verify_window_info(const char *hook, HWND hwnd, const WINDOWINFO *info)
721 RECT rcWindow, rcClient;
722 DWORD status;
724 ok(IsWindow(hwnd), "bad window handle %p in hook %s\n", hwnd, hook);
726 GetWindowRect(hwnd, &rcWindow);
727 ok(EqualRect(&rcWindow, &info->rcWindow), "wrong rcWindow for %p in hook %s\n", hwnd, hook);
729 GetClientRect(hwnd, &rcClient);
730 /* translate to screen coordinates */
731 MapWindowPoints(hwnd, 0, (LPPOINT)&rcClient, 2);
732 ok(EqualRect(&rcClient, &info->rcClient), "wrong rcClient for %p in hook %s\n", hwnd, hook);
734 ok(info->dwStyle == (DWORD)GetWindowLongA(hwnd, GWL_STYLE),
735 "wrong dwStyle: %08x != %08x for %p in hook %s\n",
736 info->dwStyle, GetWindowLongA(hwnd, GWL_STYLE), hwnd, hook);
737 /* Windows reports some undocumented exstyles in WINDOWINFO, but
738 * doesn't return them in GetWindowLong(hwnd, GWL_EXSTYLE).
740 ok((info->dwExStyle & ~0xe0000800) == (DWORD)GetWindowLongA(hwnd, GWL_EXSTYLE),
741 "wrong dwExStyle: %08x != %08x for %p in hook %s\n",
742 info->dwExStyle, GetWindowLongA(hwnd, GWL_EXSTYLE), hwnd, hook);
743 status = (GetActiveWindow() == hwnd) ? WS_ACTIVECAPTION : 0;
744 if (GetForegroundWindow())
745 ok(info->dwWindowStatus == status, "wrong dwWindowStatus: %04x != %04x active %p fg %p in hook %s\n",
746 info->dwWindowStatus, status, GetActiveWindow(), GetForegroundWindow(), hook);
748 /* win2k and XP return broken border info in GetWindowInfo most of
749 * the time, so there is no point in testing it.
751 #if 0
752 UINT border;
753 ok(info->cxWindowBorders == (unsigned)(rcClient.left - rcWindow.left),
754 "wrong cxWindowBorders %d != %d\n", info->cxWindowBorders, rcClient.left - rcWindow.left);
755 border = min(rcWindow.bottom - rcClient.bottom, rcClient.top - rcWindow.top);
756 ok(info->cyWindowBorders == border,
757 "wrong cyWindowBorders %d != %d\n", info->cyWindowBorders, border);
758 #endif
759 ok(info->atomWindowType == GetClassLongA(hwnd, GCW_ATOM), "wrong atomWindowType for %p in hook %s\n",
760 hwnd, hook);
761 ok(info->wCreatorVersion == 0x0400 /* NT4, Win2000, XP, Win2003 */ ||
762 info->wCreatorVersion == 0x0500 /* Vista */,
763 "wrong wCreatorVersion %04x for %p in hook %s\n", info->wCreatorVersion, hwnd, hook);
766 static void FixedAdjustWindowRectEx(RECT* rc, LONG style, BOOL menu, LONG exstyle)
768 AdjustWindowRectEx(rc, style, menu, exstyle);
769 /* AdjustWindowRectEx does not include scroll bars */
770 if (style & WS_VSCROLL)
772 if(exstyle & WS_EX_LEFTSCROLLBAR)
773 rc->left -= GetSystemMetrics(SM_CXVSCROLL);
774 else
775 rc->right += GetSystemMetrics(SM_CXVSCROLL);
777 if (style & WS_HSCROLL)
778 rc->bottom += GetSystemMetrics(SM_CYHSCROLL);
781 static void test_nonclient_area(HWND hwnd)
783 DWORD style, exstyle;
784 RECT rc_window, rc_client, rc;
785 BOOL menu;
786 BOOL is_win9x = GetWindowLongPtrW(hwnd, GWLP_WNDPROC) == 0;
787 LRESULT ret;
789 style = GetWindowLongA(hwnd, GWL_STYLE);
790 exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
791 menu = !(style & WS_CHILD) && GetMenu(hwnd) != 0;
793 GetWindowRect(hwnd, &rc_window);
794 GetClientRect(hwnd, &rc_client);
796 /* avoid some cases when things go wrong */
797 if (IsRectEmpty(&rc_window) || IsRectEmpty(&rc_client) ||
798 rc_window.right > 32768 || rc_window.bottom > 32768) return;
800 CopyRect(&rc, &rc_client);
801 MapWindowPoints(hwnd, 0, (LPPOINT)&rc, 2);
802 FixedAdjustWindowRectEx(&rc, style, menu, exstyle);
804 ok(EqualRect(&rc, &rc_window),
805 "window rect does not match: style:exstyle=0x%08x:0x%08x, menu=%d, win=(%d,%d)-(%d,%d), calc=(%d,%d)-(%d,%d)\n",
806 style, exstyle, menu, rc_window.left, rc_window.top, rc_window.right, rc_window.bottom,
807 rc.left, rc.top, rc.right, rc.bottom);
810 CopyRect(&rc, &rc_window);
811 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc);
812 MapWindowPoints(0, hwnd, (LPPOINT)&rc, 2);
813 ok(EqualRect(&rc, &rc_client),
814 "client rect does not match: style:exstyle=0x%08x:0x%08x, menu=%d client=(%d,%d)-(%d,%d), calc=(%d,%d)-(%d,%d)\n",
815 style, exstyle, menu, rc_client.left, rc_client.top, rc_client.right, rc_client.bottom,
816 rc.left, rc.top, rc.right, rc.bottom);
818 /* NULL rectangle shouldn't crash */
819 ret = DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, 0);
820 ok(ret == 0, "NULL rectangle returned %ld instead of 0\n", ret);
822 /* Win9x doesn't like WM_NCCALCSIZE with synthetic data and crashes */;
823 if (is_win9x)
824 return;
826 /* and now test AdjustWindowRectEx and WM_NCCALCSIZE on synthetic data */
827 SetRect(&rc_client, 0, 0, 250, 150);
828 CopyRect(&rc_window, &rc_client);
829 MapWindowPoints(hwnd, 0, (LPPOINT)&rc_window, 2);
830 FixedAdjustWindowRectEx(&rc_window, style, menu, exstyle);
832 CopyRect(&rc, &rc_window);
833 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc);
834 MapWindowPoints(0, hwnd, (LPPOINT)&rc, 2);
835 ok(EqualRect(&rc, &rc_client),
836 "synthetic rect does not match: style:exstyle=0x%08x:0x%08x, menu=%d, client=(%d,%d)-(%d,%d), calc=(%d,%d)-(%d,%d)\n",
837 style, exstyle, menu, rc_client.left, rc_client.top, rc_client.right, rc_client.bottom,
838 rc.left, rc.top, rc.right, rc.bottom);
841 static LRESULT CALLBACK cbt_hook_proc(int nCode, WPARAM wParam, LPARAM lParam)
843 static const char *CBT_code_name[10] = {
844 "HCBT_MOVESIZE",
845 "HCBT_MINMAX",
846 "HCBT_QS",
847 "HCBT_CREATEWND",
848 "HCBT_DESTROYWND",
849 "HCBT_ACTIVATE",
850 "HCBT_CLICKSKIPPED",
851 "HCBT_KEYSKIPPED",
852 "HCBT_SYSCOMMAND",
853 "HCBT_SETFOCUS" };
854 const char *code_name = (nCode >= 0 && nCode <= HCBT_SETFOCUS) ? CBT_code_name[nCode] : "Unknown";
855 HWND hwnd = (HWND)wParam;
857 switch (nCode)
859 case HCBT_CREATEWND:
861 static const RECT rc_null;
862 RECT rc;
863 LONG style;
864 CBT_CREATEWNDA *createwnd = (CBT_CREATEWNDA *)lParam;
865 trace("HCBT_CREATEWND: hwnd %p, parent %p, style %08x\n",
866 hwnd, createwnd->lpcs->hwndParent, createwnd->lpcs->style);
867 ok(createwnd->hwndInsertAfter == HWND_TOP, "hwndInsertAfter should be always HWND_TOP\n");
869 if (pGetWindowInfo)
871 WINDOWINFO info;
872 info.cbSize = sizeof(WINDOWINFO);
873 ok(pGetWindowInfo(hwnd, &info), "GetWindowInfo should not fail\n");
874 verify_window_info(code_name, hwnd, &info);
877 /* WS_VISIBLE should be turned off yet */
878 style = createwnd->lpcs->style & ~WS_VISIBLE;
879 ok(style == GetWindowLongA(hwnd, GWL_STYLE),
880 "style of hwnd and style in the CREATESTRUCT do not match: %08x != %08x\n",
881 GetWindowLongA(hwnd, GWL_STYLE), style);
883 if (0)
885 /* Uncomment this once the test succeeds in all cases */
886 if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD)
888 ok(GetParent(hwnd) == hwndMessage,
889 "wrong result from GetParent %p: message window %p\n",
890 GetParent(hwnd), hwndMessage);
892 else
893 ok(!GetParent(hwnd), "GetParent should return 0 at this point\n");
895 ok(!GetWindow(hwnd, GW_OWNER), "GW_OWNER should be set to 0 at this point\n");
897 if (0)
899 /* while NT assigns GW_HWNDFIRST/LAST some values at this point,
900 * Win9x still has them set to 0.
902 ok(GetWindow(hwnd, GW_HWNDFIRST) != 0, "GW_HWNDFIRST should not be set to 0 at this point\n");
903 ok(GetWindow(hwnd, GW_HWNDLAST) != 0, "GW_HWNDLAST should not be set to 0 at this point\n");
905 ok(!GetWindow(hwnd, GW_HWNDPREV), "GW_HWNDPREV should be set to 0 at this point\n");
906 ok(!GetWindow(hwnd, GW_HWNDNEXT), "GW_HWNDNEXT should be set to 0 at this point\n");
908 if (0)
910 /* Uncomment this once the test succeeds in all cases */
911 if (pGetAncestor)
913 ok(pGetAncestor(hwnd, GA_PARENT) == hwndMessage, "GA_PARENT should be set to hwndMessage at this point\n");
914 ok(pGetAncestor(hwnd, GA_ROOT) == hwnd,
915 "GA_ROOT is set to %p, expected %p\n", pGetAncestor(hwnd, GA_ROOT), hwnd);
917 if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD)
918 ok(pGetAncestor(hwnd, GA_ROOTOWNER) == hwndMessage,
919 "GA_ROOTOWNER should be set to hwndMessage at this point\n");
920 else
921 ok(pGetAncestor(hwnd, GA_ROOTOWNER) == hwnd,
922 "GA_ROOTOWNER is set to %p, expected %p\n", pGetAncestor(hwnd, GA_ROOTOWNER), hwnd);
925 ok(GetWindowRect(hwnd, &rc), "GetWindowRect failed\n");
926 ok(EqualRect(&rc, &rc_null), "window rect should be set to 0 HCBT_CREATEWND\n");
927 ok(GetClientRect(hwnd, &rc), "GetClientRect failed\n");
928 ok(EqualRect(&rc, &rc_null), "client rect should be set to 0 on HCBT_CREATEWND\n");
930 break;
932 case HCBT_MOVESIZE:
933 case HCBT_MINMAX:
934 case HCBT_ACTIVATE:
935 case HCBT_SETFOCUS:
936 if (pGetWindowInfo && IsWindow(hwnd))
938 WINDOWINFO info;
940 /* Win98 actually does check the info.cbSize and doesn't allow
941 * it to be anything except sizeof(WINDOWINFO), while Win95, Win2k,
942 * WinXP do not check it at all.
944 info.cbSize = sizeof(WINDOWINFO);
945 ok(pGetWindowInfo(hwnd, &info), "GetWindowInfo should not fail\n");
946 verify_window_info(code_name, hwnd, &info);
948 break;
949 /* on HCBT_DESTROYWND window state is undefined */
950 case HCBT_DESTROYWND:
951 trace( "HCBT_DESTROYWND: hwnd %p\n", hwnd );
952 break;
953 default:
954 break;
957 return CallNextHookEx(hhook, nCode, wParam, lParam);
960 static void test_shell_window(void)
962 BOOL ret;
963 DWORD error;
964 HMODULE hinst, hUser32;
965 BOOL (WINAPI*SetShellWindow)(HWND);
966 BOOL (WINAPI*SetShellWindowEx)(HWND, HWND);
967 HWND hwnd1, hwnd2, hwnd3, hwnd4, hwnd5;
968 HWND shellWindow, nextWnd;
970 if (!GetWindowLongW(GetDesktopWindow(), GWL_STYLE))
972 trace("Skipping shell window test on Win9x\n");
973 return;
976 shellWindow = GetShellWindow();
977 hinst = GetModuleHandle(0);
978 hUser32 = GetModuleHandleA("user32");
980 SetShellWindow = (void *)GetProcAddress(hUser32, "SetShellWindow");
981 SetShellWindowEx = (void *)GetProcAddress(hUser32, "SetShellWindowEx");
983 trace("previous shell window: %p\n", shellWindow);
985 if (shellWindow) {
986 DWORD pid;
987 HANDLE hProcess;
989 GetWindowThreadProcessId(shellWindow, &pid);
990 hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
991 if (!hProcess)
993 skip( "cannot get access to shell process\n" );
994 return;
997 SetLastError(0xdeadbeef);
998 ret = DestroyWindow(shellWindow);
999 error = GetLastError();
1001 ok(!ret, "DestroyWindow(shellWindow)\n");
1002 /* passes on Win XP, but not on Win98 */
1003 ok(error==ERROR_ACCESS_DENIED || error == 0xdeadbeef,
1004 "got %u after DestroyWindow(shellWindow)\n", error);
1006 /* close old shell instance */
1007 ret = TerminateProcess(hProcess, 0);
1008 ok(ret, "termination of previous shell process failed: GetLastError()=%d\n", GetLastError());
1009 WaitForSingleObject(hProcess, INFINITE); /* wait for termination */
1010 CloseHandle(hProcess);
1013 hwnd1 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST1"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 100, 100, 300, 200, 0, 0, hinst, 0);
1014 trace("created window 1: %p\n", hwnd1);
1016 ret = SetShellWindow(hwnd1);
1017 ok(ret, "first call to SetShellWindow(hwnd1)\n");
1018 shellWindow = GetShellWindow();
1019 ok(shellWindow==hwnd1, "wrong shell window: %p\n", shellWindow);
1021 ret = SetShellWindow(hwnd1);
1022 ok(!ret, "second call to SetShellWindow(hwnd1)\n");
1024 ret = SetShellWindow(0);
1025 error = GetLastError();
1026 /* passes on Win XP, but not on Win98
1027 ok(!ret, "reset shell window by SetShellWindow(0)\n");
1028 ok(error==ERROR_INVALID_WINDOW_HANDLE, "ERROR_INVALID_WINDOW_HANDLE after SetShellWindow(0)\n"); */
1030 ret = SetShellWindow(hwnd1);
1031 /* passes on Win XP, but not on Win98
1032 ok(!ret, "third call to SetShellWindow(hwnd1)\n"); */
1034 SetWindowLong(hwnd1, GWL_EXSTYLE, GetWindowLong(hwnd1,GWL_EXSTYLE)|WS_EX_TOPMOST);
1035 ret = GetWindowLong(hwnd1,GWL_EXSTYLE)&WS_EX_TOPMOST? TRUE: FALSE;
1036 ok(!ret, "SetWindowExStyle(hwnd1, WS_EX_TOPMOST)\n");
1038 ret = DestroyWindow(hwnd1);
1039 ok(ret, "DestroyWindow(hwnd1)\n");
1041 hwnd2 = CreateWindowEx(WS_EX_TOPMOST, TEXT("#32770"), TEXT("TEST2"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 150, 250, 300, 200, 0, 0, hinst, 0);
1042 trace("created window 2: %p\n", hwnd2);
1043 ret = SetShellWindow(hwnd2);
1044 ok(!ret, "SetShellWindow(hwnd2) with WS_EX_TOPMOST\n");
1046 hwnd3 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST3"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 200, 400, 300, 200, 0, 0, hinst, 0);
1047 trace("created window 3: %p\n", hwnd3);
1049 hwnd4 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST4"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 250, 500, 300, 200, 0, 0, hinst, 0);
1050 trace("created window 4: %p\n", hwnd4);
1052 nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
1053 ok(nextWnd==hwnd3, "wrong next window for hwnd4: %p - expected hwnd3\n", nextWnd);
1055 ret = SetShellWindow(hwnd4);
1056 ok(ret, "SetShellWindow(hwnd4)\n");
1057 shellWindow = GetShellWindow();
1058 ok(shellWindow==hwnd4, "wrong shell window: %p - expected hwnd4\n", shellWindow);
1060 nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
1061 ok(nextWnd==0, "wrong next window for hwnd4: %p - expected 0\n", nextWnd);
1063 ret = SetWindowPos(hwnd4, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1064 ok(ret, "SetWindowPos(hwnd4, HWND_TOPMOST)\n");
1066 ret = SetWindowPos(hwnd4, hwnd3, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1067 ok(ret, "SetWindowPos(hwnd4, hwnd3\n");
1069 ret = SetShellWindow(hwnd3);
1070 ok(!ret, "SetShellWindow(hwnd3)\n");
1071 shellWindow = GetShellWindow();
1072 ok(shellWindow==hwnd4, "wrong shell window: %p - expected hwnd4\n", shellWindow);
1074 hwnd5 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST5"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 300, 600, 300, 200, 0, 0, hinst, 0);
1075 trace("created window 5: %p\n", hwnd5);
1076 ret = SetWindowPos(hwnd4, hwnd5, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1077 ok(ret, "SetWindowPos(hwnd4, hwnd5)\n");
1079 todo_wine
1081 nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
1082 ok(nextWnd==0, "wrong next window for hwnd4 after SetWindowPos(): %p - expected 0\n", nextWnd);
1085 /* destroy test windows */
1086 DestroyWindow(hwnd2);
1087 DestroyWindow(hwnd3);
1088 DestroyWindow(hwnd4);
1089 DestroyWindow(hwnd5);
1092 /************** MDI test ****************/
1094 static char mdi_lParam_test_message[] = "just a test string";
1096 static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
1098 MDICREATESTRUCTA mdi_cs;
1099 HWND mdi_child;
1100 INT_PTR id;
1101 static const WCHAR classW[] = {'M','D','I','_','c','h','i','l','d','_','C','l','a','s','s','_','1',0};
1102 static const WCHAR titleW[] = {'M','D','I',' ','c','h','i','l','d',0};
1103 BOOL isWin9x = FALSE;
1105 mdi_cs.szClass = "MDI_child_Class_1";
1106 mdi_cs.szTitle = "MDI child";
1107 mdi_cs.hOwner = GetModuleHandle(0);
1108 mdi_cs.x = CW_USEDEFAULT;
1109 mdi_cs.y = CW_USEDEFAULT;
1110 mdi_cs.cx = CW_USEDEFAULT;
1111 mdi_cs.cy = CW_USEDEFAULT;
1112 mdi_cs.style = 0;
1113 mdi_cs.lParam = (LPARAM)mdi_lParam_test_message;
1114 mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1115 ok(mdi_child != 0, "MDI child creation failed\n");
1116 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1117 ok(id == first_id, "wrong child id %ld\n", id);
1118 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1119 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1121 mdi_cs.style = 0x7fffffff; /* without WS_POPUP */
1122 mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1123 ok(mdi_child != 0, "MDI child creation failed\n");
1124 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1125 ok(id == first_id, "wrong child id %ld\n", id);
1126 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1127 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1129 mdi_cs.style = 0xffffffff; /* with WS_POPUP */
1130 mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1131 if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1133 ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1135 else
1137 ok(mdi_child != 0, "MDI child creation failed\n");
1138 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1139 ok(id == first_id, "wrong child id %ld\n", id);
1140 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1141 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1144 /* test MDICREATESTRUCT A<->W mapping */
1145 /* MDICREATESTRUCTA and MDICREATESTRUCTW have the same layout */
1146 mdi_cs.style = 0;
1147 mdi_cs.szClass = (LPCSTR)classW;
1148 mdi_cs.szTitle = (LPCSTR)titleW;
1149 SetLastError(0xdeadbeef);
1150 mdi_child = (HWND)SendMessageW(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1151 if (!mdi_child)
1153 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1154 isWin9x = TRUE;
1155 else
1156 ok(mdi_child != 0, "MDI child creation failed\n");
1158 else
1160 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1161 ok(id == first_id, "wrong child id %ld\n", id);
1162 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1163 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1166 mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1168 CW_USEDEFAULT, CW_USEDEFAULT,
1169 CW_USEDEFAULT, CW_USEDEFAULT,
1170 mdi_client, GetModuleHandle(0),
1171 (LPARAM)mdi_lParam_test_message);
1172 ok(mdi_child != 0, "MDI child creation failed\n");
1173 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1174 ok(id == first_id, "wrong child id %ld\n", id);
1175 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1176 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1178 mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1179 0x7fffffff, /* without WS_POPUP */
1180 CW_USEDEFAULT, CW_USEDEFAULT,
1181 CW_USEDEFAULT, CW_USEDEFAULT,
1182 mdi_client, GetModuleHandle(0),
1183 (LPARAM)mdi_lParam_test_message);
1184 ok(mdi_child != 0, "MDI child creation failed\n");
1185 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1186 ok(id == first_id, "wrong child id %ld\n", id);
1187 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1188 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1190 mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1191 0xffffffff, /* with WS_POPUP */
1192 CW_USEDEFAULT, CW_USEDEFAULT,
1193 CW_USEDEFAULT, CW_USEDEFAULT,
1194 mdi_client, GetModuleHandle(0),
1195 (LPARAM)mdi_lParam_test_message);
1196 if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1198 ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1200 else
1202 ok(mdi_child != 0, "MDI child creation failed\n");
1203 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1204 ok(id == first_id, "wrong child id %ld\n", id);
1205 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1206 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1209 /* test MDICREATESTRUCT A<->W mapping */
1210 SetLastError(0xdeadbeef);
1211 mdi_child = CreateMDIWindowW(classW, titleW,
1213 CW_USEDEFAULT, CW_USEDEFAULT,
1214 CW_USEDEFAULT, CW_USEDEFAULT,
1215 mdi_client, GetModuleHandle(0),
1216 (LPARAM)mdi_lParam_test_message);
1217 if (!mdi_child)
1219 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1220 isWin9x = TRUE;
1221 else
1222 ok(mdi_child != 0, "MDI child creation failed\n");
1224 else
1226 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1227 ok(id == first_id, "wrong child id %ld\n", id);
1228 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1229 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1232 mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1234 CW_USEDEFAULT, CW_USEDEFAULT,
1235 CW_USEDEFAULT, CW_USEDEFAULT,
1236 mdi_client, 0, GetModuleHandle(0),
1237 mdi_lParam_test_message);
1238 ok(mdi_child != 0, "MDI child creation failed\n");
1239 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1240 ok(id == first_id, "wrong child id %ld\n", id);
1241 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1242 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1244 mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1245 0x7fffffff, /* without WS_POPUP */
1246 CW_USEDEFAULT, CW_USEDEFAULT,
1247 CW_USEDEFAULT, CW_USEDEFAULT,
1248 mdi_client, 0, GetModuleHandle(0),
1249 mdi_lParam_test_message);
1250 ok(mdi_child != 0, "MDI child creation failed\n");
1251 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1252 ok(id == first_id, "wrong child id %ld\n", id);
1253 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1254 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1256 mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1257 0xffffffff, /* with WS_POPUP */
1258 CW_USEDEFAULT, CW_USEDEFAULT,
1259 CW_USEDEFAULT, CW_USEDEFAULT,
1260 mdi_client, 0, GetModuleHandle(0),
1261 mdi_lParam_test_message);
1262 if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1264 ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1266 else
1268 ok(mdi_child != 0, "MDI child creation failed\n");
1269 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1270 ok(id == first_id, "wrong child id %ld\n", id);
1271 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1272 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1275 /* test MDICREATESTRUCT A<->W mapping */
1276 SetLastError(0xdeadbeef);
1277 mdi_child = CreateWindowExW(WS_EX_MDICHILD, classW, titleW,
1279 CW_USEDEFAULT, CW_USEDEFAULT,
1280 CW_USEDEFAULT, CW_USEDEFAULT,
1281 mdi_client, 0, GetModuleHandle(0),
1282 mdi_lParam_test_message);
1283 if (!mdi_child)
1285 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1286 isWin9x = TRUE;
1287 else
1288 ok(mdi_child != 0, "MDI child creation failed\n");
1290 else
1292 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1293 ok(id == first_id, "wrong child id %ld\n", id);
1294 SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1295 ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1298 /* This test fails on Win9x */
1299 if (!isWin9x)
1301 mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_2", "MDI child",
1302 WS_CHILD,
1303 CW_USEDEFAULT, CW_USEDEFAULT,
1304 CW_USEDEFAULT, CW_USEDEFAULT,
1305 parent, 0, GetModuleHandle(0),
1306 mdi_lParam_test_message);
1307 ok(!mdi_child, "WS_EX_MDICHILD with a not MDIClient parent should fail\n");
1310 mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1311 WS_CHILD, /* without WS_POPUP */
1312 CW_USEDEFAULT, CW_USEDEFAULT,
1313 CW_USEDEFAULT, CW_USEDEFAULT,
1314 mdi_client, 0, GetModuleHandle(0),
1315 mdi_lParam_test_message);
1316 ok(mdi_child != 0, "MDI child creation failed\n");
1317 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1318 ok(id == 0, "wrong child id %ld\n", id);
1319 DestroyWindow(mdi_child);
1321 mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1322 WS_CHILD | WS_POPUP, /* with WS_POPUP */
1323 CW_USEDEFAULT, CW_USEDEFAULT,
1324 CW_USEDEFAULT, CW_USEDEFAULT,
1325 mdi_client, 0, GetModuleHandle(0),
1326 mdi_lParam_test_message);
1327 ok(mdi_child != 0, "MDI child creation failed\n");
1328 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1329 ok(id == 0, "wrong child id %ld\n", id);
1330 DestroyWindow(mdi_child);
1332 /* maximized child */
1333 mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1334 WS_CHILD | WS_MAXIMIZE,
1335 CW_USEDEFAULT, CW_USEDEFAULT,
1336 CW_USEDEFAULT, CW_USEDEFAULT,
1337 mdi_client, 0, GetModuleHandle(0),
1338 mdi_lParam_test_message);
1339 ok(mdi_child != 0, "MDI child creation failed\n");
1340 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1341 ok(id == 0, "wrong child id %ld\n", id);
1342 DestroyWindow(mdi_child);
1344 trace("Creating maximized child with a caption\n");
1345 mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1346 WS_CHILD | WS_MAXIMIZE | WS_CAPTION,
1347 CW_USEDEFAULT, CW_USEDEFAULT,
1348 CW_USEDEFAULT, CW_USEDEFAULT,
1349 mdi_client, 0, GetModuleHandle(0),
1350 mdi_lParam_test_message);
1351 ok(mdi_child != 0, "MDI child creation failed\n");
1352 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1353 ok(id == 0, "wrong child id %ld\n", id);
1354 DestroyWindow(mdi_child);
1356 trace("Creating maximized child with a caption and a thick frame\n");
1357 mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1358 WS_CHILD | WS_MAXIMIZE | WS_CAPTION | WS_THICKFRAME,
1359 CW_USEDEFAULT, CW_USEDEFAULT,
1360 CW_USEDEFAULT, CW_USEDEFAULT,
1361 mdi_client, 0, GetModuleHandle(0),
1362 mdi_lParam_test_message);
1363 ok(mdi_child != 0, "MDI child creation failed\n");
1364 id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1365 ok(id == 0, "wrong child id %ld\n", id);
1366 DestroyWindow(mdi_child);
1369 /**********************************************************************
1370 * MDI_ChildGetMinMaxInfo (copied from windows/mdi.c)
1372 * Note: The rule here is that client rect of the maximized MDI child
1373 * is equal to the client rect of the MDI client window.
1375 static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax )
1377 RECT rect;
1379 GetClientRect( client, &rect );
1380 AdjustWindowRectEx( &rect, GetWindowLongA( hwnd, GWL_STYLE ),
1381 0, GetWindowLongA( hwnd, GWL_EXSTYLE ));
1383 rect.right -= rect.left;
1384 rect.bottom -= rect.top;
1385 lpMinMax->ptMaxSize.x = rect.right;
1386 lpMinMax->ptMaxSize.y = rect.bottom;
1388 lpMinMax->ptMaxPosition.x = rect.left;
1389 lpMinMax->ptMaxPosition.y = rect.top;
1391 trace("max rect (%d,%d - %d, %d)\n",
1392 rect.left, rect.top, rect.right, rect.bottom);
1395 static LRESULT WINAPI mdi_child_wnd_proc_1(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1397 switch (msg)
1399 case WM_NCCREATE:
1400 case WM_CREATE:
1402 CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
1403 MDICREATESTRUCTA *mdi_cs = cs->lpCreateParams;
1405 ok(cs->dwExStyle & WS_EX_MDICHILD, "WS_EX_MDICHILD should be set\n");
1406 ok(mdi_cs->lParam == (LPARAM)mdi_lParam_test_message, "wrong mdi_cs->lParam\n");
1408 ok(!lstrcmpA(cs->lpszClass, "MDI_child_Class_1"), "wrong class name\n");
1409 ok(!lstrcmpA(cs->lpszClass, mdi_cs->szClass), "class name does not match\n");
1410 ok(!lstrcmpA(cs->lpszName, "MDI child"), "wrong title\n");
1411 ok(!lstrcmpA(cs->lpszName, mdi_cs->szTitle), "title does not match\n");
1412 ok(cs->hInstance == mdi_cs->hOwner, "%p != %p\n", cs->hInstance, mdi_cs->hOwner);
1414 /* MDICREATESTRUCT should have original values */
1415 ok(mdi_cs->style == 0 || mdi_cs->style == 0x7fffffff || mdi_cs->style == 0xffffffff,
1416 "mdi_cs->style does not match (%08x)\n", mdi_cs->style);
1417 ok(mdi_cs->x == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->x);
1418 ok(mdi_cs->y == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->y);
1419 ok(mdi_cs->cx == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->cx);
1420 ok(mdi_cs->cy == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->cy);
1422 /* CREATESTRUCT should have fixed values */
1423 ok(cs->x != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->x);
1424 ok(cs->y != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->y);
1426 /* cx/cy == CW_USEDEFAULT are translated to NOT zero values */
1427 ok(cs->cx != CW_USEDEFAULT && cs->cx != 0, "%d == CW_USEDEFAULT\n", cs->cx);
1428 ok(cs->cy != CW_USEDEFAULT && cs->cy != 0, "%d == CW_USEDEFAULT\n", cs->cy);
1430 ok(!(cs->style & WS_POPUP), "WS_POPUP is not allowed\n");
1432 if (GetWindowLongA(cs->hwndParent, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1434 LONG style = mdi_cs->style | WS_CHILD | WS_CLIPSIBLINGS;
1435 ok(cs->style == style,
1436 "cs->style does not match (%08x)\n", cs->style);
1438 else
1440 LONG style = mdi_cs->style;
1441 style &= ~WS_POPUP;
1442 style |= WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CAPTION |
1443 WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
1444 ok(cs->style == style,
1445 "cs->style does not match (%08x)\n", cs->style);
1447 break;
1450 case WM_GETMINMAXINFO:
1452 HWND client = GetParent(hwnd);
1453 RECT rc;
1454 MINMAXINFO *minmax = (MINMAXINFO *)lparam;
1455 MINMAXINFO my_minmax;
1456 LONG style, exstyle;
1458 style = GetWindowLongA(hwnd, GWL_STYLE);
1459 exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
1461 GetWindowRect(client, &rc);
1462 trace("MDI client %p window size = (%d x %d)\n", client, rc.right-rc.left, rc.bottom-rc.top);
1463 GetClientRect(client, &rc);
1464 trace("MDI client %p client size = (%d x %d)\n", client, rc.right, rc.bottom);
1465 trace("screen size: %d x %d\n", GetSystemMetrics(SM_CXSCREEN),
1466 GetSystemMetrics(SM_CYSCREEN));
1468 GetClientRect(client, &rc);
1469 if ((style & WS_CAPTION) == WS_CAPTION)
1470 style &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
1471 AdjustWindowRectEx(&rc, style, 0, exstyle);
1472 trace("MDI child: calculated max window size = (%d x %d)\n", rc.right-rc.left, rc.bottom-rc.top);
1473 dump_minmax_info( minmax );
1475 ok(minmax->ptMaxSize.x == rc.right - rc.left, "default width of maximized child %d != %d\n",
1476 minmax->ptMaxSize.x, rc.right - rc.left);
1477 ok(minmax->ptMaxSize.y == rc.bottom - rc.top, "default height of maximized child %d != %d\n",
1478 minmax->ptMaxSize.y, rc.bottom - rc.top);
1480 DefMDIChildProcA(hwnd, msg, wparam, lparam);
1482 trace("DefMDIChildProc returned:\n");
1483 dump_minmax_info( minmax );
1485 MDI_ChildGetMinMaxInfo(client, hwnd, &my_minmax);
1486 ok(minmax->ptMaxSize.x == my_minmax.ptMaxSize.x, "default width of maximized child %d != %d\n",
1487 minmax->ptMaxSize.x, my_minmax.ptMaxSize.x);
1488 ok(minmax->ptMaxSize.y == my_minmax.ptMaxSize.y, "default height of maximized child %d != %d\n",
1489 minmax->ptMaxSize.y, my_minmax.ptMaxSize.y);
1491 return 1;
1494 case WM_MDIACTIVATE:
1496 HWND active, client = GetParent(hwnd);
1497 /*trace("%p WM_MDIACTIVATE %08x %08lx\n", hwnd, wparam, lparam);*/
1498 active = (HWND)SendMessageA(client, WM_MDIGETACTIVE, 0, 0);
1499 if (hwnd == (HWND)lparam) /* if we are being activated */
1500 ok (active == (HWND)lparam, "new active %p != active %p\n", (HWND)lparam, active);
1501 else
1502 ok (active == (HWND)wparam, "old active %p != active %p\n", (HWND)wparam, active);
1503 break;
1506 return DefMDIChildProcA(hwnd, msg, wparam, lparam);
1509 static LRESULT WINAPI mdi_child_wnd_proc_2(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1511 switch (msg)
1513 case WM_NCCREATE:
1514 case WM_CREATE:
1516 CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
1518 trace("%s: x %d, y %d, cx %d, cy %d\n", (msg == WM_NCCREATE) ? "WM_NCCREATE" : "WM_CREATE",
1519 cs->x, cs->y, cs->cx, cs->cy);
1521 ok(!(cs->dwExStyle & WS_EX_MDICHILD), "WS_EX_MDICHILD should not be set\n");
1522 ok(cs->lpCreateParams == mdi_lParam_test_message, "wrong cs->lpCreateParams\n");
1524 ok(!lstrcmpA(cs->lpszClass, "MDI_child_Class_2"), "wrong class name\n");
1525 ok(!lstrcmpA(cs->lpszName, "MDI child"), "wrong title\n");
1527 /* CREATESTRUCT should have fixed values */
1528 /* For some reason Win9x doesn't translate cs->x from CW_USEDEFAULT,
1529 while NT does. */
1530 /*ok(cs->x != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->x);*/
1531 ok(cs->y != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->y);
1533 /* cx/cy == CW_USEDEFAULT are translated to 0 */
1534 /* For some reason Win98 doesn't translate cs->cx from CW_USEDEFAULT,
1535 while Win95, Win2k, WinXP do. */
1536 /*ok(cs->cx == 0, "%d != 0\n", cs->cx);*/
1537 ok(cs->cy == 0, "%d != 0\n", cs->cy);
1538 break;
1541 case WM_GETMINMAXINFO:
1543 HWND parent = GetParent(hwnd);
1544 RECT rc;
1545 MINMAXINFO *minmax = (MINMAXINFO *)lparam;
1546 LONG style, exstyle;
1548 style = GetWindowLongA(hwnd, GWL_STYLE);
1549 exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
1551 GetClientRect(parent, &rc);
1552 trace("WM_GETMINMAXINFO: parent %p client size = (%d x %d)\n", parent, rc.right, rc.bottom);
1554 GetClientRect(parent, &rc);
1555 if ((style & WS_CAPTION) == WS_CAPTION)
1556 style &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
1557 AdjustWindowRectEx(&rc, style, 0, exstyle);
1558 dump_minmax_info( minmax );
1560 ok(minmax->ptMaxSize.x == rc.right - rc.left, "default width of maximized child %d != %d\n",
1561 minmax->ptMaxSize.x, rc.right - rc.left);
1562 ok(minmax->ptMaxSize.y == rc.bottom - rc.top, "default height of maximized child %d != %d\n",
1563 minmax->ptMaxSize.y, rc.bottom - rc.top);
1564 break;
1567 case WM_WINDOWPOSCHANGED:
1569 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1570 RECT rc1, rc2;
1572 GetWindowRect(hwnd, &rc1);
1573 SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
1574 /* note: winpos coordinates are relative to parent */
1575 MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
1576 ok(EqualRect(&rc1, &rc2), "rects do not match, window=(%d,%d)-(%d,%d) pos=(%d,%d)-(%d,%d)\n",
1577 rc1.left, rc1.top, rc1.right, rc1.bottom,
1578 rc2.left, rc2.top, rc2.right, rc2.bottom);
1579 GetWindowRect(hwnd, &rc1);
1580 GetClientRect(hwnd, &rc2);
1581 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
1582 MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
1583 ok(EqualRect(&rc1, &rc2), "rects do not match, window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d)\n",
1584 rc1.left, rc1.top, rc1.right, rc1.bottom,
1585 rc2.left, rc2.top, rc2.right, rc2.bottom);
1587 /* fall through */
1588 case WM_WINDOWPOSCHANGING:
1590 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1591 WINDOWPOS my_winpos = *winpos;
1593 trace("%s: %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1594 (msg == WM_WINDOWPOSCHANGING) ? "WM_WINDOWPOSCHANGING" : "WM_WINDOWPOSCHANGED",
1595 winpos->hwnd, winpos->hwndInsertAfter,
1596 winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1598 DefWindowProcA(hwnd, msg, wparam, lparam);
1600 ok(!memcmp(&my_winpos, winpos, sizeof(WINDOWPOS)),
1601 "DefWindowProc should not change WINDOWPOS: %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1602 winpos->hwnd, winpos->hwndInsertAfter,
1603 winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1605 return 1;
1608 return DefWindowProcA(hwnd, msg, wparam, lparam);
1611 static LRESULT WINAPI mdi_main_wnd_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1613 static HWND mdi_client;
1615 switch (msg)
1617 case WM_CREATE:
1619 CLIENTCREATESTRUCT client_cs;
1620 RECT rc;
1622 GetClientRect(hwnd, &rc);
1624 client_cs.hWindowMenu = 0;
1625 client_cs.idFirstChild = 1;
1627 /* MDIClient without MDIS_ALLCHILDSTYLES */
1628 mdi_client = CreateWindowExA(0, "mdiclient",
1629 NULL,
1630 WS_CHILD /*| WS_VISIBLE*/,
1631 /* tests depend on a not zero MDIClient size */
1632 0, 0, rc.right, rc.bottom,
1633 hwnd, 0, GetModuleHandle(0),
1634 &client_cs);
1635 assert(mdi_client);
1636 test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1637 DestroyWindow(mdi_client);
1639 /* MDIClient with MDIS_ALLCHILDSTYLES */
1640 mdi_client = CreateWindowExA(0, "mdiclient",
1641 NULL,
1642 WS_CHILD | MDIS_ALLCHILDSTYLES /*| WS_VISIBLE*/,
1643 /* tests depend on a not zero MDIClient size */
1644 0, 0, rc.right, rc.bottom,
1645 hwnd, 0, GetModuleHandle(0),
1646 &client_cs);
1647 assert(mdi_client);
1648 test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1649 DestroyWindow(mdi_client);
1650 break;
1653 case WM_WINDOWPOSCHANGED:
1655 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1656 RECT rc1, rc2;
1658 GetWindowRect(hwnd, &rc1);
1659 trace("window: (%d,%d)-(%d,%d)\n", rc1.left, rc1.top, rc1.right, rc1.bottom);
1660 SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
1661 /* note: winpos coordinates are relative to parent */
1662 MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
1663 trace("pos: (%d,%d)-(%d,%d)\n", rc2.left, rc2.top, rc2.right, rc2.bottom);
1664 ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1666 GetWindowRect(hwnd, &rc1);
1667 GetClientRect(hwnd, &rc2);
1668 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
1669 MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
1670 ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1672 /* fall through */
1673 case WM_WINDOWPOSCHANGING:
1675 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1676 WINDOWPOS my_winpos = *winpos;
1678 trace("%s\n", (msg == WM_WINDOWPOSCHANGING) ? "WM_WINDOWPOSCHANGING" : "WM_WINDOWPOSCHANGED");
1679 trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1680 winpos->hwnd, winpos->hwndInsertAfter,
1681 winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1683 DefWindowProcA(hwnd, msg, wparam, lparam);
1685 trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1686 winpos->hwnd, winpos->hwndInsertAfter,
1687 winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1689 ok(!memcmp(&my_winpos, winpos, sizeof(WINDOWPOS)),
1690 "DefWindowProc should not change WINDOWPOS values\n");
1692 return 1;
1695 case WM_CLOSE:
1696 PostQuitMessage(0);
1697 break;
1699 return DefFrameProcA(hwnd, mdi_client, msg, wparam, lparam);
1702 static BOOL mdi_RegisterWindowClasses(void)
1704 WNDCLASSA cls;
1706 cls.style = 0;
1707 cls.lpfnWndProc = mdi_main_wnd_procA;
1708 cls.cbClsExtra = 0;
1709 cls.cbWndExtra = 0;
1710 cls.hInstance = GetModuleHandleA(0);
1711 cls.hIcon = 0;
1712 cls.hCursor = LoadCursorA(0, IDC_ARROW);
1713 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
1714 cls.lpszMenuName = NULL;
1715 cls.lpszClassName = "MDI_parent_Class";
1716 if(!RegisterClassA(&cls)) return FALSE;
1718 cls.lpfnWndProc = mdi_child_wnd_proc_1;
1719 cls.lpszClassName = "MDI_child_Class_1";
1720 if(!RegisterClassA(&cls)) return FALSE;
1722 cls.lpfnWndProc = mdi_child_wnd_proc_2;
1723 cls.lpszClassName = "MDI_child_Class_2";
1724 if(!RegisterClassA(&cls)) return FALSE;
1726 return TRUE;
1729 static void test_mdi(void)
1731 HWND mdi_hwndMain;
1732 /*MSG msg;*/
1734 if (!mdi_RegisterWindowClasses()) assert(0);
1736 mdi_hwndMain = CreateWindowExA(0, "MDI_parent_Class", "MDI parent window",
1737 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
1738 WS_MAXIMIZEBOX /*| WS_VISIBLE*/,
1739 100, 100, CW_USEDEFAULT, CW_USEDEFAULT,
1740 GetDesktopWindow(), 0,
1741 GetModuleHandle(0), NULL);
1742 assert(mdi_hwndMain);
1744 while(GetMessage(&msg, 0, 0, 0))
1746 TranslateMessage(&msg);
1747 DispatchMessage(&msg);
1750 DestroyWindow(mdi_hwndMain);
1753 static void test_icons(void)
1755 WNDCLASSEXA cls;
1756 HWND hwnd;
1757 HICON icon = LoadIconA(0, IDI_APPLICATION);
1758 HICON icon2 = LoadIconA(0, IDI_QUESTION);
1759 HICON small_icon = LoadImageA(0, IDI_APPLICATION, IMAGE_ICON,
1760 GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED );
1761 HICON res;
1763 cls.cbSize = sizeof(cls);
1764 cls.style = 0;
1765 cls.lpfnWndProc = DefWindowProcA;
1766 cls.cbClsExtra = 0;
1767 cls.cbWndExtra = 0;
1768 cls.hInstance = 0;
1769 cls.hIcon = LoadIconA(0, IDI_HAND);
1770 cls.hIconSm = small_icon;
1771 cls.hCursor = LoadCursorA(0, IDC_ARROW);
1772 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
1773 cls.lpszMenuName = NULL;
1774 cls.lpszClassName = "IconWindowClass";
1776 RegisterClassExA(&cls);
1778 hwnd = CreateWindowExA(0, "IconWindowClass", "icon test", 0,
1779 100, 100, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, NULL, NULL);
1780 assert( hwnd );
1782 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1783 ok( res == 0, "wrong big icon %p/0\n", res );
1784 res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_BIG, (LPARAM)icon );
1785 ok( res == 0, "wrong previous big icon %p/0\n", res );
1786 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1787 ok( res == icon, "wrong big icon after set %p/%p\n", res, icon );
1788 res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_BIG, (LPARAM)icon2 );
1789 ok( res == icon, "wrong previous big icon %p/%p\n", res, icon );
1790 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1791 ok( res == icon2, "wrong big icon after set %p/%p\n", res, icon2 );
1793 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1794 ok( res == 0, "wrong small icon %p/0\n", res );
1795 /* this test is XP specific */
1796 /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1797 ok( res != 0, "wrong small icon %p\n", res );*/
1798 res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_SMALL, (LPARAM)icon );
1799 ok( res == 0, "wrong previous small icon %p/0\n", res );
1800 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1801 ok( res == icon, "wrong small icon after set %p/%p\n", res, icon );
1802 /* this test is XP specific */
1803 /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1804 ok( res == icon, "wrong small icon after set %p/%p\n", res, icon );*/
1805 res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_SMALL, (LPARAM)small_icon );
1806 ok( res == icon, "wrong previous small icon %p/%p\n", res, icon );
1807 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1808 ok( res == small_icon, "wrong small icon after set %p/%p\n", res, small_icon );
1809 /* this test is XP specific */
1810 /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1811 ok( res == small_icon, "wrong small icon after set %p/%p\n", res, small_icon );*/
1813 /* make sure the big icon hasn't changed */
1814 res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1815 ok( res == icon2, "wrong big icon after set %p/%p\n", res, icon2 );
1817 DestroyWindow( hwnd );
1820 static LRESULT WINAPI nccalcsize_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1822 if (msg == WM_NCCALCSIZE)
1824 RECT *rect = (RECT *)lparam;
1825 /* first time around increase the rectangle, next time decrease it */
1826 if (rect->left == 100) InflateRect( rect, 10, 10 );
1827 else InflateRect( rect, -10, -10 );
1828 return 0;
1830 return DefWindowProc( hwnd, msg, wparam, lparam );
1833 static void test_SetWindowPos(HWND hwnd)
1835 RECT orig_win_rc, rect;
1836 LONG_PTR old_proc;
1837 BOOL is_win9x = GetWindowLongPtrW(hwnd, GWLP_WNDPROC) == 0;
1839 SetRect(&rect, 111, 222, 333, 444);
1840 ok(!GetWindowRect(0, &rect), "GetWindowRect succeeded\n");
1841 ok(rect.left == 111 && rect.top == 222 && rect.right == 333 && rect.bottom == 444,
1842 "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1844 SetRect(&rect, 111, 222, 333, 444);
1845 ok(!GetClientRect(0, &rect), "GetClientRect succeeded\n");
1846 ok(rect.left == 111 && rect.top == 222 && rect.right == 333 && rect.bottom == 444,
1847 "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1849 GetWindowRect(hwnd, &orig_win_rc);
1851 old_proc = SetWindowLongPtr( hwnd, GWLP_WNDPROC, (ULONG_PTR)nccalcsize_proc );
1852 SetWindowPos(hwnd, 0, 100, 100, 0, 0, SWP_NOZORDER|SWP_FRAMECHANGED);
1853 GetWindowRect( hwnd, &rect );
1854 ok( rect.left == 100 && rect.top == 100 && rect.right == 100 && rect.bottom == 100,
1855 "invalid window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1856 GetClientRect( hwnd, &rect );
1857 MapWindowPoints( hwnd, 0, (POINT *)&rect, 2 );
1858 ok( rect.left == 90 && rect.top == 90 && rect.right == 110 && rect.bottom == 110,
1859 "invalid client rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1861 SetWindowPos(hwnd, 0, 200, 200, 0, 0, SWP_NOZORDER|SWP_FRAMECHANGED);
1862 GetWindowRect( hwnd, &rect );
1863 ok( rect.left == 200 && rect.top == 200 && rect.right == 200 && rect.bottom == 200,
1864 "invalid window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1865 GetClientRect( hwnd, &rect );
1866 MapWindowPoints( hwnd, 0, (POINT *)&rect, 2 );
1867 ok( rect.left == 210 && rect.top == 210 && rect.right == 190 && rect.bottom == 190,
1868 "invalid client rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1870 SetWindowPos(hwnd, 0, orig_win_rc.left, orig_win_rc.top,
1871 orig_win_rc.right, orig_win_rc.bottom, 0);
1872 SetWindowLongPtr( hwnd, GWLP_WNDPROC, old_proc );
1874 /* Win9x truncates coordinates to 16-bit irrespectively */
1875 if (!is_win9x)
1877 SetWindowPos(hwnd, 0, -32769, -40000, -32769, -90000, SWP_NOMOVE);
1878 SetWindowPos(hwnd, 0, 32768, 40000, 32768, 40000, SWP_NOMOVE);
1880 SetWindowPos(hwnd, 0, -32769, -40000, -32769, -90000, SWP_NOSIZE);
1881 SetWindowPos(hwnd, 0, 32768, 40000, 32768, 40000, SWP_NOSIZE);
1884 SetWindowPos(hwnd, 0, orig_win_rc.left, orig_win_rc.top,
1885 orig_win_rc.right, orig_win_rc.bottom, 0);
1887 ok(!(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST), "WS_EX_TOPMOST should not be set\n");
1888 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1889 ok(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST, "WS_EX_TOPMOST should be set\n");
1890 SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1891 ok(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST, "WS_EX_TOPMOST should be set\n");
1892 SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1893 ok(!(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST), "WS_EX_TOPMOST should not be set\n");
1896 static void test_SetMenu(HWND parent)
1898 HWND child;
1899 HMENU hMenu, ret;
1900 BOOL is_win9x = GetWindowLongPtrW(parent, GWLP_WNDPROC) == 0;
1901 BOOL retok;
1902 DWORD style;
1904 hMenu = CreateMenu();
1905 assert(hMenu);
1907 ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
1908 if (0)
1910 /* fails on (at least) Wine, NT4, XP SP2 */
1911 test_nonclient_area(parent);
1913 ret = GetMenu(parent);
1914 ok(ret == hMenu, "unexpected menu id %p\n", ret);
1915 /* test whether we can destroy a menu assigned to a window */
1916 retok = DestroyMenu(hMenu);
1917 ok( retok, "DestroyMenu error %d\n", GetLastError());
1918 retok = IsMenu(hMenu);
1919 ok(!retok || broken(retok) /* nt4 */, "menu handle should be not valid after DestroyMenu\n");
1920 ret = GetMenu(parent);
1921 /* This test fails on Win9x */
1922 if (!is_win9x)
1923 ok(ret == hMenu, "unexpected menu id %p\n", ret);
1924 ok(SetMenu(parent, 0), "SetMenu(0) on a top level window should not fail\n");
1925 test_nonclient_area(parent);
1927 hMenu = CreateMenu();
1928 assert(hMenu);
1930 /* parent */
1931 ret = GetMenu(parent);
1932 ok(ret == 0, "unexpected menu id %p\n", ret);
1934 ok(!SetMenu(parent, (HMENU)20), "SetMenu with invalid menu handle should fail\n");
1935 test_nonclient_area(parent);
1936 ret = GetMenu(parent);
1937 ok(ret == 0, "unexpected menu id %p\n", ret);
1939 ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
1940 if (0)
1942 /* fails on (at least) Wine, NT4, XP SP2 */
1943 test_nonclient_area(parent);
1945 ret = GetMenu(parent);
1946 ok(ret == hMenu, "unexpected menu id %p\n", ret);
1948 ok(SetMenu(parent, 0), "SetMenu(0) on a top level window should not fail\n");
1949 test_nonclient_area(parent);
1950 ret = GetMenu(parent);
1951 ok(ret == 0, "unexpected menu id %p\n", ret);
1953 /* child */
1954 child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, parent, (HMENU)10, 0, NULL);
1955 assert(child);
1957 ret = GetMenu(child);
1958 ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1960 ok(!SetMenu(child, (HMENU)20), "SetMenu with invalid menu handle should fail\n");
1961 test_nonclient_area(child);
1962 ret = GetMenu(child);
1963 ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1965 ok(!SetMenu(child, hMenu), "SetMenu on a child window should fail\n");
1966 test_nonclient_area(child);
1967 ret = GetMenu(child);
1968 ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1970 ok(!SetMenu(child, 0), "SetMenu(0) on a child window should fail\n");
1971 test_nonclient_area(child);
1972 ret = GetMenu(child);
1973 ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1975 style = GetWindowLong(child, GWL_STYLE);
1976 SetWindowLong(child, GWL_STYLE, style | WS_POPUP);
1977 ok(SetMenu(child, hMenu), "SetMenu on a popup child window should not fail\n");
1978 ok(SetMenu(child, 0), "SetMenu on a popup child window should not fail\n");
1979 SetWindowLong(child, GWL_STYLE, style);
1981 SetWindowLong(child, GWL_STYLE, style | WS_OVERLAPPED);
1982 ok(!SetMenu(child, hMenu), "SetMenu on a overlapped child window should fail\n");
1983 SetWindowLong(child, GWL_STYLE, style);
1985 DestroyWindow(child);
1986 DestroyMenu(hMenu);
1989 static void test_window_tree(HWND parent, const DWORD *style, const int *order, int total)
1991 HWND child[5], hwnd;
1992 INT_PTR i;
1994 assert(total <= 5);
1996 hwnd = GetWindow(parent, GW_CHILD);
1997 ok(!hwnd, "have to start without children to perform the test\n");
1999 for (i = 0; i < total; i++)
2001 if (style[i] & DS_CONTROL)
2003 child[i] = CreateWindowExA(0, MAKEINTATOM(32770), "", style[i] & ~WS_VISIBLE,
2004 0,0,0,0, parent, (HMENU)i, 0, NULL);
2005 if (style[i] & WS_VISIBLE)
2006 ShowWindow(child[i], SW_SHOW);
2008 SetWindowPos(child[i], HWND_BOTTOM, 0,0,10,10, SWP_NOACTIVATE);
2010 else
2011 child[i] = CreateWindowExA(0, "static", "", style[i], 0,0,10,10,
2012 parent, (HMENU)i, 0, NULL);
2013 trace("child[%ld] = %p\n", i, child[i]);
2014 ok(child[i] != 0, "CreateWindowEx failed to create child window\n");
2017 hwnd = GetWindow(parent, GW_CHILD);
2018 ok(hwnd != 0, "GetWindow(GW_CHILD) failed\n");
2019 ok(hwnd == GetWindow(child[total - 1], GW_HWNDFIRST), "GW_HWNDFIRST is wrong\n");
2020 ok(child[order[total - 1]] == GetWindow(child[0], GW_HWNDLAST), "GW_HWNDLAST is wrong\n");
2022 for (i = 0; i < total; i++)
2024 trace("hwnd[%ld] = %p\n", i, hwnd);
2025 ok(child[order[i]] == hwnd, "Z order of child #%ld is wrong\n", i);
2027 hwnd = GetWindow(hwnd, GW_HWNDNEXT);
2030 for (i = 0; i < total; i++)
2031 ok(DestroyWindow(child[i]), "DestroyWindow failed\n");
2034 static void test_children_zorder(HWND parent)
2036 const DWORD simple_style[5] = { WS_CHILD, WS_CHILD, WS_CHILD, WS_CHILD,
2037 WS_CHILD };
2038 const int simple_order[5] = { 0, 1, 2, 3, 4 };
2040 const DWORD complex_style[5] = { WS_CHILD, WS_CHILD | WS_MAXIMIZE,
2041 WS_CHILD | WS_VISIBLE, WS_CHILD,
2042 WS_CHILD | WS_MAXIMIZE | WS_VISIBLE };
2043 const int complex_order_1[1] = { 0 };
2044 const int complex_order_2[2] = { 1, 0 };
2045 const int complex_order_3[3] = { 1, 0, 2 };
2046 const int complex_order_4[4] = { 1, 0, 2, 3 };
2047 const int complex_order_5[5] = { 4, 1, 0, 2, 3 };
2048 const DWORD complex_style_6[3] = { WS_CHILD | WS_VISIBLE,
2049 WS_CHILD | WS_CLIPSIBLINGS | DS_CONTROL | WS_VISIBLE,
2050 WS_CHILD | WS_VISIBLE };
2051 const int complex_order_6[3] = { 0, 1, 2 };
2053 /* simple WS_CHILD */
2054 test_window_tree(parent, simple_style, simple_order, 5);
2056 /* complex children styles */
2057 test_window_tree(parent, complex_style, complex_order_1, 1);
2058 test_window_tree(parent, complex_style, complex_order_2, 2);
2059 test_window_tree(parent, complex_style, complex_order_3, 3);
2060 test_window_tree(parent, complex_style, complex_order_4, 4);
2061 test_window_tree(parent, complex_style, complex_order_5, 5);
2063 /* another set of complex children styles */
2064 test_window_tree(parent, complex_style_6, complex_order_6, 3);
2067 #define check_z_order(hwnd, next, prev, owner, topmost) \
2068 check_z_order_debug((hwnd), (next), (prev), (owner), (topmost), \
2069 __FILE__, __LINE__)
2071 static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
2072 BOOL topmost, const char *file, int line)
2074 HWND test;
2075 DWORD ex_style;
2077 test = GetWindow(hwnd, GW_HWNDNEXT);
2078 /* skip foreign windows */
2079 while (test && test != next &&
2080 (GetWindowThreadProcessId(test, NULL) != our_pid ||
2081 UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)) != GetModuleHandle(0) ||
2082 GetWindow(test, GW_OWNER) == next))
2084 /*trace("skipping next %p (%p)\n", test, UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)));*/
2085 test = GetWindow(test, GW_HWNDNEXT);
2087 ok_(file, line)(next == test, "expected next %p, got %p\n", next, test);
2089 test = GetWindow(hwnd, GW_HWNDPREV);
2090 /* skip foreign windows */
2091 while (test && test != prev &&
2092 (GetWindowThreadProcessId(test, NULL) != our_pid ||
2093 UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)) != GetModuleHandle(0) ||
2094 GetWindow(test, GW_OWNER) == hwnd))
2096 /*trace("skipping prev %p (%p)\n", test, UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)));*/
2097 test = GetWindow(test, GW_HWNDPREV);
2099 ok_(file, line)(prev == test, "expected prev %p, got %p\n", prev, test);
2101 test = GetWindow(hwnd, GW_OWNER);
2102 ok_(file, line)(owner == test, "expected owner %p, got %p\n", owner, test);
2104 ex_style = GetWindowLong(hwnd, GWL_EXSTYLE);
2105 ok_(file, line)(!(ex_style & WS_EX_TOPMOST) == !topmost, "expected %stopmost\n", topmost ? "" : "NOT ");
2108 static void test_popup_zorder(HWND hwnd_D, HWND hwnd_E)
2110 HWND hwnd_A, hwnd_B, hwnd_C, hwnd_F;
2112 trace("hwnd_D %p, hwnd_E %p\n", hwnd_D, hwnd_E);
2114 SetWindowPos(hwnd_E, hwnd_D, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2116 check_z_order(hwnd_D, hwnd_E, 0, 0, FALSE);
2117 check_z_order(hwnd_E, 0, hwnd_D, 0, FALSE);
2119 hwnd_F = CreateWindowEx(0, "MainWindowClass", "Owner window",
2120 WS_OVERLAPPED | WS_CAPTION,
2121 100, 100, 100, 100,
2122 0, 0, GetModuleHandle(0), NULL);
2123 trace("hwnd_F %p\n", hwnd_F);
2124 check_z_order(hwnd_F, hwnd_D, 0, 0, FALSE);
2126 SetWindowPos(hwnd_F, hwnd_E, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2127 check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2128 check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2129 check_z_order(hwnd_D, hwnd_E, 0, 0, FALSE);
2131 hwnd_C = CreateWindowEx(0, "MainWindowClass", NULL,
2132 WS_POPUP,
2133 100, 100, 100, 100,
2134 hwnd_F, 0, GetModuleHandle(0), NULL);
2135 trace("hwnd_C %p\n", hwnd_C);
2136 check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2137 check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2138 check_z_order(hwnd_D, hwnd_E, hwnd_C, 0, FALSE);
2139 check_z_order(hwnd_C, hwnd_D, 0, hwnd_F, FALSE);
2141 hwnd_B = CreateWindowEx(WS_EX_TOPMOST, "MainWindowClass", NULL,
2142 WS_POPUP,
2143 100, 100, 100, 100,
2144 hwnd_F, 0, GetModuleHandle(0), NULL);
2145 trace("hwnd_B %p\n", hwnd_B);
2146 check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2147 check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2148 check_z_order(hwnd_D, hwnd_E, hwnd_C, 0, FALSE);
2149 check_z_order(hwnd_C, hwnd_D, hwnd_B, hwnd_F, FALSE);
2150 check_z_order(hwnd_B, hwnd_C, 0, hwnd_F, TRUE);
2152 hwnd_A = CreateWindowEx(WS_EX_TOPMOST, "MainWindowClass", NULL,
2153 WS_POPUP,
2154 100, 100, 100, 100,
2155 0, 0, GetModuleHandle(0), NULL);
2156 trace("hwnd_A %p\n", hwnd_A);
2157 check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2158 check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2159 check_z_order(hwnd_D, hwnd_E, hwnd_C, 0, FALSE);
2160 check_z_order(hwnd_C, hwnd_D, hwnd_B, hwnd_F, FALSE);
2161 check_z_order(hwnd_B, hwnd_C, hwnd_A, hwnd_F, TRUE);
2162 check_z_order(hwnd_A, hwnd_B, 0, 0, TRUE);
2164 trace("A %p B %p C %p D %p E %p F %p\n", hwnd_A, hwnd_B, hwnd_C, hwnd_D, hwnd_E, hwnd_F);
2166 /* move hwnd_F and its popups up */
2167 SetWindowPos(hwnd_F, HWND_TOP, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2168 check_z_order(hwnd_E, 0, hwnd_D, 0, FALSE);
2169 check_z_order(hwnd_D, hwnd_E, hwnd_F, 0, FALSE);
2170 check_z_order(hwnd_F, hwnd_D, hwnd_C, 0, FALSE);
2171 check_z_order(hwnd_C, hwnd_F, hwnd_B, hwnd_F, FALSE);
2172 check_z_order(hwnd_B, hwnd_C, hwnd_A, hwnd_F, TRUE);
2173 check_z_order(hwnd_A, hwnd_B, 0, 0, TRUE);
2175 /* move hwnd_F and its popups down */
2176 #if 0 /* enable once Wine is fixed to pass this test */
2177 SetWindowPos(hwnd_F, HWND_BOTTOM, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2178 check_z_order(hwnd_F, 0, hwnd_C, 0, FALSE);
2179 check_z_order(hwnd_C, hwnd_F, hwnd_B, hwnd_F, FALSE);
2180 check_z_order(hwnd_B, hwnd_C, hwnd_E, hwnd_F, FALSE);
2181 check_z_order(hwnd_E, hwnd_B, hwnd_D, 0, FALSE);
2182 check_z_order(hwnd_D, hwnd_E, hwnd_A, 0, FALSE);
2183 check_z_order(hwnd_A, hwnd_D, 0, 0, TRUE);
2184 #endif
2186 DestroyWindow(hwnd_A);
2187 DestroyWindow(hwnd_B);
2188 DestroyWindow(hwnd_C);
2189 DestroyWindow(hwnd_F);
2192 static void test_vis_rgn( HWND hwnd )
2194 RECT win_rect, rgn_rect;
2195 HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
2196 HDC hdc;
2198 ShowWindow(hwnd,SW_SHOW);
2199 hdc = GetDC( hwnd );
2200 ok( GetRandomRgn( hdc, hrgn, SYSRGN ) != 0, "GetRandomRgn failed\n" );
2201 GetWindowRect( hwnd, &win_rect );
2202 GetRgnBox( hrgn, &rgn_rect );
2203 if (GetVersion() & 0x80000000)
2205 trace("win9x, mapping to screen coords\n");
2206 MapWindowPoints( hwnd, 0, (POINT *)&rgn_rect, 2 );
2208 trace("win: %d,%d-%d,%d\n", win_rect.left, win_rect.top, win_rect.right, win_rect.bottom );
2209 trace("rgn: %d,%d-%d,%d\n", rgn_rect.left, rgn_rect.top, rgn_rect.right, rgn_rect.bottom );
2210 ok( win_rect.left <= rgn_rect.left, "rgn left %d not inside win rect %d\n",
2211 rgn_rect.left, win_rect.left );
2212 ok( win_rect.top <= rgn_rect.top, "rgn top %d not inside win rect %d\n",
2213 rgn_rect.top, win_rect.top );
2214 ok( win_rect.right >= rgn_rect.right, "rgn right %d not inside win rect %d\n",
2215 rgn_rect.right, win_rect.right );
2216 ok( win_rect.bottom >= rgn_rect.bottom, "rgn bottom %d not inside win rect %d\n",
2217 rgn_rect.bottom, win_rect.bottom );
2218 ReleaseDC( hwnd, hdc );
2221 static LRESULT WINAPI set_focus_on_activate_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
2223 if (msg == WM_ACTIVATE && LOWORD(wp) == WA_ACTIVE)
2225 HWND child = GetWindow(hwnd, GW_CHILD);
2226 ok(child != 0, "couldn't find child window\n");
2227 SetFocus(child);
2228 ok(GetFocus() == child, "Focus should be on child %p\n", child);
2229 return 0;
2231 return DefWindowProc(hwnd, msg, wp, lp);
2234 static void test_SetFocus(HWND hwnd)
2236 HWND child;
2237 WNDPROC old_wnd_proc;
2239 /* check if we can set focus to non-visible windows */
2241 ShowWindow(hwnd, SW_SHOW);
2242 SetFocus(0);
2243 SetFocus(hwnd);
2244 ok( GetFocus() == hwnd, "Failed to set focus to visible window %p\n", hwnd );
2245 ok( GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE, "Window %p not visible\n", hwnd );
2246 ShowWindow(hwnd, SW_HIDE);
2247 SetFocus(0);
2248 SetFocus(hwnd);
2249 ok( GetFocus() == hwnd, "Failed to set focus to invisible window %p\n", hwnd );
2250 ok( !(GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE), "Window %p still visible\n", hwnd );
2251 child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2252 assert(child);
2253 SetFocus(child);
2254 ok( GetFocus() == child, "Failed to set focus to invisible child %p\n", child );
2255 ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
2256 ShowWindow(child, SW_SHOW);
2257 ok( GetWindowLong(child,GWL_STYLE) & WS_VISIBLE, "Child %p is not visible\n", child );
2258 ok( GetFocus() == child, "Focus no longer on child %p\n", child );
2259 ShowWindow(child, SW_HIDE);
2260 ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
2261 ok( GetFocus() == hwnd, "Focus should be on parent %p, not %p\n", hwnd, GetFocus() );
2262 ShowWindow(child, SW_SHOW);
2263 SetFocus(child);
2264 ok( GetFocus() == child, "Focus should be on child %p\n", child );
2265 SetWindowPos(child,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_HIDEWINDOW);
2266 ok( GetFocus() == child, "Focus should still be on child %p\n", child );
2268 ShowWindow(child, SW_HIDE);
2269 SetFocus(hwnd);
2270 ok( GetFocus() == hwnd, "Focus should be on parent %p, not %p\n", hwnd, GetFocus() );
2271 SetWindowPos(child,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_SHOWWINDOW);
2272 ok( GetFocus() == hwnd, "Focus should still be on parent %p, not %p\n", hwnd, GetFocus() );
2273 ShowWindow(child, SW_HIDE);
2274 ok( GetFocus() == hwnd, "Focus should still be on parent %p, not %p\n", hwnd, GetFocus() );
2276 ShowWindow(hwnd, SW_SHOW);
2277 ShowWindow(child, SW_SHOW);
2278 SetFocus(child);
2279 ok( GetFocus() == child, "Focus should be on child %p\n", child );
2280 EnableWindow(hwnd, FALSE);
2281 ok( GetFocus() == child, "Focus should still be on child %p\n", child );
2282 EnableWindow(hwnd, TRUE);
2284 ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2285 ShowWindow(hwnd, SW_SHOWMINIMIZED);
2286 ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2287 todo_wine
2288 ok( GetFocus() != child, "Focus should not be on child %p\n", child );
2289 ok( GetFocus() != hwnd, "Focus should not be on parent %p\n", hwnd );
2290 ShowWindow(hwnd, SW_RESTORE);
2291 ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2292 ok( GetFocus() == hwnd, "Focus should be on parent %p\n", hwnd );
2293 ShowWindow(hwnd, SW_SHOWMINIMIZED);
2294 ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2295 ok( GetFocus() != child, "Focus should not be on child %p\n", child );
2296 todo_wine
2297 ok( GetFocus() != hwnd, "Focus should not be on parent %p\n", hwnd );
2298 old_wnd_proc = (WNDPROC)SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)set_focus_on_activate_proc);
2299 ShowWindow(hwnd, SW_RESTORE);
2300 ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2301 todo_wine
2302 ok( GetFocus() == child, "Focus should be on child %p, not %p\n", child, GetFocus() );
2304 SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)old_wnd_proc);
2306 DestroyWindow( child );
2309 #define check_wnd_state(a,b,c,d) check_wnd_state_(__FILE__,__LINE__,a,b,c,d)
2310 static void check_wnd_state_(const char *file, int line,
2311 HWND active, HWND foreground, HWND focus, HWND capture)
2313 ok_(file, line)(active == GetActiveWindow(), "GetActiveWindow() = %p\n", GetActiveWindow());
2314 if (foreground && GetForegroundWindow())
2315 ok_(file, line)(foreground == GetForegroundWindow(), "GetForegroundWindow() = %p\n", GetForegroundWindow());
2316 ok_(file, line)(focus == GetFocus(), "GetFocus() = %p\n", GetFocus());
2317 ok_(file, line)(capture == GetCapture(), "GetCapture() = %p\n", GetCapture());
2320 static void test_SetActiveWindow(HWND hwnd)
2322 HWND hwnd2;
2324 flush_events( TRUE );
2325 ShowWindow(hwnd, SW_HIDE);
2326 SetFocus(0);
2327 SetActiveWindow(0);
2328 check_wnd_state(0, 0, 0, 0);
2330 /*trace("testing SetActiveWindow %p\n", hwnd);*/
2332 ShowWindow(hwnd, SW_SHOW);
2333 check_wnd_state(hwnd, hwnd, hwnd, 0);
2335 hwnd2 = SetActiveWindow(0);
2336 ok(hwnd2 == hwnd, "SetActiveWindow returned %p instead of %p\n", hwnd2, hwnd);
2337 if (!GetActiveWindow()) /* doesn't always work on vista */
2339 check_wnd_state(0, 0, 0, 0);
2340 hwnd2 = SetActiveWindow(hwnd);
2341 ok(hwnd2 == 0, "SetActiveWindow returned %p instead of 0\n", hwnd2);
2343 check_wnd_state(hwnd, hwnd, hwnd, 0);
2345 SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2346 check_wnd_state(hwnd, hwnd, hwnd, 0);
2348 SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_SHOWWINDOW);
2349 check_wnd_state(hwnd, hwnd, hwnd, 0);
2351 ShowWindow(hwnd, SW_HIDE);
2352 check_wnd_state(0, 0, 0, 0);
2354 /*trace("testing SetActiveWindow on an invisible window %p\n", hwnd);*/
2355 SetActiveWindow(hwnd);
2356 check_wnd_state(hwnd, hwnd, hwnd, 0);
2358 ShowWindow(hwnd, SW_SHOW);
2359 check_wnd_state(hwnd, hwnd, hwnd, 0);
2361 hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2362 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2364 DestroyWindow(hwnd2);
2365 check_wnd_state(hwnd, hwnd, hwnd, 0);
2367 hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2368 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2370 SetWindowPos(hwnd2,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2371 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2373 DestroyWindow(hwnd2);
2374 check_wnd_state(hwnd, hwnd, hwnd, 0);
2377 static void test_SetForegroundWindow(HWND hwnd)
2379 BOOL ret;
2380 HWND hwnd2;
2382 flush_events( TRUE );
2383 ShowWindow(hwnd, SW_HIDE);
2384 SetFocus(0);
2385 SetActiveWindow(0);
2386 check_wnd_state(0, 0, 0, 0);
2388 /*trace("testing SetForegroundWindow %p\n", hwnd);*/
2390 ShowWindow(hwnd, SW_SHOW);
2391 check_wnd_state(hwnd, hwnd, hwnd, 0);
2393 hwnd2 = SetActiveWindow(0);
2394 ok(hwnd2 == hwnd, "SetActiveWindow(0) returned %p instead of %p\n", hwnd2, hwnd);
2395 if (GetActiveWindow() == hwnd) /* doesn't always work on vista */
2396 check_wnd_state(hwnd, hwnd, hwnd, 0);
2397 else
2398 check_wnd_state(0, 0, 0, 0);
2400 ret = SetForegroundWindow(hwnd);
2401 ok(ret, "SetForegroundWindow returned FALSE instead of TRUE\n");
2402 check_wnd_state(hwnd, hwnd, hwnd, 0);
2404 SetLastError(0xdeadbeef);
2405 ret = SetForegroundWindow(0);
2406 ok(!ret, "SetForegroundWindow returned TRUE instead of FALSE\n");
2407 ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE ||
2408 broken(GetLastError() == 0xdeadbeef), /* win9x */
2409 "got error %d expected ERROR_INVALID_WINDOW_HANDLE\n", GetLastError());
2410 check_wnd_state(hwnd, hwnd, hwnd, 0);
2412 SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2413 check_wnd_state(hwnd, hwnd, hwnd, 0);
2415 SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_SHOWWINDOW);
2416 check_wnd_state(hwnd, hwnd, hwnd, 0);
2418 hwnd2 = GetForegroundWindow();
2419 ok(hwnd2 == hwnd, "Wrong foreground window %p\n", hwnd2);
2420 ok(SetForegroundWindow( GetDesktopWindow() ), "SetForegroundWindow(desktop) error: %d\n", GetLastError());
2421 hwnd2 = GetForegroundWindow();
2422 ok(hwnd2 != hwnd, "Wrong foreground window %p\n", hwnd2);
2424 ShowWindow(hwnd, SW_HIDE);
2425 check_wnd_state(0, 0, 0, 0);
2427 /*trace("testing SetForegroundWindow on an invisible window %p\n", hwnd);*/
2428 ret = SetForegroundWindow(hwnd);
2429 ok(ret, "SetForegroundWindow returned FALSE instead of TRUE\n");
2430 check_wnd_state(hwnd, hwnd, hwnd, 0);
2432 ShowWindow(hwnd, SW_SHOW);
2433 check_wnd_state(hwnd, hwnd, hwnd, 0);
2435 hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2436 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2438 DestroyWindow(hwnd2);
2439 check_wnd_state(hwnd, hwnd, hwnd, 0);
2441 hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2442 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2444 SetWindowPos(hwnd2,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2445 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2447 DestroyWindow(hwnd2);
2448 check_wnd_state(hwnd, hwnd, hwnd, 0);
2451 static WNDPROC old_button_proc;
2453 static LRESULT WINAPI button_hook_proc(HWND button, UINT msg, WPARAM wparam, LPARAM lparam)
2455 LRESULT ret;
2456 USHORT key_state;
2458 key_state = GetKeyState(VK_LBUTTON);
2459 ok(!(key_state & 0x8000), "VK_LBUTTON should not be pressed, state %04x\n", key_state);
2461 ret = CallWindowProcA(old_button_proc, button, msg, wparam, lparam);
2463 if (msg == WM_LBUTTONDOWN)
2465 HWND hwnd, capture;
2467 check_wnd_state(button, button, button, button);
2469 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2470 assert(hwnd);
2471 trace("hwnd %p\n", hwnd);
2473 check_wnd_state(button, button, button, button);
2475 ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2477 check_wnd_state(button, button, button, button);
2479 DestroyWindow(hwnd);
2481 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2482 assert(hwnd);
2483 trace("hwnd %p\n", hwnd);
2485 check_wnd_state(button, button, button, button);
2487 /* button wnd proc should release capture on WM_KILLFOCUS if it does
2488 * match internal button state.
2490 SendMessage(button, WM_KILLFOCUS, 0, 0);
2491 check_wnd_state(button, button, button, 0);
2493 ShowWindow(hwnd, SW_SHOW);
2494 check_wnd_state(hwnd, hwnd, hwnd, 0);
2496 capture = SetCapture(hwnd);
2497 ok(capture == 0, "SetCapture() = %p\n", capture);
2499 check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2501 DestroyWindow(hwnd);
2503 check_wnd_state(button, 0, button, 0);
2506 return ret;
2509 static void test_capture_1(void)
2511 HWND button, capture, oldFocus, oldActive;
2513 oldFocus = GetFocus();
2514 oldActive = GetActiveWindow();
2516 capture = GetCapture();
2517 ok(capture == 0, "GetCapture() = %p\n", capture);
2519 button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2520 assert(button);
2521 trace("button %p\n", button);
2523 old_button_proc = (WNDPROC)SetWindowLongPtrA(button, GWLP_WNDPROC, (LONG_PTR)button_hook_proc);
2525 SendMessageA(button, WM_LBUTTONDOWN, 0, 0);
2527 capture = SetCapture(button);
2528 ok(capture == 0, "SetCapture() = %p\n", capture);
2529 check_wnd_state(button, 0, button, button);
2531 DestroyWindow(button);
2532 check_wnd_state(oldActive, 0, oldFocus, 0);
2535 static void test_capture_2(void)
2537 HWND button, hwnd, capture, oldFocus, oldActive;
2539 oldFocus = GetFocus();
2540 oldActive = GetActiveWindow();
2541 check_wnd_state(oldActive, 0, oldFocus, 0);
2543 button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2544 assert(button);
2545 trace("button %p\n", button);
2547 check_wnd_state(button, button, button, 0);
2549 capture = SetCapture(button);
2550 ok(capture == 0, "SetCapture() = %p\n", capture);
2552 check_wnd_state(button, button, button, button);
2554 /* button wnd proc should ignore WM_KILLFOCUS if it doesn't match
2555 * internal button state.
2557 SendMessage(button, WM_KILLFOCUS, 0, 0);
2558 check_wnd_state(button, button, button, button);
2560 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2561 assert(hwnd);
2562 trace("hwnd %p\n", hwnd);
2564 check_wnd_state(button, button, button, button);
2566 ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2568 check_wnd_state(button, button, button, button);
2570 DestroyWindow(hwnd);
2572 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2573 assert(hwnd);
2574 trace("hwnd %p\n", hwnd);
2576 check_wnd_state(button, button, button, button);
2578 ShowWindow(hwnd, SW_SHOW);
2580 check_wnd_state(hwnd, hwnd, hwnd, button);
2582 capture = SetCapture(hwnd);
2583 ok(capture == button, "SetCapture() = %p\n", capture);
2585 check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2587 DestroyWindow(hwnd);
2588 check_wnd_state(button, button, button, 0);
2590 DestroyWindow(button);
2591 check_wnd_state(oldActive, 0, oldFocus, 0);
2594 static void test_capture_3(HWND hwnd1, HWND hwnd2)
2596 BOOL ret;
2598 ShowWindow(hwnd1, SW_HIDE);
2599 ShowWindow(hwnd2, SW_HIDE);
2601 ok(!IsWindowVisible(hwnd1), "%p should be invisible\n", hwnd1);
2602 ok(!IsWindowVisible(hwnd2), "%p should be invisible\n", hwnd2);
2604 SetCapture(hwnd1);
2605 check_wnd_state(0, 0, 0, hwnd1);
2607 SetCapture(hwnd2);
2608 check_wnd_state(0, 0, 0, hwnd2);
2610 ShowWindow(hwnd1, SW_SHOW);
2611 check_wnd_state(hwnd1, hwnd1, hwnd1, hwnd2);
2613 ret = ReleaseCapture();
2614 ok (ret, "releasecapture did not return TRUE.\n");
2615 ret = ReleaseCapture();
2616 ok (ret, "releasecapture did not return TRUE after second try.\n");
2619 static void test_keyboard_input(HWND hwnd)
2621 MSG msg;
2622 BOOL ret;
2624 flush_events( TRUE );
2625 SetWindowPos(hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE|SWP_SHOWWINDOW);
2626 UpdateWindow(hwnd);
2627 flush_events( TRUE );
2629 ok(GetActiveWindow() == hwnd, "wrong active window %p\n", GetActiveWindow());
2631 SetFocus(hwnd);
2632 ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2634 flush_events( TRUE );
2636 PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
2639 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2640 ok( ret, "no message available\n");
2642 while (ret && msg.message >= 0xc000);
2643 ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2645 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2646 while (ret && (msg.message == WM_TIMER || msg.message >= 0xc000));
2647 ok( !ret, "message %04x available\n", msg.message);
2649 ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2651 PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
2652 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2653 ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2654 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2655 ok( !ret, "message %04x available\n", msg.message);
2657 ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2659 keybd_event(VK_SPACE, 0, 0, 0);
2660 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2661 if (!ret)
2663 skip( "keybd_event didn't work, skipping keyboard test\n" );
2664 return;
2666 ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2667 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2668 ok( !ret, "message %04x available\n", msg.message);
2670 SetFocus(0);
2671 ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2673 flush_events( TRUE );
2675 PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
2676 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2677 ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2678 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2679 ok( !ret, "message %04x available\n", msg.message);
2681 ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2683 PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
2684 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2685 ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2686 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2687 ok( !ret, "message %04x available\n", msg.message);
2689 ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2691 keybd_event(VK_SPACE, 0, 0, 0);
2692 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2693 ok(msg.hwnd == hwnd && msg.message == WM_SYSKEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2694 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2695 ok( !ret, "message %04x available\n", msg.message);
2698 static BOOL wait_for_message( MSG *msg )
2700 BOOL ret;
2702 for (;;)
2704 ret = PeekMessageA(msg, 0, 0, 0, PM_REMOVE);
2705 if (ret)
2707 if (msg->message == WM_PAINT) DispatchMessage(msg);
2708 else if (msg->message < 0xc000) break; /* skip registered messages */
2710 else if (MsgWaitForMultipleObjects( 0, NULL, FALSE, 100, QS_ALLINPUT ) == WAIT_TIMEOUT) break;
2712 if (!ret) msg->message = 0;
2713 return ret;
2716 static void test_mouse_input(HWND hwnd)
2718 RECT rc;
2719 POINT pt;
2720 int x, y;
2721 HWND popup;
2722 MSG msg;
2723 BOOL ret;
2724 LRESULT res;
2726 ShowWindow(hwnd, SW_SHOW);
2727 UpdateWindow(hwnd);
2728 SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2730 GetWindowRect(hwnd, &rc);
2731 trace("main window %p: (%d,%d)-(%d,%d)\n", hwnd, rc.left, rc.top, rc.right, rc.bottom);
2733 popup = CreateWindowExA(0, "MainWindowClass", NULL, WS_POPUP,
2734 rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top,
2735 hwnd, 0, 0, NULL);
2736 assert(popup != 0);
2737 ShowWindow(popup, SW_SHOW);
2738 UpdateWindow(popup);
2739 SetWindowPos( popup, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2741 GetWindowRect(popup, &rc);
2742 trace("popup window %p: (%d,%d)-(%d,%d)\n", popup, rc.left, rc.top, rc.right, rc.bottom);
2744 x = rc.left + (rc.right - rc.left) / 2;
2745 y = rc.top + (rc.bottom - rc.top) / 2;
2746 trace("setting cursor to (%d,%d)\n", x, y);
2748 SetCursorPos(x, y);
2749 GetCursorPos(&pt);
2750 if (x != pt.x || y != pt.y)
2752 skip( "failed to set mouse position, skipping mouse input tests\n" );
2753 goto done;
2756 flush_events( TRUE );
2758 /* Check that setting the same position may generate WM_MOUSEMOVE */
2759 SetCursorPos(x, y);
2760 msg.message = 0;
2762 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2763 while (ret && msg.message >= 0xc000); /* skip registered messages */
2764 if (ret)
2766 ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n",
2767 msg.hwnd, msg.message);
2768 ok(msg.pt.x == x && msg.pt.y == y, "wrong message coords (%d,%d)/(%d,%d)\n",
2769 x, y, msg.pt.x, msg.pt.y);
2772 /* force the system to update its internal queue mouse position,
2773 * otherwise it won't generate relative mouse movements below.
2775 mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
2776 flush_events( TRUE );
2778 msg.message = 0;
2779 mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
2780 flush_events( FALSE );
2781 /* FIXME: SetCursorPos in Wine generates additional WM_MOUSEMOVE message */
2782 while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE))
2784 if (msg.message == WM_TIMER || msg.message >= 0xc000) continue; /* skip registered messages */
2785 ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE,
2786 "hwnd %p message %04x\n", msg.hwnd, msg.message);
2788 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2789 ok( !ret, "message %04x available\n", msg.message);
2791 mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
2792 ShowWindow(popup, SW_HIDE);
2793 ret = wait_for_message( &msg );
2794 if (ret)
2795 ok(msg.hwnd == hwnd && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2796 flush_events( TRUE );
2798 mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
2799 ShowWindow(hwnd, SW_HIDE);
2800 ret = wait_for_message( &msg );
2801 ok( !ret, "message %04x available\n", msg.message);
2802 flush_events( TRUE );
2804 /* test mouse clicks */
2806 ShowWindow(hwnd, SW_SHOW);
2807 SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2808 flush_events( TRUE );
2809 ShowWindow(popup, SW_SHOW);
2810 SetWindowPos( popup, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2811 flush_events( TRUE );
2813 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2814 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2815 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2816 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2818 ret = wait_for_message( &msg );
2819 if (!ret)
2821 skip( "simulating mouse click doesn't work, skipping mouse button tests\n" );
2822 goto done;
2824 if (msg.message == WM_MOUSEMOVE) /* win2k has an extra WM_MOUSEMOVE here */
2826 ret = wait_for_message( &msg );
2827 ok(ret, "no message available\n");
2830 ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
2831 msg.hwnd, popup, msg.message);
2833 ret = wait_for_message( &msg );
2834 ok(ret, "no message available\n");
2835 ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2836 msg.hwnd, popup, msg.message);
2838 ret = wait_for_message( &msg );
2839 ok(ret, "no message available\n");
2840 ok(msg.hwnd == popup && msg.message == WM_LBUTTONDBLCLK, "hwnd %p/%p message %04x\n",
2841 msg.hwnd, popup, msg.message);
2843 ret = wait_for_message( &msg );
2844 ok(ret, "no message available\n");
2845 ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2846 msg.hwnd, popup, msg.message);
2848 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2849 ok(!ret, "message %04x available\n", msg.message);
2851 ShowWindow(popup, SW_HIDE);
2852 flush_events( TRUE );
2854 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2855 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2856 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2857 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2859 ret = wait_for_message( &msg );
2860 ok(ret, "no message available\n");
2861 ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
2862 msg.hwnd, hwnd, msg.message);
2863 ret = wait_for_message( &msg );
2864 ok(ret, "no message available\n");
2865 ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2866 msg.hwnd, hwnd, msg.message);
2868 test_lbuttondown_flag = TRUE;
2869 SendMessageA(hwnd, WM_COMMAND, (WPARAM)popup, 0);
2870 test_lbuttondown_flag = FALSE;
2872 ret = wait_for_message( &msg );
2873 ok(ret, "no message available\n");
2874 ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
2875 msg.hwnd, popup, msg.message);
2876 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2877 ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2878 msg.hwnd, popup, msg.message);
2879 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2881 /* Test WM_MOUSEACTIVATE */
2882 #define TEST_MOUSEACTIVATE(A,B) \
2883 res = SendMessageA(hwnd, WM_MOUSEACTIVATE, (WPARAM)hwnd, (LPARAM)MAKELRESULT(A,0)); \
2884 ok(res == B, "WM_MOUSEACTIVATE for %s returned %ld\n", #A, res);
2886 TEST_MOUSEACTIVATE(HTERROR,MA_ACTIVATE);
2887 TEST_MOUSEACTIVATE(HTTRANSPARENT,MA_ACTIVATE);
2888 TEST_MOUSEACTIVATE(HTNOWHERE,MA_ACTIVATE);
2889 TEST_MOUSEACTIVATE(HTCLIENT,MA_ACTIVATE);
2890 TEST_MOUSEACTIVATE(HTCAPTION,MA_ACTIVATE);
2891 TEST_MOUSEACTIVATE(HTSYSMENU,MA_ACTIVATE);
2892 TEST_MOUSEACTIVATE(HTSIZE,MA_ACTIVATE);
2893 TEST_MOUSEACTIVATE(HTMENU,MA_ACTIVATE);
2894 TEST_MOUSEACTIVATE(HTHSCROLL,MA_ACTIVATE);
2895 TEST_MOUSEACTIVATE(HTVSCROLL,MA_ACTIVATE);
2896 TEST_MOUSEACTIVATE(HTMINBUTTON,MA_ACTIVATE);
2897 TEST_MOUSEACTIVATE(HTMAXBUTTON,MA_ACTIVATE);
2898 TEST_MOUSEACTIVATE(HTLEFT,MA_ACTIVATE);
2899 TEST_MOUSEACTIVATE(HTRIGHT,MA_ACTIVATE);
2900 TEST_MOUSEACTIVATE(HTTOP,MA_ACTIVATE);
2901 TEST_MOUSEACTIVATE(HTTOPLEFT,MA_ACTIVATE);
2902 TEST_MOUSEACTIVATE(HTTOPRIGHT,MA_ACTIVATE);
2903 TEST_MOUSEACTIVATE(HTBOTTOM,MA_ACTIVATE);
2904 TEST_MOUSEACTIVATE(HTBOTTOMLEFT,MA_ACTIVATE);
2905 TEST_MOUSEACTIVATE(HTBOTTOMRIGHT,MA_ACTIVATE);
2906 TEST_MOUSEACTIVATE(HTBORDER,MA_ACTIVATE);
2907 TEST_MOUSEACTIVATE(HTOBJECT,MA_ACTIVATE);
2908 TEST_MOUSEACTIVATE(HTCLOSE,MA_ACTIVATE);
2909 TEST_MOUSEACTIVATE(HTHELP,MA_ACTIVATE);
2911 done:
2912 /* Clear any messages left behind by WM_MOUSEACTIVATE tests */
2913 flush_events( TRUE );
2915 DestroyWindow(popup);
2918 static void test_validatergn(HWND hwnd)
2920 HWND child;
2921 RECT rc, rc2;
2922 HRGN rgn;
2923 int ret;
2924 child = CreateWindowExA(0, "static", NULL, WS_CHILD| WS_VISIBLE, 10, 10, 10, 10, hwnd, 0, 0, NULL);
2925 ShowWindow(hwnd, SW_SHOW);
2926 UpdateWindow( hwnd);
2927 /* test that ValidateRect validates children*/
2928 InvalidateRect( child, NULL, 1);
2929 GetWindowRect( child, &rc);
2930 MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
2931 ret = GetUpdateRect( child, &rc2, 0);
2932 ok( rc2.right > rc2.left && rc2.bottom > rc2.top,
2933 "Update rectangle is empty!\n");
2934 ValidateRect( hwnd, &rc);
2935 ret = GetUpdateRect( child, &rc2, 0);
2936 ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
2937 "Update rectangle %d,%d-%d,%d is not empty!\n", rc2.left, rc2.top,
2938 rc2.right, rc2.bottom);
2940 /* now test ValidateRgn */
2941 InvalidateRect( child, NULL, 1);
2942 GetWindowRect( child, &rc);
2943 MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
2944 rgn = CreateRectRgnIndirect( &rc);
2945 ValidateRgn( hwnd, rgn);
2946 ret = GetUpdateRect( child, &rc2, 0);
2947 ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
2948 "Update rectangle %d,%d-%d,%d is not empty!\n", rc2.left, rc2.top,
2949 rc2.right, rc2.bottom);
2951 DeleteObject( rgn);
2952 DestroyWindow( child );
2955 static void nccalchelper(HWND hwnd, INT x, INT y, RECT *prc)
2957 RECT rc;
2958 MoveWindow( hwnd, 0, 0, x, y, 0);
2959 GetWindowRect( hwnd, prc);
2960 rc = *prc;
2961 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)prc);
2962 trace("window rect is %d,%d - %d,%d, nccalc rect is %d,%d - %d,%d\n",
2963 rc.left,rc.top,rc.right,rc.bottom, prc->left,prc->top,prc->right,prc->bottom);
2966 static void test_nccalcscroll(HWND parent)
2968 RECT rc1;
2969 INT sbheight = GetSystemMetrics( SM_CYHSCROLL);
2970 INT sbwidth = GetSystemMetrics( SM_CXVSCROLL);
2971 HWND hwnd = CreateWindowExA(0, "static", NULL,
2972 WS_CHILD| WS_VISIBLE | WS_VSCROLL | WS_HSCROLL ,
2973 10, 10, 200, 200, parent, 0, 0, NULL);
2974 ShowWindow( parent, SW_SHOW);
2975 UpdateWindow( parent);
2977 /* test window too low for a horizontal scroll bar */
2978 nccalchelper( hwnd, 100, sbheight, &rc1);
2979 ok( rc1.bottom - rc1.top == sbheight, "Height should be %d size is %d,%d - %d,%d\n",
2980 sbheight, rc1.left, rc1.top, rc1.right, rc1.bottom);
2982 /* test window just high enough for a horizontal scroll bar */
2983 nccalchelper( hwnd, 100, sbheight + 1, &rc1);
2984 ok( rc1.bottom - rc1.top == 1, "Height should be %d size is %d,%d - %d,%d\n",
2985 1, rc1.left, rc1.top, rc1.right, rc1.bottom);
2987 /* test window too narrow for a vertical scroll bar */
2988 nccalchelper( hwnd, sbwidth - 1, 100, &rc1);
2989 ok( rc1.right - rc1.left == sbwidth - 1 , "Width should be %d size is %d,%d - %d,%d\n",
2990 sbwidth - 1, rc1.left, rc1.top, rc1.right, rc1.bottom);
2992 /* test window just wide enough for a vertical scroll bar */
2993 nccalchelper( hwnd, sbwidth, 100, &rc1);
2994 ok( rc1.right - rc1.left == 0, "Width should be %d size is %d,%d - %d,%d\n",
2995 0, rc1.left, rc1.top, rc1.right, rc1.bottom);
2997 /* same test, but with client edge: not enough width */
2998 SetWindowLong( hwnd, GWL_EXSTYLE, WS_EX_CLIENTEDGE | GetWindowLong( hwnd, GWL_EXSTYLE));
2999 nccalchelper( hwnd, sbwidth, 100, &rc1);
3000 ok( rc1.right - rc1.left == sbwidth - 2 * GetSystemMetrics(SM_CXEDGE),
3001 "Width should be %d size is %d,%d - %d,%d\n",
3002 sbwidth - 2 * GetSystemMetrics(SM_CXEDGE), rc1.left, rc1.top, rc1.right, rc1.bottom);
3004 DestroyWindow( hwnd);
3007 static void test_SetParent(void)
3009 BOOL ret;
3010 HWND desktop = GetDesktopWindow();
3011 HMENU hMenu;
3012 BOOL is_win9x = GetWindowLongPtrW(desktop, GWLP_WNDPROC) == 0;
3013 HWND parent, child1, child2, child3, child4, sibling;
3015 parent = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3016 100, 100, 200, 200, 0, 0, 0, NULL);
3017 assert(parent != 0);
3018 child1 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3019 0, 0, 50, 50, parent, 0, 0, NULL);
3020 assert(child1 != 0);
3021 child2 = CreateWindowExA(0, "static", NULL, WS_POPUP,
3022 0, 0, 50, 50, child1, 0, 0, NULL);
3023 assert(child2 != 0);
3024 child3 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3025 0, 0, 50, 50, child2, 0, 0, NULL);
3026 assert(child3 != 0);
3027 child4 = CreateWindowExA(0, "static", NULL, WS_POPUP,
3028 0, 0, 50, 50, child3, 0, 0, NULL);
3029 assert(child4 != 0);
3031 trace("parent %p, child1 %p, child2 %p, child3 %p, child4 %p\n",
3032 parent, child1, child2, child3, child4);
3034 check_parents(parent, desktop, 0, 0, 0, parent, parent);
3035 check_parents(child1, parent, parent, parent, 0, parent, parent);
3036 check_parents(child2, desktop, parent, parent, parent, child2, parent);
3037 check_parents(child3, child2, child2, child2, 0, child2, parent);
3038 check_parents(child4, desktop, child2, child2, child2, child4, parent);
3040 ok(!IsChild(desktop, parent), "wrong parent/child %p/%p\n", desktop, parent);
3041 ok(!IsChild(desktop, child1), "wrong parent/child %p/%p\n", desktop, child1);
3042 ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
3043 ok(!IsChild(desktop, child3), "wrong parent/child %p/%p\n", desktop, child3);
3044 ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
3046 ok(IsChild(parent, child1), "wrong parent/child %p/%p\n", parent, child1);
3047 ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
3048 ok(!IsChild(parent, child2), "wrong parent/child %p/%p\n", parent, child2);
3049 ok(!IsChild(child1, child2), "wrong parent/child %p/%p\n", child1, child2);
3050 ok(!IsChild(parent, child3), "wrong parent/child %p/%p\n", parent, child3);
3051 ok(IsChild(child2, child3), "wrong parent/child %p/%p\n", child2, child3);
3052 ok(!IsChild(parent, child4), "wrong parent/child %p/%p\n", parent, child4);
3053 ok(!IsChild(child3, child4), "wrong parent/child %p/%p\n", child3, child4);
3054 ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
3056 if (!is_win9x) /* Win9x doesn't survive this test */
3058 ok(!SetParent(parent, child1), "SetParent should fail\n");
3059 ok(!SetParent(child2, child3), "SetParent should fail\n");
3060 ok(SetParent(child1, parent) != 0, "SetParent should not fail\n");
3061 ok(SetParent(parent, child2) != 0, "SetParent should not fail\n");
3062 ok(SetParent(parent, child3) != 0, "SetParent should not fail\n");
3063 ok(!SetParent(child2, parent), "SetParent should fail\n");
3064 ok(SetParent(parent, child4) != 0, "SetParent should not fail\n");
3066 check_parents(parent, child4, child4, 0, 0, child4, parent);
3067 check_parents(child1, parent, parent, parent, 0, child4, parent);
3068 check_parents(child2, desktop, parent, parent, parent, child2, parent);
3069 check_parents(child3, child2, child2, child2, 0, child2, parent);
3070 check_parents(child4, desktop, child2, child2, child2, child4, parent);
3073 hMenu = CreateMenu();
3074 sibling = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3075 100, 100, 200, 200, 0, hMenu, 0, NULL);
3076 assert(sibling != 0);
3078 ok(SetParent(sibling, parent) != 0, "SetParent should not fail\n");
3079 ok(GetMenu(sibling) == hMenu, "SetParent should not remove menu\n");
3081 ret = DestroyWindow(parent);
3082 ok( ret, "DestroyWindow() error %d\n", GetLastError());
3084 ok(!IsWindow(parent), "parent still exists\n");
3085 ok(!IsWindow(sibling), "sibling still exists\n");
3086 ok(!IsWindow(child1), "child1 still exists\n");
3087 ok(!IsWindow(child2), "child2 still exists\n");
3088 ok(!IsWindow(child3), "child3 still exists\n");
3089 ok(!IsWindow(child4), "child4 still exists\n");
3092 static LRESULT WINAPI StyleCheckProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3094 LPCREATESTRUCT lpcs;
3095 LPSTYLESTRUCT lpss;
3097 switch (msg)
3099 case WM_NCCREATE:
3100 case WM_CREATE:
3101 lpcs = (LPCREATESTRUCT)lparam;
3102 lpss = lpcs->lpCreateParams;
3103 if (lpss)
3105 if ((lpcs->dwExStyle & WS_EX_DLGMODALFRAME) ||
3106 ((!(lpcs->dwExStyle & WS_EX_STATICEDGE)) &&
3107 (lpcs->style & (WS_DLGFRAME | WS_THICKFRAME))))
3108 ok(lpcs->dwExStyle & WS_EX_WINDOWEDGE, "Window should have WS_EX_WINDOWEDGE style\n");
3109 else
3110 ok(!(lpcs->dwExStyle & WS_EX_WINDOWEDGE), "Window shouldn't have WS_EX_WINDOWEDGE style\n");
3112 ok((lpss->styleOld & ~WS_EX_WINDOWEDGE) == (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE),
3113 "Ex style (0x%08lx) should match what the caller passed to CreateWindowEx (0x%08lx)\n",
3114 (lpss->styleOld & ~WS_EX_WINDOWEDGE), (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE));
3116 ok(lpss->styleNew == lpcs->style,
3117 "Style (0x%08x) should match what the caller passed to CreateWindowEx (0x%08x)\n",
3118 lpss->styleNew, lpcs->style);
3120 break;
3122 return DefWindowProc(hwnd, msg, wparam, lparam);
3125 static ATOM atomStyleCheckClass;
3127 static void register_style_check_class(void)
3129 WNDCLASS wc =
3132 StyleCheckProc,
3135 GetModuleHandle(NULL),
3136 NULL,
3137 LoadCursor(NULL, IDC_ARROW),
3138 (HBRUSH)(COLOR_BTNFACE+1),
3139 NULL,
3140 TEXT("WineStyleCheck"),
3143 atomStyleCheckClass = RegisterClass(&wc);
3146 static void check_window_style(DWORD dwStyleIn, DWORD dwExStyleIn, DWORD dwStyleOut, DWORD dwExStyleOut)
3148 DWORD dwActualStyle;
3149 DWORD dwActualExStyle;
3150 STYLESTRUCT ss;
3151 HWND hwnd;
3152 HWND hwndParent = NULL;
3154 ss.styleNew = dwStyleIn;
3155 ss.styleOld = dwExStyleIn;
3157 if (dwStyleIn & WS_CHILD)
3159 hwndParent = CreateWindowEx(0, MAKEINTATOM(atomStyleCheckClass), NULL,
3160 WS_OVERLAPPEDWINDOW, 0, 0, 0, 0, NULL, NULL, NULL, NULL);
3163 hwnd = CreateWindowEx(dwExStyleIn, MAKEINTATOM(atomStyleCheckClass), NULL,
3164 dwStyleIn, 0, 0, 0, 0, hwndParent, NULL, NULL, &ss);
3165 assert(hwnd);
3167 flush_events( TRUE );
3169 dwActualStyle = GetWindowLong(hwnd, GWL_STYLE);
3170 dwActualExStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
3171 ok((dwActualStyle == dwStyleOut) && (dwActualExStyle == dwExStyleOut),
3172 "Style (0x%08x) should really be 0x%08x and/or Ex style (0x%08x) should really be 0x%08x\n",
3173 dwActualStyle, dwStyleOut, dwActualExStyle, dwExStyleOut);
3175 DestroyWindow(hwnd);
3176 if (hwndParent) DestroyWindow(hwndParent);
3179 /* tests what window styles the window manager automatically adds */
3180 static void test_window_styles(void)
3182 register_style_check_class();
3184 check_window_style(0, 0, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE);
3185 check_window_style(WS_OVERLAPPEDWINDOW, 0, WS_CLIPSIBLINGS|WS_OVERLAPPEDWINDOW, WS_EX_WINDOWEDGE);
3186 check_window_style(WS_CHILD, 0, WS_CHILD, 0);
3187 check_window_style(WS_CHILD, WS_EX_WINDOWEDGE, WS_CHILD, 0);
3188 check_window_style(0, WS_EX_TOOLWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW);
3189 check_window_style(WS_POPUP, 0, WS_POPUP|WS_CLIPSIBLINGS, 0);
3190 check_window_style(WS_POPUP, WS_EX_WINDOWEDGE, WS_POPUP|WS_CLIPSIBLINGS, 0);
3191 check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME, WS_CHILD, WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
3192 check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME|WS_EX_STATICEDGE, WS_CHILD, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
3193 check_window_style(WS_CAPTION, WS_EX_STATICEDGE, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE);
3194 check_window_style(0, WS_EX_APPWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_APPWINDOW|WS_EX_WINDOWEDGE);
3197 static void test_scrollvalidate( HWND parent)
3199 HDC hdc;
3200 HRGN hrgn=CreateRectRgn(0,0,0,0);
3201 HRGN exprgn, tmprgn, clipping;
3202 RECT rc, rcu, cliprc;
3203 /* create two overlapping child windows. The visual region
3204 * of hwnd1 is clipped by the overlapping part of
3205 * hwnd2 because of the WS_CLIPSIBLING style */
3206 HWND hwnd1, hwnd2;
3208 clipping = CreateRectRgn(0,0,0,0);
3209 tmprgn = CreateRectRgn(0,0,0,0);
3210 exprgn = CreateRectRgn(0,0,0,0);
3211 hwnd2 = CreateWindowExA(0, "static", NULL,
3212 WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
3213 75, 30, 100, 100, parent, 0, 0, NULL);
3214 hwnd1 = CreateWindowExA(0, "static", NULL,
3215 WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
3216 25, 50, 100, 100, parent, 0, 0, NULL);
3217 ShowWindow( parent, SW_SHOW);
3218 UpdateWindow( parent);
3219 GetClientRect( hwnd1, &rc);
3220 cliprc=rc;
3221 SetRectRgn( clipping, 10, 10, 90, 90);
3222 hdc = GetDC( hwnd1);
3223 /* for a visual touch */
3224 TextOut( hdc, 0,10, "0123456789", 10);
3225 ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
3226 if (winetest_debug > 0) dump_region(hrgn);
3227 /* create a region with what is expected */
3228 SetRectRgn( exprgn, 39,0,49,74);
3229 SetRectRgn( tmprgn, 88,79,98,93);
3230 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3231 SetRectRgn( tmprgn, 0,93,98,98);
3232 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3233 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3234 trace("update rect is %d,%d - %d,%d\n",
3235 rcu.left,rcu.top,rcu.right,rcu.bottom);
3236 /* now with clipping region */
3237 SelectClipRgn( hdc, clipping);
3238 ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
3239 if (winetest_debug > 0) dump_region(hrgn);
3240 /* create a region with what is expected */
3241 SetRectRgn( exprgn, 39,10,49,74);
3242 SetRectRgn( tmprgn, 80,79,90,85);
3243 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3244 SetRectRgn( tmprgn, 10,85,90,90);
3245 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3246 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3247 trace("update rect is %d,%d - %d,%d\n",
3248 rcu.left,rcu.top,rcu.right,rcu.bottom);
3249 ReleaseDC( hwnd1, hdc);
3251 /* test scrolling a window with an update region */
3252 DestroyWindow( hwnd2);
3253 ValidateRect( hwnd1, NULL);
3254 SetRect( &rc, 40,40, 50,50);
3255 InvalidateRect( hwnd1, &rc, 1);
3256 GetClientRect( hwnd1, &rc);
3257 cliprc=rc;
3258 ScrollWindowEx( hwnd1, -10, 0, &rc, &cliprc, hrgn, &rcu,
3259 SW_SCROLLCHILDREN | SW_INVALIDATE);
3260 if (winetest_debug > 0) dump_region(hrgn);
3261 SetRectRgn( exprgn, 88,0,98,98);
3262 SetRectRgn( tmprgn, 30, 40, 50, 50);
3263 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3264 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3266 /* clear an update region */
3267 UpdateWindow( hwnd1 );
3269 SetRect( &rc, 0,40, 100,60);
3270 SetRect( &cliprc, 0,0, 100,100);
3271 ScrollWindowEx( hwnd1, 0, -25, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3272 if (winetest_debug > 0) dump_region( hrgn );
3273 SetRectRgn( exprgn, 0, 40, 98, 60 );
3274 ok( EqualRgn( exprgn, hrgn), "wrong update region in excessive scroll\n");
3276 /* now test ScrollWindowEx with a combination of
3277 * WS_CLIPCHILDREN style and SW_SCROLLCHILDREN flag */
3278 /* make hwnd2 the child of hwnd1 */
3279 hwnd2 = CreateWindowExA(0, "static", NULL,
3280 WS_CHILD| WS_VISIBLE | WS_BORDER ,
3281 50, 50, 100, 100, hwnd1, 0, 0, NULL);
3282 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPSIBLINGS);
3283 GetClientRect( hwnd1, &rc);
3284 cliprc=rc;
3286 /* WS_CLIPCHILDREN and SW_SCROLLCHILDREN */
3287 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
3288 ValidateRect( hwnd1, NULL);
3289 ValidateRect( hwnd2, NULL);
3290 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu,
3291 SW_SCROLLCHILDREN | SW_INVALIDATE);
3292 if (winetest_debug > 0) dump_region(hrgn);
3293 SetRectRgn( exprgn, 88,0,98,88);
3294 SetRectRgn( tmprgn, 0,88,98,98);
3295 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3296 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3298 /* SW_SCROLLCHILDREN */
3299 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
3300 ValidateRect( hwnd1, NULL);
3301 ValidateRect( hwnd2, NULL);
3302 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_SCROLLCHILDREN | SW_INVALIDATE);
3303 if (winetest_debug > 0) dump_region(hrgn);
3304 /* expected region is the same as in previous test */
3305 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3307 /* no SW_SCROLLCHILDREN */
3308 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
3309 ValidateRect( hwnd1, NULL);
3310 ValidateRect( hwnd2, NULL);
3311 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3312 if (winetest_debug > 0) dump_region(hrgn);
3313 /* expected region is the same as in previous test */
3314 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3316 /* WS_CLIPCHILDREN and no SW_SCROLLCHILDREN */
3317 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
3318 ValidateRect( hwnd1, NULL);
3319 ValidateRect( hwnd2, NULL);
3320 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3321 if (winetest_debug > 0) dump_region(hrgn);
3322 SetRectRgn( exprgn, 88,0,98,20);
3323 SetRectRgn( tmprgn, 20,20,98,30);
3324 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3325 SetRectRgn( tmprgn, 20,30,30,88);
3326 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3327 SetRectRgn( tmprgn, 0,88,30,98);
3328 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3329 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3331 /* clean up */
3332 DeleteObject( hrgn);
3333 DeleteObject( exprgn);
3334 DeleteObject( tmprgn);
3335 DestroyWindow( hwnd1);
3336 DestroyWindow( hwnd2);
3339 /* couple of tests of return values of scrollbar functions
3340 * called on a scrollbarless window */
3341 static void test_scroll(void)
3343 BOOL ret;
3344 INT min, max;
3345 SCROLLINFO si;
3346 HWND hwnd = CreateWindowExA(0, "Static", "Wine test window",
3347 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP,
3348 100, 100, 200, 200, 0, 0, 0, NULL);
3349 /* horizontal */
3350 ret = GetScrollRange( hwnd, SB_HORZ, &min, &max);
3351 if (!ret) /* win9x */
3353 win_skip( "GetScrollRange doesn't work\n" );
3354 DestroyWindow( hwnd);
3355 return;
3357 ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
3358 ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
3359 si.cbSize = sizeof( si);
3360 si.fMask = SIF_PAGE;
3361 si.nPage = 0xdeadbeef;
3362 ret = GetScrollInfo( hwnd, SB_HORZ, &si);
3363 ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
3364 ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
3365 /* vertical */
3366 ret = GetScrollRange( hwnd, SB_VERT, &min, &max);
3367 ok( ret, "GetScrollRange returns FALSE\n");
3368 ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
3369 ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
3370 si.cbSize = sizeof( si);
3371 si.fMask = SIF_PAGE;
3372 si.nPage = 0xdeadbeef;
3373 ret = GetScrollInfo( hwnd, SB_VERT, &si);
3374 ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
3375 ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
3376 /* clean up */
3377 DestroyWindow( hwnd);
3380 static void test_scrolldc( HWND parent)
3382 HDC hdc;
3383 HRGN exprgn, tmprgn, hrgn;
3384 RECT rc, rc2, rcu, cliprc;
3385 HWND hwnd1;
3386 COLORREF colr;
3388 hrgn = CreateRectRgn(0,0,0,0);
3389 tmprgn = CreateRectRgn(0,0,0,0);
3390 exprgn = CreateRectRgn(0,0,0,0);
3392 hwnd1 = CreateWindowExA(0, "static", NULL,
3393 WS_CHILD| WS_VISIBLE,
3394 25, 50, 100, 100, parent, 0, 0, NULL);
3395 ShowWindow( parent, SW_SHOW);
3396 UpdateWindow( parent);
3397 flush_events( TRUE );
3398 GetClientRect( hwnd1, &rc);
3399 hdc = GetDC( hwnd1);
3400 /* paint the upper half of the window black */
3401 rc2 = rc;
3402 rc2.bottom = ( rc.top + rc.bottom) /2;
3403 FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
3404 /* clip region is the lower half */
3405 cliprc=rc;
3406 cliprc.top = (rc.top + rc.bottom) /2;
3407 /* test whether scrolled pixels are properly clipped */
3408 colr = GetPixel( hdc, (rc.left+rc.right)/2, ( rc.top + rc.bottom) /2 - 1);
3409 ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3410 /* this scroll should not cause any visible changes */
3411 ScrollDC( hdc, 5, -20, &rc, &cliprc, hrgn, &rcu);
3412 colr = GetPixel( hdc, (rc.left+rc.right)/2, ( rc.top + rc.bottom) /2 - 1);
3413 ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3414 /* test with NULL clip rect */
3415 ScrollDC( hdc, 20, -20, &rc, NULL, hrgn, &rcu);
3416 /*FillRgn(hdc, hrgn, GetStockObject(WHITE_BRUSH));*/
3417 trace("update rect: %d,%d - %d,%d\n",
3418 rcu.left, rcu.top, rcu.right, rcu.bottom);
3419 if (winetest_debug > 0) dump_region(hrgn);
3420 SetRect(&rc2, 0, 0, 100, 100);
3421 ok(EqualRect(&rcu, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
3422 rcu.left, rcu.top, rcu.right, rcu.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom);
3424 SetRectRgn( exprgn, 0, 0, 20, 80);
3425 SetRectRgn( tmprgn, 0, 80, 100, 100);
3426 CombineRgn(exprgn, exprgn, tmprgn, RGN_OR);
3427 if (winetest_debug > 0) dump_region(exprgn);
3428 ok(EqualRgn(exprgn, hrgn), "wrong update region\n");
3429 /* test clip rect > scroll rect */
3430 FillRect( hdc, &rc, GetStockObject(WHITE_BRUSH));
3431 rc2=rc;
3432 InflateRect( &rc2, -(rc.right-rc.left)/4, -(rc.bottom-rc.top)/4);
3433 FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
3434 ScrollDC( hdc, 10, 10, &rc2, &rc, hrgn, &rcu);
3435 SetRectRgn( exprgn, 25, 25, 75, 35);
3436 SetRectRgn( tmprgn, 25, 35, 35, 75);
3437 CombineRgn(exprgn, exprgn, tmprgn, RGN_OR);
3438 ok(EqualRgn(exprgn, hrgn), "wrong update region\n");
3439 colr = GetPixel( hdc, 80, 80);
3440 ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3441 trace("update rect: %d,%d - %d,%d\n",
3442 rcu.left, rcu.top, rcu.right, rcu.bottom);
3443 if (winetest_debug > 0) dump_region(hrgn);
3445 /* clean up */
3446 DeleteObject(hrgn);
3447 DeleteObject(exprgn);
3448 DeleteObject(tmprgn);
3449 DestroyWindow(hwnd1);
3452 static void test_params(void)
3454 HWND hwnd;
3455 INT rc;
3457 /* Just a param check */
3458 if (pGetMonitorInfoA)
3460 SetLastError(0xdeadbeef);
3461 rc = GetWindowText(hwndMain2, NULL, 1024);
3462 ok( rc==0, "GetWindowText: rc=%d err=%d\n",rc,GetLastError());
3464 else
3466 /* Skips actually on Win95 and NT4 */
3467 win_skip("Test would crash on Win95\n");
3470 SetLastError(0xdeadbeef);
3471 hwnd=CreateWindow("LISTBOX", "TestList",
3472 (LBS_STANDARD & ~LBS_SORT),
3473 0, 0, 100, 100,
3474 NULL, (HMENU)1, NULL, 0);
3476 ok(!hwnd || broken(hwnd != NULL), /* w2k3 sp2 */
3477 "CreateWindow with invalid menu handle should fail\n");
3478 if (!hwnd)
3479 ok(GetLastError() == ERROR_INVALID_MENU_HANDLE || /* NT */
3480 GetLastError() == 0xdeadbeef, /* Win9x */
3481 "wrong last error value %d\n", GetLastError());
3484 static void test_AWRwindow(LPCSTR class, LONG style, LONG exStyle, BOOL menu)
3486 HWND hwnd = 0;
3488 hwnd = CreateWindowEx(exStyle, class, class, style,
3489 110, 100,
3490 225, 200,
3492 menu ? hmenu : 0,
3493 0, 0);
3494 if (!hwnd) {
3495 trace("Failed to create window class=%s, style=0x%08x, exStyle=0x%08x\n", class, style, exStyle);
3496 return;
3498 ShowWindow(hwnd, SW_SHOW);
3500 test_nonclient_area(hwnd);
3502 SetMenu(hwnd, 0);
3503 DestroyWindow(hwnd);
3506 static BOOL AWR_init(void)
3508 WNDCLASS class;
3510 class.style = CS_HREDRAW | CS_VREDRAW;
3511 class.lpfnWndProc = DefWindowProcA;
3512 class.cbClsExtra = 0;
3513 class.cbWndExtra = 0;
3514 class.hInstance = 0;
3515 class.hIcon = LoadIcon (0, IDI_APPLICATION);
3516 class.hCursor = LoadCursor (0, IDC_ARROW);
3517 class.hbrBackground = 0;
3518 class.lpszMenuName = 0;
3519 class.lpszClassName = szAWRClass;
3521 if (!RegisterClass (&class)) {
3522 ok(FALSE, "RegisterClass failed\n");
3523 return FALSE;
3526 hmenu = CreateMenu();
3527 if (!hmenu)
3528 return FALSE;
3529 ok(hmenu != 0, "Failed to create menu\n");
3530 ok(AppendMenu(hmenu, MF_STRING, 1, "Test!"), "Failed to create menu item\n");
3532 return TRUE;
3536 static void test_AWR_window_size(BOOL menu)
3538 LONG styles[] = {
3539 WS_POPUP,
3540 WS_MAXIMIZE, WS_BORDER, WS_DLGFRAME,
3541 WS_SYSMENU,
3542 WS_THICKFRAME,
3543 WS_MINIMIZEBOX, WS_MAXIMIZEBOX,
3544 WS_HSCROLL, WS_VSCROLL
3546 LONG exStyles[] = {
3547 WS_EX_CLIENTEDGE,
3548 WS_EX_TOOLWINDOW, WS_EX_WINDOWEDGE,
3549 WS_EX_APPWINDOW,
3550 #if 0
3551 /* These styles have problems on (at least) WinXP (SP2) and Wine */
3552 WS_EX_DLGMODALFRAME,
3553 WS_EX_STATICEDGE,
3554 #endif
3557 int i;
3559 /* A exhaustive check of all the styles takes too long
3560 * so just do a (hopefully representative) sample
3562 for (i = 0; i < COUNTOF(styles); ++i)
3563 test_AWRwindow(szAWRClass, styles[i], 0, menu);
3564 for (i = 0; i < COUNTOF(exStyles); ++i) {
3565 test_AWRwindow(szAWRClass, WS_POPUP, exStyles[i], menu);
3566 test_AWRwindow(szAWRClass, WS_THICKFRAME, exStyles[i], menu);
3569 #undef COUNTOF
3571 #define SHOWSYSMETRIC(SM) trace(#SM "=%d\n", GetSystemMetrics(SM))
3573 static void test_AdjustWindowRect(void)
3575 if (!AWR_init())
3576 return;
3578 SHOWSYSMETRIC(SM_CYCAPTION);
3579 SHOWSYSMETRIC(SM_CYSMCAPTION);
3580 SHOWSYSMETRIC(SM_CYMENU);
3581 SHOWSYSMETRIC(SM_CXEDGE);
3582 SHOWSYSMETRIC(SM_CYEDGE);
3583 SHOWSYSMETRIC(SM_CXVSCROLL);
3584 SHOWSYSMETRIC(SM_CYHSCROLL);
3585 SHOWSYSMETRIC(SM_CXFRAME);
3586 SHOWSYSMETRIC(SM_CYFRAME);
3587 SHOWSYSMETRIC(SM_CXDLGFRAME);
3588 SHOWSYSMETRIC(SM_CYDLGFRAME);
3589 SHOWSYSMETRIC(SM_CXBORDER);
3590 SHOWSYSMETRIC(SM_CYBORDER);
3592 test_AWR_window_size(FALSE);
3593 test_AWR_window_size(TRUE);
3595 DestroyMenu(hmenu);
3597 #undef SHOWSYSMETRIC
3600 /* Global variables to trigger exit from loop */
3601 static int redrawComplete, WMPAINT_count;
3603 static LRESULT WINAPI redraw_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3605 switch (msg)
3607 case WM_PAINT:
3608 trace("doing WM_PAINT %d\n", WMPAINT_count);
3609 WMPAINT_count++;
3610 if (WMPAINT_count > 10 && redrawComplete == 0) {
3611 PAINTSTRUCT ps;
3612 BeginPaint(hwnd, &ps);
3613 EndPaint(hwnd, &ps);
3614 return 1;
3616 return 0;
3618 return DefWindowProc(hwnd, msg, wparam, lparam);
3621 /* Ensure we exit from RedrawNow regardless of invalidated area */
3622 static void test_redrawnow(void)
3624 WNDCLASSA cls;
3625 HWND hwndMain;
3627 cls.style = CS_DBLCLKS;
3628 cls.lpfnWndProc = redraw_window_procA;
3629 cls.cbClsExtra = 0;
3630 cls.cbWndExtra = 0;
3631 cls.hInstance = GetModuleHandleA(0);
3632 cls.hIcon = 0;
3633 cls.hCursor = LoadCursorA(0, IDC_ARROW);
3634 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
3635 cls.lpszMenuName = NULL;
3636 cls.lpszClassName = "RedrawWindowClass";
3638 if(!RegisterClassA(&cls)) {
3639 trace("Register failed %d\n", GetLastError());
3640 return;
3643 hwndMain = CreateWindowA("RedrawWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
3644 CW_USEDEFAULT, 0, 100, 100, NULL, NULL, 0, NULL);
3646 ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
3647 ShowWindow(hwndMain, SW_SHOW);
3648 ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
3649 RedrawWindow(hwndMain, NULL,NULL,RDW_UPDATENOW | RDW_ALLCHILDREN);
3650 ok( WMPAINT_count == 1, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
3651 redrawComplete = TRUE;
3652 ok( WMPAINT_count < 10, "RedrawWindow (RDW_UPDATENOW) never completed (%d)\n", WMPAINT_count);
3654 /* clean up */
3655 DestroyWindow( hwndMain);
3658 struct parentdc_stat {
3659 RECT client;
3660 RECT clip;
3661 RECT paint;
3664 struct parentdc_test {
3665 struct parentdc_stat main, main_todo;
3666 struct parentdc_stat child1, child1_todo;
3667 struct parentdc_stat child2, child2_todo;
3670 static LRESULT WINAPI parentdc_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3672 RECT rc;
3673 PAINTSTRUCT ps;
3675 struct parentdc_stat *t = (struct parentdc_stat *)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
3677 switch (msg)
3679 case WM_PAINT:
3680 GetClientRect(hwnd, &rc);
3681 CopyRect(&t->client, &rc);
3682 GetWindowRect(hwnd, &rc);
3683 trace("WM_PAINT: hwnd %p, client rect (%d,%d)-(%d,%d), window rect (%d,%d)-(%d,%d)\n", hwnd,
3684 t->client.left, t->client.top, t->client.right, t->client.bottom,
3685 rc.left, rc.top, rc.right, rc.bottom);
3686 BeginPaint(hwnd, &ps);
3687 CopyRect(&t->paint, &ps.rcPaint);
3688 GetClipBox(ps.hdc, &rc);
3689 CopyRect(&t->clip, &rc);
3690 trace("clip rect (%d,%d)-(%d,%d), paint rect (%d,%d)-(%d,%d)\n",
3691 rc.left, rc.top, rc.right, rc.bottom,
3692 ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right, ps.rcPaint.bottom);
3693 EndPaint(hwnd, &ps);
3694 return 0;
3696 return DefWindowProc(hwnd, msg, wparam, lparam);
3699 static void zero_parentdc_stat(struct parentdc_stat *t)
3701 SetRectEmpty(&t->client);
3702 SetRectEmpty(&t->clip);
3703 SetRectEmpty(&t->paint);
3706 static void zero_parentdc_test(struct parentdc_test *t)
3708 zero_parentdc_stat(&t->main);
3709 zero_parentdc_stat(&t->child1);
3710 zero_parentdc_stat(&t->child2);
3713 #define parentdc_field_ok(t, w, r, f, got) \
3714 ok (t.w.r.f==got.w.r.f, "window " #w ", rect " #r ", field " #f \
3715 ": expected %d, got %d\n", \
3716 t.w.r.f, got.w.r.f)
3718 #define parentdc_todo_field_ok(t, w, r, f, got) \
3719 if (t.w##_todo.r.f) todo_wine { parentdc_field_ok(t, w, r, f, got); } \
3720 else parentdc_field_ok(t, w, r, f, got)
3722 #define parentdc_rect_ok(t, w, r, got) \
3723 parentdc_todo_field_ok(t, w, r, left, got); \
3724 parentdc_todo_field_ok(t, w, r, top, got); \
3725 parentdc_todo_field_ok(t, w, r, right, got); \
3726 parentdc_todo_field_ok(t, w, r, bottom, got);
3728 #define parentdc_win_ok(t, w, got) \
3729 parentdc_rect_ok(t, w, client, got); \
3730 parentdc_rect_ok(t, w, clip, got); \
3731 parentdc_rect_ok(t, w, paint, got);
3733 #define parentdc_ok(t, got) \
3734 parentdc_win_ok(t, main, got); \
3735 parentdc_win_ok(t, child1, got); \
3736 parentdc_win_ok(t, child2, got);
3738 static void test_csparentdc(void)
3740 WNDCLASSA clsMain, cls;
3741 HWND hwndMain, hwnd1, hwnd2;
3742 RECT rc;
3744 struct parentdc_test test_answer;
3746 #define nothing_todo {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}
3747 const struct parentdc_test test1 =
3749 {{0, 0, 150, 150}, {0, 0, 150, 150}, {0, 0, 150, 150}}, nothing_todo,
3750 {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3751 {{0, 0, 40, 40}, {-40, -40, 110, 110}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3754 const struct parentdc_test test2 =
3756 {{0, 0, 150, 150}, {0, 0, 50, 50}, {0, 0, 50, 50}}, nothing_todo,
3757 {{0, 0, 40, 40}, {-20, -20, 30, 30}, {0, 0, 30, 30}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
3758 {{0, 0, 40, 40}, {-40, -40, 10, 10}, {0, 0, 10, 10}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
3761 const struct parentdc_test test3 =
3763 {{0, 0, 150, 150}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
3764 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3765 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3768 const struct parentdc_test test4 =
3770 {{0, 0, 150, 150}, {40, 40, 50, 50}, {40, 40, 50, 50}}, nothing_todo,
3771 {{0, 0, 40, 40}, {20, 20, 30, 30}, {20, 20, 30, 30}}, nothing_todo,
3772 {{0, 0, 40, 40}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
3775 const struct parentdc_test test5 =
3777 {{0, 0, 150, 150}, {20, 20, 60, 60}, {20, 20, 60, 60}}, nothing_todo,
3778 {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3779 {{0, 0, 40, 40}, {-20, -20, 20, 20}, {0, 0, 20, 20}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
3782 const struct parentdc_test test6 =
3784 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3785 {{0, 0, 40, 40}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
3786 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3789 const struct parentdc_test test7 =
3791 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3792 {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3793 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3795 #undef nothing_todo
3797 clsMain.style = CS_DBLCLKS;
3798 clsMain.lpfnWndProc = parentdc_window_procA;
3799 clsMain.cbClsExtra = 0;
3800 clsMain.cbWndExtra = 0;
3801 clsMain.hInstance = GetModuleHandleA(0);
3802 clsMain.hIcon = 0;
3803 clsMain.hCursor = LoadCursorA(0, IDC_ARROW);
3804 clsMain.hbrBackground = GetStockObject(WHITE_BRUSH);
3805 clsMain.lpszMenuName = NULL;
3806 clsMain.lpszClassName = "ParentDcMainWindowClass";
3808 if(!RegisterClassA(&clsMain)) {
3809 trace("Register failed %d\n", GetLastError());
3810 return;
3813 cls.style = CS_DBLCLKS | CS_PARENTDC;
3814 cls.lpfnWndProc = parentdc_window_procA;
3815 cls.cbClsExtra = 0;
3816 cls.cbWndExtra = 0;
3817 cls.hInstance = GetModuleHandleA(0);
3818 cls.hIcon = 0;
3819 cls.hCursor = LoadCursorA(0, IDC_ARROW);
3820 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
3821 cls.lpszMenuName = NULL;
3822 cls.lpszClassName = "ParentDcWindowClass";
3824 if(!RegisterClassA(&cls)) {
3825 trace("Register failed %d\n", GetLastError());
3826 return;
3829 SetRect(&rc, 0, 0, 150, 150);
3830 AdjustWindowRectEx(&rc, WS_OVERLAPPEDWINDOW, FALSE, 0);
3831 hwndMain = CreateWindowA("ParentDcMainWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
3832 CW_USEDEFAULT, 0, rc.right - rc.left, rc.bottom - rc.top, NULL, NULL, 0, NULL);
3833 SetWindowLongPtrA(hwndMain, GWLP_USERDATA, (DWORD_PTR)&test_answer.main);
3834 hwnd1 = CreateWindowA("ParentDcWindowClass", "Child Window 1", WS_CHILD,
3835 20, 20, 40, 40, hwndMain, NULL, 0, NULL);
3836 SetWindowLongPtrA(hwnd1, GWLP_USERDATA, (DWORD_PTR)&test_answer.child1);
3837 hwnd2 = CreateWindowA("ParentDcWindowClass", "Child Window 2", WS_CHILD,
3838 40, 40, 40, 40, hwndMain, NULL, 0, NULL);
3839 SetWindowLongPtrA(hwnd2, GWLP_USERDATA, (DWORD_PTR)&test_answer.child2);
3840 ShowWindow(hwndMain, SW_SHOW);
3841 ShowWindow(hwnd1, SW_SHOW);
3842 ShowWindow(hwnd2, SW_SHOW);
3843 SetWindowPos(hwndMain, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
3844 flush_events( TRUE );
3846 zero_parentdc_test(&test_answer);
3847 InvalidateRect(hwndMain, NULL, TRUE);
3848 flush_events( TRUE );
3849 parentdc_ok(test1, test_answer);
3851 zero_parentdc_test(&test_answer);
3852 SetRect(&rc, 0, 0, 50, 50);
3853 InvalidateRect(hwndMain, &rc, TRUE);
3854 flush_events( TRUE );
3855 parentdc_ok(test2, test_answer);
3857 zero_parentdc_test(&test_answer);
3858 SetRect(&rc, 0, 0, 10, 10);
3859 InvalidateRect(hwndMain, &rc, TRUE);
3860 flush_events( TRUE );
3861 parentdc_ok(test3, test_answer);
3863 zero_parentdc_test(&test_answer);
3864 SetRect(&rc, 40, 40, 50, 50);
3865 InvalidateRect(hwndMain, &rc, TRUE);
3866 flush_events( TRUE );
3867 parentdc_ok(test4, test_answer);
3869 zero_parentdc_test(&test_answer);
3870 SetRect(&rc, 20, 20, 60, 60);
3871 InvalidateRect(hwndMain, &rc, TRUE);
3872 flush_events( TRUE );
3873 parentdc_ok(test5, test_answer);
3875 zero_parentdc_test(&test_answer);
3876 SetRect(&rc, 0, 0, 10, 10);
3877 InvalidateRect(hwnd1, &rc, TRUE);
3878 flush_events( TRUE );
3879 parentdc_ok(test6, test_answer);
3881 zero_parentdc_test(&test_answer);
3882 SetRect(&rc, -5, -5, 65, 65);
3883 InvalidateRect(hwnd1, &rc, TRUE);
3884 flush_events( TRUE );
3885 parentdc_ok(test7, test_answer);
3887 DestroyWindow(hwndMain);
3888 DestroyWindow(hwnd1);
3889 DestroyWindow(hwnd2);
3892 static LRESULT WINAPI def_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3894 return DefWindowProcA(hwnd, msg, wparam, lparam);
3897 static LRESULT WINAPI def_window_procW(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3899 return DefWindowProcW(hwnd, msg, wparam, lparam);
3902 static void test_IsWindowUnicode(void)
3904 static const char ansi_class_nameA[] = "ansi class name";
3905 static const WCHAR ansi_class_nameW[] = {'a','n','s','i',' ','c','l','a','s','s',' ','n','a','m','e',0};
3906 static const char unicode_class_nameA[] = "unicode class name";
3907 static const WCHAR unicode_class_nameW[] = {'u','n','i','c','o','d','e',' ','c','l','a','s','s',' ','n','a','m','e',0};
3908 WNDCLASSA classA;
3909 WNDCLASSW classW;
3910 HWND hwnd;
3912 memset(&classW, 0, sizeof(classW));
3913 classW.hInstance = GetModuleHandleA(0);
3914 classW.lpfnWndProc = def_window_procW;
3915 classW.lpszClassName = unicode_class_nameW;
3916 if (!RegisterClassW(&classW)) return; /* this catches Win9x as well */
3918 memset(&classA, 0, sizeof(classA));
3919 classA.hInstance = GetModuleHandleA(0);
3920 classA.lpfnWndProc = def_window_procA;
3921 classA.lpszClassName = ansi_class_nameA;
3922 assert(RegisterClassA(&classA));
3924 /* unicode class: window proc */
3925 hwnd = CreateWindowExW(0, unicode_class_nameW, NULL, WS_POPUP,
3926 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3927 assert(hwnd);
3929 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3930 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3931 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3932 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3933 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3935 DestroyWindow(hwnd);
3937 hwnd = CreateWindowExA(0, unicode_class_nameA, NULL, WS_POPUP,
3938 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3939 assert(hwnd);
3941 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3942 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3943 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3944 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3945 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3947 DestroyWindow(hwnd);
3949 /* ansi class: window proc */
3950 hwnd = CreateWindowExW(0, ansi_class_nameW, NULL, WS_POPUP,
3951 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3952 assert(hwnd);
3954 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3955 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3956 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3957 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3958 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3960 DestroyWindow(hwnd);
3962 hwnd = CreateWindowExA(0, ansi_class_nameA, NULL, WS_POPUP,
3963 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3964 assert(hwnd);
3966 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3967 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3968 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3969 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3970 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3972 DestroyWindow(hwnd);
3974 /* unicode class: class proc */
3975 hwnd = CreateWindowExW(0, unicode_class_nameW, NULL, WS_POPUP,
3976 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3977 assert(hwnd);
3979 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3980 SetClassLongPtrA(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procA);
3981 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3982 /* do not restore class window proc back to unicode */
3984 DestroyWindow(hwnd);
3986 hwnd = CreateWindowExA(0, unicode_class_nameA, NULL, WS_POPUP,
3987 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3988 assert(hwnd);
3990 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3991 SetClassLongPtrW(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procW);
3992 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3994 DestroyWindow(hwnd);
3996 /* ansi class: class proc */
3997 hwnd = CreateWindowExW(0, ansi_class_nameW, NULL, WS_POPUP,
3998 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3999 assert(hwnd);
4001 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4002 SetClassLongPtrW(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procW);
4003 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4004 /* do not restore class window proc back to ansi */
4006 DestroyWindow(hwnd);
4008 hwnd = CreateWindowExA(0, ansi_class_nameA, NULL, WS_POPUP,
4009 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4010 assert(hwnd);
4012 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4013 SetClassLongPtrA(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procA);
4014 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4016 DestroyWindow(hwnd);
4019 static LRESULT CALLBACK minmax_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
4021 MINMAXINFO *minmax;
4023 if (msg != WM_GETMINMAXINFO)
4024 return DefWindowProc(hwnd, msg, wp, lp);
4026 minmax = (MINMAXINFO *)lp;
4028 if ((GetWindowLong(hwnd, GWL_STYLE) & WS_CHILD))
4030 minmax->ptReserved.x = 0;
4031 minmax->ptReserved.y = 0;
4032 minmax->ptMaxSize.x = 400;
4033 minmax->ptMaxSize.y = 400;
4034 minmax->ptMaxPosition.x = 300;
4035 minmax->ptMaxPosition.y = 300;
4036 minmax->ptMaxTrackSize.x = 200;
4037 minmax->ptMaxTrackSize.y = 200;
4038 minmax->ptMinTrackSize.x = 100;
4039 minmax->ptMinTrackSize.y = 100;
4041 else
4042 DefWindowProc(hwnd, msg, wp, lp);
4043 return 1;
4046 static int expected_cx, expected_cy;
4047 static RECT expected_rect, broken_rect;
4049 static LRESULT CALLBACK winsizes_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
4051 switch(msg)
4053 case WM_GETMINMAXINFO:
4055 RECT rect;
4056 GetWindowRect( hwnd, &rect );
4057 ok( !rect.left && !rect.top && !rect.right && !rect.bottom,
4058 "wrong rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4059 return DefWindowProc(hwnd, msg, wp, lp);
4061 case WM_NCCREATE:
4062 case WM_CREATE:
4064 CREATESTRUCTA *cs = (CREATESTRUCTA *)lp;
4065 RECT rect;
4066 GetWindowRect( hwnd, &rect );
4067 trace( "hwnd %p msg %x size %dx%d rect %d,%d-%d,%d\n",
4068 hwnd, msg, cs->cx, cs->cy, rect.left, rect.top, rect.right, rect.bottom );
4069 ok( cs->cx == expected_cx || broken(cs->cx == (short)expected_cx),
4070 "wrong x size %d/%d\n", cs->cx, expected_cx );
4071 ok( cs->cy == expected_cy || broken(cs->cy == (short)expected_cy),
4072 "wrong y size %d/%d\n", cs->cy, expected_cy );
4073 ok( (rect.right - rect.left == expected_rect.right - expected_rect.left &&
4074 rect.bottom - rect.top == expected_rect.bottom - expected_rect.top) ||
4075 broken( rect.right - rect.left == broken_rect.right - broken_rect.left &&
4076 rect.bottom - rect.top == broken_rect.bottom - broken_rect.top) ||
4077 broken( rect.right - rect.left == (short)broken_rect.right - (short)broken_rect.left &&
4078 rect.bottom - rect.top == (short)broken_rect.bottom - (short)broken_rect.top),
4079 "wrong rect %d,%d-%d,%d / %d,%d-%d,%d\n",
4080 rect.left, rect.top, rect.right, rect.bottom,
4081 expected_rect.left, expected_rect.top, expected_rect.right, expected_rect.bottom );
4082 return DefWindowProc(hwnd, msg, wp, lp);
4084 case WM_NCCALCSIZE:
4086 RECT rect, *r = (RECT *)lp;
4087 GetWindowRect( hwnd, &rect );
4088 ok( !memcmp( &rect, r, sizeof(rect) ),
4089 "passed rect %d,%d-%d,%d doesn't match window rect %d,%d-%d,%d\n",
4090 r->left, r->top, r->right, r->bottom, rect.left, rect.top, rect.right, rect.bottom );
4091 return DefWindowProc(hwnd, msg, wp, lp);
4093 default:
4094 return DefWindowProc(hwnd, msg, wp, lp);
4098 static void test_CreateWindow(void)
4100 WNDCLASS cls;
4101 HWND hwnd, parent;
4102 HMENU hmenu;
4103 RECT rc, rc_minmax;
4104 MINMAXINFO minmax;
4106 #define expect_menu(window, menu) \
4107 SetLastError(0xdeadbeef); \
4108 ok(GetMenu(window) == (HMENU)menu, "GetMenu error %d\n", GetLastError())
4110 #define expect_style(window, style)\
4111 ok((ULONG)GetWindowLong(window, GWL_STYLE) == (style), "expected style %x != %x\n", (LONG)(style), GetWindowLong(window, GWL_STYLE))
4113 #define expect_ex_style(window, ex_style)\
4114 ok((ULONG)GetWindowLong(window, GWL_EXSTYLE) == (ex_style), "expected ex_style %x != %x\n", (LONG)(ex_style), GetWindowLong(window, GWL_EXSTYLE))
4116 #define expect_gle_broken_9x(gle)\
4117 ok(GetLastError() == gle ||\
4118 broken(GetLastError() == 0xdeadbeef),\
4119 "IsMenu set error %d\n", GetLastError())
4121 hmenu = CreateMenu();
4122 assert(hmenu != 0);
4123 parent = GetDesktopWindow();
4124 assert(parent != 0);
4126 SetLastError(0xdeadbeef);
4127 ok(IsMenu(hmenu), "IsMenu error %d\n", GetLastError());
4129 /* WS_CHILD */
4130 SetLastError(0xdeadbeef);
4131 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD,
4132 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4133 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4134 expect_menu(hwnd, 1);
4135 expect_style(hwnd, WS_CHILD);
4136 expect_ex_style(hwnd, WS_EX_APPWINDOW);
4137 DestroyWindow(hwnd);
4139 SetLastError(0xdeadbeef);
4140 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_CAPTION,
4141 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4142 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4143 expect_menu(hwnd, 1);
4144 expect_style(hwnd, WS_CHILD | WS_CAPTION);
4145 expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4146 DestroyWindow(hwnd);
4148 SetLastError(0xdeadbeef);
4149 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD,
4150 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4151 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4152 expect_menu(hwnd, 1);
4153 expect_style(hwnd, WS_CHILD);
4154 expect_ex_style(hwnd, 0);
4155 DestroyWindow(hwnd);
4157 SetLastError(0xdeadbeef);
4158 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_CAPTION,
4159 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4160 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4161 expect_menu(hwnd, 1);
4162 expect_style(hwnd, WS_CHILD | WS_CAPTION);
4163 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4164 DestroyWindow(hwnd);
4166 /* WS_POPUP */
4167 SetLastError(0xdeadbeef);
4168 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP,
4169 0, 0, 100, 100, parent, hmenu, 0, NULL);
4170 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4171 expect_menu(hwnd, hmenu);
4172 expect_style(hwnd, WS_POPUP | WS_CLIPSIBLINGS);
4173 expect_ex_style(hwnd, WS_EX_APPWINDOW);
4174 DestroyWindow(hwnd);
4175 SetLastError(0xdeadbeef);
4176 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4177 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4179 hmenu = CreateMenu();
4180 assert(hmenu != 0);
4181 SetLastError(0xdeadbeef);
4182 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP | WS_CAPTION,
4183 0, 0, 100, 100, parent, hmenu, 0, NULL);
4184 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4185 expect_menu(hwnd, hmenu);
4186 expect_style(hwnd, WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4187 expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4188 DestroyWindow(hwnd);
4189 SetLastError(0xdeadbeef);
4190 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4191 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4193 hmenu = CreateMenu();
4194 assert(hmenu != 0);
4195 SetLastError(0xdeadbeef);
4196 hwnd = CreateWindowEx(0, "static", NULL, WS_POPUP,
4197 0, 0, 100, 100, parent, hmenu, 0, NULL);
4198 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4199 expect_menu(hwnd, hmenu);
4200 expect_style(hwnd, WS_POPUP | WS_CLIPSIBLINGS);
4201 expect_ex_style(hwnd, 0);
4202 DestroyWindow(hwnd);
4203 SetLastError(0xdeadbeef);
4204 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4205 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4207 hmenu = CreateMenu();
4208 assert(hmenu != 0);
4209 SetLastError(0xdeadbeef);
4210 hwnd = CreateWindowEx(0, "static", NULL, WS_POPUP | WS_CAPTION,
4211 0, 0, 100, 100, parent, hmenu, 0, NULL);
4212 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4213 expect_menu(hwnd, hmenu);
4214 expect_style(hwnd, WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4215 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4216 DestroyWindow(hwnd);
4217 SetLastError(0xdeadbeef);
4218 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4219 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4221 /* WS_CHILD | WS_POPUP */
4222 SetLastError(0xdeadbeef);
4223 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP,
4224 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4225 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4226 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4227 if (hwnd)
4228 DestroyWindow(hwnd);
4230 hmenu = CreateMenu();
4231 assert(hmenu != 0);
4232 SetLastError(0xdeadbeef);
4233 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP,
4234 0, 0, 100, 100, parent, hmenu, 0, NULL);
4235 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4236 expect_menu(hwnd, hmenu);
4237 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CLIPSIBLINGS);
4238 expect_ex_style(hwnd, WS_EX_APPWINDOW);
4239 DestroyWindow(hwnd);
4240 SetLastError(0xdeadbeef);
4241 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4242 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4244 SetLastError(0xdeadbeef);
4245 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4246 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4247 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4248 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4249 if (hwnd)
4250 DestroyWindow(hwnd);
4252 hmenu = CreateMenu();
4253 assert(hmenu != 0);
4254 SetLastError(0xdeadbeef);
4255 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4256 0, 0, 100, 100, parent, hmenu, 0, NULL);
4257 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4258 expect_menu(hwnd, hmenu);
4259 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4260 expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4261 DestroyWindow(hwnd);
4262 SetLastError(0xdeadbeef);
4263 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4264 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4266 SetLastError(0xdeadbeef);
4267 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP,
4268 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4269 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4270 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4271 if (hwnd)
4272 DestroyWindow(hwnd);
4274 hmenu = CreateMenu();
4275 assert(hmenu != 0);
4276 SetLastError(0xdeadbeef);
4277 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP,
4278 0, 0, 100, 100, parent, hmenu, 0, NULL);
4279 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4280 expect_menu(hwnd, hmenu);
4281 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CLIPSIBLINGS);
4282 expect_ex_style(hwnd, 0);
4283 DestroyWindow(hwnd);
4284 SetLastError(0xdeadbeef);
4285 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4286 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4288 SetLastError(0xdeadbeef);
4289 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4290 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4291 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4292 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4293 if (hwnd)
4294 DestroyWindow(hwnd);
4296 hmenu = CreateMenu();
4297 assert(hmenu != 0);
4298 SetLastError(0xdeadbeef);
4299 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4300 0, 0, 100, 100, parent, hmenu, 0, NULL);
4301 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4302 expect_menu(hwnd, hmenu);
4303 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4304 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4305 DestroyWindow(hwnd);
4306 SetLastError(0xdeadbeef);
4307 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4308 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4310 /* test child window sizing */
4311 cls.style = 0;
4312 cls.lpfnWndProc = minmax_wnd_proc;
4313 cls.cbClsExtra = 0;
4314 cls.cbWndExtra = 0;
4315 cls.hInstance = GetModuleHandle(0);
4316 cls.hIcon = 0;
4317 cls.hCursor = LoadCursorA(0, IDC_ARROW);
4318 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4319 cls.lpszMenuName = NULL;
4320 cls.lpszClassName = "MinMax_WndClass";
4321 RegisterClass(&cls);
4323 SetLastError(0xdeadbeef);
4324 parent = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_CAPTION | WS_SYSMENU | WS_THICKFRAME,
4325 0, 0, 100, 100, 0, 0, 0, NULL);
4326 ok(parent != 0, "CreateWindowEx error %d\n", GetLastError());
4327 expect_menu(parent, 0);
4328 expect_style(parent, WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_CLIPSIBLINGS);
4329 expect_ex_style(parent, WS_EX_WINDOWEDGE);
4331 memset(&minmax, 0, sizeof(minmax));
4332 SendMessage(parent, WM_GETMINMAXINFO, 0, (LPARAM)&minmax);
4333 SetRect(&rc_minmax, 0, 0, minmax.ptMaxSize.x, minmax.ptMaxSize.y);
4334 ok(IsRectEmpty(&rc_minmax), "ptMaxSize is not empty\n");
4335 SetRect(&rc_minmax, 0, 0, minmax.ptMaxTrackSize.x, minmax.ptMaxTrackSize.y);
4336 ok(IsRectEmpty(&rc_minmax), "ptMaxTrackSize is not empty\n");
4338 GetWindowRect(parent, &rc);
4339 ok(!IsRectEmpty(&rc), "parent window rect is empty\n");
4340 GetClientRect(parent, &rc);
4341 ok(!IsRectEmpty(&rc), "parent client rect is empty\n");
4343 InflateRect(&rc, 200, 200);
4344 trace("creating child with rect (%d,%d-%d,%d)\n", rc.left, rc.top, rc.right, rc.bottom);
4346 SetLastError(0xdeadbeef);
4347 hwnd = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME,
4348 rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
4349 parent, (HMENU)1, 0, NULL);
4350 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4351 expect_menu(hwnd, 1);
4352 expect_style(hwnd, WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME);
4353 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4355 memset(&minmax, 0, sizeof(minmax));
4356 SendMessage(hwnd, WM_GETMINMAXINFO, 0, (LPARAM)&minmax);
4357 SetRect(&rc_minmax, 0, 0, minmax.ptMaxTrackSize.x, minmax.ptMaxTrackSize.y);
4359 GetWindowRect(hwnd, &rc);
4360 OffsetRect(&rc, -rc.left, -rc.top);
4361 ok(EqualRect(&rc, &rc_minmax), "rects don't match: (%d,%d-%d,%d) and (%d,%d-%d,%d)\n",
4362 rc.left, rc.top, rc.right, rc.bottom,
4363 rc_minmax.left, rc_minmax.top, rc_minmax.right, rc_minmax.bottom);
4364 DestroyWindow(hwnd);
4366 cls.lpfnWndProc = winsizes_wnd_proc;
4367 cls.lpszClassName = "Sizes_WndClass";
4368 RegisterClass(&cls);
4370 expected_cx = expected_cy = 200000;
4371 SetRect( &expected_rect, 0, 0, 200000, 200000 );
4372 broken_rect = expected_rect;
4373 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 300000, 300000, 200000, 200000, parent, 0, 0, NULL);
4374 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4375 GetClientRect( hwnd, &rc );
4376 ok( rc.right == 200000 || broken(rc.right == (short)200000), "invalid rect right %u\n", rc.right );
4377 ok( rc.bottom == 200000 || broken(rc.bottom == (short)200000), "invalid rect bottom %u\n", rc.bottom );
4378 DestroyWindow(hwnd);
4380 expected_cx = expected_cy = -10;
4381 SetRect( &expected_rect, 0, 0, 0, 0 );
4382 SetRect( &broken_rect, 0, 0, -10, -10 );
4383 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, -20, -20, -10, -10, parent, 0, 0, NULL);
4384 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4385 GetClientRect( hwnd, &rc );
4386 ok( rc.right == 0, "invalid rect right %u\n", rc.right );
4387 ok( rc.bottom == 0, "invalid rect bottom %u\n", rc.bottom );
4388 DestroyWindow(hwnd);
4390 expected_cx = expected_cy = -200000;
4391 SetRect( &expected_rect, 0, 0, 0, 0 );
4392 SetRect( &broken_rect, 0, 0, -200000, -200000 );
4393 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, -300000, -300000, -200000, -200000, parent, 0, 0, NULL);
4394 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4395 GetClientRect( hwnd, &rc );
4396 ok( rc.right == 0, "invalid rect right %u\n", rc.right );
4397 ok( rc.bottom == 0, "invalid rect bottom %u\n", rc.bottom );
4398 DestroyWindow(hwnd);
4400 /* we need a parent at 0,0 so that child coordinates match */
4401 DestroyWindow(parent);
4402 parent = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_POPUP, 0, 0, 100, 100, 0, 0, 0, NULL);
4403 ok(parent != 0, "CreateWindowEx error %d\n", GetLastError());
4405 expected_cx = 100;
4406 expected_cy = 0x7fffffff;
4407 SetRect( &expected_rect, 10, 10, 110, 0x7fffffff );
4408 SetRect( &broken_rect, 10, 10, 110, 0x7fffffffU + 10 );
4409 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 10, 10, 100, 0x7fffffff, parent, 0, 0, NULL);
4410 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4411 GetClientRect( hwnd, &rc );
4412 ok( rc.right == 100, "invalid rect right %u\n", rc.right );
4413 ok( rc.bottom == 0x7fffffff - 10 || broken(rc.bottom == 0), "invalid rect bottom %u\n", rc.bottom );
4414 DestroyWindow(hwnd);
4416 expected_cx = 0x7fffffff;
4417 expected_cy = 0x7fffffff;
4418 SetRect( &expected_rect, 20, 10, 0x7fffffff, 0x7fffffff );
4419 SetRect( &broken_rect, 20, 10, 0x7fffffffU + 20, 0x7fffffffU + 10 );
4420 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 20, 10, 0x7fffffff, 0x7fffffff, parent, 0, 0, NULL);
4421 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4422 GetClientRect( hwnd, &rc );
4423 ok( rc.right == 0x7fffffff - 20 || broken(rc.right == 0), "invalid rect right %u\n", rc.right );
4424 ok( rc.bottom == 0x7fffffff - 10 || broken(rc.bottom == 0), "invalid rect bottom %u\n", rc.bottom );
4425 DestroyWindow(hwnd);
4427 /* top level window */
4428 expected_cx = expected_cy = 200000;
4429 SetRect( &expected_rect, 0, 0, GetSystemMetrics(SM_CXMAXTRACK), GetSystemMetrics(SM_CYMAXTRACK) );
4430 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_OVERLAPPEDWINDOW, 300000, 300000, 200000, 200000, 0, 0, 0, NULL);
4431 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4432 GetClientRect( hwnd, &rc );
4433 ok( rc.right <= expected_cx, "invalid rect right %u\n", rc.right );
4434 ok( rc.bottom <= expected_cy, "invalid rect bottom %u\n", rc.bottom );
4435 DestroyWindow(hwnd);
4437 DestroyWindow(parent);
4439 UnregisterClass("MinMax_WndClass", GetModuleHandle(0));
4440 UnregisterClass("Sizes_WndClass", GetModuleHandle(0));
4442 #undef expect_gle_broken_9x
4443 #undef expect_menu
4444 #undef expect_style
4445 #undef expect_ex_style
4448 /* function that remembers whether the system the test is running on sets the
4449 * last error for user32 functions to make the tests stricter */
4450 static int check_error(DWORD actual, DWORD expected)
4452 static int sets_last_error = -1;
4453 if (sets_last_error == -1)
4454 sets_last_error = (actual != 0xdeadbeef);
4455 return (!sets_last_error && (actual == 0xdeadbeef)) || (actual == expected);
4458 static void test_SetWindowLong(void)
4460 LONG_PTR retval;
4461 WNDPROC old_window_procW;
4463 SetLastError(0xdeadbeef);
4464 retval = SetWindowLongPtr(NULL, GWLP_WNDPROC, 0);
4465 ok(!retval, "SetWindowLongPtr on invalid window handle should have returned 0 instead of 0x%lx\n", retval);
4466 ok(check_error(GetLastError(), ERROR_INVALID_WINDOW_HANDLE),
4467 "SetWindowLongPtr should have set error to ERROR_INVALID_WINDOW_HANDLE instad of %d\n", GetLastError());
4469 SetLastError(0xdeadbeef);
4470 retval = SetWindowLongPtr(hwndMain, 0xdeadbeef, 0);
4471 ok(!retval, "SetWindowLongPtr on invalid index should have returned 0 instead of 0x%lx\n", retval);
4472 ok(check_error(GetLastError(), ERROR_INVALID_INDEX),
4473 "SetWindowLongPtr should have set error to ERROR_INVALID_INDEX instad of %d\n", GetLastError());
4475 SetLastError(0xdeadbeef);
4476 retval = SetWindowLongPtr(hwndMain, GWLP_WNDPROC, 0);
4477 ok((WNDPROC)retval == main_window_procA || broken(!retval), /* win9x */
4478 "SetWindowLongPtr on invalid window proc should have returned address of main_window_procA instead of 0x%lx\n", retval);
4479 ok(GetLastError() == 0xdeadbeef, "SetWindowLongPtr shouldn't have set the last error, instead of setting it to %d\n", GetLastError());
4480 retval = GetWindowLongPtr(hwndMain, GWLP_WNDPROC);
4481 ok((WNDPROC)retval == main_window_procA,
4482 "SetWindowLongPtr on invalid window proc shouldn't have changed the value returned by GetWindowLongPtr, instead of changing it to 0x%lx\n", retval);
4483 ok(!IsWindowUnicode(hwndMain), "hwndMain shouldn't be Unicode\n");
4485 old_window_procW = (WNDPROC)GetWindowLongPtrW(hwndMain, GWLP_WNDPROC);
4486 SetLastError(0xdeadbeef);
4487 retval = SetWindowLongPtrW(hwndMain, GWLP_WNDPROC, 0);
4488 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
4490 ok(GetLastError() == 0xdeadbeef, "SetWindowLongPtr shouldn't have set the last error, instead of setting it to %d\n", GetLastError());
4491 ok(retval != 0, "SetWindowLongPtr error %d\n", GetLastError());
4492 ok((WNDPROC)retval == old_window_procW,
4493 "SetWindowLongPtr on invalid window proc shouldn't have changed the value returned by GetWindowLongPtr, instead of changing it to 0x%lx\n", retval);
4494 ok(IsWindowUnicode(hwndMain), "hwndMain should now be Unicode\n");
4496 /* set it back to ANSI */
4497 SetWindowLongPtr(hwndMain, GWLP_WNDPROC, 0);
4501 static void test_ShowWindow(void)
4503 HWND hwnd;
4504 DWORD style;
4505 RECT rcMain, rc;
4506 LPARAM ret;
4508 SetRect(&rcMain, 120, 120, 210, 210);
4510 hwnd = CreateWindowEx(0, "MainWindowClass", NULL,
4511 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
4512 WS_MAXIMIZEBOX | WS_POPUP,
4513 rcMain.left, rcMain.top,
4514 rcMain.right - rcMain.left, rcMain.bottom - rcMain.top,
4515 0, 0, 0, NULL);
4516 assert(hwnd);
4518 style = GetWindowLong(hwnd, GWL_STYLE);
4519 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4520 ok(!(style & WS_VISIBLE), "window should not be visible\n");
4521 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4522 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4523 GetWindowRect(hwnd, &rc);
4524 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4525 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4526 rc.left, rc.top, rc.right, rc.bottom);
4528 ret = ShowWindow(hwnd, SW_SHOW);
4529 ok(!ret, "not expected ret: %lu\n", ret);
4530 style = GetWindowLong(hwnd, GWL_STYLE);
4531 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4532 ok(style & WS_VISIBLE, "window should be visible\n");
4533 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4534 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4535 GetWindowRect(hwnd, &rc);
4536 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4537 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4538 rc.left, rc.top, rc.right, rc.bottom);
4540 ret = ShowWindow(hwnd, SW_MINIMIZE);
4541 ok(ret, "not expected ret: %lu\n", ret);
4542 style = GetWindowLong(hwnd, GWL_STYLE);
4543 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4544 ok(style & WS_VISIBLE, "window should be visible\n");
4545 ok(style & WS_MINIMIZE, "window should be minimized\n");
4546 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4547 GetWindowRect(hwnd, &rc);
4548 ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
4550 ShowWindow(hwnd, SW_RESTORE);
4551 ok(ret, "not expected ret: %lu\n", ret);
4552 style = GetWindowLong(hwnd, GWL_STYLE);
4553 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4554 ok(style & WS_VISIBLE, "window should be visible\n");
4555 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4556 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4557 GetWindowRect(hwnd, &rc);
4558 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4559 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4560 rc.left, rc.top, rc.right, rc.bottom);
4562 ret = EnableWindow(hwnd, FALSE);
4563 ok(!ret, "not expected ret: %lu\n", ret);
4564 style = GetWindowLong(hwnd, GWL_STYLE);
4565 ok(style & WS_DISABLED, "window should be disabled\n");
4567 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_MINIMIZE, 0);
4568 ok(!ret, "not expected ret: %lu\n", ret);
4569 style = GetWindowLong(hwnd, GWL_STYLE);
4570 ok(style & WS_DISABLED, "window should be disabled\n");
4571 ok(style & WS_VISIBLE, "window should be visible\n");
4572 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4573 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4574 GetWindowRect(hwnd, &rc);
4575 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4576 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4577 rc.left, rc.top, rc.right, rc.bottom);
4579 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_MAXIMIZE, 0);
4580 ok(!ret, "not expected ret: %lu\n", ret);
4581 style = GetWindowLong(hwnd, GWL_STYLE);
4582 ok(style & WS_DISABLED, "window should be disabled\n");
4583 ok(style & WS_VISIBLE, "window should be visible\n");
4584 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4585 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4586 GetWindowRect(hwnd, &rc);
4587 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4588 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4589 rc.left, rc.top, rc.right, rc.bottom);
4591 ret = ShowWindow(hwnd, SW_MINIMIZE);
4592 ok(ret, "not expected ret: %lu\n", ret);
4593 style = GetWindowLong(hwnd, GWL_STYLE);
4594 ok(style & WS_DISABLED, "window should be disabled\n");
4595 ok(style & WS_VISIBLE, "window should be visible\n");
4596 ok(style & WS_MINIMIZE, "window should be minimized\n");
4597 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4598 GetWindowRect(hwnd, &rc);
4599 ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
4601 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4602 ok(!ret, "not expected ret: %lu\n", ret);
4603 style = GetWindowLong(hwnd, GWL_STYLE);
4604 ok(style & WS_DISABLED, "window should be disabled\n");
4605 ok(style & WS_VISIBLE, "window should be visible\n");
4606 ok(style & WS_MINIMIZE, "window should be minimized\n");
4607 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4608 GetWindowRect(hwnd, &rc);
4609 ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
4611 ret = ShowWindow(hwnd, SW_RESTORE);
4612 ok(ret, "not expected ret: %lu\n", ret);
4613 style = GetWindowLong(hwnd, GWL_STYLE);
4614 ok(style & WS_DISABLED, "window should be disabled\n");
4615 ok(style & WS_VISIBLE, "window should be visible\n");
4616 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4617 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4618 GetWindowRect(hwnd, &rc);
4619 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4620 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4621 rc.left, rc.top, rc.right, rc.bottom);
4623 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0);
4624 ok(!ret, "not expected ret: %lu\n", ret);
4625 ok(IsWindow(hwnd), "window should exist\n");
4627 ret = EnableWindow(hwnd, TRUE);
4628 ok(ret, "not expected ret: %lu\n", ret);
4630 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0);
4631 ok(!ret, "not expected ret: %lu\n", ret);
4632 ok(!IsWindow(hwnd), "window should not exist\n");
4635 static void test_gettext(void)
4637 WNDCLASS cls;
4638 LPCSTR clsname = "gettexttest";
4639 HWND hwnd;
4640 LRESULT r;
4642 memset( &cls, 0, sizeof cls );
4643 cls.lpfnWndProc = DefWindowProc;
4644 cls.lpszClassName = clsname;
4645 cls.hInstance = GetModuleHandle(NULL);
4647 if (!RegisterClass( &cls )) return;
4649 hwnd = CreateWindow( clsname, "test text", WS_OVERLAPPED, 0, 0, 10, 10, 0, NULL, NULL, NULL);
4650 ok( hwnd != NULL, "window was null\n");
4652 r = SendMessage( hwnd, WM_GETTEXT, 0x10, 0x1000);
4653 ok( r == 0, "settext should return zero\n");
4655 r = SendMessage( hwnd, WM_GETTEXT, 0x10000, 0);
4656 ok( r == 0, "settext should return zero (%ld)\n", r);
4658 r = SendMessage( hwnd, WM_GETTEXT, 0xff000000, 0x1000);
4659 ok( r == 0, "settext should return zero (%ld)\n", r);
4661 r = SendMessage( hwnd, WM_GETTEXT, 0x1000, 0xff000000);
4662 ok( r == 0, "settext should return zero (%ld)\n", r);
4664 DestroyWindow(hwnd);
4665 UnregisterClass( clsname, NULL );
4669 static void test_GetUpdateRect(void)
4671 MSG msg;
4672 BOOL ret, parent_wm_paint, grandparent_wm_paint;
4673 RECT rc1, rc2;
4674 HWND hgrandparent, hparent, hchild;
4675 WNDCLASSA cls;
4676 static const char classNameA[] = "GetUpdateRectClass";
4678 hgrandparent = CreateWindowA("static", "grandparent", WS_OVERLAPPEDWINDOW,
4679 0, 0, 100, 100, NULL, NULL, 0, NULL);
4681 hparent = CreateWindowA("static", "parent", WS_CHILD|WS_VISIBLE,
4682 0, 0, 100, 100, hgrandparent, NULL, 0, NULL);
4684 hchild = CreateWindowA("static", "child", WS_CHILD|WS_VISIBLE,
4685 10, 10, 30, 30, hparent, NULL, 0, NULL);
4687 ShowWindow(hgrandparent, SW_SHOW);
4688 UpdateWindow(hgrandparent);
4689 flush_events( TRUE );
4691 ShowWindow(hchild, SW_HIDE);
4692 SetRect(&rc2, 0, 0, 0, 0);
4693 ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
4694 ok(!ret, "GetUpdateRect returned not empty region\n");
4695 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4696 rc1.left, rc1.top, rc1.right, rc1.bottom,
4697 rc2.left, rc2.top, rc2.right, rc2.bottom);
4699 SetRect(&rc2, 10, 10, 40, 40);
4700 ret = GetUpdateRect(hparent, &rc1, FALSE);
4701 ok(ret, "GetUpdateRect returned empty region\n");
4702 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4703 rc1.left, rc1.top, rc1.right, rc1.bottom,
4704 rc2.left, rc2.top, rc2.right, rc2.bottom);
4706 parent_wm_paint = FALSE;
4707 grandparent_wm_paint = FALSE;
4708 while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
4710 if (msg.message == WM_PAINT)
4712 if (msg.hwnd == hgrandparent) grandparent_wm_paint = TRUE;
4713 if (msg.hwnd == hparent) parent_wm_paint = TRUE;
4715 DispatchMessage(&msg);
4717 ok(parent_wm_paint, "WM_PAINT should have been received in parent\n");
4718 ok(!grandparent_wm_paint, "WM_PAINT should NOT have been received in grandparent\n");
4720 DestroyWindow(hgrandparent);
4722 cls.style = 0;
4723 cls.lpfnWndProc = DefWindowProcA;
4724 cls.cbClsExtra = 0;
4725 cls.cbWndExtra = 0;
4726 cls.hInstance = GetModuleHandleA(0);
4727 cls.hIcon = 0;
4728 cls.hCursor = LoadCursorA(0, IDC_ARROW);
4729 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4730 cls.lpszMenuName = NULL;
4731 cls.lpszClassName = classNameA;
4733 if(!RegisterClassA(&cls)) {
4734 trace("Register failed %d\n", GetLastError());
4735 return;
4738 hgrandparent = CreateWindowA(classNameA, "grandparent", WS_OVERLAPPEDWINDOW,
4739 0, 0, 100, 100, NULL, NULL, 0, NULL);
4741 hparent = CreateWindowA(classNameA, "parent", WS_CHILD|WS_VISIBLE,
4742 0, 0, 100, 100, hgrandparent, NULL, 0, NULL);
4744 hchild = CreateWindowA(classNameA, "child", WS_CHILD|WS_VISIBLE,
4745 10, 10, 30, 30, hparent, NULL, 0, NULL);
4747 ShowWindow(hgrandparent, SW_SHOW);
4748 UpdateWindow(hgrandparent);
4749 flush_events( TRUE );
4751 ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
4752 ok(!ret, "GetUpdateRect returned not empty region\n");
4754 ShowWindow(hchild, SW_HIDE);
4756 SetRect(&rc2, 0, 0, 0, 0);
4757 ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
4758 ok(!ret, "GetUpdateRect returned not empty region\n");
4759 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4760 rc1.left, rc1.top, rc1.right, rc1.bottom,
4761 rc2.left, rc2.top, rc2.right, rc2.bottom);
4763 SetRect(&rc2, 10, 10, 40, 40);
4764 ret = GetUpdateRect(hparent, &rc1, FALSE);
4765 ok(ret, "GetUpdateRect returned empty region\n");
4766 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4767 rc1.left, rc1.top, rc1.right, rc1.bottom,
4768 rc2.left, rc2.top, rc2.right, rc2.bottom);
4770 parent_wm_paint = FALSE;
4771 grandparent_wm_paint = FALSE;
4772 while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
4774 if (msg.message == WM_PAINT)
4776 if (msg.hwnd == hgrandparent) grandparent_wm_paint = TRUE;
4777 if (msg.hwnd == hparent) parent_wm_paint = TRUE;
4779 DispatchMessage(&msg);
4781 ok(parent_wm_paint, "WM_PAINT should have been received in parent\n");
4782 ok(!grandparent_wm_paint, "WM_PAINT should NOT have been received in grandparent\n");
4784 DestroyWindow(hgrandparent);
4788 static LRESULT CALLBACK TestExposedRegion_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
4790 if(msg == WM_PAINT)
4792 PAINTSTRUCT ps;
4793 RECT updateRect;
4794 DWORD waitResult;
4795 HWND win;
4796 const int waitTime = 2000;
4798 BeginPaint(hwnd, &ps);
4800 /* create and destroy window to create an exposed region on this window */
4801 win = CreateWindowA("static", "win", WS_VISIBLE,
4802 10,10,50,50, NULL, NULL, 0, NULL);
4803 DestroyWindow(win);
4805 waitResult = MsgWaitForMultipleObjects( 0, NULL, FALSE, waitTime, QS_PAINT );
4807 ValidateRect(hwnd, NULL);
4808 EndPaint(hwnd, &ps);
4810 if(waitResult != WAIT_TIMEOUT)
4812 GetUpdateRect(hwnd, &updateRect, FALSE);
4813 ok(IsRectEmpty(&updateRect), "Exposed rect should be empty\n");
4816 return 1;
4818 return DefWindowProc(hwnd, msg, wParam, lParam);
4821 static void test_Expose(void)
4823 ATOM atom;
4824 WNDCLASSA cls;
4825 HWND mw;
4826 memset(&cls, 0, sizeof(WNDCLASSA));
4827 cls.lpfnWndProc = TestExposedRegion_WndProc;
4828 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4829 cls.lpszClassName = "TestExposeClass";
4830 atom = RegisterClassA(&cls);
4832 mw = CreateWindowA("TestExposeClass", "MainWindow", WS_VISIBLE|WS_OVERLAPPEDWINDOW,
4833 0, 0, 200, 100, NULL, NULL, 0, NULL);
4835 UpdateWindow(mw);
4836 DestroyWindow(mw);
4839 static void test_GetWindowModuleFileName(void)
4841 HWND hwnd;
4842 HINSTANCE hinst;
4843 UINT ret1, ret2;
4844 char buf1[MAX_PATH], buf2[MAX_PATH];
4846 if (!pGetWindowModuleFileNameA)
4848 skip("GetWindowModuleFileNameA is not available\n");
4849 return;
4852 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0,0,0,0, 0, 0, 0, NULL);
4853 assert(hwnd);
4855 hinst = (HINSTANCE)GetWindowLongPtr(hwnd, GWLP_HINSTANCE);
4856 ok(hinst == 0 || broken(hinst == GetModuleHandle(0)), /* win9x */ "expected 0, got %p\n", hinst);
4858 buf1[0] = 0;
4859 SetLastError(0xdeadbeef);
4860 ret1 = GetModuleFileName(hinst, buf1, sizeof(buf1));
4861 ok(ret1, "GetModuleFileName error %u\n", GetLastError());
4863 buf2[0] = 0;
4864 SetLastError(0xdeadbeef);
4865 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, sizeof(buf2));
4866 ok(ret2 || broken(!ret2), /* nt4 sp 3 */
4867 "GetWindowModuleFileNameA error %u\n", GetLastError());
4869 if (ret2)
4871 ok(ret1 == ret2 || broken(ret2 == ret1 + 1), /* win98 */ "%u != %u\n", ret1, ret2);
4872 ok(!strcmp(buf1, buf2), "%s != %s\n", buf1, buf2);
4874 hinst = GetModuleHandle(0);
4876 SetLastError(0xdeadbeef);
4877 ret2 = GetModuleFileName(hinst, buf2, ret1 - 2);
4878 ok(ret2 == ret1 - 2 || broken(ret2 == ret1 - 3), /* win98 */
4879 "expected %u, got %u\n", ret1 - 2, ret2);
4880 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4881 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4882 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4884 SetLastError(0xdeadbeef);
4885 ret2 = GetModuleFileName(hinst, buf2, 0);
4886 ok(!ret2, "GetModuleFileName should return 0\n");
4887 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4888 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4889 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4891 SetLastError(0xdeadbeef);
4892 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, ret1 - 2);
4893 ok(ret2 == ret1 - 2 || broken(ret2 == ret1 - 3) /* win98 */ || broken(!ret2), /* nt4 sp3 */
4894 "expected %u, got %u\n", ret1 - 2, ret2);
4895 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4896 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4897 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4899 SetLastError(0xdeadbeef);
4900 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, 0);
4901 ok(!ret2, "expected 0, got %u\n", ret2);
4902 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4903 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4904 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4906 DestroyWindow(hwnd);
4908 buf2[0] = 0;
4909 hwnd = (HWND)0xdeadbeef;
4910 SetLastError(0xdeadbeef);
4911 ret1 = pGetWindowModuleFileNameA(hwnd, buf1, sizeof(buf1));
4912 ok(!ret1, "expected 0, got %u\n", ret1);
4913 ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE || broken(GetLastError() == 0xdeadbeef), /* win9x */
4914 "expected ERROR_INVALID_WINDOW_HANDLE, got %u\n", GetLastError());
4916 hwnd = FindWindow("Shell_TrayWnd", NULL);
4917 ok(IsWindow(hwnd) || broken(!hwnd), "got invalid tray window %p\n", hwnd);
4918 SetLastError(0xdeadbeef);
4919 ret1 = pGetWindowModuleFileNameA(hwnd, buf1, sizeof(buf1));
4920 ok(!ret1 || broken(ret1), /* win98 */ "expected 0, got %u\n", ret1);
4922 if (!ret1) /* inter-process GetWindowModuleFileName works on win9x, so don't test the desktop there */
4924 ret1 = GetModuleFileName(0, buf1, sizeof(buf1));
4925 hwnd = GetDesktopWindow();
4926 ok(IsWindow(hwnd), "got invalid desktop window %p\n", hwnd);
4927 SetLastError(0xdeadbeef);
4928 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, sizeof(buf2));
4929 ok(!ret2 || ret1 == ret2 /* vista */, "expected 0 or %u, got %u %s\n", ret1, ret2, buf2);
4933 static void test_hwnd_message(void)
4935 static const WCHAR mainwindowclassW[] = {'M','a','i','n','W','i','n','d','o','w','C','l','a','s','s',0};
4936 static const WCHAR message_windowW[] = {'m','e','s','s','a','g','e',' ','w','i','n','d','o','w',0};
4938 HWND parent = 0, hwnd, found;
4939 RECT rect;
4941 /* HWND_MESSAGE is not supported below w2k, but win9x return != 0
4942 on CreateWindowExA and crash later in the test.
4943 Use UNICODE here to fail on win9x */
4944 hwnd = CreateWindowExW(0, mainwindowclassW, message_windowW, WS_CAPTION | WS_VISIBLE,
4945 100, 100, 200, 200, HWND_MESSAGE, 0, 0, NULL);
4946 if (!hwnd)
4948 win_skip("CreateWindowExW with parent HWND_MESSAGE failed\n");
4949 return;
4952 ok( !GetParent(hwnd), "GetParent should return 0 for message only windows\n" );
4953 if (pGetAncestor)
4955 char buffer[100];
4956 HWND root, desktop = GetDesktopWindow();
4958 parent = pGetAncestor(hwnd, GA_PARENT);
4959 ok(parent != 0, "GetAncestor(GA_PARENT) should not return 0 for message windows\n");
4960 ok(parent != desktop, "GetAncestor(GA_PARENT) should not return desktop for message windows\n");
4961 root = pGetAncestor(hwnd, GA_ROOT);
4962 ok(root == hwnd, "GetAncestor(GA_ROOT) should return hwnd for message windows\n");
4963 ok( !pGetAncestor(parent, GA_PARENT) || broken(pGetAncestor(parent, GA_PARENT) != 0), /* win2k */
4964 "parent shouldn't have parent %p\n", pGetAncestor(parent, GA_PARENT) );
4965 trace("parent %p root %p desktop %p\n", parent, root, desktop);
4966 if (!GetClassNameA( parent, buffer, sizeof(buffer) )) buffer[0] = 0;
4967 ok( !lstrcmpi( buffer, "Message" ), "wrong parent class '%s'\n", buffer );
4968 GetWindowRect( parent, &rect );
4969 ok( rect.left == 0 && rect.right == 100 && rect.top == 0 && rect.bottom == 100,
4970 "wrong parent rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4972 GetWindowRect( hwnd, &rect );
4973 ok( rect.left == 100 && rect.right == 300 && rect.top == 100 && rect.bottom == 300,
4974 "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4976 /* test FindWindow behavior */
4978 found = FindWindowExA( 0, 0, 0, "message window" );
4979 ok( found == hwnd, "didn't find message window %p/%p\n", found, hwnd );
4980 SetLastError(0xdeadbeef);
4981 found = FindWindowExA( GetDesktopWindow(), 0, 0, "message window" );
4982 ok( found == 0, "found message window %p/%p\n", found, hwnd );
4983 ok( GetLastError() == 0xdeadbeef, "expected deadbeef, got %d\n", GetLastError() );
4984 if (parent)
4986 found = FindWindowExA( parent, 0, 0, "message window" );
4987 ok( found == hwnd, "didn't find message window %p/%p\n", found, hwnd );
4990 /* test IsChild behavior */
4992 if (parent) ok( !IsChild( parent, hwnd ), "HWND_MESSAGE is child of top window\n" );
4994 /* test IsWindowVisible behavior */
4996 ok( !IsWindowVisible( hwnd ), "HWND_MESSAGE window is visible\n" );
4997 if (parent) ok( !IsWindowVisible( parent ), "HWND_MESSAGE parent is visible\n" );
4999 DestroyWindow(hwnd);
5002 static void test_layered_window(void)
5004 HWND hwnd;
5005 COLORREF key = 0;
5006 BYTE alpha = 0;
5007 DWORD flags = 0;
5008 BOOL ret;
5010 if (!pGetLayeredWindowAttributes || !pSetLayeredWindowAttributes)
5012 win_skip( "layered windows not supported\n" );
5013 return;
5015 hwnd = CreateWindowExA(0, "MainWindowClass", "message window", WS_CAPTION,
5016 100, 100, 200, 200, 0, 0, 0, NULL);
5017 assert( hwnd );
5018 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5019 ok( !ret, "GetLayeredWindowAttributes should fail on non-layered window\n" );
5020 ret = pSetLayeredWindowAttributes( hwnd, 0, 0, LWA_ALPHA );
5021 ok( !ret, "SetLayeredWindowAttributes should fail on non-layered window\n" );
5022 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5023 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5024 ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5025 ret = pSetLayeredWindowAttributes( hwnd, 0x123456, 44, LWA_ALPHA );
5026 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5027 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5028 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5029 ok( key == 0x123456 || key == 0, "wrong color key %x\n", key );
5030 ok( alpha == 44, "wrong alpha %u\n", alpha );
5031 ok( flags == LWA_ALPHA, "wrong flags %x\n", flags );
5033 /* clearing WS_EX_LAYERED resets attributes */
5034 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED );
5035 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5036 ok( !ret, "GetLayeredWindowAttributes should fail on no longer layered window\n" );
5037 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5038 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5039 ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5040 ret = pSetLayeredWindowAttributes( hwnd, 0x654321, 22, LWA_COLORKEY | LWA_ALPHA );
5041 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5042 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5043 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5044 ok( key == 0x654321, "wrong color key %x\n", key );
5045 ok( alpha == 22, "wrong alpha %u\n", alpha );
5046 ok( flags == (LWA_COLORKEY | LWA_ALPHA), "wrong flags %x\n", flags );
5048 ret = pSetLayeredWindowAttributes( hwnd, 0x888888, 33, LWA_COLORKEY );
5049 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5050 alpha = 0;
5051 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5052 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5053 ok( key == 0x888888, "wrong color key %x\n", key );
5054 /* alpha not changed on vista if LWA_ALPHA is not set */
5055 ok( alpha == 22 || alpha == 33, "wrong alpha %u\n", alpha );
5056 ok( flags == LWA_COLORKEY, "wrong flags %x\n", flags );
5058 /* color key may or may not be changed without LWA_COLORKEY */
5059 ret = pSetLayeredWindowAttributes( hwnd, 0x999999, 44, 0 );
5060 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5061 alpha = 0;
5062 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5063 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5064 ok( key == 0x888888 || key == 0x999999, "wrong color key %x\n", key );
5065 ok( alpha == 22 || alpha == 44, "wrong alpha %u\n", alpha );
5066 ok( flags == 0, "wrong flags %x\n", flags );
5068 /* default alpha and color key is 0 */
5069 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED );
5070 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5071 ret = pSetLayeredWindowAttributes( hwnd, 0x222222, 55, 0 );
5072 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5073 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5074 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5075 ok( key == 0 || key == 0x222222, "wrong color key %x\n", key );
5076 ok( alpha == 0 || alpha == 55, "wrong alpha %u\n", alpha );
5077 ok( flags == 0, "wrong flags %x\n", flags );
5079 DestroyWindow( hwnd );
5082 static MONITORINFO mi;
5084 static LRESULT CALLBACK fullscreen_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
5086 switch (msg)
5088 case WM_NCCREATE:
5090 CREATESTRUCTA *cs = (CREATESTRUCTA *)lp;
5091 trace("WM_NCCREATE: rect %d,%d-%d,%d\n", cs->x, cs->y, cs->cx, cs->cy);
5092 ok(cs->x == mi.rcMonitor.left && cs->y == mi.rcMonitor.top &&
5093 cs->cx == mi.rcMonitor.right && cs->cy == mi.rcMonitor.bottom,
5094 "expected %d,%d-%d,%d, got %d,%d-%d,%d\n",
5095 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5096 cs->x, cs->y, cs->cx, cs->cy);
5097 break;
5099 case WM_GETMINMAXINFO:
5101 MINMAXINFO *minmax = (MINMAXINFO *)lp;
5102 dump_minmax_info(minmax);
5103 ok(minmax->ptMaxPosition.x <= mi.rcMonitor.left, "%d <= %d\n", minmax->ptMaxPosition.x, mi.rcMonitor.left);
5104 ok(minmax->ptMaxPosition.y <= mi.rcMonitor.top, "%d <= %d\n", minmax->ptMaxPosition.y, mi.rcMonitor.top);
5105 ok(minmax->ptMaxSize.x >= mi.rcMonitor.right, "%d >= %d\n", minmax->ptMaxSize.x, mi.rcMonitor.right);
5106 ok(minmax->ptMaxSize.y >= mi.rcMonitor.bottom, "%d >= %d\n", minmax->ptMaxSize.y, mi.rcMonitor.bottom);
5107 break;
5110 return DefWindowProc(hwnd, msg, wp, lp);
5113 static void test_fullscreen(void)
5115 static const DWORD t_style[] = {
5116 WS_OVERLAPPED, WS_POPUP, WS_CHILD, WS_THICKFRAME, WS_DLGFRAME
5118 static const DWORD t_ex_style[] = {
5119 0, WS_EX_APPWINDOW, WS_EX_TOOLWINDOW
5121 WNDCLASS cls;
5122 HWND hwnd;
5123 int i, j;
5124 POINT pt;
5125 RECT rc;
5126 HMONITOR hmon;
5127 LRESULT ret;
5129 if (!pGetMonitorInfoA || !pMonitorFromPoint)
5131 win_skip("GetMonitorInfoA or MonitorFromPoint are not available on this platform\n");
5132 return;
5135 pt.x = pt.y = 0;
5136 SetLastError(0xdeadbeef);
5137 hmon = pMonitorFromPoint(pt, MONITOR_DEFAULTTOPRIMARY);
5138 ok(hmon != 0, "MonitorFromPoint error %u\n", GetLastError());
5140 mi.cbSize = sizeof(mi);
5141 SetLastError(0xdeadbeef);
5142 ret = pGetMonitorInfoA(hmon, &mi);
5143 ok(ret, "GetMonitorInfo error %u\n", GetLastError());
5144 trace("monitor (%d,%d-%d,%d), work (%d,%d-%d,%d)\n",
5145 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5146 mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
5148 cls.style = 0;
5149 cls.lpfnWndProc = fullscreen_wnd_proc;
5150 cls.cbClsExtra = 0;
5151 cls.cbWndExtra = 0;
5152 cls.hInstance = GetModuleHandle(0);
5153 cls.hIcon = 0;
5154 cls.hCursor = LoadCursorA(0, IDC_ARROW);
5155 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5156 cls.lpszMenuName = NULL;
5157 cls.lpszClassName = "fullscreen_class";
5158 RegisterClass(&cls);
5160 for (i = 0; i < sizeof(t_style)/sizeof(t_style[0]); i++)
5162 DWORD style, ex_style;
5164 /* avoid a WM interaction */
5165 assert(!(t_style[i] & WS_VISIBLE));
5167 for (j = 0; j < sizeof(t_ex_style)/sizeof(t_ex_style[0]); j++)
5169 int fixup;
5171 style = t_style[i];
5172 ex_style = t_ex_style[j];
5174 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5175 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5176 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5177 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5178 GetWindowRect(hwnd, &rc);
5179 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5180 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5181 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5182 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5183 DestroyWindow(hwnd);
5185 style = t_style[i] | WS_MAXIMIZE;
5186 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5187 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5188 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5189 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5190 GetWindowRect(hwnd, &rc);
5191 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5192 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5193 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5194 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5195 DestroyWindow(hwnd);
5197 style = t_style[i] | WS_MAXIMIZE | WS_CAPTION;
5198 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5199 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5200 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5201 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5202 GetWindowRect(hwnd, &rc);
5203 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5204 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5205 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5206 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5207 DestroyWindow(hwnd);
5209 style = t_style[i] | WS_CAPTION | WS_MAXIMIZEBOX;
5210 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5211 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5212 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5213 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5214 GetWindowRect(hwnd, &rc);
5215 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5216 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5217 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5218 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5219 DestroyWindow(hwnd);
5221 style = t_style[i] | WS_MAXIMIZE | WS_CAPTION | WS_MAXIMIZEBOX;
5222 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5223 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5224 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5225 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5226 GetWindowRect(hwnd, &rc);
5227 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5228 /* Windows makes a maximized window slightly larger (to hide the borders?) */
5229 fixup = min(abs(rc.left), abs(rc.top));
5230 InflateRect(&rc, -fixup, -fixup);
5231 ok(rc.left >= mi.rcWork.left && rc.top <= mi.rcWork.top &&
5232 rc.right <= mi.rcWork.right && rc.bottom <= mi.rcWork.bottom,
5233 "%#x/%#x: window rect %d,%d-%d,%d must be in %d,%d-%d,%d\n",
5234 ex_style, style, rc.left, rc.top, rc.right, rc.bottom,
5235 mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
5236 DestroyWindow(hwnd);
5238 style = t_style[i] | WS_MAXIMIZE | WS_MAXIMIZEBOX;
5239 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5240 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5241 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5242 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5243 GetWindowRect(hwnd, &rc);
5244 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5245 /* Windows makes a maximized window slightly larger (to hide the borders?) */
5246 fixup = min(abs(rc.left), abs(rc.top));
5247 InflateRect(&rc, -fixup, -fixup);
5248 if (style & (WS_CHILD | WS_POPUP))
5249 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5250 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5251 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5252 else
5253 ok(rc.left >= mi.rcWork.left && rc.top <= mi.rcWork.top &&
5254 rc.right <= mi.rcWork.right && rc.bottom <= mi.rcWork.bottom,
5255 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5256 DestroyWindow(hwnd);
5260 UnregisterClass("fullscreen_class", GetModuleHandle(0));
5263 static BOOL test_thick_child_got_minmax;
5264 static const char * test_thick_child_name;
5265 static LONG test_thick_child_style;
5266 static LONG test_thick_child_exStyle;
5268 static LRESULT WINAPI test_thick_child_size_winproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
5270 MINMAXINFO* minmax;
5271 int expectedMinTrackX;
5272 int expectedMinTrackY;
5273 int actualMinTrackX;
5274 int actualMinTrackY;
5275 int expectedMaxTrackX;
5276 int expectedMaxTrackY;
5277 int actualMaxTrackX;
5278 int actualMaxTrackY;
5279 int expectedMaxSizeX;
5280 int expectedMaxSizeY;
5281 int actualMaxSizeX;
5282 int actualMaxSizeY;
5283 int expectedPosX;
5284 int expectedPosY;
5285 int actualPosX;
5286 int actualPosY;
5287 LONG adjustedStyle;
5288 RECT rect;
5289 switch (msg)
5291 case WM_GETMINMAXINFO:
5293 minmax = (MINMAXINFO *)lparam;
5294 trace("hwnd %p, WM_GETMINMAXINFO, %08lx, %08lx\n", hwnd, wparam, lparam);
5295 dump_minmax_info( minmax );
5297 test_thick_child_got_minmax = TRUE;
5300 adjustedStyle = test_thick_child_style;
5301 if ((adjustedStyle & WS_CAPTION) == WS_CAPTION)
5302 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
5303 GetClientRect(GetParent(hwnd), &rect);
5304 AdjustWindowRectEx(&rect, adjustedStyle, FALSE, test_thick_child_exStyle);
5306 if (test_thick_child_style & (WS_DLGFRAME | WS_BORDER))
5308 expectedMinTrackX = GetSystemMetrics(SM_CXMINTRACK);
5309 expectedMinTrackY = GetSystemMetrics(SM_CYMINTRACK);
5311 else
5313 expectedMinTrackX = -2 * rect.left;
5314 expectedMinTrackY = -2 * rect.top;
5316 actualMinTrackX = minmax->ptMinTrackSize.x;
5317 actualMinTrackY = minmax->ptMinTrackSize.y;
5319 ok(actualMinTrackX == expectedMinTrackX && actualMinTrackY == expectedMinTrackY,
5320 "expected minTrack %dx%d, actual minTrack %dx%d for %s\n",
5321 expectedMinTrackX, expectedMinTrackY, actualMinTrackX, actualMinTrackY,
5322 test_thick_child_name);
5324 actualMaxTrackX = minmax->ptMaxTrackSize.x;
5325 actualMaxTrackY = minmax->ptMaxTrackSize.y;
5326 expectedMaxTrackX = GetSystemMetrics(SM_CXMAXTRACK);
5327 expectedMaxTrackY = GetSystemMetrics(SM_CYMAXTRACK);
5328 ok(actualMaxTrackX == expectedMaxTrackX && actualMaxTrackY == expectedMaxTrackY,
5329 "expected maxTrack %dx%d, actual maxTrack %dx%d for %s\n",
5330 expectedMaxTrackX, expectedMaxTrackY, actualMaxTrackX, actualMaxTrackY,
5331 test_thick_child_name);
5333 expectedMaxSizeX = rect.right - rect.left;
5334 expectedMaxSizeY = rect.bottom - rect.top;
5335 actualMaxSizeX = minmax->ptMaxSize.x;
5336 actualMaxSizeY = minmax->ptMaxSize.y;
5338 ok(actualMaxSizeX == expectedMaxSizeX && actualMaxSizeY == expectedMaxSizeY,
5339 "expected maxSize %dx%d, actual maxSize %dx%d for %s\n",
5340 expectedMaxSizeX, expectedMaxSizeY, actualMaxSizeX, actualMaxSizeY,
5341 test_thick_child_name);
5344 expectedPosX = rect.left;
5345 expectedPosY = rect.top;
5346 actualPosX = minmax->ptMaxPosition.x;
5347 actualPosY = minmax->ptMaxPosition.y;
5348 ok(actualPosX == expectedPosX && actualPosY == expectedPosY,
5349 "expected maxPosition (%d/%d), actual maxPosition (%d/%d) for %s\n",
5350 expectedPosX, expectedPosY, actualPosX, actualPosY, test_thick_child_name);
5352 break;
5356 return DefWindowProcA(hwnd, msg, wparam, lparam);
5359 #define NUMBER_OF_THICK_CHILD_TESTS 16
5360 static void test_thick_child_size(HWND parentWindow)
5362 BOOL success;
5363 RECT childRect;
5364 RECT adjustedParentRect;
5365 HWND childWindow;
5366 LONG childWidth;
5367 LONG childHeight;
5368 LONG expectedWidth;
5369 LONG expectedHeight;
5370 WNDCLASSA cls;
5371 LPCTSTR className = "THICK_CHILD_CLASS";
5372 int i;
5373 LONG adjustedStyle;
5374 static const LONG styles[NUMBER_OF_THICK_CHILD_TESTS] = {
5375 WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
5376 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
5377 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
5378 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
5379 WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
5380 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
5381 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
5382 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
5383 WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
5384 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
5385 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
5386 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
5387 WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
5388 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
5389 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
5390 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
5393 static const LONG exStyles[NUMBER_OF_THICK_CHILD_TESTS] = {
5398 WS_EX_DLGMODALFRAME,
5399 WS_EX_DLGMODALFRAME,
5400 WS_EX_DLGMODALFRAME,
5401 WS_EX_DLGMODALFRAME,
5402 WS_EX_STATICEDGE,
5403 WS_EX_STATICEDGE,
5404 WS_EX_STATICEDGE,
5405 WS_EX_STATICEDGE,
5406 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5407 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5408 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5409 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5411 static const char *styleName[NUMBER_OF_THICK_CHILD_TESTS] = {
5412 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME",
5413 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME",
5414 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER",
5415 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER",
5416 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME, exstyle= WS_EX_DLGMODALFRAME",
5417 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_DLGMODALFRAME",
5418 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_DLGMODALFRAME",
5419 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_DLGMODALFRAME",
5420 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME exstyle= WS_EX_STATICEDGE",
5421 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_STATICEDGE",
5422 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE",
5423 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE",
5424 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME, exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5425 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5426 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5427 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5430 cls.style = 0;
5431 cls.lpfnWndProc = test_thick_child_size_winproc;
5432 cls.cbClsExtra = 0;
5433 cls.cbWndExtra = 0;
5434 cls.hInstance = GetModuleHandleA(0);
5435 cls.hIcon = 0;
5436 cls.hCursor = LoadCursorA(0, IDC_ARROW);
5437 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5438 cls.lpszMenuName = NULL;
5439 cls.lpszClassName = className;
5440 SetLastError(0xdeadbeef);
5441 ok(RegisterClassA(&cls),"RegisterClassA failed, error: %u\n", GetLastError());
5443 for(i = 0; i < NUMBER_OF_THICK_CHILD_TESTS; i++)
5445 test_thick_child_name = styleName[i];
5446 test_thick_child_style = styles[i];
5447 test_thick_child_exStyle = exStyles[i];
5448 test_thick_child_got_minmax = FALSE;
5450 SetLastError(0xdeadbeef);
5451 childWindow = CreateWindowEx( exStyles[i], className, "", styles[i], 0, 0, 0, 0, parentWindow, 0, GetModuleHandleA(0), NULL );
5452 ok(childWindow != NULL, "Failed to create child window, error: %u\n", GetLastError());
5454 ok(test_thick_child_got_minmax, "Got no WM_GETMINMAXINFO\n");
5456 SetLastError(0xdeadbeef);
5457 success = GetWindowRect(childWindow, &childRect);
5458 ok(success,"GetWindowRect call failed, error: %u\n", GetLastError());
5459 childWidth = childRect.right - childRect.left;
5460 childHeight = childRect.bottom - childRect.top;
5462 adjustedStyle = styles[i];
5463 if ((adjustedStyle & WS_CAPTION) == WS_CAPTION)
5464 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
5465 GetClientRect(GetParent(childWindow), &adjustedParentRect);
5466 AdjustWindowRectEx(&adjustedParentRect, adjustedStyle, FALSE, test_thick_child_exStyle);
5469 if (test_thick_child_style & (WS_DLGFRAME | WS_BORDER))
5471 expectedWidth = GetSystemMetrics(SM_CXMINTRACK);
5472 expectedHeight = GetSystemMetrics(SM_CYMINTRACK);
5474 else
5476 expectedWidth = -2 * adjustedParentRect.left;
5477 expectedHeight = -2 * adjustedParentRect.top;
5480 ok((childWidth == expectedWidth) && (childHeight == expectedHeight),
5481 "size of window (%s) is wrong: expected size %dx%d != actual size %dx%d\n",
5482 test_thick_child_name, expectedWidth, expectedHeight, childWidth, childHeight);
5484 SetLastError(0xdeadbeef);
5485 success = DestroyWindow(childWindow);
5486 ok(success,"DestroyWindow call failed, error: %u\n", GetLastError());
5488 ok(UnregisterClass(className, GetModuleHandleA(0)),"UnregisterClass call failed\n");
5491 static void test_handles( HWND full_hwnd )
5493 HWND hwnd = full_hwnd;
5494 BOOL ret;
5495 RECT rect;
5497 SetLastError( 0xdeadbeef );
5498 ret = GetWindowRect( hwnd, &rect );
5499 ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
5501 #ifdef _WIN64
5502 if ((ULONG_PTR)full_hwnd >> 32)
5503 hwnd = (HWND)((ULONG_PTR)full_hwnd & ~0u);
5504 else
5505 hwnd = (HWND)((ULONG_PTR)full_hwnd | ((ULONG_PTR)~0u << 32));
5506 SetLastError( 0xdeadbeef );
5507 ret = GetWindowRect( hwnd, &rect );
5508 ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
5510 hwnd = (HWND)(((ULONG_PTR)full_hwnd & ~0u) | ((ULONG_PTR)0x1234 << 32));
5511 SetLastError( 0xdeadbeef );
5512 ret = GetWindowRect( hwnd, &rect );
5513 ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
5515 hwnd = (HWND)(((ULONG_PTR)full_hwnd & 0xffff) | ((ULONG_PTR)0x9876 << 16));
5516 SetLastError( 0xdeadbeef );
5517 ret = GetWindowRect( hwnd, &rect );
5518 ok( !ret, "GetWindowRect succeeded for %p\n", hwnd );
5519 ok( GetLastError() == ERROR_INVALID_WINDOW_HANDLE, "wrong error %u\n", GetLastError() );
5521 hwnd = (HWND)(((ULONG_PTR)full_hwnd & 0xffff) | ((ULONG_PTR)0x12345678 << 16));
5522 SetLastError( 0xdeadbeef );
5523 ret = GetWindowRect( hwnd, &rect );
5524 ok( !ret, "GetWindowRect succeeded for %p\n", hwnd );
5525 ok( GetLastError() == ERROR_INVALID_WINDOW_HANDLE, "wrong error %u\n", GetLastError() );
5526 #endif
5529 START_TEST(win)
5531 HMODULE user32 = GetModuleHandleA( "user32.dll" );
5532 pGetAncestor = (void *)GetProcAddress( user32, "GetAncestor" );
5533 pGetWindowInfo = (void *)GetProcAddress( user32, "GetWindowInfo" );
5534 pGetWindowModuleFileNameA = (void *)GetProcAddress( user32, "GetWindowModuleFileNameA" );
5535 pGetLayeredWindowAttributes = (void *)GetProcAddress( user32, "GetLayeredWindowAttributes" );
5536 pSetLayeredWindowAttributes = (void *)GetProcAddress( user32, "SetLayeredWindowAttributes" );
5537 pGetMonitorInfoA = (void *)GetProcAddress( user32, "GetMonitorInfoA" );
5538 pMonitorFromPoint = (void *)GetProcAddress( user32, "MonitorFromPoint" );
5540 if (!RegisterWindowClasses()) assert(0);
5542 hhook = SetWindowsHookExA(WH_CBT, cbt_hook_proc, 0, GetCurrentThreadId());
5543 if (!hhook) win_skip( "Cannot set CBT hook, skipping some tests\n" );
5545 hwndMain = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window",
5546 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
5547 WS_MAXIMIZEBOX | WS_POPUP,
5548 100, 100, 200, 200,
5549 0, 0, GetModuleHandle(0), NULL);
5550 hwndMain2 = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window 2",
5551 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
5552 WS_MAXIMIZEBOX | WS_POPUP,
5553 100, 100, 200, 200,
5554 0, 0, GetModuleHandle(0), NULL);
5555 assert( hwndMain );
5556 assert( hwndMain2 );
5558 our_pid = GetWindowThreadProcessId(hwndMain, NULL);
5560 /* Add the tests below this line */
5561 test_thick_child_size(hwndMain);
5562 test_fullscreen();
5563 test_hwnd_message();
5564 test_nonclient_area(hwndMain);
5565 test_params();
5566 test_GetWindowModuleFileName();
5567 test_capture_1();
5568 test_capture_2();
5569 test_capture_3(hwndMain, hwndMain2);
5571 test_CreateWindow();
5572 test_parent_owner();
5573 test_SetParent();
5575 test_mdi();
5576 test_icons();
5577 test_SetWindowPos(hwndMain);
5578 test_SetMenu(hwndMain);
5579 test_SetFocus(hwndMain);
5580 test_SetActiveWindow(hwndMain);
5582 test_children_zorder(hwndMain);
5583 test_popup_zorder(hwndMain2, hwndMain);
5584 test_keyboard_input(hwndMain);
5585 test_mouse_input(hwndMain);
5586 test_validatergn(hwndMain);
5587 test_nccalcscroll( hwndMain);
5588 test_scrollvalidate( hwndMain);
5589 test_scrolldc( hwndMain);
5590 test_scroll();
5591 test_IsWindowUnicode();
5592 test_vis_rgn(hwndMain);
5594 test_AdjustWindowRect();
5595 test_window_styles();
5596 test_redrawnow();
5597 test_csparentdc();
5598 test_SetWindowLong();
5599 test_ShowWindow();
5600 if (0) test_gettext(); /* crashes on NT4 */
5601 test_GetUpdateRect();
5602 test_Expose();
5603 test_layered_window();
5605 test_SetForegroundWindow(hwndMain);
5606 test_shell_window();
5607 test_handles( hwndMain );
5609 /* add the tests above this line */
5610 if (hhook) UnhookWindowsHookEx(hhook);
5612 DestroyWindow(hwndMain2);
5613 DestroyWindow(hwndMain);