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
36 #include "wine/test.h"
38 #ifndef SPI_GETDESKWALLPAPER
39 #define SPI_GETDESKWALLPAPER 0x0073
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;
60 static const char* szAWRClass = "Winsize";
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 )
81 int min_timeout = 100;
82 DWORD time = GetTickCount() + diff;
86 if (MsgWaitForMultipleObjects( 0, NULL, FALSE, min_timeout, QS_ALLINPUT ) == WAIT_TIMEOUT) break;
88 while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessage( &msg );
89 diff = time - GetTickCount();
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 )
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 );
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)
123 trace("EnumChildProc on %p\n", hwndChild);
124 if (*(LPINT)lParam > 1) return FALSE;
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;
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" );
144 /* test parent and owner values for various combinations */
145 static void test_parent_owner(void)
148 HWND test, owner, ret;
149 HWND desktop = GetDesktopWindow();
150 HWND child = create_tool_window( WS_CHILD, hwndMain );
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() );
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 );
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 );
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" );
342 check_parents( desktop, 0, 0, 0, 0, 0, 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 );
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 );
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 );*/
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" );
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 );
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 );
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" );
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 );
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 );
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)
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);
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);
595 case WM_WINDOWPOSCHANGED:
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);
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 );
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");
638 ok(!got_getminmaxinfo, "main: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
642 if (test_lbuttondown_flag)
644 ShowWindow((HWND)wparam, SW_SHOW);
645 flush_events( FALSE );
650 return DefWindowProcA(hwnd, msg, wparam, lparam);
653 static LRESULT WINAPI tool_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
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);
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");
678 ok(!got_getminmaxinfo, "tool: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
683 return DefWindowProcA(hwnd, msg, wparam, lparam);
686 static BOOL RegisterWindowClasses(void)
690 cls.style = CS_DBLCLKS;
691 cls.lpfnWndProc = main_window_procA;
694 cls.hInstance = GetModuleHandleA(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;
704 cls.lpfnWndProc = tool_window_procA;
707 cls.hInstance = GetModuleHandleA(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;
719 static void verify_window_info(const char *hook, HWND hwnd, const WINDOWINFO *info)
721 RECT rcWindow, rcClient;
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.
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);
759 ok(info->atomWindowType == GetClassLongA(hwnd, GCW_ATOM), "wrong atomWindowType for %p in hook %s\n",
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);
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;
786 BOOL is_win9x = GetWindowLongPtrW(hwnd, GWLP_WNDPROC) == 0;
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 */;
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] = {
854 const char *code_name = (nCode >= 0 && nCode <= HCBT_SETFOCUS) ? CBT_code_name[nCode] : "Unknown";
855 HWND hwnd = (HWND)wParam;
861 static const RECT rc_null;
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");
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);
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);
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");
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");
910 /* Uncomment this once the test succeeds in all cases */
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");
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");
936 if (pGetWindowInfo && IsWindow(hwnd))
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);
949 /* on HCBT_DESTROYWND window state is undefined */
950 case HCBT_DESTROYWND:
951 trace( "HCBT_DESTROYWND: hwnd %p\n", hwnd );
957 return CallNextHookEx(hhook, nCode, wParam, lParam);
960 static void test_shell_window(void)
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");
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);
989 GetWindowThreadProcessId(shellWindow, &pid);
990 hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
993 skip( "cannot get access to shell process\n" );
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");
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;
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;
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");
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 */
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);
1153 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1156 ok(mdi_child != 0, "MDI child creation failed\n");
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");
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);
1219 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1222 ok(mdi_child != 0, "MDI child creation failed\n");
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");
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);
1285 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1288 ok(mdi_child != 0, "MDI child creation failed\n");
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 */
1301 mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_2", "MDI 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 )
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)
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);
1440 LONG style = mdi_cs->style;
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);
1450 case WM_GETMINMAXINFO:
1452 HWND client = GetParent(hwnd);
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);
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);
1502 ok (active == (HWND)wparam, "old active %p != active %p\n", (HWND)wparam, active);
1506 return DefMDIChildProcA(hwnd, msg, wparam, lparam);
1509 static LRESULT WINAPI mdi_child_wnd_proc_2(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
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,
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);
1541 case WM_GETMINMAXINFO:
1543 HWND parent = GetParent(hwnd);
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);
1567 case WM_WINDOWPOSCHANGED:
1569 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
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);
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);
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;
1619 CLIENTCREATESTRUCT client_cs;
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",
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),
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",
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),
1648 test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1649 DestroyWindow(mdi_client);
1653 case WM_WINDOWPOSCHANGED:
1655 WINDOWPOS *winpos = (WINDOWPOS *)lparam;
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");
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");
1699 return DefFrameProcA(hwnd, mdi_client, msg, wparam, lparam);
1702 static BOOL mdi_RegisterWindowClasses(void)
1707 cls.lpfnWndProc = mdi_main_wnd_procA;
1710 cls.hInstance = GetModuleHandleA(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;
1729 static void test_mdi(void)
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)
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 );
1763 cls.cbSize = sizeof(cls);
1765 cls.lpfnWndProc = DefWindowProcA;
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);
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 );
1830 return DefWindowProc( hwnd, msg, wparam, lparam );
1833 static void test_SetWindowPos(HWND hwnd)
1835 RECT orig_win_rc, rect;
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 */
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)
1900 BOOL is_win9x = GetWindowLongPtrW(parent, GWLP_WNDPROC) == 0;
1904 hMenu = CreateMenu();
1907 ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
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 */
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();
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");
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);
1954 child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, parent, (HMENU)10, 0, NULL);
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);
1989 static void test_window_tree(HWND parent, const DWORD *style, const int *order, int total)
1991 HWND child[5], hwnd;
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);
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,
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), \
2071 static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
2072 BOOL topmost, const char *file, int line)
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,
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,
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,
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,
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);
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 );
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");
2228 ok(GetFocus() == child, "Focus should be on child %p\n", child);
2231 return DefWindowProc(hwnd, msg, wp, lp);
2234 static void test_SetFocus(HWND hwnd)
2237 WNDPROC old_wnd_proc;
2239 /* check if we can set focus to non-visible windows */
2241 ShowWindow(hwnd, SW_SHOW);
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);
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);
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);
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);
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);
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);
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 );
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);
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)
2324 flush_events( TRUE );
2325 ShowWindow(hwnd, SW_HIDE);
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)
2382 flush_events( TRUE );
2383 ShowWindow(hwnd, SW_HIDE);
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);
2398 check_wnd_state(0, 0, 0, 0);
2400 ret = SetForegroundWindow(hwnd);
2403 skip( "SetForegroundWindow not working\n" );
2406 check_wnd_state(hwnd, hwnd, hwnd, 0);
2408 SetLastError(0xdeadbeef);
2409 ret = SetForegroundWindow(0);
2410 ok(!ret, "SetForegroundWindow returned TRUE instead of FALSE\n");
2411 ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE ||
2412 broken(GetLastError() == 0xdeadbeef), /* win9x */
2413 "got error %d expected ERROR_INVALID_WINDOW_HANDLE\n", GetLastError());
2414 check_wnd_state(hwnd, hwnd, hwnd, 0);
2416 SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2417 check_wnd_state(hwnd, hwnd, hwnd, 0);
2419 SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_SHOWWINDOW);
2420 check_wnd_state(hwnd, hwnd, hwnd, 0);
2422 hwnd2 = GetForegroundWindow();
2423 ok(hwnd2 == hwnd, "Wrong foreground window %p\n", hwnd2);
2424 ok(SetForegroundWindow( GetDesktopWindow() ), "SetForegroundWindow(desktop) error: %d\n", GetLastError());
2425 hwnd2 = GetForegroundWindow();
2426 ok(hwnd2 != hwnd, "Wrong foreground window %p\n", hwnd2);
2428 ShowWindow(hwnd, SW_HIDE);
2429 check_wnd_state(0, 0, 0, 0);
2431 /*trace("testing SetForegroundWindow on an invisible window %p\n", hwnd);*/
2432 ret = SetForegroundWindow(hwnd);
2433 ok(ret, "SetForegroundWindow returned FALSE instead of TRUE\n");
2434 check_wnd_state(hwnd, hwnd, hwnd, 0);
2436 ShowWindow(hwnd, SW_SHOW);
2437 check_wnd_state(hwnd, hwnd, hwnd, 0);
2439 hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2440 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2442 DestroyWindow(hwnd2);
2443 check_wnd_state(hwnd, hwnd, hwnd, 0);
2445 hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2446 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2448 SetWindowPos(hwnd2,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2449 check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2451 DestroyWindow(hwnd2);
2452 check_wnd_state(hwnd, hwnd, hwnd, 0);
2455 static WNDPROC old_button_proc;
2457 static LRESULT WINAPI button_hook_proc(HWND button, UINT msg, WPARAM wparam, LPARAM lparam)
2462 key_state = GetKeyState(VK_LBUTTON);
2463 ok(!(key_state & 0x8000), "VK_LBUTTON should not be pressed, state %04x\n", key_state);
2465 ret = CallWindowProcA(old_button_proc, button, msg, wparam, lparam);
2467 if (msg == WM_LBUTTONDOWN)
2471 check_wnd_state(button, button, button, button);
2473 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2475 trace("hwnd %p\n", hwnd);
2477 check_wnd_state(button, button, button, button);
2479 ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2481 check_wnd_state(button, button, button, button);
2483 DestroyWindow(hwnd);
2485 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2487 trace("hwnd %p\n", hwnd);
2489 check_wnd_state(button, button, button, button);
2491 /* button wnd proc should release capture on WM_KILLFOCUS if it does
2492 * match internal button state.
2494 SendMessage(button, WM_KILLFOCUS, 0, 0);
2495 check_wnd_state(button, button, button, 0);
2497 ShowWindow(hwnd, SW_SHOW);
2498 check_wnd_state(hwnd, hwnd, hwnd, 0);
2500 capture = SetCapture(hwnd);
2501 ok(capture == 0, "SetCapture() = %p\n", capture);
2503 check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2505 DestroyWindow(hwnd);
2507 check_wnd_state(button, 0, button, 0);
2513 static void test_capture_1(void)
2515 HWND button, capture, oldFocus, oldActive;
2517 oldFocus = GetFocus();
2518 oldActive = GetActiveWindow();
2520 capture = GetCapture();
2521 ok(capture == 0, "GetCapture() = %p\n", capture);
2523 button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2525 trace("button %p\n", button);
2527 old_button_proc = (WNDPROC)SetWindowLongPtrA(button, GWLP_WNDPROC, (LONG_PTR)button_hook_proc);
2529 SendMessageA(button, WM_LBUTTONDOWN, 0, 0);
2531 capture = SetCapture(button);
2532 ok(capture == 0, "SetCapture() = %p\n", capture);
2533 check_wnd_state(button, 0, button, button);
2535 DestroyWindow(button);
2536 check_wnd_state(oldActive, 0, oldFocus, 0);
2539 static void test_capture_2(void)
2541 HWND button, hwnd, capture, oldFocus, oldActive;
2543 oldFocus = GetFocus();
2544 oldActive = GetActiveWindow();
2545 check_wnd_state(oldActive, 0, oldFocus, 0);
2547 button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2549 trace("button %p\n", button);
2551 check_wnd_state(button, button, button, 0);
2553 capture = SetCapture(button);
2554 ok(capture == 0, "SetCapture() = %p\n", capture);
2556 check_wnd_state(button, button, button, button);
2558 /* button wnd proc should ignore WM_KILLFOCUS if it doesn't match
2559 * internal button state.
2561 SendMessage(button, WM_KILLFOCUS, 0, 0);
2562 check_wnd_state(button, button, button, button);
2564 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2566 trace("hwnd %p\n", hwnd);
2568 check_wnd_state(button, button, button, button);
2570 ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2572 check_wnd_state(button, button, button, button);
2574 DestroyWindow(hwnd);
2576 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2578 trace("hwnd %p\n", hwnd);
2580 check_wnd_state(button, button, button, button);
2582 ShowWindow(hwnd, SW_SHOW);
2584 check_wnd_state(hwnd, hwnd, hwnd, button);
2586 capture = SetCapture(hwnd);
2587 ok(capture == button, "SetCapture() = %p\n", capture);
2589 check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2591 DestroyWindow(hwnd);
2592 check_wnd_state(button, button, button, 0);
2594 DestroyWindow(button);
2595 check_wnd_state(oldActive, 0, oldFocus, 0);
2598 static void test_capture_3(HWND hwnd1, HWND hwnd2)
2602 ShowWindow(hwnd1, SW_HIDE);
2603 ShowWindow(hwnd2, SW_HIDE);
2605 ok(!IsWindowVisible(hwnd1), "%p should be invisible\n", hwnd1);
2606 ok(!IsWindowVisible(hwnd2), "%p should be invisible\n", hwnd2);
2609 check_wnd_state(0, 0, 0, hwnd1);
2612 check_wnd_state(0, 0, 0, hwnd2);
2614 ShowWindow(hwnd1, SW_SHOW);
2615 check_wnd_state(hwnd1, hwnd1, hwnd1, hwnd2);
2617 ret = ReleaseCapture();
2618 ok (ret, "releasecapture did not return TRUE.\n");
2619 ret = ReleaseCapture();
2620 ok (ret, "releasecapture did not return TRUE after second try.\n");
2623 static void test_keyboard_input(HWND hwnd)
2628 flush_events( TRUE );
2629 SetWindowPos(hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE|SWP_SHOWWINDOW);
2631 flush_events( TRUE );
2633 ok(GetActiveWindow() == hwnd, "wrong active window %p\n", GetActiveWindow());
2636 ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2638 flush_events( TRUE );
2640 PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
2643 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2644 ok( ret, "no message available\n");
2646 while (ret && msg.message >= 0xc000);
2647 ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2649 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2650 while (ret && (msg.message == WM_TIMER || msg.message >= 0xc000));
2651 ok( !ret, "message %04x available\n", msg.message);
2653 ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2655 PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
2656 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2657 ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2658 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2659 ok( !ret, "message %04x available\n", msg.message);
2661 ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2663 keybd_event(VK_SPACE, 0, 0, 0);
2664 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2667 skip( "keybd_event didn't work, skipping keyboard test\n" );
2670 ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2671 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2672 ok( !ret, "message %04x available\n", msg.message);
2675 ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2677 flush_events( TRUE );
2679 PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
2680 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2681 ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2682 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2683 ok( !ret, "message %04x available\n", msg.message);
2685 ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2687 PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
2688 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2689 ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2690 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2691 ok( !ret, "message %04x available\n", msg.message);
2693 ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2695 keybd_event(VK_SPACE, 0, 0, 0);
2696 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2697 ok(msg.hwnd == hwnd && msg.message == WM_SYSKEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2698 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2699 ok( !ret, "message %04x available\n", msg.message);
2702 static BOOL wait_for_message( MSG *msg )
2708 ret = PeekMessageA(msg, 0, 0, 0, PM_REMOVE);
2711 if (msg->message == WM_PAINT) DispatchMessage(msg);
2712 else if (msg->message < 0xc000) break; /* skip registered messages */
2714 else if (MsgWaitForMultipleObjects( 0, NULL, FALSE, 100, QS_ALLINPUT ) == WAIT_TIMEOUT) break;
2716 if (!ret) msg->message = 0;
2720 static void test_mouse_input(HWND hwnd)
2730 ShowWindow(hwnd, SW_SHOW);
2732 SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2734 GetWindowRect(hwnd, &rc);
2735 trace("main window %p: (%d,%d)-(%d,%d)\n", hwnd, rc.left, rc.top, rc.right, rc.bottom);
2737 popup = CreateWindowExA(0, "MainWindowClass", NULL, WS_POPUP,
2738 rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top,
2741 ShowWindow(popup, SW_SHOW);
2742 UpdateWindow(popup);
2743 SetWindowPos( popup, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2745 GetWindowRect(popup, &rc);
2746 trace("popup window %p: (%d,%d)-(%d,%d)\n", popup, rc.left, rc.top, rc.right, rc.bottom);
2748 x = rc.left + (rc.right - rc.left) / 2;
2749 y = rc.top + (rc.bottom - rc.top) / 2;
2750 trace("setting cursor to (%d,%d)\n", x, y);
2754 if (x != pt.x || y != pt.y)
2756 skip( "failed to set mouse position, skipping mouse input tests\n" );
2760 flush_events( TRUE );
2762 /* Check that setting the same position may generate WM_MOUSEMOVE */
2766 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2767 while (ret && msg.message >= 0xc000); /* skip registered messages */
2770 ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n",
2771 msg.hwnd, msg.message);
2772 ok(msg.pt.x == x && msg.pt.y == y, "wrong message coords (%d,%d)/(%d,%d)\n",
2773 x, y, msg.pt.x, msg.pt.y);
2776 /* force the system to update its internal queue mouse position,
2777 * otherwise it won't generate relative mouse movements below.
2779 mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
2780 flush_events( TRUE );
2783 mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
2784 flush_events( FALSE );
2785 /* FIXME: SetCursorPos in Wine generates additional WM_MOUSEMOVE message */
2786 while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE))
2788 if (msg.message == WM_TIMER || msg.message >= 0xc000) continue; /* skip registered messages */
2789 ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE,
2790 "hwnd %p message %04x\n", msg.hwnd, msg.message);
2792 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2793 ok( !ret, "message %04x available\n", msg.message);
2795 mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
2796 ShowWindow(popup, SW_HIDE);
2797 ret = wait_for_message( &msg );
2799 ok(msg.hwnd == hwnd && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2800 flush_events( TRUE );
2802 mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
2803 ShowWindow(hwnd, SW_HIDE);
2804 ret = wait_for_message( &msg );
2805 ok( !ret, "message %04x available\n", msg.message);
2806 flush_events( TRUE );
2808 /* test mouse clicks */
2810 ShowWindow(hwnd, SW_SHOW);
2811 SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2812 flush_events( TRUE );
2813 ShowWindow(popup, SW_SHOW);
2814 SetWindowPos( popup, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
2815 flush_events( TRUE );
2817 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2818 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2819 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2820 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2822 ret = wait_for_message( &msg );
2825 skip( "simulating mouse click doesn't work, skipping mouse button tests\n" );
2828 if (msg.message == WM_MOUSEMOVE) /* win2k has an extra WM_MOUSEMOVE here */
2830 ret = wait_for_message( &msg );
2831 ok(ret, "no message available\n");
2834 ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
2835 msg.hwnd, popup, msg.message);
2837 ret = wait_for_message( &msg );
2838 ok(ret, "no message available\n");
2839 ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2840 msg.hwnd, popup, msg.message);
2842 ret = wait_for_message( &msg );
2843 ok(ret, "no message available\n");
2844 ok(msg.hwnd == popup && msg.message == WM_LBUTTONDBLCLK, "hwnd %p/%p message %04x\n",
2845 msg.hwnd, popup, msg.message);
2847 ret = wait_for_message( &msg );
2848 ok(ret, "no message available\n");
2849 ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2850 msg.hwnd, popup, msg.message);
2852 ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2853 ok(!ret, "message %04x available\n", msg.message);
2855 ShowWindow(popup, SW_HIDE);
2856 flush_events( TRUE );
2858 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2859 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2860 mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2861 mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2863 ret = wait_for_message( &msg );
2864 ok(ret, "no message available\n");
2865 ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
2866 msg.hwnd, hwnd, msg.message);
2867 ret = wait_for_message( &msg );
2868 ok(ret, "no message available\n");
2869 ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2870 msg.hwnd, hwnd, msg.message);
2872 test_lbuttondown_flag = TRUE;
2873 SendMessageA(hwnd, WM_COMMAND, (WPARAM)popup, 0);
2874 test_lbuttondown_flag = FALSE;
2876 ret = wait_for_message( &msg );
2877 ok(ret, "no message available\n");
2878 ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
2879 msg.hwnd, popup, msg.message);
2880 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2881 ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
2882 msg.hwnd, popup, msg.message);
2883 ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2885 /* Test WM_MOUSEACTIVATE */
2886 #define TEST_MOUSEACTIVATE(A,B) \
2887 res = SendMessageA(hwnd, WM_MOUSEACTIVATE, (WPARAM)hwnd, (LPARAM)MAKELRESULT(A,0)); \
2888 ok(res == B, "WM_MOUSEACTIVATE for %s returned %ld\n", #A, res);
2890 TEST_MOUSEACTIVATE(HTERROR,MA_ACTIVATE);
2891 TEST_MOUSEACTIVATE(HTTRANSPARENT,MA_ACTIVATE);
2892 TEST_MOUSEACTIVATE(HTNOWHERE,MA_ACTIVATE);
2893 TEST_MOUSEACTIVATE(HTCLIENT,MA_ACTIVATE);
2894 TEST_MOUSEACTIVATE(HTCAPTION,MA_ACTIVATE);
2895 TEST_MOUSEACTIVATE(HTSYSMENU,MA_ACTIVATE);
2896 TEST_MOUSEACTIVATE(HTSIZE,MA_ACTIVATE);
2897 TEST_MOUSEACTIVATE(HTMENU,MA_ACTIVATE);
2898 TEST_MOUSEACTIVATE(HTHSCROLL,MA_ACTIVATE);
2899 TEST_MOUSEACTIVATE(HTVSCROLL,MA_ACTIVATE);
2900 TEST_MOUSEACTIVATE(HTMINBUTTON,MA_ACTIVATE);
2901 TEST_MOUSEACTIVATE(HTMAXBUTTON,MA_ACTIVATE);
2902 TEST_MOUSEACTIVATE(HTLEFT,MA_ACTIVATE);
2903 TEST_MOUSEACTIVATE(HTRIGHT,MA_ACTIVATE);
2904 TEST_MOUSEACTIVATE(HTTOP,MA_ACTIVATE);
2905 TEST_MOUSEACTIVATE(HTTOPLEFT,MA_ACTIVATE);
2906 TEST_MOUSEACTIVATE(HTTOPRIGHT,MA_ACTIVATE);
2907 TEST_MOUSEACTIVATE(HTBOTTOM,MA_ACTIVATE);
2908 TEST_MOUSEACTIVATE(HTBOTTOMLEFT,MA_ACTIVATE);
2909 TEST_MOUSEACTIVATE(HTBOTTOMRIGHT,MA_ACTIVATE);
2910 TEST_MOUSEACTIVATE(HTBORDER,MA_ACTIVATE);
2911 TEST_MOUSEACTIVATE(HTOBJECT,MA_ACTIVATE);
2912 TEST_MOUSEACTIVATE(HTCLOSE,MA_ACTIVATE);
2913 TEST_MOUSEACTIVATE(HTHELP,MA_ACTIVATE);
2916 /* Clear any messages left behind by WM_MOUSEACTIVATE tests */
2917 flush_events( TRUE );
2919 DestroyWindow(popup);
2922 static void test_validatergn(HWND hwnd)
2928 child = CreateWindowExA(0, "static", NULL, WS_CHILD| WS_VISIBLE, 10, 10, 10, 10, hwnd, 0, 0, NULL);
2929 ShowWindow(hwnd, SW_SHOW);
2930 UpdateWindow( hwnd);
2931 /* test that ValidateRect validates children*/
2932 InvalidateRect( child, NULL, 1);
2933 GetWindowRect( child, &rc);
2934 MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
2935 ret = GetUpdateRect( child, &rc2, 0);
2936 ok( rc2.right > rc2.left && rc2.bottom > rc2.top,
2937 "Update rectangle is empty!\n");
2938 ValidateRect( hwnd, &rc);
2939 ret = GetUpdateRect( child, &rc2, 0);
2940 ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
2941 "Update rectangle %d,%d-%d,%d is not empty!\n", rc2.left, rc2.top,
2942 rc2.right, rc2.bottom);
2944 /* now test ValidateRgn */
2945 InvalidateRect( child, NULL, 1);
2946 GetWindowRect( child, &rc);
2947 MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
2948 rgn = CreateRectRgnIndirect( &rc);
2949 ValidateRgn( hwnd, rgn);
2950 ret = GetUpdateRect( child, &rc2, 0);
2951 ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
2952 "Update rectangle %d,%d-%d,%d is not empty!\n", rc2.left, rc2.top,
2953 rc2.right, rc2.bottom);
2956 DestroyWindow( child );
2959 static void nccalchelper(HWND hwnd, INT x, INT y, RECT *prc)
2962 MoveWindow( hwnd, 0, 0, x, y, 0);
2963 GetWindowRect( hwnd, prc);
2965 DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)prc);
2966 trace("window rect is %d,%d - %d,%d, nccalc rect is %d,%d - %d,%d\n",
2967 rc.left,rc.top,rc.right,rc.bottom, prc->left,prc->top,prc->right,prc->bottom);
2970 static void test_nccalcscroll(HWND parent)
2973 INT sbheight = GetSystemMetrics( SM_CYHSCROLL);
2974 INT sbwidth = GetSystemMetrics( SM_CXVSCROLL);
2975 HWND hwnd = CreateWindowExA(0, "static", NULL,
2976 WS_CHILD| WS_VISIBLE | WS_VSCROLL | WS_HSCROLL ,
2977 10, 10, 200, 200, parent, 0, 0, NULL);
2978 ShowWindow( parent, SW_SHOW);
2979 UpdateWindow( parent);
2981 /* test window too low for a horizontal scroll bar */
2982 nccalchelper( hwnd, 100, sbheight, &rc1);
2983 ok( rc1.bottom - rc1.top == sbheight, "Height should be %d size is %d,%d - %d,%d\n",
2984 sbheight, rc1.left, rc1.top, rc1.right, rc1.bottom);
2986 /* test window just high enough for a horizontal scroll bar */
2987 nccalchelper( hwnd, 100, sbheight + 1, &rc1);
2988 ok( rc1.bottom - rc1.top == 1, "Height should be %d size is %d,%d - %d,%d\n",
2989 1, rc1.left, rc1.top, rc1.right, rc1.bottom);
2991 /* test window too narrow for a vertical scroll bar */
2992 nccalchelper( hwnd, sbwidth - 1, 100, &rc1);
2993 ok( rc1.right - rc1.left == sbwidth - 1 , "Width should be %d size is %d,%d - %d,%d\n",
2994 sbwidth - 1, rc1.left, rc1.top, rc1.right, rc1.bottom);
2996 /* test window just wide enough for a vertical scroll bar */
2997 nccalchelper( hwnd, sbwidth, 100, &rc1);
2998 ok( rc1.right - rc1.left == 0, "Width should be %d size is %d,%d - %d,%d\n",
2999 0, rc1.left, rc1.top, rc1.right, rc1.bottom);
3001 /* same test, but with client edge: not enough width */
3002 SetWindowLong( hwnd, GWL_EXSTYLE, WS_EX_CLIENTEDGE | GetWindowLong( hwnd, GWL_EXSTYLE));
3003 nccalchelper( hwnd, sbwidth, 100, &rc1);
3004 ok( rc1.right - rc1.left == sbwidth - 2 * GetSystemMetrics(SM_CXEDGE),
3005 "Width should be %d size is %d,%d - %d,%d\n",
3006 sbwidth - 2 * GetSystemMetrics(SM_CXEDGE), rc1.left, rc1.top, rc1.right, rc1.bottom);
3008 DestroyWindow( hwnd);
3011 static void test_SetParent(void)
3014 HWND desktop = GetDesktopWindow();
3016 BOOL is_win9x = GetWindowLongPtrW(desktop, GWLP_WNDPROC) == 0;
3017 HWND parent, child1, child2, child3, child4, sibling;
3019 parent = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3020 100, 100, 200, 200, 0, 0, 0, NULL);
3021 assert(parent != 0);
3022 child1 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3023 0, 0, 50, 50, parent, 0, 0, NULL);
3024 assert(child1 != 0);
3025 child2 = CreateWindowExA(0, "static", NULL, WS_POPUP,
3026 0, 0, 50, 50, child1, 0, 0, NULL);
3027 assert(child2 != 0);
3028 child3 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3029 0, 0, 50, 50, child2, 0, 0, NULL);
3030 assert(child3 != 0);
3031 child4 = CreateWindowExA(0, "static", NULL, WS_POPUP,
3032 0, 0, 50, 50, child3, 0, 0, NULL);
3033 assert(child4 != 0);
3035 trace("parent %p, child1 %p, child2 %p, child3 %p, child4 %p\n",
3036 parent, child1, child2, child3, child4);
3038 check_parents(parent, desktop, 0, 0, 0, parent, parent);
3039 check_parents(child1, parent, parent, parent, 0, parent, parent);
3040 check_parents(child2, desktop, parent, parent, parent, child2, parent);
3041 check_parents(child3, child2, child2, child2, 0, child2, parent);
3042 check_parents(child4, desktop, child2, child2, child2, child4, parent);
3044 ok(!IsChild(desktop, parent), "wrong parent/child %p/%p\n", desktop, parent);
3045 ok(!IsChild(desktop, child1), "wrong parent/child %p/%p\n", desktop, child1);
3046 ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
3047 ok(!IsChild(desktop, child3), "wrong parent/child %p/%p\n", desktop, child3);
3048 ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
3050 ok(IsChild(parent, child1), "wrong parent/child %p/%p\n", parent, child1);
3051 ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
3052 ok(!IsChild(parent, child2), "wrong parent/child %p/%p\n", parent, child2);
3053 ok(!IsChild(child1, child2), "wrong parent/child %p/%p\n", child1, child2);
3054 ok(!IsChild(parent, child3), "wrong parent/child %p/%p\n", parent, child3);
3055 ok(IsChild(child2, child3), "wrong parent/child %p/%p\n", child2, child3);
3056 ok(!IsChild(parent, child4), "wrong parent/child %p/%p\n", parent, child4);
3057 ok(!IsChild(child3, child4), "wrong parent/child %p/%p\n", child3, child4);
3058 ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
3060 if (!is_win9x) /* Win9x doesn't survive this test */
3062 ok(!SetParent(parent, child1), "SetParent should fail\n");
3063 ok(!SetParent(child2, child3), "SetParent should fail\n");
3064 ok(SetParent(child1, parent) != 0, "SetParent should not fail\n");
3065 ok(SetParent(parent, child2) != 0, "SetParent should not fail\n");
3066 ok(SetParent(parent, child3) != 0, "SetParent should not fail\n");
3067 ok(!SetParent(child2, parent), "SetParent should fail\n");
3068 ok(SetParent(parent, child4) != 0, "SetParent should not fail\n");
3070 check_parents(parent, child4, child4, 0, 0, child4, parent);
3071 check_parents(child1, parent, parent, parent, 0, child4, parent);
3072 check_parents(child2, desktop, parent, parent, parent, child2, parent);
3073 check_parents(child3, child2, child2, child2, 0, child2, parent);
3074 check_parents(child4, desktop, child2, child2, child2, child4, parent);
3077 hMenu = CreateMenu();
3078 sibling = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3079 100, 100, 200, 200, 0, hMenu, 0, NULL);
3080 assert(sibling != 0);
3082 ok(SetParent(sibling, parent) != 0, "SetParent should not fail\n");
3083 ok(GetMenu(sibling) == hMenu, "SetParent should not remove menu\n");
3085 ret = DestroyWindow(parent);
3086 ok( ret, "DestroyWindow() error %d\n", GetLastError());
3088 ok(!IsWindow(parent), "parent still exists\n");
3089 ok(!IsWindow(sibling), "sibling still exists\n");
3090 ok(!IsWindow(child1), "child1 still exists\n");
3091 ok(!IsWindow(child2), "child2 still exists\n");
3092 ok(!IsWindow(child3), "child3 still exists\n");
3093 ok(!IsWindow(child4), "child4 still exists\n");
3096 static LRESULT WINAPI StyleCheckProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3098 LPCREATESTRUCT lpcs;
3105 lpcs = (LPCREATESTRUCT)lparam;
3106 lpss = lpcs->lpCreateParams;
3109 if ((lpcs->dwExStyle & WS_EX_DLGMODALFRAME) ||
3110 ((!(lpcs->dwExStyle & WS_EX_STATICEDGE)) &&
3111 (lpcs->style & (WS_DLGFRAME | WS_THICKFRAME))))
3112 ok(lpcs->dwExStyle & WS_EX_WINDOWEDGE, "Window should have WS_EX_WINDOWEDGE style\n");
3114 ok(!(lpcs->dwExStyle & WS_EX_WINDOWEDGE), "Window shouldn't have WS_EX_WINDOWEDGE style\n");
3116 ok((lpss->styleOld & ~WS_EX_WINDOWEDGE) == (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE),
3117 "Ex style (0x%08lx) should match what the caller passed to CreateWindowEx (0x%08lx)\n",
3118 (lpss->styleOld & ~WS_EX_WINDOWEDGE), (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE));
3120 ok(lpss->styleNew == lpcs->style,
3121 "Style (0x%08x) should match what the caller passed to CreateWindowEx (0x%08x)\n",
3122 lpss->styleNew, lpcs->style);
3126 return DefWindowProc(hwnd, msg, wparam, lparam);
3129 static ATOM atomStyleCheckClass;
3131 static void register_style_check_class(void)
3139 GetModuleHandle(NULL),
3141 LoadCursor(NULL, IDC_ARROW),
3142 (HBRUSH)(COLOR_BTNFACE+1),
3144 TEXT("WineStyleCheck"),
3147 atomStyleCheckClass = RegisterClass(&wc);
3150 static void check_window_style(DWORD dwStyleIn, DWORD dwExStyleIn, DWORD dwStyleOut, DWORD dwExStyleOut)
3152 DWORD dwActualStyle;
3153 DWORD dwActualExStyle;
3156 HWND hwndParent = NULL;
3158 ss.styleNew = dwStyleIn;
3159 ss.styleOld = dwExStyleIn;
3161 if (dwStyleIn & WS_CHILD)
3163 hwndParent = CreateWindowEx(0, MAKEINTATOM(atomStyleCheckClass), NULL,
3164 WS_OVERLAPPEDWINDOW, 0, 0, 0, 0, NULL, NULL, NULL, NULL);
3167 hwnd = CreateWindowEx(dwExStyleIn, MAKEINTATOM(atomStyleCheckClass), NULL,
3168 dwStyleIn, 0, 0, 0, 0, hwndParent, NULL, NULL, &ss);
3171 flush_events( TRUE );
3173 dwActualStyle = GetWindowLong(hwnd, GWL_STYLE);
3174 dwActualExStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
3175 ok((dwActualStyle == dwStyleOut) && (dwActualExStyle == dwExStyleOut),
3176 "Style (0x%08x) should really be 0x%08x and/or Ex style (0x%08x) should really be 0x%08x\n",
3177 dwActualStyle, dwStyleOut, dwActualExStyle, dwExStyleOut);
3179 DestroyWindow(hwnd);
3180 if (hwndParent) DestroyWindow(hwndParent);
3183 /* tests what window styles the window manager automatically adds */
3184 static void test_window_styles(void)
3186 register_style_check_class();
3188 check_window_style(0, 0, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE);
3189 check_window_style(WS_OVERLAPPEDWINDOW, 0, WS_CLIPSIBLINGS|WS_OVERLAPPEDWINDOW, WS_EX_WINDOWEDGE);
3190 check_window_style(WS_CHILD, 0, WS_CHILD, 0);
3191 check_window_style(WS_CHILD, WS_EX_WINDOWEDGE, WS_CHILD, 0);
3192 check_window_style(0, WS_EX_TOOLWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW);
3193 check_window_style(WS_POPUP, 0, WS_POPUP|WS_CLIPSIBLINGS, 0);
3194 check_window_style(WS_POPUP, WS_EX_WINDOWEDGE, WS_POPUP|WS_CLIPSIBLINGS, 0);
3195 check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME, WS_CHILD, WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
3196 check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME|WS_EX_STATICEDGE, WS_CHILD, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
3197 check_window_style(WS_CAPTION, WS_EX_STATICEDGE, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE);
3198 check_window_style(0, WS_EX_APPWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_APPWINDOW|WS_EX_WINDOWEDGE);
3201 static void test_scrollvalidate( HWND parent)
3204 HRGN hrgn=CreateRectRgn(0,0,0,0);
3205 HRGN exprgn, tmprgn, clipping;
3206 RECT rc, rcu, cliprc;
3207 /* create two overlapping child windows. The visual region
3208 * of hwnd1 is clipped by the overlapping part of
3209 * hwnd2 because of the WS_CLIPSIBLING style */
3212 clipping = CreateRectRgn(0,0,0,0);
3213 tmprgn = CreateRectRgn(0,0,0,0);
3214 exprgn = CreateRectRgn(0,0,0,0);
3215 hwnd2 = CreateWindowExA(0, "static", NULL,
3216 WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
3217 75, 30, 100, 100, parent, 0, 0, NULL);
3218 hwnd1 = CreateWindowExA(0, "static", NULL,
3219 WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
3220 25, 50, 100, 100, parent, 0, 0, NULL);
3221 ShowWindow( parent, SW_SHOW);
3222 UpdateWindow( parent);
3223 GetClientRect( hwnd1, &rc);
3225 SetRectRgn( clipping, 10, 10, 90, 90);
3226 hdc = GetDC( hwnd1);
3227 /* for a visual touch */
3228 TextOut( hdc, 0,10, "0123456789", 10);
3229 ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
3230 if (winetest_debug > 0) dump_region(hrgn);
3231 /* create a region with what is expected */
3232 SetRectRgn( exprgn, 39,0,49,74);
3233 SetRectRgn( tmprgn, 88,79,98,93);
3234 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3235 SetRectRgn( tmprgn, 0,93,98,98);
3236 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3237 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3238 trace("update rect is %d,%d - %d,%d\n",
3239 rcu.left,rcu.top,rcu.right,rcu.bottom);
3240 /* now with clipping region */
3241 SelectClipRgn( hdc, clipping);
3242 ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
3243 if (winetest_debug > 0) dump_region(hrgn);
3244 /* create a region with what is expected */
3245 SetRectRgn( exprgn, 39,10,49,74);
3246 SetRectRgn( tmprgn, 80,79,90,85);
3247 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3248 SetRectRgn( tmprgn, 10,85,90,90);
3249 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3250 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3251 trace("update rect is %d,%d - %d,%d\n",
3252 rcu.left,rcu.top,rcu.right,rcu.bottom);
3253 ReleaseDC( hwnd1, hdc);
3255 /* test scrolling a window with an update region */
3256 DestroyWindow( hwnd2);
3257 ValidateRect( hwnd1, NULL);
3258 SetRect( &rc, 40,40, 50,50);
3259 InvalidateRect( hwnd1, &rc, 1);
3260 GetClientRect( hwnd1, &rc);
3262 ScrollWindowEx( hwnd1, -10, 0, &rc, &cliprc, hrgn, &rcu,
3263 SW_SCROLLCHILDREN | SW_INVALIDATE);
3264 if (winetest_debug > 0) dump_region(hrgn);
3265 SetRectRgn( exprgn, 88,0,98,98);
3266 SetRectRgn( tmprgn, 30, 40, 50, 50);
3267 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3268 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3270 /* clear an update region */
3271 UpdateWindow( hwnd1 );
3273 SetRect( &rc, 0,40, 100,60);
3274 SetRect( &cliprc, 0,0, 100,100);
3275 ScrollWindowEx( hwnd1, 0, -25, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3276 if (winetest_debug > 0) dump_region( hrgn );
3277 SetRectRgn( exprgn, 0, 40, 98, 60 );
3278 ok( EqualRgn( exprgn, hrgn), "wrong update region in excessive scroll\n");
3280 /* now test ScrollWindowEx with a combination of
3281 * WS_CLIPCHILDREN style and SW_SCROLLCHILDREN flag */
3282 /* make hwnd2 the child of hwnd1 */
3283 hwnd2 = CreateWindowExA(0, "static", NULL,
3284 WS_CHILD| WS_VISIBLE | WS_BORDER ,
3285 50, 50, 100, 100, hwnd1, 0, 0, NULL);
3286 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPSIBLINGS);
3287 GetClientRect( hwnd1, &rc);
3290 /* WS_CLIPCHILDREN and SW_SCROLLCHILDREN */
3291 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
3292 ValidateRect( hwnd1, NULL);
3293 ValidateRect( hwnd2, NULL);
3294 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu,
3295 SW_SCROLLCHILDREN | SW_INVALIDATE);
3296 if (winetest_debug > 0) dump_region(hrgn);
3297 SetRectRgn( exprgn, 88,0,98,88);
3298 SetRectRgn( tmprgn, 0,88,98,98);
3299 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3300 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3302 /* SW_SCROLLCHILDREN */
3303 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
3304 ValidateRect( hwnd1, NULL);
3305 ValidateRect( hwnd2, NULL);
3306 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_SCROLLCHILDREN | SW_INVALIDATE);
3307 if (winetest_debug > 0) dump_region(hrgn);
3308 /* expected region is the same as in previous test */
3309 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3311 /* no SW_SCROLLCHILDREN */
3312 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
3313 ValidateRect( hwnd1, NULL);
3314 ValidateRect( hwnd2, NULL);
3315 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3316 if (winetest_debug > 0) dump_region(hrgn);
3317 /* expected region is the same as in previous test */
3318 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3320 /* WS_CLIPCHILDREN and no SW_SCROLLCHILDREN */
3321 SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
3322 ValidateRect( hwnd1, NULL);
3323 ValidateRect( hwnd2, NULL);
3324 ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3325 if (winetest_debug > 0) dump_region(hrgn);
3326 SetRectRgn( exprgn, 88,0,98,20);
3327 SetRectRgn( tmprgn, 20,20,98,30);
3328 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3329 SetRectRgn( tmprgn, 20,30,30,88);
3330 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3331 SetRectRgn( tmprgn, 0,88,30,98);
3332 CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3333 ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3336 DeleteObject( hrgn);
3337 DeleteObject( exprgn);
3338 DeleteObject( tmprgn);
3339 DestroyWindow( hwnd1);
3340 DestroyWindow( hwnd2);
3343 /* couple of tests of return values of scrollbar functions
3344 * called on a scrollbarless window */
3345 static void test_scroll(void)
3350 HWND hwnd = CreateWindowExA(0, "Static", "Wine test window",
3351 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP,
3352 100, 100, 200, 200, 0, 0, 0, NULL);
3354 ret = GetScrollRange( hwnd, SB_HORZ, &min, &max);
3355 if (!ret) /* win9x */
3357 win_skip( "GetScrollRange doesn't work\n" );
3358 DestroyWindow( hwnd);
3361 ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
3362 ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
3363 si.cbSize = sizeof( si);
3364 si.fMask = SIF_PAGE;
3365 si.nPage = 0xdeadbeef;
3366 ret = GetScrollInfo( hwnd, SB_HORZ, &si);
3367 ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
3368 ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
3370 ret = GetScrollRange( hwnd, SB_VERT, &min, &max);
3371 ok( ret, "GetScrollRange returns FALSE\n");
3372 ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
3373 ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
3374 si.cbSize = sizeof( si);
3375 si.fMask = SIF_PAGE;
3376 si.nPage = 0xdeadbeef;
3377 ret = GetScrollInfo( hwnd, SB_VERT, &si);
3378 ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
3379 ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
3381 DestroyWindow( hwnd);
3384 static void test_scrolldc( HWND parent)
3387 HRGN exprgn, tmprgn, hrgn;
3388 RECT rc, rc2, rcu, cliprc;
3392 hrgn = CreateRectRgn(0,0,0,0);
3393 tmprgn = CreateRectRgn(0,0,0,0);
3394 exprgn = CreateRectRgn(0,0,0,0);
3396 hwnd1 = CreateWindowExA(0, "static", NULL,
3397 WS_CHILD| WS_VISIBLE,
3398 25, 50, 100, 100, parent, 0, 0, NULL);
3399 ShowWindow( parent, SW_SHOW);
3400 UpdateWindow( parent);
3401 flush_events( TRUE );
3402 GetClientRect( hwnd1, &rc);
3403 hdc = GetDC( hwnd1);
3404 /* paint the upper half of the window black */
3406 rc2.bottom = ( rc.top + rc.bottom) /2;
3407 FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
3408 /* clip region is the lower half */
3410 cliprc.top = (rc.top + rc.bottom) /2;
3411 /* test whether scrolled pixels are properly clipped */
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 /* this scroll should not cause any visible changes */
3415 ScrollDC( hdc, 5, -20, &rc, &cliprc, hrgn, &rcu);
3416 colr = GetPixel( hdc, (rc.left+rc.right)/2, ( rc.top + rc.bottom) /2 - 1);
3417 ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3418 /* test with NULL clip rect */
3419 ScrollDC( hdc, 20, -20, &rc, NULL, hrgn, &rcu);
3420 /*FillRgn(hdc, hrgn, GetStockObject(WHITE_BRUSH));*/
3421 trace("update rect: %d,%d - %d,%d\n",
3422 rcu.left, rcu.top, rcu.right, rcu.bottom);
3423 if (winetest_debug > 0) dump_region(hrgn);
3424 SetRect(&rc2, 0, 0, 100, 100);
3425 ok(EqualRect(&rcu, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
3426 rcu.left, rcu.top, rcu.right, rcu.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom);
3428 SetRectRgn( exprgn, 0, 0, 20, 80);
3429 SetRectRgn( tmprgn, 0, 80, 100, 100);
3430 CombineRgn(exprgn, exprgn, tmprgn, RGN_OR);
3431 if (winetest_debug > 0) dump_region(exprgn);
3432 ok(EqualRgn(exprgn, hrgn), "wrong update region\n");
3433 /* test clip rect > scroll rect */
3434 FillRect( hdc, &rc, GetStockObject(WHITE_BRUSH));
3436 InflateRect( &rc2, -(rc.right-rc.left)/4, -(rc.bottom-rc.top)/4);
3437 FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
3438 ScrollDC( hdc, 10, 10, &rc2, &rc, hrgn, &rcu);
3439 SetRectRgn( exprgn, 25, 25, 75, 35);
3440 SetRectRgn( tmprgn, 25, 35, 35, 75);
3441 CombineRgn(exprgn, exprgn, tmprgn, RGN_OR);
3442 ok(EqualRgn(exprgn, hrgn), "wrong update region\n");
3443 colr = GetPixel( hdc, 80, 80);
3444 ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3445 trace("update rect: %d,%d - %d,%d\n",
3446 rcu.left, rcu.top, rcu.right, rcu.bottom);
3447 if (winetest_debug > 0) dump_region(hrgn);
3451 DeleteObject(exprgn);
3452 DeleteObject(tmprgn);
3453 DestroyWindow(hwnd1);
3456 static void test_params(void)
3461 /* Just a param check */
3462 if (pGetMonitorInfoA)
3464 SetLastError(0xdeadbeef);
3465 rc = GetWindowText(hwndMain2, NULL, 1024);
3466 ok( rc==0, "GetWindowText: rc=%d err=%d\n",rc,GetLastError());
3470 /* Skips actually on Win95 and NT4 */
3471 win_skip("Test would crash on Win95\n");
3474 SetLastError(0xdeadbeef);
3475 hwnd=CreateWindow("LISTBOX", "TestList",
3476 (LBS_STANDARD & ~LBS_SORT),
3478 NULL, (HMENU)1, NULL, 0);
3480 ok(!hwnd || broken(hwnd != NULL), /* w2k3 sp2 */
3481 "CreateWindow with invalid menu handle should fail\n");
3483 ok(GetLastError() == ERROR_INVALID_MENU_HANDLE || /* NT */
3484 GetLastError() == 0xdeadbeef, /* Win9x */
3485 "wrong last error value %d\n", GetLastError());
3488 static void test_AWRwindow(LPCSTR class, LONG style, LONG exStyle, BOOL menu)
3492 hwnd = CreateWindowEx(exStyle, class, class, style,
3499 trace("Failed to create window class=%s, style=0x%08x, exStyle=0x%08x\n", class, style, exStyle);
3502 ShowWindow(hwnd, SW_SHOW);
3504 test_nonclient_area(hwnd);
3507 DestroyWindow(hwnd);
3510 static BOOL AWR_init(void)
3514 class.style = CS_HREDRAW | CS_VREDRAW;
3515 class.lpfnWndProc = DefWindowProcA;
3516 class.cbClsExtra = 0;
3517 class.cbWndExtra = 0;
3518 class.hInstance = 0;
3519 class.hIcon = LoadIcon (0, IDI_APPLICATION);
3520 class.hCursor = LoadCursor (0, IDC_ARROW);
3521 class.hbrBackground = 0;
3522 class.lpszMenuName = 0;
3523 class.lpszClassName = szAWRClass;
3525 if (!RegisterClass (&class)) {
3526 ok(FALSE, "RegisterClass failed\n");
3530 hmenu = CreateMenu();
3533 ok(hmenu != 0, "Failed to create menu\n");
3534 ok(AppendMenu(hmenu, MF_STRING, 1, "Test!"), "Failed to create menu item\n");
3540 static void test_AWR_window_size(BOOL menu)
3544 WS_MAXIMIZE, WS_BORDER, WS_DLGFRAME,
3547 WS_MINIMIZEBOX, WS_MAXIMIZEBOX,
3548 WS_HSCROLL, WS_VSCROLL
3552 WS_EX_TOOLWINDOW, WS_EX_WINDOWEDGE,
3555 /* These styles have problems on (at least) WinXP (SP2) and Wine */
3556 WS_EX_DLGMODALFRAME,
3563 /* A exhaustive check of all the styles takes too long
3564 * so just do a (hopefully representative) sample
3566 for (i = 0; i < COUNTOF(styles); ++i)
3567 test_AWRwindow(szAWRClass, styles[i], 0, menu);
3568 for (i = 0; i < COUNTOF(exStyles); ++i) {
3569 test_AWRwindow(szAWRClass, WS_POPUP, exStyles[i], menu);
3570 test_AWRwindow(szAWRClass, WS_THICKFRAME, exStyles[i], menu);
3575 #define SHOWSYSMETRIC(SM) trace(#SM "=%d\n", GetSystemMetrics(SM))
3577 static void test_AdjustWindowRect(void)
3582 SHOWSYSMETRIC(SM_CYCAPTION);
3583 SHOWSYSMETRIC(SM_CYSMCAPTION);
3584 SHOWSYSMETRIC(SM_CYMENU);
3585 SHOWSYSMETRIC(SM_CXEDGE);
3586 SHOWSYSMETRIC(SM_CYEDGE);
3587 SHOWSYSMETRIC(SM_CXVSCROLL);
3588 SHOWSYSMETRIC(SM_CYHSCROLL);
3589 SHOWSYSMETRIC(SM_CXFRAME);
3590 SHOWSYSMETRIC(SM_CYFRAME);
3591 SHOWSYSMETRIC(SM_CXDLGFRAME);
3592 SHOWSYSMETRIC(SM_CYDLGFRAME);
3593 SHOWSYSMETRIC(SM_CXBORDER);
3594 SHOWSYSMETRIC(SM_CYBORDER);
3596 test_AWR_window_size(FALSE);
3597 test_AWR_window_size(TRUE);
3601 #undef SHOWSYSMETRIC
3604 /* Global variables to trigger exit from loop */
3605 static int redrawComplete, WMPAINT_count;
3607 static LRESULT WINAPI redraw_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3612 trace("doing WM_PAINT %d\n", WMPAINT_count);
3614 if (WMPAINT_count > 10 && redrawComplete == 0) {
3616 BeginPaint(hwnd, &ps);
3617 EndPaint(hwnd, &ps);
3622 return DefWindowProc(hwnd, msg, wparam, lparam);
3625 /* Ensure we exit from RedrawNow regardless of invalidated area */
3626 static void test_redrawnow(void)
3631 cls.style = CS_DBLCLKS;
3632 cls.lpfnWndProc = redraw_window_procA;
3635 cls.hInstance = GetModuleHandleA(0);
3637 cls.hCursor = LoadCursorA(0, IDC_ARROW);
3638 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
3639 cls.lpszMenuName = NULL;
3640 cls.lpszClassName = "RedrawWindowClass";
3642 if(!RegisterClassA(&cls)) {
3643 trace("Register failed %d\n", GetLastError());
3647 hwndMain = CreateWindowA("RedrawWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
3648 CW_USEDEFAULT, 0, 100, 100, NULL, NULL, 0, NULL);
3650 ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
3651 ShowWindow(hwndMain, SW_SHOW);
3652 ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
3653 RedrawWindow(hwndMain, NULL,NULL,RDW_UPDATENOW | RDW_ALLCHILDREN);
3654 ok( WMPAINT_count == 1, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
3655 redrawComplete = TRUE;
3656 ok( WMPAINT_count < 10, "RedrawWindow (RDW_UPDATENOW) never completed (%d)\n", WMPAINT_count);
3659 DestroyWindow( hwndMain);
3662 struct parentdc_stat {
3668 struct parentdc_test {
3669 struct parentdc_stat main, main_todo;
3670 struct parentdc_stat child1, child1_todo;
3671 struct parentdc_stat child2, child2_todo;
3674 static LRESULT WINAPI parentdc_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3679 struct parentdc_stat *t = (struct parentdc_stat *)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
3684 GetClientRect(hwnd, &rc);
3685 CopyRect(&t->client, &rc);
3686 GetWindowRect(hwnd, &rc);
3687 trace("WM_PAINT: hwnd %p, client rect (%d,%d)-(%d,%d), window rect (%d,%d)-(%d,%d)\n", hwnd,
3688 t->client.left, t->client.top, t->client.right, t->client.bottom,
3689 rc.left, rc.top, rc.right, rc.bottom);
3690 BeginPaint(hwnd, &ps);
3691 CopyRect(&t->paint, &ps.rcPaint);
3692 GetClipBox(ps.hdc, &rc);
3693 CopyRect(&t->clip, &rc);
3694 trace("clip rect (%d,%d)-(%d,%d), paint rect (%d,%d)-(%d,%d)\n",
3695 rc.left, rc.top, rc.right, rc.bottom,
3696 ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right, ps.rcPaint.bottom);
3697 EndPaint(hwnd, &ps);
3700 return DefWindowProc(hwnd, msg, wparam, lparam);
3703 static void zero_parentdc_stat(struct parentdc_stat *t)
3705 SetRectEmpty(&t->client);
3706 SetRectEmpty(&t->clip);
3707 SetRectEmpty(&t->paint);
3710 static void zero_parentdc_test(struct parentdc_test *t)
3712 zero_parentdc_stat(&t->main);
3713 zero_parentdc_stat(&t->child1);
3714 zero_parentdc_stat(&t->child2);
3717 #define parentdc_field_ok(t, w, r, f, got) \
3718 ok (t.w.r.f==got.w.r.f, "window " #w ", rect " #r ", field " #f \
3719 ": expected %d, got %d\n", \
3722 #define parentdc_todo_field_ok(t, w, r, f, got) \
3723 if (t.w##_todo.r.f) todo_wine { parentdc_field_ok(t, w, r, f, got); } \
3724 else parentdc_field_ok(t, w, r, f, got)
3726 #define parentdc_rect_ok(t, w, r, got) \
3727 parentdc_todo_field_ok(t, w, r, left, got); \
3728 parentdc_todo_field_ok(t, w, r, top, got); \
3729 parentdc_todo_field_ok(t, w, r, right, got); \
3730 parentdc_todo_field_ok(t, w, r, bottom, got);
3732 #define parentdc_win_ok(t, w, got) \
3733 parentdc_rect_ok(t, w, client, got); \
3734 parentdc_rect_ok(t, w, clip, got); \
3735 parentdc_rect_ok(t, w, paint, got);
3737 #define parentdc_ok(t, got) \
3738 parentdc_win_ok(t, main, got); \
3739 parentdc_win_ok(t, child1, got); \
3740 parentdc_win_ok(t, child2, got);
3742 static void test_csparentdc(void)
3744 WNDCLASSA clsMain, cls;
3745 HWND hwndMain, hwnd1, hwnd2;
3748 struct parentdc_test test_answer;
3750 #define nothing_todo {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}
3751 const struct parentdc_test test1 =
3753 {{0, 0, 150, 150}, {0, 0, 150, 150}, {0, 0, 150, 150}}, nothing_todo,
3754 {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3755 {{0, 0, 40, 40}, {-40, -40, 110, 110}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3758 const struct parentdc_test test2 =
3760 {{0, 0, 150, 150}, {0, 0, 50, 50}, {0, 0, 50, 50}}, nothing_todo,
3761 {{0, 0, 40, 40}, {-20, -20, 30, 30}, {0, 0, 30, 30}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
3762 {{0, 0, 40, 40}, {-40, -40, 10, 10}, {0, 0, 10, 10}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
3765 const struct parentdc_test test3 =
3767 {{0, 0, 150, 150}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
3768 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3769 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3772 const struct parentdc_test test4 =
3774 {{0, 0, 150, 150}, {40, 40, 50, 50}, {40, 40, 50, 50}}, nothing_todo,
3775 {{0, 0, 40, 40}, {20, 20, 30, 30}, {20, 20, 30, 30}}, nothing_todo,
3776 {{0, 0, 40, 40}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
3779 const struct parentdc_test test5 =
3781 {{0, 0, 150, 150}, {20, 20, 60, 60}, {20, 20, 60, 60}}, nothing_todo,
3782 {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3783 {{0, 0, 40, 40}, {-20, -20, 20, 20}, {0, 0, 20, 20}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
3786 const struct parentdc_test test6 =
3788 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3789 {{0, 0, 40, 40}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
3790 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3793 const struct parentdc_test test7 =
3795 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3796 {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
3797 {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
3801 clsMain.style = CS_DBLCLKS;
3802 clsMain.lpfnWndProc = parentdc_window_procA;
3803 clsMain.cbClsExtra = 0;
3804 clsMain.cbWndExtra = 0;
3805 clsMain.hInstance = GetModuleHandleA(0);
3807 clsMain.hCursor = LoadCursorA(0, IDC_ARROW);
3808 clsMain.hbrBackground = GetStockObject(WHITE_BRUSH);
3809 clsMain.lpszMenuName = NULL;
3810 clsMain.lpszClassName = "ParentDcMainWindowClass";
3812 if(!RegisterClassA(&clsMain)) {
3813 trace("Register failed %d\n", GetLastError());
3817 cls.style = CS_DBLCLKS | CS_PARENTDC;
3818 cls.lpfnWndProc = parentdc_window_procA;
3821 cls.hInstance = GetModuleHandleA(0);
3823 cls.hCursor = LoadCursorA(0, IDC_ARROW);
3824 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
3825 cls.lpszMenuName = NULL;
3826 cls.lpszClassName = "ParentDcWindowClass";
3828 if(!RegisterClassA(&cls)) {
3829 trace("Register failed %d\n", GetLastError());
3833 SetRect(&rc, 0, 0, 150, 150);
3834 AdjustWindowRectEx(&rc, WS_OVERLAPPEDWINDOW, FALSE, 0);
3835 hwndMain = CreateWindowA("ParentDcMainWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
3836 CW_USEDEFAULT, 0, rc.right - rc.left, rc.bottom - rc.top, NULL, NULL, 0, NULL);
3837 SetWindowLongPtrA(hwndMain, GWLP_USERDATA, (DWORD_PTR)&test_answer.main);
3838 hwnd1 = CreateWindowA("ParentDcWindowClass", "Child Window 1", WS_CHILD,
3839 20, 20, 40, 40, hwndMain, NULL, 0, NULL);
3840 SetWindowLongPtrA(hwnd1, GWLP_USERDATA, (DWORD_PTR)&test_answer.child1);
3841 hwnd2 = CreateWindowA("ParentDcWindowClass", "Child Window 2", WS_CHILD,
3842 40, 40, 40, 40, hwndMain, NULL, 0, NULL);
3843 SetWindowLongPtrA(hwnd2, GWLP_USERDATA, (DWORD_PTR)&test_answer.child2);
3844 ShowWindow(hwndMain, SW_SHOW);
3845 ShowWindow(hwnd1, SW_SHOW);
3846 ShowWindow(hwnd2, SW_SHOW);
3847 SetWindowPos(hwndMain, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
3848 flush_events( TRUE );
3850 zero_parentdc_test(&test_answer);
3851 InvalidateRect(hwndMain, NULL, TRUE);
3852 flush_events( TRUE );
3853 parentdc_ok(test1, test_answer);
3855 zero_parentdc_test(&test_answer);
3856 SetRect(&rc, 0, 0, 50, 50);
3857 InvalidateRect(hwndMain, &rc, TRUE);
3858 flush_events( TRUE );
3859 parentdc_ok(test2, test_answer);
3861 zero_parentdc_test(&test_answer);
3862 SetRect(&rc, 0, 0, 10, 10);
3863 InvalidateRect(hwndMain, &rc, TRUE);
3864 flush_events( TRUE );
3865 parentdc_ok(test3, test_answer);
3867 zero_parentdc_test(&test_answer);
3868 SetRect(&rc, 40, 40, 50, 50);
3869 InvalidateRect(hwndMain, &rc, TRUE);
3870 flush_events( TRUE );
3871 parentdc_ok(test4, test_answer);
3873 zero_parentdc_test(&test_answer);
3874 SetRect(&rc, 20, 20, 60, 60);
3875 InvalidateRect(hwndMain, &rc, TRUE);
3876 flush_events( TRUE );
3877 parentdc_ok(test5, test_answer);
3879 zero_parentdc_test(&test_answer);
3880 SetRect(&rc, 0, 0, 10, 10);
3881 InvalidateRect(hwnd1, &rc, TRUE);
3882 flush_events( TRUE );
3883 parentdc_ok(test6, test_answer);
3885 zero_parentdc_test(&test_answer);
3886 SetRect(&rc, -5, -5, 65, 65);
3887 InvalidateRect(hwnd1, &rc, TRUE);
3888 flush_events( TRUE );
3889 parentdc_ok(test7, test_answer);
3891 DestroyWindow(hwndMain);
3892 DestroyWindow(hwnd1);
3893 DestroyWindow(hwnd2);
3896 static LRESULT WINAPI def_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3898 return DefWindowProcA(hwnd, msg, wparam, lparam);
3901 static LRESULT WINAPI def_window_procW(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3903 return DefWindowProcW(hwnd, msg, wparam, lparam);
3906 static void test_IsWindowUnicode(void)
3908 static const char ansi_class_nameA[] = "ansi class name";
3909 static const WCHAR ansi_class_nameW[] = {'a','n','s','i',' ','c','l','a','s','s',' ','n','a','m','e',0};
3910 static const char unicode_class_nameA[] = "unicode class name";
3911 static const WCHAR unicode_class_nameW[] = {'u','n','i','c','o','d','e',' ','c','l','a','s','s',' ','n','a','m','e',0};
3916 memset(&classW, 0, sizeof(classW));
3917 classW.hInstance = GetModuleHandleA(0);
3918 classW.lpfnWndProc = def_window_procW;
3919 classW.lpszClassName = unicode_class_nameW;
3920 if (!RegisterClassW(&classW)) return; /* this catches Win9x as well */
3922 memset(&classA, 0, sizeof(classA));
3923 classA.hInstance = GetModuleHandleA(0);
3924 classA.lpfnWndProc = def_window_procA;
3925 classA.lpszClassName = ansi_class_nameA;
3926 assert(RegisterClassA(&classA));
3928 /* unicode class: window proc */
3929 hwnd = CreateWindowExW(0, unicode_class_nameW, NULL, WS_POPUP,
3930 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3933 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3934 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3935 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3936 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3937 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3939 DestroyWindow(hwnd);
3941 hwnd = CreateWindowExA(0, unicode_class_nameA, NULL, WS_POPUP,
3942 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3945 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3946 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3947 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3948 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3949 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3951 DestroyWindow(hwnd);
3953 /* ansi class: window proc */
3954 hwnd = CreateWindowExW(0, ansi_class_nameW, NULL, WS_POPUP,
3955 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3958 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3959 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3960 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3961 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3962 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3964 DestroyWindow(hwnd);
3966 hwnd = CreateWindowExA(0, ansi_class_nameA, NULL, WS_POPUP,
3967 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3970 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3971 SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
3972 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3973 SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
3974 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3976 DestroyWindow(hwnd);
3978 /* unicode class: class proc */
3979 hwnd = CreateWindowExW(0, unicode_class_nameW, NULL, WS_POPUP,
3980 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3983 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3984 SetClassLongPtrA(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procA);
3985 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
3986 /* do not restore class window proc back to unicode */
3988 DestroyWindow(hwnd);
3990 hwnd = CreateWindowExA(0, unicode_class_nameA, NULL, WS_POPUP,
3991 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
3994 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3995 SetClassLongPtrW(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procW);
3996 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
3998 DestroyWindow(hwnd);
4000 /* ansi class: class proc */
4001 hwnd = CreateWindowExW(0, ansi_class_nameW, NULL, WS_POPUP,
4002 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4005 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4006 SetClassLongPtrW(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procW);
4007 ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4008 /* do not restore class window proc back to ansi */
4010 DestroyWindow(hwnd);
4012 hwnd = CreateWindowExA(0, ansi_class_nameA, NULL, WS_POPUP,
4013 0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4016 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4017 SetClassLongPtrA(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procA);
4018 ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4020 DestroyWindow(hwnd);
4023 static LRESULT CALLBACK minmax_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
4027 if (msg != WM_GETMINMAXINFO)
4028 return DefWindowProc(hwnd, msg, wp, lp);
4030 minmax = (MINMAXINFO *)lp;
4032 if ((GetWindowLong(hwnd, GWL_STYLE) & WS_CHILD))
4034 minmax->ptReserved.x = 0;
4035 minmax->ptReserved.y = 0;
4036 minmax->ptMaxSize.x = 400;
4037 minmax->ptMaxSize.y = 400;
4038 minmax->ptMaxPosition.x = 300;
4039 minmax->ptMaxPosition.y = 300;
4040 minmax->ptMaxTrackSize.x = 200;
4041 minmax->ptMaxTrackSize.y = 200;
4042 minmax->ptMinTrackSize.x = 100;
4043 minmax->ptMinTrackSize.y = 100;
4046 DefWindowProc(hwnd, msg, wp, lp);
4050 static int expected_cx, expected_cy;
4051 static RECT expected_rect, broken_rect;
4053 static LRESULT CALLBACK winsizes_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
4057 case WM_GETMINMAXINFO:
4060 GetWindowRect( hwnd, &rect );
4061 ok( !rect.left && !rect.top && !rect.right && !rect.bottom,
4062 "wrong rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4063 return DefWindowProc(hwnd, msg, wp, lp);
4068 CREATESTRUCTA *cs = (CREATESTRUCTA *)lp;
4070 GetWindowRect( hwnd, &rect );
4071 trace( "hwnd %p msg %x size %dx%d rect %d,%d-%d,%d\n",
4072 hwnd, msg, cs->cx, cs->cy, rect.left, rect.top, rect.right, rect.bottom );
4073 ok( cs->cx == expected_cx || broken(cs->cx == (short)expected_cx),
4074 "wrong x size %d/%d\n", cs->cx, expected_cx );
4075 ok( cs->cy == expected_cy || broken(cs->cy == (short)expected_cy),
4076 "wrong y size %d/%d\n", cs->cy, expected_cy );
4077 ok( (rect.right - rect.left == expected_rect.right - expected_rect.left &&
4078 rect.bottom - rect.top == expected_rect.bottom - expected_rect.top) ||
4079 broken( rect.right - rect.left == broken_rect.right - broken_rect.left &&
4080 rect.bottom - rect.top == broken_rect.bottom - broken_rect.top) ||
4081 broken( rect.right - rect.left == (short)broken_rect.right - (short)broken_rect.left &&
4082 rect.bottom - rect.top == (short)broken_rect.bottom - (short)broken_rect.top),
4083 "wrong rect %d,%d-%d,%d / %d,%d-%d,%d\n",
4084 rect.left, rect.top, rect.right, rect.bottom,
4085 expected_rect.left, expected_rect.top, expected_rect.right, expected_rect.bottom );
4086 return DefWindowProc(hwnd, msg, wp, lp);
4090 RECT rect, *r = (RECT *)lp;
4091 GetWindowRect( hwnd, &rect );
4092 ok( !memcmp( &rect, r, sizeof(rect) ),
4093 "passed rect %d,%d-%d,%d doesn't match window rect %d,%d-%d,%d\n",
4094 r->left, r->top, r->right, r->bottom, rect.left, rect.top, rect.right, rect.bottom );
4095 return DefWindowProc(hwnd, msg, wp, lp);
4098 return DefWindowProc(hwnd, msg, wp, lp);
4102 static void test_CreateWindow(void)
4110 #define expect_menu(window, menu) \
4111 SetLastError(0xdeadbeef); \
4112 ok(GetMenu(window) == (HMENU)menu, "GetMenu error %d\n", GetLastError())
4114 #define expect_style(window, style)\
4115 ok((ULONG)GetWindowLong(window, GWL_STYLE) == (style), "expected style %x != %x\n", (LONG)(style), GetWindowLong(window, GWL_STYLE))
4117 #define expect_ex_style(window, ex_style)\
4118 ok((ULONG)GetWindowLong(window, GWL_EXSTYLE) == (ex_style), "expected ex_style %x != %x\n", (LONG)(ex_style), GetWindowLong(window, GWL_EXSTYLE))
4120 #define expect_gle_broken_9x(gle)\
4121 ok(GetLastError() == gle ||\
4122 broken(GetLastError() == 0xdeadbeef),\
4123 "IsMenu set error %d\n", GetLastError())
4125 hmenu = CreateMenu();
4127 parent = GetDesktopWindow();
4128 assert(parent != 0);
4130 SetLastError(0xdeadbeef);
4131 ok(IsMenu(hmenu), "IsMenu error %d\n", GetLastError());
4134 SetLastError(0xdeadbeef);
4135 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD,
4136 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4137 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4138 expect_menu(hwnd, 1);
4139 expect_style(hwnd, WS_CHILD);
4140 expect_ex_style(hwnd, WS_EX_APPWINDOW);
4141 DestroyWindow(hwnd);
4143 SetLastError(0xdeadbeef);
4144 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_CAPTION,
4145 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4146 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4147 expect_menu(hwnd, 1);
4148 expect_style(hwnd, WS_CHILD | WS_CAPTION);
4149 expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4150 DestroyWindow(hwnd);
4152 SetLastError(0xdeadbeef);
4153 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD,
4154 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4155 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4156 expect_menu(hwnd, 1);
4157 expect_style(hwnd, WS_CHILD);
4158 expect_ex_style(hwnd, 0);
4159 DestroyWindow(hwnd);
4161 SetLastError(0xdeadbeef);
4162 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_CAPTION,
4163 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4164 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4165 expect_menu(hwnd, 1);
4166 expect_style(hwnd, WS_CHILD | WS_CAPTION);
4167 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4168 DestroyWindow(hwnd);
4171 SetLastError(0xdeadbeef);
4172 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP,
4173 0, 0, 100, 100, parent, hmenu, 0, NULL);
4174 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4175 expect_menu(hwnd, hmenu);
4176 expect_style(hwnd, WS_POPUP | WS_CLIPSIBLINGS);
4177 expect_ex_style(hwnd, WS_EX_APPWINDOW);
4178 DestroyWindow(hwnd);
4179 SetLastError(0xdeadbeef);
4180 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4181 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4183 hmenu = CreateMenu();
4185 SetLastError(0xdeadbeef);
4186 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP | WS_CAPTION,
4187 0, 0, 100, 100, parent, hmenu, 0, NULL);
4188 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4189 expect_menu(hwnd, hmenu);
4190 expect_style(hwnd, WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4191 expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4192 DestroyWindow(hwnd);
4193 SetLastError(0xdeadbeef);
4194 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4195 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4197 hmenu = CreateMenu();
4199 SetLastError(0xdeadbeef);
4200 hwnd = CreateWindowEx(0, "static", NULL, WS_POPUP,
4201 0, 0, 100, 100, parent, hmenu, 0, NULL);
4202 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4203 expect_menu(hwnd, hmenu);
4204 expect_style(hwnd, WS_POPUP | WS_CLIPSIBLINGS);
4205 expect_ex_style(hwnd, 0);
4206 DestroyWindow(hwnd);
4207 SetLastError(0xdeadbeef);
4208 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4209 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4211 hmenu = CreateMenu();
4213 SetLastError(0xdeadbeef);
4214 hwnd = CreateWindowEx(0, "static", NULL, WS_POPUP | WS_CAPTION,
4215 0, 0, 100, 100, parent, hmenu, 0, NULL);
4216 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4217 expect_menu(hwnd, hmenu);
4218 expect_style(hwnd, WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4219 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4220 DestroyWindow(hwnd);
4221 SetLastError(0xdeadbeef);
4222 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4223 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4225 /* WS_CHILD | WS_POPUP */
4226 SetLastError(0xdeadbeef);
4227 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP,
4228 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4229 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4230 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4232 DestroyWindow(hwnd);
4234 hmenu = CreateMenu();
4236 SetLastError(0xdeadbeef);
4237 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP,
4238 0, 0, 100, 100, parent, hmenu, 0, NULL);
4239 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4240 expect_menu(hwnd, hmenu);
4241 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CLIPSIBLINGS);
4242 expect_ex_style(hwnd, WS_EX_APPWINDOW);
4243 DestroyWindow(hwnd);
4244 SetLastError(0xdeadbeef);
4245 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4246 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4248 SetLastError(0xdeadbeef);
4249 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4250 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4251 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4252 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4254 DestroyWindow(hwnd);
4256 hmenu = CreateMenu();
4258 SetLastError(0xdeadbeef);
4259 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4260 0, 0, 100, 100, parent, hmenu, 0, NULL);
4261 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4262 expect_menu(hwnd, hmenu);
4263 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4264 expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4265 DestroyWindow(hwnd);
4266 SetLastError(0xdeadbeef);
4267 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4268 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4270 SetLastError(0xdeadbeef);
4271 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP,
4272 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4273 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4274 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4276 DestroyWindow(hwnd);
4278 hmenu = CreateMenu();
4280 SetLastError(0xdeadbeef);
4281 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP,
4282 0, 0, 100, 100, parent, hmenu, 0, NULL);
4283 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4284 expect_menu(hwnd, hmenu);
4285 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CLIPSIBLINGS);
4286 expect_ex_style(hwnd, 0);
4287 DestroyWindow(hwnd);
4288 SetLastError(0xdeadbeef);
4289 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4290 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4292 SetLastError(0xdeadbeef);
4293 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4294 0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4295 ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4296 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4298 DestroyWindow(hwnd);
4300 hmenu = CreateMenu();
4302 SetLastError(0xdeadbeef);
4303 hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4304 0, 0, 100, 100, parent, hmenu, 0, NULL);
4305 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4306 expect_menu(hwnd, hmenu);
4307 expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4308 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4309 DestroyWindow(hwnd);
4310 SetLastError(0xdeadbeef);
4311 ok(!IsMenu(hmenu), "IsMenu should fail\n");
4312 expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4314 /* test child window sizing */
4316 cls.lpfnWndProc = minmax_wnd_proc;
4319 cls.hInstance = GetModuleHandle(0);
4321 cls.hCursor = LoadCursorA(0, IDC_ARROW);
4322 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4323 cls.lpszMenuName = NULL;
4324 cls.lpszClassName = "MinMax_WndClass";
4325 RegisterClass(&cls);
4327 SetLastError(0xdeadbeef);
4328 parent = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_CAPTION | WS_SYSMENU | WS_THICKFRAME,
4329 0, 0, 100, 100, 0, 0, 0, NULL);
4330 ok(parent != 0, "CreateWindowEx error %d\n", GetLastError());
4331 expect_menu(parent, 0);
4332 expect_style(parent, WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_CLIPSIBLINGS);
4333 expect_ex_style(parent, WS_EX_WINDOWEDGE);
4335 memset(&minmax, 0, sizeof(minmax));
4336 SendMessage(parent, WM_GETMINMAXINFO, 0, (LPARAM)&minmax);
4337 SetRect(&rc_minmax, 0, 0, minmax.ptMaxSize.x, minmax.ptMaxSize.y);
4338 ok(IsRectEmpty(&rc_minmax), "ptMaxSize is not empty\n");
4339 SetRect(&rc_minmax, 0, 0, minmax.ptMaxTrackSize.x, minmax.ptMaxTrackSize.y);
4340 ok(IsRectEmpty(&rc_minmax), "ptMaxTrackSize is not empty\n");
4342 GetWindowRect(parent, &rc);
4343 ok(!IsRectEmpty(&rc), "parent window rect is empty\n");
4344 GetClientRect(parent, &rc);
4345 ok(!IsRectEmpty(&rc), "parent client rect is empty\n");
4347 InflateRect(&rc, 200, 200);
4348 trace("creating child with rect (%d,%d-%d,%d)\n", rc.left, rc.top, rc.right, rc.bottom);
4350 SetLastError(0xdeadbeef);
4351 hwnd = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME,
4352 rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
4353 parent, (HMENU)1, 0, NULL);
4354 ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4355 expect_menu(hwnd, 1);
4356 expect_style(hwnd, WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME);
4357 expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4359 memset(&minmax, 0, sizeof(minmax));
4360 SendMessage(hwnd, WM_GETMINMAXINFO, 0, (LPARAM)&minmax);
4361 SetRect(&rc_minmax, 0, 0, minmax.ptMaxTrackSize.x, minmax.ptMaxTrackSize.y);
4363 GetWindowRect(hwnd, &rc);
4364 OffsetRect(&rc, -rc.left, -rc.top);
4365 ok(EqualRect(&rc, &rc_minmax), "rects don't match: (%d,%d-%d,%d) and (%d,%d-%d,%d)\n",
4366 rc.left, rc.top, rc.right, rc.bottom,
4367 rc_minmax.left, rc_minmax.top, rc_minmax.right, rc_minmax.bottom);
4368 DestroyWindow(hwnd);
4370 cls.lpfnWndProc = winsizes_wnd_proc;
4371 cls.lpszClassName = "Sizes_WndClass";
4372 RegisterClass(&cls);
4374 expected_cx = expected_cy = 200000;
4375 SetRect( &expected_rect, 0, 0, 200000, 200000 );
4376 broken_rect = expected_rect;
4377 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 300000, 300000, 200000, 200000, parent, 0, 0, NULL);
4378 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4379 GetClientRect( hwnd, &rc );
4380 ok( rc.right == 200000 || broken(rc.right == (short)200000), "invalid rect right %u\n", rc.right );
4381 ok( rc.bottom == 200000 || broken(rc.bottom == (short)200000), "invalid rect bottom %u\n", rc.bottom );
4382 DestroyWindow(hwnd);
4384 expected_cx = expected_cy = -10;
4385 SetRect( &expected_rect, 0, 0, 0, 0 );
4386 SetRect( &broken_rect, 0, 0, -10, -10 );
4387 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, -20, -20, -10, -10, parent, 0, 0, NULL);
4388 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4389 GetClientRect( hwnd, &rc );
4390 ok( rc.right == 0, "invalid rect right %u\n", rc.right );
4391 ok( rc.bottom == 0, "invalid rect bottom %u\n", rc.bottom );
4392 DestroyWindow(hwnd);
4394 expected_cx = expected_cy = -200000;
4395 SetRect( &expected_rect, 0, 0, 0, 0 );
4396 SetRect( &broken_rect, 0, 0, -200000, -200000 );
4397 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, -300000, -300000, -200000, -200000, parent, 0, 0, NULL);
4398 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4399 GetClientRect( hwnd, &rc );
4400 ok( rc.right == 0, "invalid rect right %u\n", rc.right );
4401 ok( rc.bottom == 0, "invalid rect bottom %u\n", rc.bottom );
4402 DestroyWindow(hwnd);
4404 /* we need a parent at 0,0 so that child coordinates match */
4405 DestroyWindow(parent);
4406 parent = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_POPUP, 0, 0, 100, 100, 0, 0, 0, NULL);
4407 ok(parent != 0, "CreateWindowEx error %d\n", GetLastError());
4410 expected_cy = 0x7fffffff;
4411 SetRect( &expected_rect, 10, 10, 110, 0x7fffffff );
4412 SetRect( &broken_rect, 10, 10, 110, 0x7fffffffU + 10 );
4413 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 10, 10, 100, 0x7fffffff, parent, 0, 0, NULL);
4414 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4415 GetClientRect( hwnd, &rc );
4416 ok( rc.right == 100, "invalid rect right %u\n", rc.right );
4417 ok( rc.bottom == 0x7fffffff - 10 || broken(rc.bottom == 0), "invalid rect bottom %u\n", rc.bottom );
4418 DestroyWindow(hwnd);
4420 expected_cx = 0x7fffffff;
4421 expected_cy = 0x7fffffff;
4422 SetRect( &expected_rect, 20, 10, 0x7fffffff, 0x7fffffff );
4423 SetRect( &broken_rect, 20, 10, 0x7fffffffU + 20, 0x7fffffffU + 10 );
4424 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 20, 10, 0x7fffffff, 0x7fffffff, parent, 0, 0, NULL);
4425 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4426 GetClientRect( hwnd, &rc );
4427 ok( rc.right == 0x7fffffff - 20 || broken(rc.right == 0), "invalid rect right %u\n", rc.right );
4428 ok( rc.bottom == 0x7fffffff - 10 || broken(rc.bottom == 0), "invalid rect bottom %u\n", rc.bottom );
4429 DestroyWindow(hwnd);
4431 /* top level window */
4432 expected_cx = expected_cy = 200000;
4433 SetRect( &expected_rect, 0, 0, GetSystemMetrics(SM_CXMAXTRACK), GetSystemMetrics(SM_CYMAXTRACK) );
4434 hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_OVERLAPPEDWINDOW, 300000, 300000, 200000, 200000, 0, 0, 0, NULL);
4435 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4436 GetClientRect( hwnd, &rc );
4437 ok( rc.right <= expected_cx, "invalid rect right %u\n", rc.right );
4438 ok( rc.bottom <= expected_cy, "invalid rect bottom %u\n", rc.bottom );
4439 DestroyWindow(hwnd);
4441 DestroyWindow(parent);
4443 UnregisterClass("MinMax_WndClass", GetModuleHandle(0));
4444 UnregisterClass("Sizes_WndClass", GetModuleHandle(0));
4446 #undef expect_gle_broken_9x
4449 #undef expect_ex_style
4452 /* function that remembers whether the system the test is running on sets the
4453 * last error for user32 functions to make the tests stricter */
4454 static int check_error(DWORD actual, DWORD expected)
4456 static int sets_last_error = -1;
4457 if (sets_last_error == -1)
4458 sets_last_error = (actual != 0xdeadbeef);
4459 return (!sets_last_error && (actual == 0xdeadbeef)) || (actual == expected);
4462 static void test_SetWindowLong(void)
4465 WNDPROC old_window_procW;
4467 SetLastError(0xdeadbeef);
4468 retval = SetWindowLongPtr(NULL, GWLP_WNDPROC, 0);
4469 ok(!retval, "SetWindowLongPtr on invalid window handle should have returned 0 instead of 0x%lx\n", retval);
4470 ok(check_error(GetLastError(), ERROR_INVALID_WINDOW_HANDLE),
4471 "SetWindowLongPtr should have set error to ERROR_INVALID_WINDOW_HANDLE instad of %d\n", GetLastError());
4473 SetLastError(0xdeadbeef);
4474 retval = SetWindowLongPtr(hwndMain, 0xdeadbeef, 0);
4475 ok(!retval, "SetWindowLongPtr on invalid index should have returned 0 instead of 0x%lx\n", retval);
4476 ok(check_error(GetLastError(), ERROR_INVALID_INDEX),
4477 "SetWindowLongPtr should have set error to ERROR_INVALID_INDEX instad of %d\n", GetLastError());
4479 SetLastError(0xdeadbeef);
4480 retval = SetWindowLongPtr(hwndMain, GWLP_WNDPROC, 0);
4481 ok((WNDPROC)retval == main_window_procA || broken(!retval), /* win9x */
4482 "SetWindowLongPtr on invalid window proc should have returned address of main_window_procA instead of 0x%lx\n", retval);
4483 ok(GetLastError() == 0xdeadbeef, "SetWindowLongPtr shouldn't have set the last error, instead of setting it to %d\n", GetLastError());
4484 retval = GetWindowLongPtr(hwndMain, GWLP_WNDPROC);
4485 ok((WNDPROC)retval == main_window_procA,
4486 "SetWindowLongPtr on invalid window proc shouldn't have changed the value returned by GetWindowLongPtr, instead of changing it to 0x%lx\n", retval);
4487 ok(!IsWindowUnicode(hwndMain), "hwndMain shouldn't be Unicode\n");
4489 old_window_procW = (WNDPROC)GetWindowLongPtrW(hwndMain, GWLP_WNDPROC);
4490 SetLastError(0xdeadbeef);
4491 retval = SetWindowLongPtrW(hwndMain, GWLP_WNDPROC, 0);
4492 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
4494 ok(GetLastError() == 0xdeadbeef, "SetWindowLongPtr shouldn't have set the last error, instead of setting it to %d\n", GetLastError());
4495 ok(retval != 0, "SetWindowLongPtr error %d\n", GetLastError());
4496 ok((WNDPROC)retval == old_window_procW,
4497 "SetWindowLongPtr on invalid window proc shouldn't have changed the value returned by GetWindowLongPtr, instead of changing it to 0x%lx\n", retval);
4498 ok(IsWindowUnicode(hwndMain), "hwndMain should now be Unicode\n");
4500 /* set it back to ANSI */
4501 SetWindowLongPtr(hwndMain, GWLP_WNDPROC, 0);
4505 static void test_ShowWindow(void)
4512 SetRect(&rcMain, 120, 120, 210, 210);
4514 hwnd = CreateWindowEx(0, "MainWindowClass", NULL,
4515 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
4516 WS_MAXIMIZEBOX | WS_POPUP,
4517 rcMain.left, rcMain.top,
4518 rcMain.right - rcMain.left, rcMain.bottom - rcMain.top,
4522 style = GetWindowLong(hwnd, GWL_STYLE);
4523 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4524 ok(!(style & WS_VISIBLE), "window should not be visible\n");
4525 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4526 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4527 GetWindowRect(hwnd, &rc);
4528 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4529 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4530 rc.left, rc.top, rc.right, rc.bottom);
4532 ret = ShowWindow(hwnd, SW_SHOW);
4533 ok(!ret, "not expected ret: %lu\n", ret);
4534 style = GetWindowLong(hwnd, GWL_STYLE);
4535 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4536 ok(style & WS_VISIBLE, "window should be visible\n");
4537 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4538 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4539 GetWindowRect(hwnd, &rc);
4540 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4541 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4542 rc.left, rc.top, rc.right, rc.bottom);
4544 ret = ShowWindow(hwnd, SW_MINIMIZE);
4545 ok(ret, "not expected ret: %lu\n", ret);
4546 style = GetWindowLong(hwnd, GWL_STYLE);
4547 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4548 ok(style & WS_VISIBLE, "window should be visible\n");
4549 ok(style & WS_MINIMIZE, "window should be minimized\n");
4550 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4551 GetWindowRect(hwnd, &rc);
4552 ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
4554 ShowWindow(hwnd, SW_RESTORE);
4555 ok(ret, "not expected ret: %lu\n", ret);
4556 style = GetWindowLong(hwnd, GWL_STYLE);
4557 ok(!(style & WS_DISABLED), "window should not be disabled\n");
4558 ok(style & WS_VISIBLE, "window should be visible\n");
4559 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4560 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4561 GetWindowRect(hwnd, &rc);
4562 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4563 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4564 rc.left, rc.top, rc.right, rc.bottom);
4566 ret = EnableWindow(hwnd, FALSE);
4567 ok(!ret, "not expected ret: %lu\n", ret);
4568 style = GetWindowLong(hwnd, GWL_STYLE);
4569 ok(style & WS_DISABLED, "window should be disabled\n");
4571 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_MINIMIZE, 0);
4572 ok(!ret, "not expected ret: %lu\n", ret);
4573 style = GetWindowLong(hwnd, GWL_STYLE);
4574 ok(style & WS_DISABLED, "window should be disabled\n");
4575 ok(style & WS_VISIBLE, "window should be visible\n");
4576 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4577 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4578 GetWindowRect(hwnd, &rc);
4579 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4580 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4581 rc.left, rc.top, rc.right, rc.bottom);
4583 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_MAXIMIZE, 0);
4584 ok(!ret, "not expected ret: %lu\n", ret);
4585 style = GetWindowLong(hwnd, GWL_STYLE);
4586 ok(style & WS_DISABLED, "window should be disabled\n");
4587 ok(style & WS_VISIBLE, "window should be visible\n");
4588 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4589 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4590 GetWindowRect(hwnd, &rc);
4591 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4592 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4593 rc.left, rc.top, rc.right, rc.bottom);
4595 ret = ShowWindow(hwnd, SW_MINIMIZE);
4596 ok(ret, "not expected ret: %lu\n", ret);
4597 style = GetWindowLong(hwnd, GWL_STYLE);
4598 ok(style & WS_DISABLED, "window should be disabled\n");
4599 ok(style & WS_VISIBLE, "window should be visible\n");
4600 ok(style & WS_MINIMIZE, "window should be minimized\n");
4601 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4602 GetWindowRect(hwnd, &rc);
4603 ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
4605 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
4606 ok(!ret, "not expected ret: %lu\n", ret);
4607 style = GetWindowLong(hwnd, GWL_STYLE);
4608 ok(style & WS_DISABLED, "window should be disabled\n");
4609 ok(style & WS_VISIBLE, "window should be visible\n");
4610 ok(style & WS_MINIMIZE, "window should be minimized\n");
4611 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4612 GetWindowRect(hwnd, &rc);
4613 ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
4615 ret = ShowWindow(hwnd, SW_RESTORE);
4616 ok(ret, "not expected ret: %lu\n", ret);
4617 style = GetWindowLong(hwnd, GWL_STYLE);
4618 ok(style & WS_DISABLED, "window should be disabled\n");
4619 ok(style & WS_VISIBLE, "window should be visible\n");
4620 ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
4621 ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
4622 GetWindowRect(hwnd, &rc);
4623 ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
4624 rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
4625 rc.left, rc.top, rc.right, rc.bottom);
4627 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0);
4628 ok(!ret, "not expected ret: %lu\n", ret);
4629 ok(IsWindow(hwnd), "window should exist\n");
4631 ret = EnableWindow(hwnd, TRUE);
4632 ok(ret, "not expected ret: %lu\n", ret);
4634 ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0);
4635 ok(!ret, "not expected ret: %lu\n", ret);
4636 ok(!IsWindow(hwnd), "window should not exist\n");
4639 static void test_gettext(void)
4642 LPCSTR clsname = "gettexttest";
4646 memset( &cls, 0, sizeof cls );
4647 cls.lpfnWndProc = DefWindowProc;
4648 cls.lpszClassName = clsname;
4649 cls.hInstance = GetModuleHandle(NULL);
4651 if (!RegisterClass( &cls )) return;
4653 hwnd = CreateWindow( clsname, "test text", WS_OVERLAPPED, 0, 0, 10, 10, 0, NULL, NULL, NULL);
4654 ok( hwnd != NULL, "window was null\n");
4656 r = SendMessage( hwnd, WM_GETTEXT, 0x10, 0x1000);
4657 ok( r == 0, "settext should return zero\n");
4659 r = SendMessage( hwnd, WM_GETTEXT, 0x10000, 0);
4660 ok( r == 0, "settext should return zero (%ld)\n", r);
4662 r = SendMessage( hwnd, WM_GETTEXT, 0xff000000, 0x1000);
4663 ok( r == 0, "settext should return zero (%ld)\n", r);
4665 r = SendMessage( hwnd, WM_GETTEXT, 0x1000, 0xff000000);
4666 ok( r == 0, "settext should return zero (%ld)\n", r);
4668 DestroyWindow(hwnd);
4669 UnregisterClass( clsname, NULL );
4673 static void test_GetUpdateRect(void)
4676 BOOL ret, parent_wm_paint, grandparent_wm_paint;
4678 HWND hgrandparent, hparent, hchild;
4680 static const char classNameA[] = "GetUpdateRectClass";
4682 hgrandparent = CreateWindowA("static", "grandparent", WS_OVERLAPPEDWINDOW,
4683 0, 0, 100, 100, NULL, NULL, 0, NULL);
4685 hparent = CreateWindowA("static", "parent", WS_CHILD|WS_VISIBLE,
4686 0, 0, 100, 100, hgrandparent, NULL, 0, NULL);
4688 hchild = CreateWindowA("static", "child", WS_CHILD|WS_VISIBLE,
4689 10, 10, 30, 30, hparent, NULL, 0, NULL);
4691 ShowWindow(hgrandparent, SW_SHOW);
4692 UpdateWindow(hgrandparent);
4693 flush_events( TRUE );
4695 ShowWindow(hchild, SW_HIDE);
4696 SetRect(&rc2, 0, 0, 0, 0);
4697 ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
4698 ok(!ret, "GetUpdateRect returned not empty region\n");
4699 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4700 rc1.left, rc1.top, rc1.right, rc1.bottom,
4701 rc2.left, rc2.top, rc2.right, rc2.bottom);
4703 SetRect(&rc2, 10, 10, 40, 40);
4704 ret = GetUpdateRect(hparent, &rc1, FALSE);
4705 ok(ret, "GetUpdateRect returned empty region\n");
4706 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4707 rc1.left, rc1.top, rc1.right, rc1.bottom,
4708 rc2.left, rc2.top, rc2.right, rc2.bottom);
4710 parent_wm_paint = FALSE;
4711 grandparent_wm_paint = FALSE;
4712 while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
4714 if (msg.message == WM_PAINT)
4716 if (msg.hwnd == hgrandparent) grandparent_wm_paint = TRUE;
4717 if (msg.hwnd == hparent) parent_wm_paint = TRUE;
4719 DispatchMessage(&msg);
4721 ok(parent_wm_paint, "WM_PAINT should have been received in parent\n");
4722 ok(!grandparent_wm_paint, "WM_PAINT should NOT have been received in grandparent\n");
4724 DestroyWindow(hgrandparent);
4727 cls.lpfnWndProc = DefWindowProcA;
4730 cls.hInstance = GetModuleHandleA(0);
4732 cls.hCursor = LoadCursorA(0, IDC_ARROW);
4733 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4734 cls.lpszMenuName = NULL;
4735 cls.lpszClassName = classNameA;
4737 if(!RegisterClassA(&cls)) {
4738 trace("Register failed %d\n", GetLastError());
4742 hgrandparent = CreateWindowA(classNameA, "grandparent", WS_OVERLAPPEDWINDOW,
4743 0, 0, 100, 100, NULL, NULL, 0, NULL);
4745 hparent = CreateWindowA(classNameA, "parent", WS_CHILD|WS_VISIBLE,
4746 0, 0, 100, 100, hgrandparent, NULL, 0, NULL);
4748 hchild = CreateWindowA(classNameA, "child", WS_CHILD|WS_VISIBLE,
4749 10, 10, 30, 30, hparent, NULL, 0, NULL);
4751 ShowWindow(hgrandparent, SW_SHOW);
4752 UpdateWindow(hgrandparent);
4753 flush_events( TRUE );
4755 ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
4756 ok(!ret, "GetUpdateRect returned not empty region\n");
4758 ShowWindow(hchild, SW_HIDE);
4760 SetRect(&rc2, 0, 0, 0, 0);
4761 ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
4762 ok(!ret, "GetUpdateRect returned not empty region\n");
4763 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4764 rc1.left, rc1.top, rc1.right, rc1.bottom,
4765 rc2.left, rc2.top, rc2.right, rc2.bottom);
4767 SetRect(&rc2, 10, 10, 40, 40);
4768 ret = GetUpdateRect(hparent, &rc1, FALSE);
4769 ok(ret, "GetUpdateRect returned empty region\n");
4770 ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
4771 rc1.left, rc1.top, rc1.right, rc1.bottom,
4772 rc2.left, rc2.top, rc2.right, rc2.bottom);
4774 parent_wm_paint = FALSE;
4775 grandparent_wm_paint = FALSE;
4776 while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
4778 if (msg.message == WM_PAINT)
4780 if (msg.hwnd == hgrandparent) grandparent_wm_paint = TRUE;
4781 if (msg.hwnd == hparent) parent_wm_paint = TRUE;
4783 DispatchMessage(&msg);
4785 ok(parent_wm_paint, "WM_PAINT should have been received in parent\n");
4786 ok(!grandparent_wm_paint, "WM_PAINT should NOT have been received in grandparent\n");
4788 DestroyWindow(hgrandparent);
4792 static LRESULT CALLBACK TestExposedRegion_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
4800 const int waitTime = 2000;
4802 BeginPaint(hwnd, &ps);
4804 /* create and destroy window to create an exposed region on this window */
4805 win = CreateWindowA("static", "win", WS_VISIBLE,
4806 10,10,50,50, NULL, NULL, 0, NULL);
4809 waitResult = MsgWaitForMultipleObjects( 0, NULL, FALSE, waitTime, QS_PAINT );
4811 ValidateRect(hwnd, NULL);
4812 EndPaint(hwnd, &ps);
4814 if(waitResult != WAIT_TIMEOUT)
4816 GetUpdateRect(hwnd, &updateRect, FALSE);
4817 ok(IsRectEmpty(&updateRect), "Exposed rect should be empty\n");
4822 return DefWindowProc(hwnd, msg, wParam, lParam);
4825 static void test_Expose(void)
4830 memset(&cls, 0, sizeof(WNDCLASSA));
4831 cls.lpfnWndProc = TestExposedRegion_WndProc;
4832 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4833 cls.lpszClassName = "TestExposeClass";
4834 atom = RegisterClassA(&cls);
4836 mw = CreateWindowA("TestExposeClass", "MainWindow", WS_VISIBLE|WS_OVERLAPPEDWINDOW,
4837 0, 0, 200, 100, NULL, NULL, 0, NULL);
4843 static void test_GetWindowModuleFileName(void)
4848 char buf1[MAX_PATH], buf2[MAX_PATH];
4850 if (!pGetWindowModuleFileNameA)
4852 skip("GetWindowModuleFileNameA is not available\n");
4856 hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0,0,0,0, 0, 0, 0, NULL);
4859 hinst = (HINSTANCE)GetWindowLongPtr(hwnd, GWLP_HINSTANCE);
4860 ok(hinst == 0 || broken(hinst == GetModuleHandle(0)), /* win9x */ "expected 0, got %p\n", hinst);
4863 SetLastError(0xdeadbeef);
4864 ret1 = GetModuleFileName(hinst, buf1, sizeof(buf1));
4865 ok(ret1, "GetModuleFileName error %u\n", GetLastError());
4868 SetLastError(0xdeadbeef);
4869 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, sizeof(buf2));
4870 ok(ret2 || broken(!ret2), /* nt4 sp 3 */
4871 "GetWindowModuleFileNameA error %u\n", GetLastError());
4875 ok(ret1 == ret2 || broken(ret2 == ret1 + 1), /* win98 */ "%u != %u\n", ret1, ret2);
4876 ok(!strcmp(buf1, buf2), "%s != %s\n", buf1, buf2);
4878 hinst = GetModuleHandle(0);
4880 SetLastError(0xdeadbeef);
4881 ret2 = GetModuleFileName(hinst, buf2, ret1 - 2);
4882 ok(ret2 == ret1 - 2 || broken(ret2 == ret1 - 3), /* win98 */
4883 "expected %u, got %u\n", ret1 - 2, ret2);
4884 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4885 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4886 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4888 SetLastError(0xdeadbeef);
4889 ret2 = GetModuleFileName(hinst, buf2, 0);
4890 ok(!ret2, "GetModuleFileName should return 0\n");
4891 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4892 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4893 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4895 SetLastError(0xdeadbeef);
4896 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, ret1 - 2);
4897 ok(ret2 == ret1 - 2 || broken(ret2 == ret1 - 3) /* win98 */ || broken(!ret2), /* nt4 sp3 */
4898 "expected %u, got %u\n", ret1 - 2, ret2);
4899 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4900 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4901 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4903 SetLastError(0xdeadbeef);
4904 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, 0);
4905 ok(!ret2, "expected 0, got %u\n", ret2);
4906 ok(GetLastError() == 0xdeadbeef /* XP */ ||
4907 GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
4908 "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
4910 DestroyWindow(hwnd);
4913 hwnd = (HWND)0xdeadbeef;
4914 SetLastError(0xdeadbeef);
4915 ret1 = pGetWindowModuleFileNameA(hwnd, buf1, sizeof(buf1));
4916 ok(!ret1, "expected 0, got %u\n", ret1);
4917 ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE || broken(GetLastError() == 0xdeadbeef), /* win9x */
4918 "expected ERROR_INVALID_WINDOW_HANDLE, got %u\n", GetLastError());
4920 hwnd = FindWindow("Shell_TrayWnd", NULL);
4921 ok(IsWindow(hwnd) || broken(!hwnd), "got invalid tray window %p\n", hwnd);
4922 SetLastError(0xdeadbeef);
4923 ret1 = pGetWindowModuleFileNameA(hwnd, buf1, sizeof(buf1));
4924 ok(!ret1 || broken(ret1), /* win98 */ "expected 0, got %u\n", ret1);
4926 if (!ret1) /* inter-process GetWindowModuleFileName works on win9x, so don't test the desktop there */
4928 ret1 = GetModuleFileName(0, buf1, sizeof(buf1));
4929 hwnd = GetDesktopWindow();
4930 ok(IsWindow(hwnd), "got invalid desktop window %p\n", hwnd);
4931 SetLastError(0xdeadbeef);
4932 ret2 = pGetWindowModuleFileNameA(hwnd, buf2, sizeof(buf2));
4933 ok(!ret2 || ret1 == ret2 /* vista */, "expected 0 or %u, got %u %s\n", ret1, ret2, buf2);
4937 static void test_hwnd_message(void)
4939 static const WCHAR mainwindowclassW[] = {'M','a','i','n','W','i','n','d','o','w','C','l','a','s','s',0};
4940 static const WCHAR message_windowW[] = {'m','e','s','s','a','g','e',' ','w','i','n','d','o','w',0};
4942 HWND parent = 0, hwnd, found;
4945 /* HWND_MESSAGE is not supported below w2k, but win9x return != 0
4946 on CreateWindowExA and crash later in the test.
4947 Use UNICODE here to fail on win9x */
4948 hwnd = CreateWindowExW(0, mainwindowclassW, message_windowW, WS_CAPTION | WS_VISIBLE,
4949 100, 100, 200, 200, HWND_MESSAGE, 0, 0, NULL);
4952 win_skip("CreateWindowExW with parent HWND_MESSAGE failed\n");
4956 ok( !GetParent(hwnd), "GetParent should return 0 for message only windows\n" );
4960 HWND root, desktop = GetDesktopWindow();
4962 parent = pGetAncestor(hwnd, GA_PARENT);
4963 ok(parent != 0, "GetAncestor(GA_PARENT) should not return 0 for message windows\n");
4964 ok(parent != desktop, "GetAncestor(GA_PARENT) should not return desktop for message windows\n");
4965 root = pGetAncestor(hwnd, GA_ROOT);
4966 ok(root == hwnd, "GetAncestor(GA_ROOT) should return hwnd for message windows\n");
4967 ok( !pGetAncestor(parent, GA_PARENT) || broken(pGetAncestor(parent, GA_PARENT) != 0), /* win2k */
4968 "parent shouldn't have parent %p\n", pGetAncestor(parent, GA_PARENT) );
4969 trace("parent %p root %p desktop %p\n", parent, root, desktop);
4970 if (!GetClassNameA( parent, buffer, sizeof(buffer) )) buffer[0] = 0;
4971 ok( !lstrcmpi( buffer, "Message" ), "wrong parent class '%s'\n", buffer );
4972 GetWindowRect( parent, &rect );
4973 ok( rect.left == 0 && rect.right == 100 && rect.top == 0 && rect.bottom == 100,
4974 "wrong parent rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4976 GetWindowRect( hwnd, &rect );
4977 ok( rect.left == 100 && rect.right == 300 && rect.top == 100 && rect.bottom == 300,
4978 "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4980 /* test FindWindow behavior */
4982 found = FindWindowExA( 0, 0, 0, "message window" );
4983 ok( found == hwnd, "didn't find message window %p/%p\n", found, hwnd );
4984 SetLastError(0xdeadbeef);
4985 found = FindWindowExA( GetDesktopWindow(), 0, 0, "message window" );
4986 ok( found == 0, "found message window %p/%p\n", found, hwnd );
4987 ok( GetLastError() == 0xdeadbeef, "expected deadbeef, got %d\n", GetLastError() );
4990 found = FindWindowExA( parent, 0, 0, "message window" );
4991 ok( found == hwnd, "didn't find message window %p/%p\n", found, hwnd );
4994 /* test IsChild behavior */
4996 if (parent) ok( !IsChild( parent, hwnd ), "HWND_MESSAGE is child of top window\n" );
4998 /* test IsWindowVisible behavior */
5000 ok( !IsWindowVisible( hwnd ), "HWND_MESSAGE window is visible\n" );
5001 if (parent) ok( !IsWindowVisible( parent ), "HWND_MESSAGE parent is visible\n" );
5003 DestroyWindow(hwnd);
5006 static void test_layered_window(void)
5014 if (!pGetLayeredWindowAttributes || !pSetLayeredWindowAttributes)
5016 win_skip( "layered windows not supported\n" );
5019 hwnd = CreateWindowExA(0, "MainWindowClass", "message window", WS_CAPTION,
5020 100, 100, 200, 200, 0, 0, 0, NULL);
5022 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5023 ok( !ret, "GetLayeredWindowAttributes should fail on non-layered window\n" );
5024 ret = pSetLayeredWindowAttributes( hwnd, 0, 0, LWA_ALPHA );
5025 ok( !ret, "SetLayeredWindowAttributes should fail on non-layered window\n" );
5026 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5027 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5028 ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5029 ret = pSetLayeredWindowAttributes( hwnd, 0x123456, 44, LWA_ALPHA );
5030 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5031 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5032 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5033 ok( key == 0x123456 || key == 0, "wrong color key %x\n", key );
5034 ok( alpha == 44, "wrong alpha %u\n", alpha );
5035 ok( flags == LWA_ALPHA, "wrong flags %x\n", flags );
5037 /* clearing WS_EX_LAYERED resets attributes */
5038 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED );
5039 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5040 ok( !ret, "GetLayeredWindowAttributes should fail on no longer layered window\n" );
5041 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5042 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5043 ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5044 ret = pSetLayeredWindowAttributes( hwnd, 0x654321, 22, LWA_COLORKEY | LWA_ALPHA );
5045 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5046 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5047 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5048 ok( key == 0x654321, "wrong color key %x\n", key );
5049 ok( alpha == 22, "wrong alpha %u\n", alpha );
5050 ok( flags == (LWA_COLORKEY | LWA_ALPHA), "wrong flags %x\n", flags );
5052 ret = pSetLayeredWindowAttributes( hwnd, 0x888888, 33, LWA_COLORKEY );
5053 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5055 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5056 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5057 ok( key == 0x888888, "wrong color key %x\n", key );
5058 /* alpha not changed on vista if LWA_ALPHA is not set */
5059 ok( alpha == 22 || alpha == 33, "wrong alpha %u\n", alpha );
5060 ok( flags == LWA_COLORKEY, "wrong flags %x\n", flags );
5062 /* color key may or may not be changed without LWA_COLORKEY */
5063 ret = pSetLayeredWindowAttributes( hwnd, 0x999999, 44, 0 );
5064 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5066 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5067 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5068 ok( key == 0x888888 || key == 0x999999, "wrong color key %x\n", key );
5069 ok( alpha == 22 || alpha == 44, "wrong alpha %u\n", alpha );
5070 ok( flags == 0, "wrong flags %x\n", flags );
5072 /* default alpha and color key is 0 */
5073 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED );
5074 SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5075 ret = pSetLayeredWindowAttributes( hwnd, 0x222222, 55, 0 );
5076 ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5077 ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5078 ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5079 ok( key == 0 || key == 0x222222, "wrong color key %x\n", key );
5080 ok( alpha == 0 || alpha == 55, "wrong alpha %u\n", alpha );
5081 ok( flags == 0, "wrong flags %x\n", flags );
5083 DestroyWindow( hwnd );
5086 static MONITORINFO mi;
5088 static LRESULT CALLBACK fullscreen_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
5094 CREATESTRUCTA *cs = (CREATESTRUCTA *)lp;
5095 trace("WM_NCCREATE: rect %d,%d-%d,%d\n", cs->x, cs->y, cs->cx, cs->cy);
5096 ok(cs->x == mi.rcMonitor.left && cs->y == mi.rcMonitor.top &&
5097 cs->cx == mi.rcMonitor.right && cs->cy == mi.rcMonitor.bottom,
5098 "expected %d,%d-%d,%d, got %d,%d-%d,%d\n",
5099 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5100 cs->x, cs->y, cs->cx, cs->cy);
5103 case WM_GETMINMAXINFO:
5105 MINMAXINFO *minmax = (MINMAXINFO *)lp;
5106 dump_minmax_info(minmax);
5107 ok(minmax->ptMaxPosition.x <= mi.rcMonitor.left, "%d <= %d\n", minmax->ptMaxPosition.x, mi.rcMonitor.left);
5108 ok(minmax->ptMaxPosition.y <= mi.rcMonitor.top, "%d <= %d\n", minmax->ptMaxPosition.y, mi.rcMonitor.top);
5109 ok(minmax->ptMaxSize.x >= mi.rcMonitor.right, "%d >= %d\n", minmax->ptMaxSize.x, mi.rcMonitor.right);
5110 ok(minmax->ptMaxSize.y >= mi.rcMonitor.bottom, "%d >= %d\n", minmax->ptMaxSize.y, mi.rcMonitor.bottom);
5114 return DefWindowProc(hwnd, msg, wp, lp);
5117 static void test_fullscreen(void)
5119 static const DWORD t_style[] = {
5120 WS_OVERLAPPED, WS_POPUP, WS_CHILD, WS_THICKFRAME, WS_DLGFRAME
5122 static const DWORD t_ex_style[] = {
5123 0, WS_EX_APPWINDOW, WS_EX_TOOLWINDOW
5133 if (!pGetMonitorInfoA || !pMonitorFromPoint)
5135 win_skip("GetMonitorInfoA or MonitorFromPoint are not available on this platform\n");
5140 SetLastError(0xdeadbeef);
5141 hmon = pMonitorFromPoint(pt, MONITOR_DEFAULTTOPRIMARY);
5142 ok(hmon != 0, "MonitorFromPoint error %u\n", GetLastError());
5144 mi.cbSize = sizeof(mi);
5145 SetLastError(0xdeadbeef);
5146 ret = pGetMonitorInfoA(hmon, &mi);
5147 ok(ret, "GetMonitorInfo error %u\n", GetLastError());
5148 trace("monitor (%d,%d-%d,%d), work (%d,%d-%d,%d)\n",
5149 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5150 mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
5153 cls.lpfnWndProc = fullscreen_wnd_proc;
5156 cls.hInstance = GetModuleHandle(0);
5158 cls.hCursor = LoadCursorA(0, IDC_ARROW);
5159 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5160 cls.lpszMenuName = NULL;
5161 cls.lpszClassName = "fullscreen_class";
5162 RegisterClass(&cls);
5164 for (i = 0; i < sizeof(t_style)/sizeof(t_style[0]); i++)
5166 DWORD style, ex_style;
5168 /* avoid a WM interaction */
5169 assert(!(t_style[i] & WS_VISIBLE));
5171 for (j = 0; j < sizeof(t_ex_style)/sizeof(t_ex_style[0]); j++)
5176 ex_style = t_ex_style[j];
5178 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5179 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5180 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5181 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5182 GetWindowRect(hwnd, &rc);
5183 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5184 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5185 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5186 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5187 DestroyWindow(hwnd);
5189 style = t_style[i] | WS_MAXIMIZE;
5190 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5191 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5192 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5193 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5194 GetWindowRect(hwnd, &rc);
5195 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5196 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5197 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5198 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5199 DestroyWindow(hwnd);
5201 style = t_style[i] | WS_MAXIMIZE | WS_CAPTION;
5202 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5203 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5204 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5205 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5206 GetWindowRect(hwnd, &rc);
5207 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5208 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5209 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5210 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5211 DestroyWindow(hwnd);
5213 style = t_style[i] | WS_CAPTION | WS_MAXIMIZEBOX;
5214 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5215 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5216 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5217 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5218 GetWindowRect(hwnd, &rc);
5219 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5220 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5221 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5222 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5223 DestroyWindow(hwnd);
5225 style = t_style[i] | WS_MAXIMIZE | WS_CAPTION | WS_MAXIMIZEBOX;
5226 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5227 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5228 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5229 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5230 GetWindowRect(hwnd, &rc);
5231 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5232 /* Windows makes a maximized window slightly larger (to hide the borders?) */
5233 fixup = min(abs(rc.left), abs(rc.top));
5234 InflateRect(&rc, -fixup, -fixup);
5235 ok(rc.left >= mi.rcWork.left && rc.top <= mi.rcWork.top &&
5236 rc.right <= mi.rcWork.right && rc.bottom <= mi.rcWork.bottom,
5237 "%#x/%#x: window rect %d,%d-%d,%d must be in %d,%d-%d,%d\n",
5238 ex_style, style, rc.left, rc.top, rc.right, rc.bottom,
5239 mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
5240 DestroyWindow(hwnd);
5242 style = t_style[i] | WS_MAXIMIZE | WS_MAXIMIZEBOX;
5243 hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5244 mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5245 GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5246 ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5247 GetWindowRect(hwnd, &rc);
5248 trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5249 /* Windows makes a maximized window slightly larger (to hide the borders?) */
5250 fixup = min(abs(rc.left), abs(rc.top));
5251 InflateRect(&rc, -fixup, -fixup);
5252 if (style & (WS_CHILD | WS_POPUP))
5253 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5254 rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5255 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5257 ok(rc.left >= mi.rcWork.left && rc.top <= mi.rcWork.top &&
5258 rc.right <= mi.rcWork.right && rc.bottom <= mi.rcWork.bottom,
5259 "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5260 DestroyWindow(hwnd);
5264 UnregisterClass("fullscreen_class", GetModuleHandle(0));
5267 static BOOL test_thick_child_got_minmax;
5268 static const char * test_thick_child_name;
5269 static LONG test_thick_child_style;
5270 static LONG test_thick_child_exStyle;
5272 static LRESULT WINAPI test_thick_child_size_winproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
5275 int expectedMinTrackX;
5276 int expectedMinTrackY;
5277 int actualMinTrackX;
5278 int actualMinTrackY;
5279 int expectedMaxTrackX;
5280 int expectedMaxTrackY;
5281 int actualMaxTrackX;
5282 int actualMaxTrackY;
5283 int expectedMaxSizeX;
5284 int expectedMaxSizeY;
5295 case WM_GETMINMAXINFO:
5297 minmax = (MINMAXINFO *)lparam;
5298 trace("hwnd %p, WM_GETMINMAXINFO, %08lx, %08lx\n", hwnd, wparam, lparam);
5299 dump_minmax_info( minmax );
5301 test_thick_child_got_minmax = TRUE;
5304 adjustedStyle = test_thick_child_style;
5305 if ((adjustedStyle & WS_CAPTION) == WS_CAPTION)
5306 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
5307 GetClientRect(GetParent(hwnd), &rect);
5308 AdjustWindowRectEx(&rect, adjustedStyle, FALSE, test_thick_child_exStyle);
5310 if (test_thick_child_style & (WS_DLGFRAME | WS_BORDER))
5312 expectedMinTrackX = GetSystemMetrics(SM_CXMINTRACK);
5313 expectedMinTrackY = GetSystemMetrics(SM_CYMINTRACK);
5317 expectedMinTrackX = -2 * rect.left;
5318 expectedMinTrackY = -2 * rect.top;
5320 actualMinTrackX = minmax->ptMinTrackSize.x;
5321 actualMinTrackY = minmax->ptMinTrackSize.y;
5323 ok(actualMinTrackX == expectedMinTrackX && actualMinTrackY == expectedMinTrackY,
5324 "expected minTrack %dx%d, actual minTrack %dx%d for %s\n",
5325 expectedMinTrackX, expectedMinTrackY, actualMinTrackX, actualMinTrackY,
5326 test_thick_child_name);
5328 actualMaxTrackX = minmax->ptMaxTrackSize.x;
5329 actualMaxTrackY = minmax->ptMaxTrackSize.y;
5330 expectedMaxTrackX = GetSystemMetrics(SM_CXMAXTRACK);
5331 expectedMaxTrackY = GetSystemMetrics(SM_CYMAXTRACK);
5332 ok(actualMaxTrackX == expectedMaxTrackX && actualMaxTrackY == expectedMaxTrackY,
5333 "expected maxTrack %dx%d, actual maxTrack %dx%d for %s\n",
5334 expectedMaxTrackX, expectedMaxTrackY, actualMaxTrackX, actualMaxTrackY,
5335 test_thick_child_name);
5337 expectedMaxSizeX = rect.right - rect.left;
5338 expectedMaxSizeY = rect.bottom - rect.top;
5339 actualMaxSizeX = minmax->ptMaxSize.x;
5340 actualMaxSizeY = minmax->ptMaxSize.y;
5342 ok(actualMaxSizeX == expectedMaxSizeX && actualMaxSizeY == expectedMaxSizeY,
5343 "expected maxSize %dx%d, actual maxSize %dx%d for %s\n",
5344 expectedMaxSizeX, expectedMaxSizeY, actualMaxSizeX, actualMaxSizeY,
5345 test_thick_child_name);
5348 expectedPosX = rect.left;
5349 expectedPosY = rect.top;
5350 actualPosX = minmax->ptMaxPosition.x;
5351 actualPosY = minmax->ptMaxPosition.y;
5352 ok(actualPosX == expectedPosX && actualPosY == expectedPosY,
5353 "expected maxPosition (%d/%d), actual maxPosition (%d/%d) for %s\n",
5354 expectedPosX, expectedPosY, actualPosX, actualPosY, test_thick_child_name);
5360 return DefWindowProcA(hwnd, msg, wparam, lparam);
5363 #define NUMBER_OF_THICK_CHILD_TESTS 16
5364 static void test_thick_child_size(HWND parentWindow)
5368 RECT adjustedParentRect;
5373 LONG expectedHeight;
5375 LPCTSTR className = "THICK_CHILD_CLASS";
5378 static const LONG styles[NUMBER_OF_THICK_CHILD_TESTS] = {
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,
5391 WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
5392 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
5393 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
5394 WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
5397 static const LONG exStyles[NUMBER_OF_THICK_CHILD_TESTS] = {
5402 WS_EX_DLGMODALFRAME,
5403 WS_EX_DLGMODALFRAME,
5404 WS_EX_DLGMODALFRAME,
5405 WS_EX_DLGMODALFRAME,
5410 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5411 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5412 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5413 WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
5415 static const char *styleName[NUMBER_OF_THICK_CHILD_TESTS] = {
5416 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME",
5417 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME",
5418 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER",
5419 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER",
5420 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME, exstyle= WS_EX_DLGMODALFRAME",
5421 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_DLGMODALFRAME",
5422 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_DLGMODALFRAME",
5423 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_DLGMODALFRAME",
5424 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME exstyle= WS_EX_STATICEDGE",
5425 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_STATICEDGE",
5426 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE",
5427 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE",
5428 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME, exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5429 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5430 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5431 "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
5435 cls.lpfnWndProc = test_thick_child_size_winproc;
5438 cls.hInstance = GetModuleHandleA(0);
5440 cls.hCursor = LoadCursorA(0, IDC_ARROW);
5441 cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5442 cls.lpszMenuName = NULL;
5443 cls.lpszClassName = className;
5444 SetLastError(0xdeadbeef);
5445 ok(RegisterClassA(&cls),"RegisterClassA failed, error: %u\n", GetLastError());
5447 for(i = 0; i < NUMBER_OF_THICK_CHILD_TESTS; i++)
5449 test_thick_child_name = styleName[i];
5450 test_thick_child_style = styles[i];
5451 test_thick_child_exStyle = exStyles[i];
5452 test_thick_child_got_minmax = FALSE;
5454 SetLastError(0xdeadbeef);
5455 childWindow = CreateWindowEx( exStyles[i], className, "", styles[i], 0, 0, 0, 0, parentWindow, 0, GetModuleHandleA(0), NULL );
5456 ok(childWindow != NULL, "Failed to create child window, error: %u\n", GetLastError());
5458 ok(test_thick_child_got_minmax, "Got no WM_GETMINMAXINFO\n");
5460 SetLastError(0xdeadbeef);
5461 success = GetWindowRect(childWindow, &childRect);
5462 ok(success,"GetWindowRect call failed, error: %u\n", GetLastError());
5463 childWidth = childRect.right - childRect.left;
5464 childHeight = childRect.bottom - childRect.top;
5466 adjustedStyle = styles[i];
5467 if ((adjustedStyle & WS_CAPTION) == WS_CAPTION)
5468 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
5469 GetClientRect(GetParent(childWindow), &adjustedParentRect);
5470 AdjustWindowRectEx(&adjustedParentRect, adjustedStyle, FALSE, test_thick_child_exStyle);
5473 if (test_thick_child_style & (WS_DLGFRAME | WS_BORDER))
5475 expectedWidth = GetSystemMetrics(SM_CXMINTRACK);
5476 expectedHeight = GetSystemMetrics(SM_CYMINTRACK);
5480 expectedWidth = -2 * adjustedParentRect.left;
5481 expectedHeight = -2 * adjustedParentRect.top;
5484 ok((childWidth == expectedWidth) && (childHeight == expectedHeight),
5485 "size of window (%s) is wrong: expected size %dx%d != actual size %dx%d\n",
5486 test_thick_child_name, expectedWidth, expectedHeight, childWidth, childHeight);
5488 SetLastError(0xdeadbeef);
5489 success = DestroyWindow(childWindow);
5490 ok(success,"DestroyWindow call failed, error: %u\n", GetLastError());
5492 ok(UnregisterClass(className, GetModuleHandleA(0)),"UnregisterClass call failed\n");
5495 static void test_handles( HWND full_hwnd )
5497 HWND hwnd = full_hwnd;
5501 SetLastError( 0xdeadbeef );
5502 ret = GetWindowRect( hwnd, &rect );
5503 ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
5506 if ((ULONG_PTR)full_hwnd >> 32)
5507 hwnd = (HWND)((ULONG_PTR)full_hwnd & ~0u);
5509 hwnd = (HWND)((ULONG_PTR)full_hwnd | ((ULONG_PTR)~0u << 32));
5510 SetLastError( 0xdeadbeef );
5511 ret = GetWindowRect( hwnd, &rect );
5512 ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
5514 hwnd = (HWND)(((ULONG_PTR)full_hwnd & ~0u) | ((ULONG_PTR)0x1234 << 32));
5515 SetLastError( 0xdeadbeef );
5516 ret = GetWindowRect( hwnd, &rect );
5517 ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
5519 hwnd = (HWND)(((ULONG_PTR)full_hwnd & 0xffff) | ((ULONG_PTR)0x9876 << 16));
5520 SetLastError( 0xdeadbeef );
5521 ret = GetWindowRect( hwnd, &rect );
5522 ok( !ret, "GetWindowRect succeeded for %p\n", hwnd );
5523 ok( GetLastError() == ERROR_INVALID_WINDOW_HANDLE, "wrong error %u\n", GetLastError() );
5525 hwnd = (HWND)(((ULONG_PTR)full_hwnd & 0xffff) | ((ULONG_PTR)0x12345678 << 16));
5526 SetLastError( 0xdeadbeef );
5527 ret = GetWindowRect( hwnd, &rect );
5528 ok( !ret, "GetWindowRect succeeded for %p\n", hwnd );
5529 ok( GetLastError() == ERROR_INVALID_WINDOW_HANDLE, "wrong error %u\n", GetLastError() );
5535 HMODULE user32 = GetModuleHandleA( "user32.dll" );
5536 pGetAncestor = (void *)GetProcAddress( user32, "GetAncestor" );
5537 pGetWindowInfo = (void *)GetProcAddress( user32, "GetWindowInfo" );
5538 pGetWindowModuleFileNameA = (void *)GetProcAddress( user32, "GetWindowModuleFileNameA" );
5539 pGetLayeredWindowAttributes = (void *)GetProcAddress( user32, "GetLayeredWindowAttributes" );
5540 pSetLayeredWindowAttributes = (void *)GetProcAddress( user32, "SetLayeredWindowAttributes" );
5541 pGetMonitorInfoA = (void *)GetProcAddress( user32, "GetMonitorInfoA" );
5542 pMonitorFromPoint = (void *)GetProcAddress( user32, "MonitorFromPoint" );
5544 if (!RegisterWindowClasses()) assert(0);
5546 hhook = SetWindowsHookExA(WH_CBT, cbt_hook_proc, 0, GetCurrentThreadId());
5547 if (!hhook) win_skip( "Cannot set CBT hook, skipping some tests\n" );
5549 hwndMain = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window",
5550 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
5551 WS_MAXIMIZEBOX | WS_POPUP,
5553 0, 0, GetModuleHandle(0), NULL);
5554 hwndMain2 = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window 2",
5555 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
5556 WS_MAXIMIZEBOX | WS_POPUP,
5558 0, 0, GetModuleHandle(0), NULL);
5560 assert( hwndMain2 );
5562 our_pid = GetWindowThreadProcessId(hwndMain, NULL);
5564 /* Add the tests below this line */
5565 test_thick_child_size(hwndMain);
5567 test_hwnd_message();
5568 test_nonclient_area(hwndMain);
5570 test_GetWindowModuleFileName();
5573 test_capture_3(hwndMain, hwndMain2);
5575 test_CreateWindow();
5576 test_parent_owner();
5581 test_SetWindowPos(hwndMain);
5582 test_SetMenu(hwndMain);
5583 test_SetFocus(hwndMain);
5584 test_SetActiveWindow(hwndMain);
5586 test_children_zorder(hwndMain);
5587 test_popup_zorder(hwndMain2, hwndMain);
5588 test_keyboard_input(hwndMain);
5589 test_mouse_input(hwndMain);
5590 test_validatergn(hwndMain);
5591 test_nccalcscroll( hwndMain);
5592 test_scrollvalidate( hwndMain);
5593 test_scrolldc( hwndMain);
5595 test_IsWindowUnicode();
5596 test_vis_rgn(hwndMain);
5598 test_AdjustWindowRect();
5599 test_window_styles();
5602 test_SetWindowLong();
5604 if (0) test_gettext(); /* crashes on NT4 */
5605 test_GetUpdateRect();
5607 test_layered_window();
5609 test_SetForegroundWindow(hwndMain);
5610 test_shell_window();
5611 test_handles( hwndMain );
5613 /* add the tests above this line */
5614 if (hhook) UnhookWindowsHookEx(hhook);
5616 DestroyWindow(hwndMain2);
5617 DestroyWindow(hwndMain);