winhttp: Reverse the order of arguments passed to Invoke.
[wine] / dlls / user32 / tests / win.c
1 /*
2  * Unit tests for window handling
3  *
4  * Copyright 2002 Bill Medland
5  * Copyright 2002 Alexandre Julliard
6  * Copyright 2003 Dmitry Timoshkov
7  *
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.
12  *
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.
17  *
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
21  */
22
23 /* To get ICON_SMALL2 with the MSVC headers */
24 #define _WIN32_WINNT 0x0501
25
26 #include <assert.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35
36 #include "wine/test.h"
37
38 #ifndef SPI_GETDESKWALLPAPER
39 #define SPI_GETDESKWALLPAPER 0x0073
40 #endif
41
42 #define LONG_PTR INT_PTR
43 #define ULONG_PTR UINT_PTR
44
45 void dump_region(HRGN hrgn);
46
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 *pUpdateLayeredWindow)(HWND,HDC,POINT*,SIZE*,HDC,POINT*,COLORREF,BLENDFUNCTION*,DWORD);
53 static BOOL (WINAPI *pGetMonitorInfoA)(HMONITOR,LPMONITORINFO);
54 static HMONITOR (WINAPI *pMonitorFromPoint)(POINT,DWORD);
55 static int  (WINAPI *pGetWindowRgnBox)(HWND,LPRECT);
56 static BOOL (WINAPI *pGetGUIThreadInfo)(DWORD, GUITHREADINFO*);
57 static BOOL (WINAPI *pGetProcessDefaultLayout)( DWORD *layout );
58 static BOOL (WINAPI *pSetProcessDefaultLayout)( DWORD layout );
59 static BOOL (WINAPI *pFlashWindowEx)( PFLASHWINFO pfwi );
60 static DWORD (WINAPI *pSetLayout)(HDC hdc, DWORD layout);
61 static DWORD (WINAPI *pGetLayout)(HDC hdc);
62 static BOOL (WINAPI *pMirrorRgn)(HWND hwnd, HRGN hrgn);
63
64 static BOOL test_lbuttondown_flag;
65 static HWND hwndMessage;
66 static HWND hwndMain, hwndMain2;
67 static HHOOK hhook;
68
69 static const char* szAWRClass = "Winsize";
70 static HMENU hmenu;
71 static DWORD our_pid;
72
73 static BOOL is_win9x = FALSE;
74
75 #define COUNTOF(arr) (sizeof(arr)/sizeof(arr[0]))
76
77 static void dump_minmax_info( const MINMAXINFO *minmax )
78 {
79     trace("Reserved=%d,%d MaxSize=%d,%d MaxPos=%d,%d MinTrack=%d,%d MaxTrack=%d,%d\n",
80           minmax->ptReserved.x, minmax->ptReserved.y,
81           minmax->ptMaxSize.x, minmax->ptMaxSize.y,
82           minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
83           minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
84           minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
85 }
86
87 /* try to make sure pending X events have been processed before continuing */
88 static void flush_events( BOOL remove_messages )
89 {
90     MSG msg;
91     int diff = 200;
92     int min_timeout = 100;
93     DWORD time = GetTickCount() + diff;
94
95     while (diff > 0)
96     {
97         if (MsgWaitForMultipleObjects( 0, NULL, FALSE, min_timeout, QS_ALLINPUT ) == WAIT_TIMEOUT) break;
98         if (remove_messages)
99             while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessage( &msg );
100         diff = time - GetTickCount();
101         min_timeout = 50;
102     }
103 }
104
105 /* check the values returned by the various parent/owner functions on a given window */
106 static void check_parents( HWND hwnd, HWND ga_parent, HWND gwl_parent, HWND get_parent,
107                            HWND gw_owner, HWND ga_root, HWND ga_root_owner )
108 {
109     HWND res;
110
111     if (pGetAncestor)
112     {
113         res = pGetAncestor( hwnd, GA_PARENT );
114         ok( res == ga_parent, "Wrong result for GA_PARENT %p expected %p\n", res, ga_parent );
115     }
116     res = (HWND)GetWindowLongPtrA( hwnd, GWLP_HWNDPARENT );
117     ok( res == gwl_parent, "Wrong result for GWL_HWNDPARENT %p expected %p\n", res, gwl_parent );
118     res = GetParent( hwnd );
119     ok( res == get_parent, "Wrong result for GetParent %p expected %p\n", res, get_parent );
120     res = GetWindow( hwnd, GW_OWNER );
121     ok( res == gw_owner, "Wrong result for GW_OWNER %p expected %p\n", res, gw_owner );
122     if (pGetAncestor)
123     {
124         res = pGetAncestor( hwnd, GA_ROOT );
125         ok( res == ga_root, "Wrong result for GA_ROOT %p expected %p\n", res, ga_root );
126         res = pGetAncestor( hwnd, GA_ROOTOWNER );
127         ok( res == ga_root_owner, "Wrong result for GA_ROOTOWNER %p expected %p\n", res, ga_root_owner );
128     }
129 }
130
131 #define check_wnd_state(a,b,c,d) check_wnd_state_(__FILE__,__LINE__,a,b,c,d)
132 static void check_wnd_state_(const char *file, int line,
133                              HWND active, HWND foreground, HWND focus, HWND capture)
134 {
135     ok_(file, line)(active == GetActiveWindow(), "GetActiveWindow() = %p\n", GetActiveWindow());
136     /* only check foreground if it belongs to the current thread */
137     /* foreground can be moved to a different app pretty much at any time */
138     if (foreground && GetForegroundWindow() &&
139         GetWindowThreadProcessId(GetForegroundWindow(), NULL) == GetCurrentThreadId())
140         ok_(file, line)(foreground == GetForegroundWindow(), "GetForegroundWindow() = %p\n", GetForegroundWindow());
141     ok_(file, line)(focus == GetFocus(), "GetFocus() = %p\n", GetFocus());
142     ok_(file, line)(capture == GetCapture(), "GetCapture() = %p\n", GetCapture());
143 }
144
145 /* same as above but without capture test */
146 #define check_active_state(a,b,c) check_active_state_(__FILE__,__LINE__,a,b,c)
147 static void check_active_state_(const char *file, int line,
148                                 HWND active, HWND foreground, HWND focus)
149 {
150     ok_(file, line)(active == GetActiveWindow(), "GetActiveWindow() = %p\n", GetActiveWindow());
151     /* only check foreground if it belongs to the current thread */
152     /* foreground can be moved to a different app pretty much at any time */
153     if (foreground && GetForegroundWindow() &&
154         GetWindowThreadProcessId(GetForegroundWindow(), NULL) == GetCurrentThreadId())
155         ok_(file, line)(foreground == GetForegroundWindow(), "GetForegroundWindow() = %p\n", GetForegroundWindow());
156     ok_(file, line)(focus == GetFocus(), "GetFocus() = %p\n", GetFocus());
157 }
158
159 static BOOL ignore_message( UINT message )
160 {
161     /* these are always ignored */
162     return (message >= 0xc000 ||
163             message == WM_GETICON ||
164             message == WM_GETOBJECT ||
165             message == WM_TIMECHANGE ||
166             message == WM_DEVICECHANGE);
167 }
168
169 static BOOL CALLBACK EnumChildProc( HWND hwndChild, LPARAM lParam)
170 {
171     (*(LPINT)lParam)++;
172     trace("EnumChildProc on %p\n", hwndChild);
173     if (*(LPINT)lParam > 1) return FALSE;
174     return TRUE;
175 }
176
177 /* will search for the given window */
178 static BOOL CALLBACK EnumChildProc1( HWND hwndChild, LPARAM lParam)
179 {
180     trace("EnumChildProc1 on %p\n", hwndChild);
181     if ((HWND)lParam == hwndChild) return FALSE;
182     return TRUE;
183 }
184
185 static HWND create_tool_window( LONG style, HWND parent )
186 {
187     HWND ret = CreateWindowExA(0, "ToolWindowClass", "Tool window 1", style,
188                                0, 0, 100, 100, parent, 0, 0, NULL );
189     ok( ret != 0, "Creation failed\n" );
190     return ret;
191 }
192
193 /* test parent and owner values for various combinations */
194 static void test_parent_owner(void)
195 {
196     LONG style;
197     HWND test, owner, ret;
198     HWND desktop = GetDesktopWindow();
199     HWND child = create_tool_window( WS_CHILD, hwndMain );
200     INT  numChildren;
201
202     trace( "main window %p main2 %p desktop %p child %p\n", hwndMain, hwndMain2, desktop, child );
203
204     /* child without parent, should fail */
205     SetLastError(0xdeadbeef);
206     test = CreateWindowExA(0, "ToolWindowClass", "Tool window 1",
207                            WS_CHILD, 0, 0, 100, 100, 0, 0, 0, NULL );
208     ok( !test, "WS_CHILD without parent created\n" );
209     ok( GetLastError() == ERROR_TLW_WITH_WSCHILD ||
210         broken(GetLastError() == 0xdeadbeef), /* win9x */
211         "CreateWindowExA error %u\n", GetLastError() );
212
213     /* desktop window */
214     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
215     style = GetWindowLongA( desktop, GWL_STYLE );
216     ok( !SetWindowLongA( desktop, GWL_STYLE, WS_POPUP ), "Set GWL_STYLE on desktop succeeded\n" );
217     ok( !SetWindowLongA( desktop, GWL_STYLE, 0 ), "Set GWL_STYLE on desktop succeeded\n" );
218     ok( GetWindowLongA( desktop, GWL_STYLE ) == style, "Desktop style changed\n" );
219
220     /* normal child window */
221     test = create_tool_window( WS_CHILD, hwndMain );
222     trace( "created child %p\n", test );
223     check_parents( test, hwndMain, hwndMain, hwndMain, 0, hwndMain, hwndMain );
224     SetWindowLongA( test, GWL_STYLE, 0 );
225     check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
226     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
227     check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
228     SetWindowLongA( test, GWL_STYLE, WS_POPUP|WS_CHILD );
229     check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
230     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
231     DestroyWindow( test );
232
233     /* normal child window with WS_MAXIMIZE */
234     test = create_tool_window( WS_CHILD | WS_MAXIMIZE, hwndMain );
235     DestroyWindow( test );
236
237     /* normal child window with WS_THICKFRAME */
238     test = create_tool_window( WS_CHILD | WS_THICKFRAME, hwndMain );
239     DestroyWindow( test );
240
241     /* popup window with WS_THICKFRAME */
242     test = create_tool_window( WS_POPUP | WS_THICKFRAME, hwndMain );
243     DestroyWindow( test );
244
245     /* child of desktop */
246     test = create_tool_window( WS_CHILD, desktop );
247     trace( "created child of desktop %p\n", test );
248     check_parents( test, desktop, 0, desktop, 0, test, desktop );
249     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
250     check_parents( test, desktop, 0, 0, 0, test, test );
251     SetWindowLongA( test, GWL_STYLE, 0 );
252     check_parents( test, desktop, 0, 0, 0, test, test );
253     DestroyWindow( test );
254
255     /* child of desktop with WS_MAXIMIZE */
256     test = create_tool_window( WS_CHILD | WS_MAXIMIZE, desktop );
257     DestroyWindow( test );
258
259     /* child of desktop with WS_MINIMIZE */
260     test = create_tool_window( WS_CHILD | WS_MINIMIZE, desktop );
261     DestroyWindow( test );
262
263     /* child of child */
264     test = create_tool_window( WS_CHILD, child );
265     trace( "created child of child %p\n", test );
266     check_parents( test, child, child, child, 0, hwndMain, hwndMain );
267     SetWindowLongA( test, GWL_STYLE, 0 );
268     check_parents( test, child, child, 0, 0, hwndMain, test );
269     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
270     check_parents( test, child, child, 0, 0, hwndMain, test );
271     DestroyWindow( test );
272
273     /* child of child with WS_MAXIMIZE */
274     test = create_tool_window( WS_CHILD | WS_MAXIMIZE, child );
275     DestroyWindow( test );
276
277     /* child of child with WS_MINIMIZE */
278     test = create_tool_window( WS_CHILD | WS_MINIMIZE, child );
279     DestroyWindow( test );
280
281     /* not owned top-level window */
282     test = create_tool_window( 0, 0 );
283     trace( "created top-level %p\n", test );
284     check_parents( test, desktop, 0, 0, 0, test, test );
285     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
286     check_parents( test, desktop, 0, 0, 0, test, test );
287     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
288     check_parents( test, desktop, 0, desktop, 0, test, desktop );
289     DestroyWindow( test );
290
291     /* not owned top-level window with WS_MAXIMIZE */
292     test = create_tool_window( WS_MAXIMIZE, 0 );
293     DestroyWindow( test );
294
295     /* owned top-level window */
296     test = create_tool_window( 0, hwndMain );
297     trace( "created owned top-level %p\n", test );
298     check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
299     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
300     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
301     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
302     check_parents( test, desktop, hwndMain, desktop, hwndMain, test, desktop );
303     DestroyWindow( test );
304
305     /* owned top-level window with WS_MAXIMIZE */
306     test = create_tool_window( WS_MAXIMIZE, hwndMain );
307     DestroyWindow( test );
308
309     /* not owned popup */
310     test = create_tool_window( WS_POPUP, 0 );
311     trace( "created popup %p\n", test );
312     check_parents( test, desktop, 0, 0, 0, test, test );
313     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
314     check_parents( test, desktop, 0, desktop, 0, test, desktop );
315     SetWindowLongA( test, GWL_STYLE, 0 );
316     check_parents( test, desktop, 0, 0, 0, test, test );
317     DestroyWindow( test );
318
319     /* not owned popup with WS_MAXIMIZE */
320     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, 0 );
321     DestroyWindow( test );
322
323     /* owned popup */
324     test = create_tool_window( WS_POPUP, hwndMain );
325     trace( "created owned popup %p\n", test );
326     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
327     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
328     check_parents( test, desktop, hwndMain, desktop, hwndMain, test, desktop );
329     SetWindowLongA( test, GWL_STYLE, 0 );
330     check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
331     DestroyWindow( test );
332
333     /* owned popup with WS_MAXIMIZE */
334     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, hwndMain );
335     DestroyWindow( test );
336
337     /* top-level window owned by child (same as owned by top-level) */
338     test = create_tool_window( 0, child );
339     trace( "created top-level owned by child %p\n", test );
340     check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
341     DestroyWindow( test );
342
343     /* top-level window owned by child (same as owned by top-level) with WS_MAXIMIZE */
344     test = create_tool_window( WS_MAXIMIZE, child );
345     DestroyWindow( test );
346
347     /* popup owned by desktop (same as not owned) */
348     test = create_tool_window( WS_POPUP, desktop );
349     trace( "created popup owned by desktop %p\n", test );
350     check_parents( test, desktop, 0, 0, 0, test, test );
351     DestroyWindow( test );
352
353     /* popup owned by desktop (same as not owned) with WS_MAXIMIZE */
354     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, desktop );
355     DestroyWindow( test );
356
357     /* popup owned by child (same as owned by top-level) */
358     test = create_tool_window( WS_POPUP, child );
359     trace( "created popup owned by child %p\n", test );
360     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
361     DestroyWindow( test );
362
363     /* popup owned by child (same as owned by top-level) with WS_MAXIMIZE */
364     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, child );
365     DestroyWindow( test );
366
367     /* not owned popup with WS_CHILD (same as WS_POPUP only) */
368     test = create_tool_window( WS_POPUP | WS_CHILD, 0 );
369     trace( "created WS_CHILD popup %p\n", test );
370     check_parents( test, desktop, 0, 0, 0, test, test );
371     DestroyWindow( test );
372
373     /* not owned popup with WS_CHILD | WS_MAXIMIZE (same as WS_POPUP only) */
374     test = create_tool_window( WS_POPUP | WS_CHILD | WS_MAXIMIZE, 0 );
375     DestroyWindow( test );
376
377     /* owned popup with WS_CHILD (same as WS_POPUP only) */
378     test = create_tool_window( WS_POPUP | WS_CHILD, hwndMain );
379     trace( "created owned WS_CHILD popup %p\n", test );
380     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
381     DestroyWindow( test );
382
383     /* owned popup with WS_CHILD (same as WS_POPUP only) with WS_MAXIMIZE */
384     test = create_tool_window( WS_POPUP | WS_CHILD | WS_MAXIMIZE, hwndMain );
385     DestroyWindow( test );
386
387     /******************** parent changes *************************/
388     trace( "testing parent changes\n" );
389
390     /* desktop window */
391     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
392     if (0)
393     {
394     /* this test succeeds on NT but crashes on win9x systems */
395     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
396     ok( !ret, "Set GWL_HWNDPARENT succeeded on desktop\n" );
397     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
398     ok( !SetParent( desktop, hwndMain ), "SetParent succeeded on desktop\n" );
399     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
400     }
401     /* normal child window */
402     test = create_tool_window( WS_CHILD, hwndMain );
403     trace( "created child %p\n", test );
404
405     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
406     ok( ret == hwndMain, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain );
407     check_parents( test, hwndMain2, hwndMain2, hwndMain2, 0, hwndMain2, hwndMain2 );
408
409     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
410     ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
411     check_parents( test, child, child, child, 0, hwndMain, hwndMain );
412
413     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)desktop );
414     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
415     check_parents( test, desktop, 0, desktop, 0, test, desktop );
416
417     /* window is now child of desktop so GWLP_HWNDPARENT changes owner from now on */
418     if (!is_win9x)
419     {
420         ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)test );
421         ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
422         check_parents( test, desktop, 0, desktop, 0, test, desktop );
423     }
424     else
425         win_skip("Test creates circular window tree under Win9x/WinMe\n" );
426
427     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
428     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
429     check_parents( test, desktop, child, desktop, child, test, desktop );
430
431     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, 0 );
432     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
433     check_parents( test, desktop, 0, desktop, 0, test, desktop );
434     DestroyWindow( test );
435
436     /* not owned top-level window */
437     test = create_tool_window( 0, 0 );
438     trace( "created top-level %p\n", test );
439
440     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
441     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
442     check_parents( test, desktop, hwndMain2, 0, hwndMain2, test, test );
443
444     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
445     ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
446     check_parents( test, desktop, child, 0, child, test, test );
447
448     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, 0 );
449     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
450     check_parents( test, desktop, 0, 0, 0, test, test );
451     DestroyWindow( test );
452
453     /* not owned popup */
454     test = create_tool_window( WS_POPUP, 0 );
455     trace( "created popup %p\n", test );
456
457     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)hwndMain2 );
458     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
459     check_parents( test, desktop, hwndMain2, hwndMain2, hwndMain2, test, hwndMain2 );
460
461     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (LONG_PTR)child );
462     ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
463     check_parents( test, desktop, child, child, child, test, hwndMain );
464
465     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, 0 );
466     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
467     check_parents( test, desktop, 0, 0, 0, test, test );
468     DestroyWindow( test );
469
470     /* normal child window */
471     test = create_tool_window( WS_CHILD, hwndMain );
472     trace( "created child %p\n", test );
473
474     ret = SetParent( test, desktop );
475     ok( ret == hwndMain, "SetParent return value %p expected %p\n", ret, hwndMain );
476     check_parents( test, desktop, 0, desktop, 0, test, desktop );
477
478     ret = SetParent( test, child );
479     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
480     check_parents( test, child, child, child, 0, hwndMain, hwndMain );
481
482     ret = SetParent( test, hwndMain2 );
483     ok( ret == child, "SetParent return value %p expected %p\n", ret, child );
484     check_parents( test, hwndMain2, hwndMain2, hwndMain2, 0, hwndMain2, hwndMain2 );
485     DestroyWindow( test );
486
487     /* not owned top-level window */
488     test = create_tool_window( 0, 0 );
489     trace( "created top-level %p\n", test );
490
491     ret = SetParent( test, child );
492     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
493     check_parents( test, child, child, 0, 0, hwndMain, test );
494
495     if (!is_win9x)
496     {
497         ShowWindow( test, SW_SHOW );
498         ret = SetParent( test, test );
499         ok( ret == NULL, "SetParent return value %p expected %p\n", ret, NULL );
500         ok( GetWindowLongA( test, GWL_STYLE ) & WS_VISIBLE, "window is not visible after SetParent\n" );
501         check_parents( test, child, child, 0, 0, hwndMain, test );
502     }
503     else
504         win_skip( "Test crashes on Win9x/WinMe\n" );
505     DestroyWindow( test );
506
507     /* owned popup */
508     test = create_tool_window( WS_POPUP, hwndMain2 );
509     trace( "created owned popup %p\n", test );
510
511     ret = SetParent( test, child );
512     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
513     check_parents( test, child, child, hwndMain2, hwndMain2, hwndMain, hwndMain2 );
514
515     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (ULONG_PTR)hwndMain );
516     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
517     check_parents( test, hwndMain, hwndMain, hwndMain2, hwndMain2, hwndMain, hwndMain2 );
518     DestroyWindow( test );
519
520     /**************** test owner destruction *******************/
521
522     /* owned child popup */
523     owner = create_tool_window( 0, 0 );
524     test = create_tool_window( WS_POPUP, owner );
525     trace( "created owner %p and popup %p\n", owner, test );
526     ret = SetParent( test, child );
527     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
528     check_parents( test, child, child, owner, owner, hwndMain, owner );
529     /* window is now child of 'child' but owned by 'owner' */
530     DestroyWindow( owner );
531     ok( IsWindow(test), "Window %p destroyed by owner destruction\n", test );
532     /* Win98 doesn't pass this test. It doesn't allow a destroyed owner,
533      * while Win95, Win2k, WinXP do.
534      */
535     /*check_parents( test, child, child, owner, owner, hwndMain, owner );*/
536     ok( !IsWindow(owner), "Owner %p not destroyed\n", owner );
537     DestroyWindow(test);
538
539     /* owned top-level popup */
540     owner = create_tool_window( 0, 0 );
541     test = create_tool_window( WS_POPUP, owner );
542     trace( "created owner %p and popup %p\n", owner, test );
543     check_parents( test, desktop, owner, owner, owner, test, owner );
544     DestroyWindow( owner );
545     ok( !IsWindow(test), "Window %p not destroyed by owner destruction\n", test );
546
547     /* top-level popup owned by child */
548     owner = create_tool_window( WS_CHILD, hwndMain2 );
549     test = create_tool_window( WS_POPUP, 0 );
550     trace( "created owner %p and popup %p\n", owner, test );
551     ret = (HWND)SetWindowLongPtrA( test, GWLP_HWNDPARENT, (ULONG_PTR)owner );
552     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
553     check_parents( test, desktop, owner, owner, owner, test, hwndMain2 );
554     DestroyWindow( owner );
555     ok( IsWindow(test), "Window %p destroyed by owner destruction\n", test );
556     ok( !IsWindow(owner), "Owner %p not destroyed\n", owner );
557     /* Win98 doesn't pass this test. It doesn't allow a destroyed owner,
558      * while Win95, Win2k, WinXP do.
559      */
560     /*check_parents( test, desktop, owner, owner, owner, test, owner );*/
561     DestroyWindow(test);
562
563     /* final cleanup */
564     DestroyWindow(child);
565
566
567     owner = create_tool_window( WS_OVERLAPPED, 0 );
568     test = create_tool_window( WS_POPUP, desktop );
569
570     ok( !GetWindow( test, GW_OWNER ), "Wrong owner window\n" );
571     numChildren = 0;
572     ok( !EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
573         "EnumChildWindows should have returned FALSE\n" );
574     ok( numChildren == 0, "numChildren should be 0 got %d\n", numChildren );
575
576     SetWindowLongA( test, GWL_STYLE, (GetWindowLongA( test, GWL_STYLE ) & ~WS_POPUP) | WS_CHILD );
577     ret = SetParent( test, owner );
578     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
579
580     numChildren = 0;
581     ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
582         "EnumChildWindows should have returned TRUE\n" );
583     ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
584
585     child = create_tool_window( WS_CHILD, owner );
586     numChildren = 0;
587     ok( !EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
588         "EnumChildWindows should have returned FALSE\n" );
589     ok( numChildren == 2, "numChildren should be 2 got %d\n", numChildren );
590     DestroyWindow( child );
591
592     child = create_tool_window( WS_VISIBLE | WS_OVERLAPPEDWINDOW, owner );
593     ok( GetWindow( child, GW_OWNER ) == owner, "Wrong owner window\n" );
594     numChildren = 0;
595     ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
596         "EnumChildWindows should have returned TRUE\n" );
597     ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
598
599     ret = SetParent( child, owner );
600     ok( GetWindow( child, GW_OWNER ) == owner, "Wrong owner window\n" );
601     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
602     numChildren = 0;
603     ok( !EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
604         "EnumChildWindows should have returned FALSE\n" );
605     ok( numChildren == 2, "numChildren should be 2 got %d\n", numChildren );
606
607     ret = SetParent( child, NULL );
608     ok( GetWindow( child, GW_OWNER ) == owner, "Wrong owner window\n" );
609     ok( ret == owner, "SetParent return value %p expected %p\n", ret, owner );
610     numChildren = 0;
611     ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
612         "EnumChildWindows should have returned TRUE\n" );
613     ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
614
615     /* even GW_OWNER == owner it's still a desktop's child */
616     ok( !EnumChildWindows( desktop, EnumChildProc1, (LPARAM)child ),
617         "EnumChildWindows should have found %p and returned FALSE\n", child );
618
619     DestroyWindow( child );
620     child = create_tool_window( WS_VISIBLE | WS_OVERLAPPEDWINDOW, NULL );
621
622     ok( !EnumChildWindows( desktop, EnumChildProc1, (LPARAM)child ),
623         "EnumChildWindows should have found %p and returned FALSE\n", child );
624
625     DestroyWindow( child );
626     DestroyWindow( test );
627     DestroyWindow( owner );
628 }
629
630 static BOOL CALLBACK enum_proc( HWND hwnd, LPARAM lParam)
631 {
632     (*(LPINT)lParam)++;
633     if (*(LPINT)lParam > 2) return FALSE;
634     return TRUE;
635 }
636 static DWORD CALLBACK enum_thread( void *arg )
637 {
638     INT count;
639     HWND hwnd[3];
640     BOOL ret;
641     MSG msg;
642
643     if (pGetGUIThreadInfo)
644     {
645         GUITHREADINFO info;
646         info.cbSize = sizeof(info);
647         ret = pGetGUIThreadInfo( GetCurrentThreadId(), &info );
648         ok( ret || broken(!ret), /* win9x */
649             "GetGUIThreadInfo failed without message queue\n" );
650         SetLastError( 0xdeadbeef );
651         info.cbSize = sizeof(info) + 1;
652         ret = pGetGUIThreadInfo( GetCurrentThreadId(), &info );
653         ok( !ret, "GetGUIThreadInfo succeeded with wrong size\n" );
654         ok( GetLastError() == ERROR_INVALID_PARAMETER ||
655             broken(GetLastError() == 0xdeadbeef), /* win9x */
656             "wrong error %u\n", GetLastError() );
657     }
658
659     PeekMessage( &msg, 0, 0, 0, PM_NOREMOVE );  /* make sure we have a message queue */
660
661     count = 0;
662     ret = EnumThreadWindows( GetCurrentThreadId(), enum_proc, (LPARAM)&count );
663     ok( ret, "EnumThreadWindows should have returned TRUE\n" );
664     ok( count == 0, "count should be 0 got %d\n", count );
665
666     hwnd[0] = CreateWindowExA(0, "ToolWindowClass", "Tool window 1", WS_POPUP,
667                               0, 0, 100, 100, 0, 0, 0, NULL );
668     count = 0;
669     ret = EnumThreadWindows( GetCurrentThreadId(), enum_proc, (LPARAM)&count );
670     ok( ret, "EnumThreadWindows should have returned TRUE\n" );
671     if (count != 2)  /* Vista gives us two windows for the price of one */
672     {
673         ok( count == 1, "count should be 1 got %d\n", count );
674         hwnd[2] = CreateWindowExA(0, "ToolWindowClass", "Tool window 2", WS_POPUP,
675                                   0, 0, 100, 100, 0, 0, 0, NULL );
676     }
677     else hwnd[2] = 0;
678
679     hwnd[1] = CreateWindowExA(0, "ToolWindowClass", "Tool window 3", WS_POPUP,
680                               0, 0, 100, 100, 0, 0, 0, NULL );
681     count = 0;
682     ret = EnumThreadWindows( GetCurrentThreadId(), enum_proc, (LPARAM)&count );
683     ok( !ret, "EnumThreadWindows should have returned FALSE\n" );
684     ok( count == 3, "count should be 3 got %d\n", count );
685
686     if (hwnd[2]) DestroyWindow(hwnd[2]);
687     DestroyWindow(hwnd[1]);
688     DestroyWindow(hwnd[0]);
689     return 0;
690 }
691
692 /* test EnumThreadWindows in a separate thread */
693 static void test_enum_thread_windows(void)
694 {
695     DWORD id;
696     HANDLE handle = CreateThread( NULL, 0, enum_thread, 0, 0, &id );
697     ok( !WaitForSingleObject( handle, 10000 ), "wait failed\n" );
698     CloseHandle( handle );
699 }
700
701 static LRESULT WINAPI main_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
702 {
703     switch (msg)
704     {
705         case WM_GETMINMAXINFO:
706         {
707             MINMAXINFO* minmax = (MINMAXINFO *)lparam;
708
709             trace("WM_GETMINMAXINFO: hwnd %p, %08lx, %08lx\n", hwnd, wparam, lparam);
710             dump_minmax_info( minmax );
711             SetWindowLongPtrA(hwnd, GWLP_USERDATA, 0x20031021);
712             break;
713         }
714         case WM_WINDOWPOSCHANGING:
715         {
716             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
717             trace("main: WM_WINDOWPOSCHANGING %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
718                    winpos->hwnd, winpos->hwndInsertAfter,
719                    winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
720             if (!(winpos->flags & SWP_NOMOVE))
721             {
722                 ok(winpos->x >= -32768 && winpos->x <= 32767, "bad winpos->x %d\n", winpos->x);
723                 ok(winpos->y >= -32768 && winpos->y <= 32767, "bad winpos->y %d\n", winpos->y);
724             }
725             /* Win9x does not fixup cx/xy for WM_WINDOWPOSCHANGING */
726             if (!(winpos->flags & SWP_NOSIZE) && !is_win9x)
727             {
728                 ok((winpos->cx >= 0 && winpos->cx <= 32767) ||
729                    winpos->cx == 32768, /* win7 doesn't truncate */
730                    "bad winpos->cx %d\n", winpos->cx);
731                 ok((winpos->cy >= 0 && winpos->cy <= 32767) ||
732                    winpos->cy == 40000, /* win7 doesn't truncate */
733                    "bad winpos->cy %d\n", winpos->cy);
734             }
735             break;
736         }
737         case WM_WINDOWPOSCHANGED:
738         {
739             RECT rc1, rc2;
740             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
741             trace("main: WM_WINDOWPOSCHANGED %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
742                    winpos->hwnd, winpos->hwndInsertAfter,
743                    winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
744             ok(winpos->x >= -32768 && winpos->x <= 32767, "bad winpos->x %d\n", winpos->x);
745             ok(winpos->y >= -32768 && winpos->y <= 32767, "bad winpos->y %d\n", winpos->y);
746
747             ok((winpos->cx >= 0 && winpos->cx <= 32767) ||
748                winpos->cx == 32768, /* win7 doesn't truncate */
749                "bad winpos->cx %d\n", winpos->cx);
750             ok((winpos->cy >= 0 && winpos->cy <= 32767) ||
751                winpos->cy == 40000, /* win7 doesn't truncate */
752                "bad winpos->cy %d\n", winpos->cy);
753
754             GetWindowRect(hwnd, &rc1);
755             SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
756             /* note: winpos coordinates are relative to parent */
757             MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
758             if (0)
759             {
760             /* Uncomment this once the test succeeds in all cases */
761             ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
762                rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom );
763
764             GetClientRect(hwnd, &rc2);
765             DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
766             MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
767             ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
768                rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom );
769             }
770             break;
771         }
772         case WM_NCCREATE:
773         {
774             BOOL got_getminmaxinfo = GetWindowLongPtrA(hwnd, GWLP_USERDATA) == 0x20031021;
775             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
776
777             trace("WM_NCCREATE: hwnd %p, parent %p, style %08x\n", hwnd, cs->hwndParent, cs->style);
778             if (got_getminmaxinfo)
779                 trace("%p got WM_GETMINMAXINFO\n", hwnd);
780
781             if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
782                 ok(got_getminmaxinfo, "main: WM_GETMINMAXINFO should have been received before WM_NCCREATE\n");
783             else
784                 ok(!got_getminmaxinfo, "main: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
785             break;
786         }
787         case WM_COMMAND:
788             if (test_lbuttondown_flag)
789             {
790                 ShowWindow((HWND)wparam, SW_SHOW);
791                 flush_events( FALSE );
792             }
793             break;
794     }
795
796     return DefWindowProcA(hwnd, msg, wparam, lparam);
797 }
798
799 static LRESULT WINAPI tool_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
800 {
801     switch (msg)
802     {
803         case WM_GETMINMAXINFO:
804         {
805             MINMAXINFO* minmax = (MINMAXINFO *)lparam;
806
807             trace("hwnd %p, WM_GETMINMAXINFO, %08lx, %08lx\n", hwnd, wparam, lparam);
808             dump_minmax_info( minmax );
809             SetWindowLongPtrA(hwnd, GWLP_USERDATA, 0x20031021);
810             break;
811         }
812         case WM_NCCREATE:
813         {
814             BOOL got_getminmaxinfo = GetWindowLongPtrA(hwnd, GWLP_USERDATA) == 0x20031021;
815             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
816
817             trace("WM_NCCREATE: hwnd %p, parent %p, style %08x\n", hwnd, cs->hwndParent, cs->style);
818             if (got_getminmaxinfo)
819                 trace("%p got WM_GETMINMAXINFO\n", hwnd);
820
821             if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
822                 ok(got_getminmaxinfo, "tool: WM_GETMINMAXINFO should have been received before WM_NCCREATE\n");
823             else
824                 ok(!got_getminmaxinfo, "tool: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
825             break;
826         }
827     }
828
829     return DefWindowProcA(hwnd, msg, wparam, lparam);
830 }
831
832 static BOOL RegisterWindowClasses(void)
833 {
834     WNDCLASSA cls;
835
836     cls.style = CS_DBLCLKS;
837     cls.lpfnWndProc = main_window_procA;
838     cls.cbClsExtra = 0;
839     cls.cbWndExtra = 0;
840     cls.hInstance = GetModuleHandleA(0);
841     cls.hIcon = 0;
842     cls.hCursor = LoadCursorA(0, IDC_ARROW);
843     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
844     cls.lpszMenuName = NULL;
845     cls.lpszClassName = "MainWindowClass";
846
847     if(!RegisterClassA(&cls)) return FALSE;
848
849     cls.style = 0;
850     cls.lpfnWndProc = tool_window_procA;
851     cls.cbClsExtra = 0;
852     cls.cbWndExtra = 0;
853     cls.hInstance = GetModuleHandleA(0);
854     cls.hIcon = 0;
855     cls.hCursor = LoadCursorA(0, IDC_ARROW);
856     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
857     cls.lpszMenuName = NULL;
858     cls.lpszClassName = "ToolWindowClass";
859
860     if(!RegisterClassA(&cls)) return FALSE;
861
862     return TRUE;
863 }
864
865 static void verify_window_info(const char *hook, HWND hwnd, const WINDOWINFO *info)
866 {
867     RECT rcWindow, rcClient;
868     DWORD status;
869
870     ok(IsWindow(hwnd), "bad window handle %p in hook %s\n", hwnd, hook);
871
872     GetWindowRect(hwnd, &rcWindow);
873     ok(EqualRect(&rcWindow, &info->rcWindow), "wrong rcWindow for %p in hook %s\n", hwnd, hook);
874
875     GetClientRect(hwnd, &rcClient);
876     /* translate to screen coordinates */
877     MapWindowPoints(hwnd, 0, (LPPOINT)&rcClient, 2);
878     ok(EqualRect(&rcClient, &info->rcClient), "wrong rcClient for %p in hook %s\n", hwnd, hook);
879
880     ok(info->dwStyle == (DWORD)GetWindowLongA(hwnd, GWL_STYLE),
881        "wrong dwStyle: %08x != %08x for %p in hook %s\n",
882        info->dwStyle, GetWindowLongA(hwnd, GWL_STYLE), hwnd, hook);
883     /* Windows reports some undocumented exstyles in WINDOWINFO, but
884      * doesn't return them in GetWindowLong(hwnd, GWL_EXSTYLE).
885      */
886     ok((info->dwExStyle & ~0xe0000800) == (DWORD)GetWindowLongA(hwnd, GWL_EXSTYLE),
887        "wrong dwExStyle: %08x != %08x for %p in hook %s\n",
888        info->dwExStyle, GetWindowLongA(hwnd, GWL_EXSTYLE), hwnd, hook);
889     status = (GetActiveWindow() == hwnd) ? WS_ACTIVECAPTION : 0;
890     if (GetForegroundWindow())
891         ok(info->dwWindowStatus == status, "wrong dwWindowStatus: %04x != %04x active %p fg %p in hook %s\n",
892            info->dwWindowStatus, status, GetActiveWindow(), GetForegroundWindow(), hook);
893
894     /* win2k and XP return broken border info in GetWindowInfo most of
895      * the time, so there is no point in testing it.
896      */
897 #if 0
898     UINT border;
899     ok(info->cxWindowBorders == (unsigned)(rcClient.left - rcWindow.left),
900        "wrong cxWindowBorders %d != %d\n", info->cxWindowBorders, rcClient.left - rcWindow.left);
901     border = min(rcWindow.bottom - rcClient.bottom, rcClient.top - rcWindow.top);
902     ok(info->cyWindowBorders == border,
903        "wrong cyWindowBorders %d != %d\n", info->cyWindowBorders, border);
904 #endif
905     ok(info->atomWindowType == GetClassLongA(hwnd, GCW_ATOM), "wrong atomWindowType for %p in hook %s\n",
906        hwnd, hook);
907     ok(info->wCreatorVersion == 0x0400 /* NT4, Win2000, XP, Win2003 */ ||
908        info->wCreatorVersion == 0x0500 /* Vista */,
909        "wrong wCreatorVersion %04x for %p in hook %s\n", info->wCreatorVersion, hwnd, hook);
910 }
911
912 static void FixedAdjustWindowRectEx(RECT* rc, LONG style, BOOL menu, LONG exstyle)
913 {
914     AdjustWindowRectEx(rc, style, menu, exstyle);
915     /* AdjustWindowRectEx does not include scroll bars */
916     if (style & WS_VSCROLL)
917     {
918         if(exstyle & WS_EX_LEFTSCROLLBAR)
919             rc->left  -= GetSystemMetrics(SM_CXVSCROLL);
920         else
921             rc->right += GetSystemMetrics(SM_CXVSCROLL);
922     }
923     if (style & WS_HSCROLL)
924         rc->bottom += GetSystemMetrics(SM_CYHSCROLL);
925 }
926
927 static void test_nonclient_area(HWND hwnd)
928 {
929     DWORD style, exstyle;
930     RECT rc_window, rc_client, rc;
931     BOOL menu;
932     LRESULT ret;
933
934     style = GetWindowLongA(hwnd, GWL_STYLE);
935     exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
936     menu = !(style & WS_CHILD) && GetMenu(hwnd) != 0;
937
938     GetWindowRect(hwnd, &rc_window);
939     GetClientRect(hwnd, &rc_client);
940
941     /* avoid some cases when things go wrong */
942     if (IsRectEmpty(&rc_window) || IsRectEmpty(&rc_client) ||
943         rc_window.right > 32768 || rc_window.bottom > 32768) return;
944
945     CopyRect(&rc, &rc_client);
946     MapWindowPoints(hwnd, 0, (LPPOINT)&rc, 2);
947     FixedAdjustWindowRectEx(&rc, style, menu, exstyle);
948
949     ok(EqualRect(&rc, &rc_window),
950        "window rect does not match: style:exstyle=0x%08x:0x%08x, menu=%d, win=(%d,%d)-(%d,%d), calc=(%d,%d)-(%d,%d)\n",
951        style, exstyle, menu, rc_window.left, rc_window.top, rc_window.right, rc_window.bottom,
952        rc.left, rc.top, rc.right, rc.bottom);
953
954
955     CopyRect(&rc, &rc_window);
956     DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc);
957     MapWindowPoints(0, hwnd, (LPPOINT)&rc, 2);
958     ok(EqualRect(&rc, &rc_client),
959        "client rect does not match: style:exstyle=0x%08x:0x%08x, menu=%d client=(%d,%d)-(%d,%d), calc=(%d,%d)-(%d,%d)\n",
960        style, exstyle, menu, rc_client.left, rc_client.top, rc_client.right, rc_client.bottom,
961        rc.left, rc.top, rc.right, rc.bottom);
962
963     /* NULL rectangle shouldn't crash */
964     ret = DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, 0);
965     ok(ret == 0, "NULL rectangle returned %ld instead of 0\n", ret);
966
967     /* Win9x doesn't like WM_NCCALCSIZE with synthetic data and crashes */;
968     if (is_win9x)
969         return;
970
971     /* and now test AdjustWindowRectEx and WM_NCCALCSIZE on synthetic data */
972     SetRect(&rc_client, 0, 0, 250, 150);
973     CopyRect(&rc_window, &rc_client);
974     MapWindowPoints(hwnd, 0, (LPPOINT)&rc_window, 2);
975     FixedAdjustWindowRectEx(&rc_window, style, menu, exstyle);
976
977     CopyRect(&rc, &rc_window);
978     DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc);
979     MapWindowPoints(0, hwnd, (LPPOINT)&rc, 2);
980     ok(EqualRect(&rc, &rc_client),
981        "synthetic rect does not match: style:exstyle=0x%08x:0x%08x, menu=%d, client=(%d,%d)-(%d,%d), calc=(%d,%d)-(%d,%d)\n",
982        style, exstyle, menu, rc_client.left, rc_client.top, rc_client.right, rc_client.bottom,
983        rc.left, rc.top, rc.right, rc.bottom);
984 }
985
986 static LRESULT CALLBACK cbt_hook_proc(int nCode, WPARAM wParam, LPARAM lParam) 
987
988     static const char *CBT_code_name[10] = {
989         "HCBT_MOVESIZE",
990         "HCBT_MINMAX",
991         "HCBT_QS",
992         "HCBT_CREATEWND",
993         "HCBT_DESTROYWND",
994         "HCBT_ACTIVATE",
995         "HCBT_CLICKSKIPPED",
996         "HCBT_KEYSKIPPED",
997         "HCBT_SYSCOMMAND",
998         "HCBT_SETFOCUS" };
999     const char *code_name = (nCode >= 0 && nCode <= HCBT_SETFOCUS) ? CBT_code_name[nCode] : "Unknown";
1000     HWND hwnd = (HWND)wParam;
1001
1002     switch (nCode)
1003     {
1004     case HCBT_CREATEWND:
1005         {
1006             static const RECT rc_null;
1007             RECT rc;
1008             LONG style;
1009             CBT_CREATEWNDA *createwnd = (CBT_CREATEWNDA *)lParam;
1010             ok(createwnd->hwndInsertAfter == HWND_TOP, "hwndInsertAfter should be always HWND_TOP\n");
1011
1012             if (pGetWindowInfo)
1013             {
1014                 WINDOWINFO info;
1015                 info.cbSize = sizeof(WINDOWINFO);
1016                 ok(pGetWindowInfo(hwnd, &info), "GetWindowInfo should not fail\n");
1017                 verify_window_info(code_name, hwnd, &info);
1018             }
1019
1020             /* WS_VISIBLE should be turned off yet */
1021             style = createwnd->lpcs->style & ~WS_VISIBLE;
1022             ok(style == GetWindowLongA(hwnd, GWL_STYLE),
1023                 "style of hwnd and style in the CREATESTRUCT do not match: %08x != %08x\n",
1024                 GetWindowLongA(hwnd, GWL_STYLE), style);
1025
1026             if (0)
1027             {
1028             /* Uncomment this once the test succeeds in all cases */
1029             if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD)
1030             {
1031                 ok(GetParent(hwnd) == hwndMessage,
1032                    "wrong result from GetParent %p: message window %p\n",
1033                    GetParent(hwnd), hwndMessage);
1034             }
1035             else
1036                 ok(!GetParent(hwnd), "GetParent should return 0 at this point\n");
1037
1038             ok(!GetWindow(hwnd, GW_OWNER), "GW_OWNER should be set to 0 at this point\n");
1039             }
1040             if (0)
1041             {
1042             /* while NT assigns GW_HWNDFIRST/LAST some values at this point,
1043              * Win9x still has them set to 0.
1044              */
1045             ok(GetWindow(hwnd, GW_HWNDFIRST) != 0, "GW_HWNDFIRST should not be set to 0 at this point\n");
1046             ok(GetWindow(hwnd, GW_HWNDLAST) != 0, "GW_HWNDLAST should not be set to 0 at this point\n");
1047             }
1048             ok(!GetWindow(hwnd, GW_HWNDPREV), "GW_HWNDPREV should be set to 0 at this point\n");
1049             ok(!GetWindow(hwnd, GW_HWNDNEXT), "GW_HWNDNEXT should be set to 0 at this point\n");
1050
1051             if (0)
1052             {
1053             /* Uncomment this once the test succeeds in all cases */
1054             if (pGetAncestor)
1055             {
1056                 ok(pGetAncestor(hwnd, GA_PARENT) == hwndMessage, "GA_PARENT should be set to hwndMessage at this point\n");
1057                 ok(pGetAncestor(hwnd, GA_ROOT) == hwnd,
1058                    "GA_ROOT is set to %p, expected %p\n", pGetAncestor(hwnd, GA_ROOT), hwnd);
1059
1060                 if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD)
1061                     ok(pGetAncestor(hwnd, GA_ROOTOWNER) == hwndMessage,
1062                        "GA_ROOTOWNER should be set to hwndMessage at this point\n");
1063                 else
1064                     ok(pGetAncestor(hwnd, GA_ROOTOWNER) == hwnd,
1065                        "GA_ROOTOWNER is set to %p, expected %p\n", pGetAncestor(hwnd, GA_ROOTOWNER), hwnd);
1066             }
1067
1068             ok(GetWindowRect(hwnd, &rc), "GetWindowRect failed\n");
1069             ok(EqualRect(&rc, &rc_null), "window rect should be set to 0 HCBT_CREATEWND\n");
1070             ok(GetClientRect(hwnd, &rc), "GetClientRect failed\n");
1071             ok(EqualRect(&rc, &rc_null), "client rect should be set to 0 on HCBT_CREATEWND\n");
1072             }
1073             break;
1074         }
1075     case HCBT_MOVESIZE:
1076     case HCBT_MINMAX:
1077     case HCBT_ACTIVATE:
1078         if (pGetWindowInfo && IsWindow(hwnd))
1079         {
1080             WINDOWINFO info;
1081
1082             /* Win98 actually does check the info.cbSize and doesn't allow
1083              * it to be anything except sizeof(WINDOWINFO), while Win95, Win2k,
1084              * WinXP do not check it at all.
1085              */
1086             info.cbSize = sizeof(WINDOWINFO);
1087             ok(pGetWindowInfo(hwnd, &info), "GetWindowInfo should not fail\n");
1088             verify_window_info(code_name, hwnd, &info);
1089         }
1090         break;
1091     /* window state is undefined */
1092     case HCBT_SETFOCUS:
1093     case HCBT_DESTROYWND:
1094         break;
1095     default:
1096         break;
1097     }
1098
1099     return CallNextHookEx(hhook, nCode, wParam, lParam);
1100 }
1101
1102 static void test_shell_window(void)
1103 {
1104     BOOL ret;
1105     DWORD error;
1106     HMODULE hinst, hUser32;
1107     BOOL (WINAPI*SetShellWindow)(HWND);
1108     HWND hwnd1, hwnd2, hwnd3, hwnd4, hwnd5;
1109     HWND shellWindow, nextWnd;
1110
1111     if (is_win9x)
1112     {
1113         win_skip("Skipping shell window test on Win9x\n");
1114         return;
1115     }
1116
1117     shellWindow = GetShellWindow();
1118     hinst = GetModuleHandle(0);
1119     hUser32 = GetModuleHandleA("user32");
1120
1121     SetShellWindow = (void *)GetProcAddress(hUser32, "SetShellWindow");
1122
1123     trace("previous shell window: %p\n", shellWindow);
1124
1125     if (shellWindow) {
1126         DWORD pid;
1127         HANDLE hProcess;
1128
1129         GetWindowThreadProcessId(shellWindow, &pid);
1130         hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
1131         if (!hProcess)
1132         {
1133             skip( "cannot get access to shell process\n" );
1134             return;
1135         }
1136
1137         SetLastError(0xdeadbeef);
1138         ret = DestroyWindow(shellWindow);
1139         error = GetLastError();
1140
1141         ok(!ret, "DestroyWindow(shellWindow)\n");
1142         /* passes on Win XP, but not on Win98 */
1143         ok(error==ERROR_ACCESS_DENIED || error == 0xdeadbeef,
1144            "got %u after DestroyWindow(shellWindow)\n", error);
1145
1146         /* close old shell instance */
1147         ret = TerminateProcess(hProcess, 0);
1148         ok(ret, "termination of previous shell process failed: GetLastError()=%d\n", GetLastError());
1149         WaitForSingleObject(hProcess, INFINITE);    /* wait for termination */
1150         CloseHandle(hProcess);
1151     }
1152
1153     hwnd1 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST1"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 100, 100, 300, 200, 0, 0, hinst, 0);
1154     trace("created window 1: %p\n", hwnd1);
1155
1156     ret = SetShellWindow(hwnd1);
1157     ok(ret, "first call to SetShellWindow(hwnd1)\n");
1158     shellWindow = GetShellWindow();
1159     ok(shellWindow==hwnd1, "wrong shell window: %p\n", shellWindow);
1160
1161     ret = SetShellWindow(hwnd1);
1162     ok(!ret, "second call to SetShellWindow(hwnd1)\n");
1163
1164     ret = SetShellWindow(0);
1165     error = GetLastError();
1166     /* passes on Win XP, but not on Win98
1167     ok(!ret, "reset shell window by SetShellWindow(0)\n");
1168     ok(error==ERROR_INVALID_WINDOW_HANDLE, "ERROR_INVALID_WINDOW_HANDLE after SetShellWindow(0)\n"); */
1169
1170     ret = SetShellWindow(hwnd1);
1171     /* passes on Win XP, but not on Win98
1172     ok(!ret, "third call to SetShellWindow(hwnd1)\n"); */
1173
1174     SetWindowLong(hwnd1, GWL_EXSTYLE, GetWindowLong(hwnd1,GWL_EXSTYLE)|WS_EX_TOPMOST);
1175     ret = GetWindowLong(hwnd1,GWL_EXSTYLE)&WS_EX_TOPMOST? TRUE: FALSE;
1176     ok(!ret, "SetWindowExStyle(hwnd1, WS_EX_TOPMOST)\n");
1177
1178     ret = DestroyWindow(hwnd1);
1179     ok(ret, "DestroyWindow(hwnd1)\n");
1180
1181     hwnd2 = CreateWindowEx(WS_EX_TOPMOST, TEXT("#32770"), TEXT("TEST2"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 150, 250, 300, 200, 0, 0, hinst, 0);
1182     trace("created window 2: %p\n", hwnd2);
1183     ret = SetShellWindow(hwnd2);
1184     ok(!ret, "SetShellWindow(hwnd2) with WS_EX_TOPMOST\n");
1185
1186     hwnd3 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST3"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 200, 400, 300, 200, 0, 0, hinst, 0);
1187     trace("created window 3: %p\n", hwnd3);
1188
1189     hwnd4 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST4"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 250, 500, 300, 200, 0, 0, hinst, 0);
1190     trace("created window 4: %p\n", hwnd4);
1191
1192     nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
1193     ok(nextWnd==hwnd3, "wrong next window for hwnd4: %p - expected hwnd3\n", nextWnd);
1194
1195     ret = SetShellWindow(hwnd4);
1196     ok(ret, "SetShellWindow(hwnd4)\n");
1197     shellWindow = GetShellWindow();
1198     ok(shellWindow==hwnd4, "wrong shell window: %p - expected hwnd4\n", shellWindow);
1199
1200     nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
1201     ok(nextWnd==0, "wrong next window for hwnd4: %p - expected 0\n", nextWnd);
1202
1203     ret = SetWindowPos(hwnd4, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1204     ok(ret, "SetWindowPos(hwnd4, HWND_TOPMOST)\n");
1205
1206     ret = SetWindowPos(hwnd4, hwnd3, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1207     ok(ret, "SetWindowPos(hwnd4, hwnd3\n");
1208
1209     ret = SetShellWindow(hwnd3);
1210     ok(!ret, "SetShellWindow(hwnd3)\n");
1211     shellWindow = GetShellWindow();
1212     ok(shellWindow==hwnd4, "wrong shell window: %p - expected hwnd4\n", shellWindow);
1213
1214     hwnd5 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST5"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 300, 600, 300, 200, 0, 0, hinst, 0);
1215     trace("created window 5: %p\n", hwnd5);
1216     ret = SetWindowPos(hwnd4, hwnd5, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
1217     ok(ret, "SetWindowPos(hwnd4, hwnd5)\n");
1218
1219     todo_wine
1220     {
1221         nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
1222         ok(nextWnd==0, "wrong next window for hwnd4 after SetWindowPos(): %p - expected 0\n", nextWnd);
1223     }
1224
1225     /* destroy test windows */
1226     DestroyWindow(hwnd2);
1227     DestroyWindow(hwnd3);
1228     DestroyWindow(hwnd4);
1229     DestroyWindow(hwnd5);
1230 }
1231
1232 /************** MDI test ****************/
1233
1234 static char mdi_lParam_test_message[] = "just a test string";
1235
1236 static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
1237 {
1238     MDICREATESTRUCTA mdi_cs;
1239     HWND mdi_child;
1240     INT_PTR id;
1241     static const WCHAR classW[] = {'M','D','I','_','c','h','i','l','d','_','C','l','a','s','s','_','1',0};
1242     static const WCHAR titleW[] = {'M','D','I',' ','c','h','i','l','d',0};
1243     BOOL isWin9x = FALSE;
1244
1245     mdi_cs.szClass = "MDI_child_Class_1";
1246     mdi_cs.szTitle = "MDI child";
1247     mdi_cs.hOwner = GetModuleHandle(0);
1248     mdi_cs.x = CW_USEDEFAULT;
1249     mdi_cs.y = CW_USEDEFAULT;
1250     mdi_cs.cx = CW_USEDEFAULT;
1251     mdi_cs.cy = CW_USEDEFAULT;
1252     mdi_cs.style = 0;
1253     mdi_cs.lParam = (LPARAM)mdi_lParam_test_message;
1254     mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1255     ok(mdi_child != 0, "MDI child creation failed\n");
1256     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1257     ok(id == first_id, "wrong child id %ld\n", id);
1258     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1259     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1260
1261     mdi_cs.style = 0x7fffffff; /* without WS_POPUP */
1262     mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1263     ok(mdi_child != 0, "MDI child creation failed\n");
1264     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1265     ok(id == first_id, "wrong child id %ld\n", id);
1266     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1267     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1268
1269     mdi_cs.style = 0xffffffff; /* with WS_POPUP */
1270     mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1271     if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1272     {
1273         ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1274     }
1275     else
1276     {
1277         ok(mdi_child != 0, "MDI child creation failed\n");
1278         id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1279         ok(id == first_id, "wrong child id %ld\n", id);
1280         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1281         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1282     }
1283
1284     /* test MDICREATESTRUCT A<->W mapping */
1285     /* MDICREATESTRUCTA and MDICREATESTRUCTW have the same layout */
1286     mdi_cs.style = 0;
1287     mdi_cs.szClass = (LPCSTR)classW;
1288     mdi_cs.szTitle = (LPCSTR)titleW;
1289     SetLastError(0xdeadbeef);
1290     mdi_child = (HWND)SendMessageW(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1291     if (!mdi_child)
1292     {
1293         if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1294             isWin9x = TRUE;
1295         else
1296             ok(mdi_child != 0, "MDI child creation failed\n");
1297     }
1298     else
1299     {
1300         id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1301         ok(id == first_id, "wrong child id %ld\n", id);
1302         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1303         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1304     }
1305
1306     mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1307                                  0,
1308                                  CW_USEDEFAULT, CW_USEDEFAULT,
1309                                  CW_USEDEFAULT, CW_USEDEFAULT,
1310                                  mdi_client, GetModuleHandle(0),
1311                                  (LPARAM)mdi_lParam_test_message);
1312     ok(mdi_child != 0, "MDI child creation failed\n");
1313     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1314     ok(id == first_id, "wrong child id %ld\n", id);
1315     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1316     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1317
1318     mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1319                                  0x7fffffff, /* without WS_POPUP */
1320                                  CW_USEDEFAULT, CW_USEDEFAULT,
1321                                  CW_USEDEFAULT, CW_USEDEFAULT,
1322                                  mdi_client, GetModuleHandle(0),
1323                                  (LPARAM)mdi_lParam_test_message);
1324     ok(mdi_child != 0, "MDI child creation failed\n");
1325     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1326     ok(id == first_id, "wrong child id %ld\n", id);
1327     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1328     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1329
1330     mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1331                                  0xffffffff, /* with WS_POPUP */
1332                                  CW_USEDEFAULT, CW_USEDEFAULT,
1333                                  CW_USEDEFAULT, CW_USEDEFAULT,
1334                                  mdi_client, GetModuleHandle(0),
1335                                  (LPARAM)mdi_lParam_test_message);
1336     if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1337     {
1338         ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1339     }
1340     else
1341     {
1342         ok(mdi_child != 0, "MDI child creation failed\n");
1343         id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1344         ok(id == first_id, "wrong child id %ld\n", id);
1345         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1346         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1347     }
1348
1349     /* test MDICREATESTRUCT A<->W mapping */
1350     SetLastError(0xdeadbeef);
1351     mdi_child = CreateMDIWindowW(classW, titleW,
1352                                  0,
1353                                  CW_USEDEFAULT, CW_USEDEFAULT,
1354                                  CW_USEDEFAULT, CW_USEDEFAULT,
1355                                  mdi_client, GetModuleHandle(0),
1356                                  (LPARAM)mdi_lParam_test_message);
1357     if (!mdi_child)
1358     {
1359         if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1360             isWin9x = TRUE;
1361         else
1362             ok(mdi_child != 0, "MDI child creation failed\n");
1363     }
1364     else
1365     {
1366         id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1367         ok(id == first_id, "wrong child id %ld\n", id);
1368         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1369         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1370     }
1371
1372     mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1373                                 0,
1374                                 CW_USEDEFAULT, CW_USEDEFAULT,
1375                                 CW_USEDEFAULT, CW_USEDEFAULT,
1376                                 mdi_client, 0, GetModuleHandle(0),
1377                                 mdi_lParam_test_message);
1378     ok(mdi_child != 0, "MDI child creation failed\n");
1379     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1380     ok(id == first_id, "wrong child id %ld\n", id);
1381     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1382     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1383
1384     mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1385                                 0x7fffffff, /* without WS_POPUP */
1386                                 CW_USEDEFAULT, CW_USEDEFAULT,
1387                                 CW_USEDEFAULT, CW_USEDEFAULT,
1388                                 mdi_client, 0, GetModuleHandle(0),
1389                                 mdi_lParam_test_message);
1390     ok(mdi_child != 0, "MDI child creation failed\n");
1391     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1392     ok(id == first_id, "wrong child id %ld\n", id);
1393     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1394     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1395
1396     mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1397                                 0xffffffff, /* with WS_POPUP */
1398                                 CW_USEDEFAULT, CW_USEDEFAULT,
1399                                 CW_USEDEFAULT, CW_USEDEFAULT,
1400                                 mdi_client, 0, GetModuleHandle(0),
1401                                 mdi_lParam_test_message);
1402     if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1403     {
1404         ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1405     }
1406     else
1407     {
1408         ok(mdi_child != 0, "MDI child creation failed\n");
1409         id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1410         ok(id == first_id, "wrong child id %ld\n", id);
1411         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1412         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1413     }
1414
1415     /* test MDICREATESTRUCT A<->W mapping */
1416     SetLastError(0xdeadbeef);
1417     mdi_child = CreateWindowExW(WS_EX_MDICHILD, classW, titleW,
1418                                 0,
1419                                 CW_USEDEFAULT, CW_USEDEFAULT,
1420                                 CW_USEDEFAULT, CW_USEDEFAULT,
1421                                 mdi_client, 0, GetModuleHandle(0),
1422                                 mdi_lParam_test_message);
1423     if (!mdi_child)
1424     {
1425         if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1426             isWin9x = TRUE;
1427         else
1428             ok(mdi_child != 0, "MDI child creation failed\n");
1429     }
1430     else
1431     {
1432         id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1433         ok(id == first_id, "wrong child id %ld\n", id);
1434         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1435         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1436     }
1437
1438     /* This test fails on Win9x */
1439     if (!isWin9x)
1440     {
1441         mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_2", "MDI child",
1442                                 WS_CHILD,
1443                                 CW_USEDEFAULT, CW_USEDEFAULT,
1444                                 CW_USEDEFAULT, CW_USEDEFAULT,
1445                                 parent, 0, GetModuleHandle(0),
1446                                 mdi_lParam_test_message);
1447         ok(!mdi_child, "WS_EX_MDICHILD with a not MDIClient parent should fail\n");
1448     }
1449
1450     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1451                                 WS_CHILD, /* without WS_POPUP */
1452                                 CW_USEDEFAULT, CW_USEDEFAULT,
1453                                 CW_USEDEFAULT, CW_USEDEFAULT,
1454                                 mdi_client, 0, GetModuleHandle(0),
1455                                 mdi_lParam_test_message);
1456     ok(mdi_child != 0, "MDI child creation failed\n");
1457     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1458     ok(id == 0, "wrong child id %ld\n", id);
1459     DestroyWindow(mdi_child);
1460
1461     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1462                                 WS_CHILD | WS_POPUP, /* with WS_POPUP */
1463                                 CW_USEDEFAULT, CW_USEDEFAULT,
1464                                 CW_USEDEFAULT, CW_USEDEFAULT,
1465                                 mdi_client, 0, GetModuleHandle(0),
1466                                 mdi_lParam_test_message);
1467     ok(mdi_child != 0, "MDI child creation failed\n");
1468     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1469     ok(id == 0, "wrong child id %ld\n", id);
1470     DestroyWindow(mdi_child);
1471
1472     /* maximized child */
1473     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1474                                 WS_CHILD | WS_MAXIMIZE,
1475                                 CW_USEDEFAULT, CW_USEDEFAULT,
1476                                 CW_USEDEFAULT, CW_USEDEFAULT,
1477                                 mdi_client, 0, GetModuleHandle(0),
1478                                 mdi_lParam_test_message);
1479     ok(mdi_child != 0, "MDI child creation failed\n");
1480     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1481     ok(id == 0, "wrong child id %ld\n", id);
1482     DestroyWindow(mdi_child);
1483
1484     trace("Creating maximized child with a caption\n");
1485     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1486                                 WS_CHILD | WS_MAXIMIZE | WS_CAPTION,
1487                                 CW_USEDEFAULT, CW_USEDEFAULT,
1488                                 CW_USEDEFAULT, CW_USEDEFAULT,
1489                                 mdi_client, 0, GetModuleHandle(0),
1490                                 mdi_lParam_test_message);
1491     ok(mdi_child != 0, "MDI child creation failed\n");
1492     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1493     ok(id == 0, "wrong child id %ld\n", id);
1494     DestroyWindow(mdi_child);
1495
1496     trace("Creating maximized child with a caption and a thick frame\n");
1497     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1498                                 WS_CHILD | WS_MAXIMIZE | WS_CAPTION | WS_THICKFRAME,
1499                                 CW_USEDEFAULT, CW_USEDEFAULT,
1500                                 CW_USEDEFAULT, CW_USEDEFAULT,
1501                                 mdi_client, 0, GetModuleHandle(0),
1502                                 mdi_lParam_test_message);
1503     ok(mdi_child != 0, "MDI child creation failed\n");
1504     id = GetWindowLongPtrA(mdi_child, GWLP_ID);
1505     ok(id == 0, "wrong child id %ld\n", id);
1506     DestroyWindow(mdi_child);
1507 }
1508
1509 /**********************************************************************
1510  * MDI_ChildGetMinMaxInfo (copied from windows/mdi.c)
1511  *
1512  * Note: The rule here is that client rect of the maximized MDI child
1513  *       is equal to the client rect of the MDI client window.
1514  */
1515 static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax )
1516 {
1517     RECT rect;
1518
1519     GetClientRect( client, &rect );
1520     AdjustWindowRectEx( &rect, GetWindowLongA( hwnd, GWL_STYLE ),
1521                         0, GetWindowLongA( hwnd, GWL_EXSTYLE ));
1522
1523     rect.right -= rect.left;
1524     rect.bottom -= rect.top;
1525     lpMinMax->ptMaxSize.x = rect.right;
1526     lpMinMax->ptMaxSize.y = rect.bottom;
1527
1528     lpMinMax->ptMaxPosition.x = rect.left;
1529     lpMinMax->ptMaxPosition.y = rect.top;
1530
1531     trace("max rect (%d,%d - %d, %d)\n",
1532            rect.left, rect.top, rect.right, rect.bottom);
1533 }
1534
1535 static LRESULT WINAPI mdi_child_wnd_proc_1(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1536 {
1537     switch (msg)
1538     {
1539         case WM_NCCREATE:
1540         case WM_CREATE:
1541         {
1542             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
1543             MDICREATESTRUCTA *mdi_cs = cs->lpCreateParams;
1544
1545             ok(cs->dwExStyle & WS_EX_MDICHILD, "WS_EX_MDICHILD should be set\n");
1546             ok(mdi_cs->lParam == (LPARAM)mdi_lParam_test_message, "wrong mdi_cs->lParam\n");
1547
1548             ok(!lstrcmpA(cs->lpszClass, "MDI_child_Class_1"), "wrong class name\n");
1549             ok(!lstrcmpA(cs->lpszClass, mdi_cs->szClass), "class name does not match\n");
1550             ok(!lstrcmpA(cs->lpszName, "MDI child"), "wrong title\n");
1551             ok(!lstrcmpA(cs->lpszName, mdi_cs->szTitle), "title does not match\n");
1552             ok(cs->hInstance == mdi_cs->hOwner, "%p != %p\n", cs->hInstance, mdi_cs->hOwner);
1553
1554             /* MDICREATESTRUCT should have original values */
1555             ok(mdi_cs->style == 0 || mdi_cs->style == 0x7fffffff || mdi_cs->style == 0xffffffff,
1556                 "mdi_cs->style does not match (%08x)\n", mdi_cs->style);
1557             ok(mdi_cs->x == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->x);
1558             ok(mdi_cs->y == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->y);
1559             ok(mdi_cs->cx == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->cx);
1560             ok(mdi_cs->cy == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->cy);
1561
1562             /* CREATESTRUCT should have fixed values */
1563             ok(cs->x != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->x);
1564             ok(cs->y != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->y);
1565
1566             /* cx/cy == CW_USEDEFAULT are translated to NOT zero values */
1567             ok(cs->cx != CW_USEDEFAULT && cs->cx != 0, "%d == CW_USEDEFAULT\n", cs->cx);
1568             ok(cs->cy != CW_USEDEFAULT && cs->cy != 0, "%d == CW_USEDEFAULT\n", cs->cy);
1569
1570             ok(!(cs->style & WS_POPUP), "WS_POPUP is not allowed\n");
1571
1572             if (GetWindowLongA(cs->hwndParent, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1573             {
1574                 LONG style = mdi_cs->style | WS_CHILD | WS_CLIPSIBLINGS;
1575                 ok(cs->style == style,
1576                    "cs->style does not match (%08x)\n", cs->style);
1577             }
1578             else
1579             {
1580                 LONG style = mdi_cs->style;
1581                 style &= ~WS_POPUP;
1582                 style |= WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CAPTION |
1583                     WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
1584                 ok(cs->style == style,
1585                    "cs->style does not match (%08x)\n", cs->style);
1586             }
1587             break;
1588         }
1589
1590         case WM_GETMINMAXINFO:
1591         {
1592             HWND client = GetParent(hwnd);
1593             RECT rc;
1594             MINMAXINFO *minmax = (MINMAXINFO *)lparam;
1595             MINMAXINFO my_minmax;
1596             LONG style, exstyle;
1597
1598             style = GetWindowLongA(hwnd, GWL_STYLE);
1599             exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
1600
1601             GetWindowRect(client, &rc);
1602             trace("MDI client %p window size = (%d x %d)\n", client, rc.right-rc.left, rc.bottom-rc.top);
1603             GetClientRect(client, &rc);
1604             trace("MDI client %p client size = (%d x %d)\n", client, rc.right, rc.bottom);
1605             trace("screen size: %d x %d\n", GetSystemMetrics(SM_CXSCREEN),
1606                                             GetSystemMetrics(SM_CYSCREEN));
1607
1608             GetClientRect(client, &rc);
1609             if ((style & WS_CAPTION) == WS_CAPTION)
1610                 style &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
1611             AdjustWindowRectEx(&rc, style, 0, exstyle);
1612             trace("MDI child: calculated max window size = (%d x %d)\n", rc.right-rc.left, rc.bottom-rc.top);
1613             dump_minmax_info( minmax );
1614
1615             ok(minmax->ptMaxSize.x == rc.right - rc.left, "default width of maximized child %d != %d\n",
1616                minmax->ptMaxSize.x, rc.right - rc.left);
1617             ok(minmax->ptMaxSize.y == rc.bottom - rc.top, "default height of maximized child %d != %d\n",
1618                minmax->ptMaxSize.y, rc.bottom - rc.top);
1619
1620             DefMDIChildProcA(hwnd, msg, wparam, lparam);
1621
1622             trace("DefMDIChildProc returned:\n");
1623             dump_minmax_info( minmax );
1624
1625             MDI_ChildGetMinMaxInfo(client, hwnd, &my_minmax);
1626             ok(minmax->ptMaxSize.x == my_minmax.ptMaxSize.x, "default width of maximized child %d != %d\n",
1627                minmax->ptMaxSize.x, my_minmax.ptMaxSize.x);
1628             ok(minmax->ptMaxSize.y == my_minmax.ptMaxSize.y, "default height of maximized child %d != %d\n",
1629                minmax->ptMaxSize.y, my_minmax.ptMaxSize.y);
1630
1631             return 1;
1632         }
1633
1634         case WM_MDIACTIVATE:
1635         {
1636             HWND active, client = GetParent(hwnd);
1637             /*trace("%p WM_MDIACTIVATE %08x %08lx\n", hwnd, wparam, lparam);*/
1638             active = (HWND)SendMessageA(client, WM_MDIGETACTIVE, 0, 0);
1639             if (hwnd == (HWND)lparam) /* if we are being activated */
1640                 ok (active == (HWND)lparam, "new active %p != active %p\n", (HWND)lparam, active);
1641             else
1642                 ok (active == (HWND)wparam, "old active %p != active %p\n", (HWND)wparam, active);
1643             break;
1644         }
1645     }
1646     return DefMDIChildProcA(hwnd, msg, wparam, lparam);
1647 }
1648
1649 static LRESULT WINAPI mdi_child_wnd_proc_2(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1650 {
1651     switch (msg)
1652     {
1653         case WM_NCCREATE:
1654         case WM_CREATE:
1655         {
1656             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
1657
1658             trace("%s: x %d, y %d, cx %d, cy %d\n", (msg == WM_NCCREATE) ? "WM_NCCREATE" : "WM_CREATE",
1659                 cs->x, cs->y, cs->cx, cs->cy);
1660
1661             ok(!(cs->dwExStyle & WS_EX_MDICHILD), "WS_EX_MDICHILD should not be set\n");
1662             ok(cs->lpCreateParams == mdi_lParam_test_message, "wrong cs->lpCreateParams\n");
1663
1664             ok(!lstrcmpA(cs->lpszClass, "MDI_child_Class_2"), "wrong class name\n");
1665             ok(!lstrcmpA(cs->lpszName, "MDI child"), "wrong title\n");
1666
1667             /* CREATESTRUCT should have fixed values */
1668             /* For some reason Win9x doesn't translate cs->x from CW_USEDEFAULT,
1669                while NT does. */
1670             /*ok(cs->x != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->x);*/
1671             ok(cs->y != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->y);
1672
1673             /* cx/cy == CW_USEDEFAULT are translated to 0 */
1674             /* For some reason Win98 doesn't translate cs->cx from CW_USEDEFAULT,
1675                while Win95, Win2k, WinXP do. */
1676             /*ok(cs->cx == 0, "%d != 0\n", cs->cx);*/
1677             ok(cs->cy == 0, "%d != 0\n", cs->cy);
1678             break;
1679         }
1680
1681         case WM_GETMINMAXINFO:
1682         {
1683             HWND parent = GetParent(hwnd);
1684             RECT rc;
1685             MINMAXINFO *minmax = (MINMAXINFO *)lparam;
1686             LONG style, exstyle;
1687
1688             style = GetWindowLongA(hwnd, GWL_STYLE);
1689             exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
1690
1691             GetClientRect(parent, &rc);
1692             trace("WM_GETMINMAXINFO: parent %p client size = (%d x %d)\n", parent, rc.right, rc.bottom);
1693
1694             GetClientRect(parent, &rc);
1695             if ((style & WS_CAPTION) == WS_CAPTION)
1696                 style &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
1697             AdjustWindowRectEx(&rc, style, 0, exstyle);
1698             dump_minmax_info( minmax );
1699
1700             ok(minmax->ptMaxSize.x == rc.right - rc.left, "default width of maximized child %d != %d\n",
1701                minmax->ptMaxSize.x, rc.right - rc.left);
1702             ok(minmax->ptMaxSize.y == rc.bottom - rc.top, "default height of maximized child %d != %d\n",
1703                minmax->ptMaxSize.y, rc.bottom - rc.top);
1704             break;
1705         }
1706
1707         case WM_WINDOWPOSCHANGED:
1708         {
1709             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1710             RECT rc1, rc2;
1711
1712             GetWindowRect(hwnd, &rc1);
1713             SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
1714             /* note: winpos coordinates are relative to parent */
1715             MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
1716             ok(EqualRect(&rc1, &rc2), "rects do not match, window=(%d,%d)-(%d,%d) pos=(%d,%d)-(%d,%d)\n",
1717                rc1.left, rc1.top, rc1.right, rc1.bottom,
1718                rc2.left, rc2.top, rc2.right, rc2.bottom);
1719             GetWindowRect(hwnd, &rc1);
1720             GetClientRect(hwnd, &rc2);
1721             DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
1722             MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
1723             ok(EqualRect(&rc1, &rc2), "rects do not match, window=(%d,%d)-(%d,%d) client=(%d,%d)-(%d,%d)\n",
1724                rc1.left, rc1.top, rc1.right, rc1.bottom,
1725                rc2.left, rc2.top, rc2.right, rc2.bottom);
1726         }
1727         /* fall through */
1728         case WM_WINDOWPOSCHANGING:
1729         {
1730             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1731             WINDOWPOS my_winpos = *winpos;
1732
1733             trace("%s: %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1734                   (msg == WM_WINDOWPOSCHANGING) ? "WM_WINDOWPOSCHANGING" : "WM_WINDOWPOSCHANGED",
1735                   winpos->hwnd, winpos->hwndInsertAfter,
1736                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1737
1738             DefWindowProcA(hwnd, msg, wparam, lparam);
1739
1740             ok(!memcmp(&my_winpos, winpos, sizeof(WINDOWPOS)),
1741                "DefWindowProc should not change WINDOWPOS: %p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1742                   winpos->hwnd, winpos->hwndInsertAfter,
1743                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1744
1745             return 1;
1746         }
1747     }
1748     return DefWindowProcA(hwnd, msg, wparam, lparam);
1749 }
1750
1751 static LRESULT WINAPI mdi_main_wnd_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1752 {
1753     static HWND mdi_client;
1754
1755     switch (msg)
1756     {
1757         case WM_CREATE:
1758         {
1759             CLIENTCREATESTRUCT client_cs;
1760             RECT rc;
1761
1762             GetClientRect(hwnd, &rc);
1763
1764             client_cs.hWindowMenu = 0;
1765             client_cs.idFirstChild = 1;
1766
1767             /* MDIClient without MDIS_ALLCHILDSTYLES */
1768             mdi_client = CreateWindowExA(0, "mdiclient",
1769                                          NULL,
1770                                          WS_CHILD /*| WS_VISIBLE*/,
1771                                           /* tests depend on a not zero MDIClient size */
1772                                          0, 0, rc.right, rc.bottom,
1773                                          hwnd, 0, GetModuleHandle(0),
1774                                          &client_cs);
1775             assert(mdi_client);
1776             test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1777             DestroyWindow(mdi_client);
1778
1779             /* MDIClient with MDIS_ALLCHILDSTYLES */
1780             mdi_client = CreateWindowExA(0, "mdiclient",
1781                                          NULL,
1782                                          WS_CHILD | MDIS_ALLCHILDSTYLES /*| WS_VISIBLE*/,
1783                                           /* tests depend on a not zero MDIClient size */
1784                                          0, 0, rc.right, rc.bottom,
1785                                          hwnd, 0, GetModuleHandle(0),
1786                                          &client_cs);
1787             assert(mdi_client);
1788             test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1789             DestroyWindow(mdi_client);
1790             break;
1791         }
1792
1793         case WM_WINDOWPOSCHANGED:
1794         {
1795             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1796             RECT rc1, rc2;
1797
1798             GetWindowRect(hwnd, &rc1);
1799             trace("window: (%d,%d)-(%d,%d)\n", rc1.left, rc1.top, rc1.right, rc1.bottom);
1800             SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
1801             /* note: winpos coordinates are relative to parent */
1802             MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
1803             trace("pos: (%d,%d)-(%d,%d)\n", rc2.left, rc2.top, rc2.right, rc2.bottom);
1804             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1805
1806             GetWindowRect(hwnd, &rc1);
1807             GetClientRect(hwnd, &rc2);
1808             DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
1809             MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
1810             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1811         }
1812         /* fall through */
1813         case WM_WINDOWPOSCHANGING:
1814         {
1815             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1816             WINDOWPOS my_winpos = *winpos;
1817
1818             trace("%s\n", (msg == WM_WINDOWPOSCHANGING) ? "WM_WINDOWPOSCHANGING" : "WM_WINDOWPOSCHANGED");
1819             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1820                   winpos->hwnd, winpos->hwndInsertAfter,
1821                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1822
1823             DefWindowProcA(hwnd, msg, wparam, lparam);
1824
1825             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1826                   winpos->hwnd, winpos->hwndInsertAfter,
1827                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1828
1829             ok(!memcmp(&my_winpos, winpos, sizeof(WINDOWPOS)),
1830                "DefWindowProc should not change WINDOWPOS values\n");
1831
1832             return 1;
1833         }
1834
1835         case WM_CLOSE:
1836             PostQuitMessage(0);
1837             break;
1838     }
1839     return DefFrameProcA(hwnd, mdi_client, msg, wparam, lparam);
1840 }
1841
1842 static BOOL mdi_RegisterWindowClasses(void)
1843 {
1844     WNDCLASSA cls;
1845
1846     cls.style = 0;
1847     cls.lpfnWndProc = mdi_main_wnd_procA;
1848     cls.cbClsExtra = 0;
1849     cls.cbWndExtra = 0;
1850     cls.hInstance = GetModuleHandleA(0);
1851     cls.hIcon = 0;
1852     cls.hCursor = LoadCursorA(0, IDC_ARROW);
1853     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
1854     cls.lpszMenuName = NULL;
1855     cls.lpszClassName = "MDI_parent_Class";
1856     if(!RegisterClassA(&cls)) return FALSE;
1857
1858     cls.lpfnWndProc = mdi_child_wnd_proc_1;
1859     cls.lpszClassName = "MDI_child_Class_1";
1860     if(!RegisterClassA(&cls)) return FALSE;
1861
1862     cls.lpfnWndProc = mdi_child_wnd_proc_2;
1863     cls.lpszClassName = "MDI_child_Class_2";
1864     if(!RegisterClassA(&cls)) return FALSE;
1865
1866     return TRUE;
1867 }
1868
1869 static void test_mdi(void)
1870 {
1871     HWND mdi_hwndMain;
1872     /*MSG msg;*/
1873
1874     if (!mdi_RegisterWindowClasses()) assert(0);
1875
1876     mdi_hwndMain = CreateWindowExA(0, "MDI_parent_Class", "MDI parent window",
1877                                    WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
1878                                    WS_MAXIMIZEBOX /*| WS_VISIBLE*/,
1879                                    100, 100, CW_USEDEFAULT, CW_USEDEFAULT,
1880                                    GetDesktopWindow(), 0,
1881                                    GetModuleHandle(0), NULL);
1882     assert(mdi_hwndMain);
1883 /*
1884     while(GetMessage(&msg, 0, 0, 0))
1885     {
1886         TranslateMessage(&msg);
1887         DispatchMessage(&msg);
1888     }
1889 */
1890     DestroyWindow(mdi_hwndMain);
1891 }
1892
1893 static void test_icons(void)
1894 {
1895     WNDCLASSEXA cls;
1896     HWND hwnd;
1897     HICON icon = LoadIconA(0, IDI_APPLICATION);
1898     HICON icon2 = LoadIconA(0, IDI_QUESTION);
1899     HICON small_icon = LoadImageA(0, IDI_APPLICATION, IMAGE_ICON,
1900                                   GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED );
1901     HICON res;
1902
1903     cls.cbSize = sizeof(cls);
1904     cls.style = 0;
1905     cls.lpfnWndProc = DefWindowProcA;
1906     cls.cbClsExtra = 0;
1907     cls.cbWndExtra = 0;
1908     cls.hInstance = 0;
1909     cls.hIcon = LoadIconA(0, IDI_HAND);
1910     cls.hIconSm = small_icon;
1911     cls.hCursor = LoadCursorA(0, IDC_ARROW);
1912     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
1913     cls.lpszMenuName = NULL;
1914     cls.lpszClassName = "IconWindowClass";
1915
1916     RegisterClassExA(&cls);
1917
1918     hwnd = CreateWindowExA(0, "IconWindowClass", "icon test", 0,
1919                            100, 100, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, NULL, NULL);
1920     assert( hwnd );
1921
1922     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1923     ok( res == 0, "wrong big icon %p/0\n", res );
1924     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_BIG, (LPARAM)icon );
1925     ok( res == 0, "wrong previous big icon %p/0\n", res );
1926     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1927     ok( res == icon, "wrong big icon after set %p/%p\n", res, icon );
1928     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_BIG, (LPARAM)icon2 );
1929     ok( res == icon, "wrong previous big icon %p/%p\n", res, icon );
1930     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1931     ok( res == icon2, "wrong big icon after set %p/%p\n", res, icon2 );
1932
1933     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1934     ok( res == 0, "wrong small icon %p/0\n", res );
1935     /* this test is XP specific */
1936     /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1937     ok( res != 0, "wrong small icon %p\n", res );*/
1938     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_SMALL, (LPARAM)icon );
1939     ok( res == 0, "wrong previous small icon %p/0\n", res );
1940     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1941     ok( res == icon, "wrong small icon after set %p/%p\n", res, icon );
1942     /* this test is XP specific */
1943     /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1944     ok( res == icon, "wrong small icon after set %p/%p\n", res, icon );*/
1945     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_SMALL, (LPARAM)small_icon );
1946     ok( res == icon, "wrong previous small icon %p/%p\n", res, icon );
1947     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1948     ok( res == small_icon, "wrong small icon after set %p/%p\n", res, small_icon );
1949     /* this test is XP specific */
1950     /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1951     ok( res == small_icon, "wrong small icon after set %p/%p\n", res, small_icon );*/
1952
1953     /* make sure the big icon hasn't changed */
1954     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1955     ok( res == icon2, "wrong big icon after set %p/%p\n", res, icon2 );
1956
1957     DestroyWindow( hwnd );
1958 }
1959
1960 static LRESULT WINAPI nccalcsize_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1961 {
1962     if (msg == WM_NCCALCSIZE)
1963     {
1964         RECT *rect = (RECT *)lparam;
1965         /* first time around increase the rectangle, next time decrease it */
1966         if (rect->left == 100) InflateRect( rect, 10, 10 );
1967         else InflateRect( rect, -10, -10 );
1968         return 0;
1969     }
1970     return DefWindowProc( hwnd, msg, wparam, lparam );
1971 }
1972
1973 static void test_SetWindowPos(HWND hwnd, HWND hwnd2)
1974 {
1975     RECT orig_win_rc, rect;
1976     LONG_PTR old_proc;
1977     HWND hwnd_grandchild, hwnd_child, hwnd_child2;
1978     HWND hwnd_desktop;
1979     RECT rc1, rc2;
1980     BOOL ret;
1981
1982     SetRect(&rect, 111, 222, 333, 444);
1983     ok(!GetWindowRect(0, &rect), "GetWindowRect succeeded\n");
1984     ok(rect.left == 111 && rect.top == 222 && rect.right == 333 && rect.bottom == 444,
1985        "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1986
1987     SetRect(&rect, 111, 222, 333, 444);
1988     ok(!GetClientRect(0, &rect), "GetClientRect succeeded\n");
1989     ok(rect.left == 111 && rect.top == 222 && rect.right == 333 && rect.bottom == 444,
1990        "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
1991
1992     GetWindowRect(hwnd, &orig_win_rc);
1993
1994     old_proc = SetWindowLongPtr( hwnd, GWLP_WNDPROC, (ULONG_PTR)nccalcsize_proc );
1995     ret = SetWindowPos(hwnd, 0, 100, 100, 0, 0, SWP_NOZORDER|SWP_FRAMECHANGED);
1996     ok(ret, "Got %d\n", ret);
1997     GetWindowRect( hwnd, &rect );
1998     ok( rect.left == 100 && rect.top == 100 && rect.right == 100 && rect.bottom == 100,
1999         "invalid window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
2000     GetClientRect( hwnd, &rect );
2001     MapWindowPoints( hwnd, 0, (POINT *)&rect, 2 );
2002     ok( rect.left == 90 && rect.top == 90 && rect.right == 110 && rect.bottom == 110,
2003         "invalid client rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
2004
2005     ret = SetWindowPos(hwnd, 0, 200, 200, 0, 0, SWP_NOZORDER|SWP_FRAMECHANGED);
2006     ok(ret, "Got %d\n", ret);
2007     GetWindowRect( hwnd, &rect );
2008     ok( rect.left == 200 && rect.top == 200 && rect.right == 200 && rect.bottom == 200,
2009         "invalid window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
2010     GetClientRect( hwnd, &rect );
2011     MapWindowPoints( hwnd, 0, (POINT *)&rect, 2 );
2012     ok( rect.left == 210 && rect.top == 210 && rect.right == 190 && rect.bottom == 190,
2013         "invalid client rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
2014
2015     ret = SetWindowPos(hwnd, 0, orig_win_rc.left, orig_win_rc.top,
2016                       orig_win_rc.right, orig_win_rc.bottom, 0);
2017     ok(ret, "Got %d\n", ret);
2018     SetWindowLongPtr( hwnd, GWLP_WNDPROC, old_proc );
2019
2020     /* Win9x truncates coordinates to 16-bit irrespectively */
2021     if (!is_win9x)
2022     {
2023         ret = SetWindowPos(hwnd, 0, -32769, -40000, -32769, -90000, SWP_NOMOVE);
2024         ok(ret, "Got %d\n", ret);
2025         ret = SetWindowPos(hwnd, 0, 32768, 40000, 32768, 40000, SWP_NOMOVE);
2026         ok(ret, "Got %d\n", ret);
2027
2028         ret = SetWindowPos(hwnd, 0, -32769, -40000, -32769, -90000, SWP_NOSIZE);
2029         ok(ret, "Got %d\n", ret);
2030         ret = SetWindowPos(hwnd, 0, 32768, 40000, 32768, 40000, SWP_NOSIZE);
2031         ok(ret, "Got %d\n", ret);
2032     }
2033
2034     ret = SetWindowPos(hwnd, 0, orig_win_rc.left, orig_win_rc.top,
2035                        orig_win_rc.right, orig_win_rc.bottom, 0);
2036     ok(ret, "Got %d\n", ret);
2037
2038     ok(!(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST), "WS_EX_TOPMOST should not be set\n");
2039     ret = SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
2040     ok(ret, "Got %d\n", ret);
2041     ok(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST, "WS_EX_TOPMOST should be set\n");
2042     ret = SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
2043     ok(ret, "Got %d\n", ret);
2044     ok(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST, "WS_EX_TOPMOST should be set\n");
2045     ret = SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
2046     ok(ret, "Got %d\n", ret);
2047     ok(!(GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_TOPMOST), "WS_EX_TOPMOST should not be set\n");
2048
2049     hwnd_desktop = GetDesktopWindow();
2050     ok(!!hwnd_desktop, "Failed to get hwnd_desktop window (%d).\n", GetLastError());
2051     hwnd_child = create_tool_window(WS_VISIBLE|WS_CHILD, hwnd);
2052     ok(!!hwnd_child, "Failed to create child window (%d)\n", GetLastError());
2053     hwnd_grandchild = create_tool_window(WS_VISIBLE|WS_CHILD, hwnd_child);
2054     ok(!!hwnd_child, "Failed to create child window (%d)\n", GetLastError());
2055     hwnd_child2 = create_tool_window(WS_VISIBLE|WS_CHILD, hwnd);
2056     ok(!!hwnd_child2, "Failed to create second child window (%d)\n", GetLastError());
2057
2058     ret = SetWindowPos(hwnd, hwnd2, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2059     ok(ret, "Got %d\n", ret);
2060     check_active_state(hwnd, hwnd, hwnd);
2061
2062     ret = SetWindowPos(hwnd2, hwnd, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2063     ok(ret, "Got %d\n", ret);
2064     check_active_state(hwnd2, hwnd2, hwnd2);
2065
2066     /* Returns TRUE also for windows that are not siblings */
2067     ret = SetWindowPos(hwnd_child, hwnd2, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2068     ok(ret, "Got %d\n", ret);
2069     check_active_state(hwnd2, hwnd2, hwnd2);
2070
2071     ret = SetWindowPos(hwnd2, hwnd_child, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2072     ok(ret, "Got %d\n", ret);
2073     check_active_state(hwnd2, hwnd2, hwnd2);
2074
2075     /* Does not seem to do anything even without passing flags, still returns TRUE */
2076     GetWindowRect(hwnd_child, &rc1);
2077     ret = SetWindowPos(hwnd_child, hwnd2 , 1, 2, 3, 4, 0);
2078     ok(ret, "Got %d\n", ret);
2079     GetWindowRect(hwnd_child, &rc2);
2080     ok(rc1.left == rc2.left && rc1.top == rc2.top &&
2081        rc1.right == rc2.right && rc1.bottom == rc2.bottom,
2082        "(%d, %d, %d, %d) != (%d, %d, %d, %d)\n",
2083        rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom);
2084     check_active_state(hwnd2, hwnd2, hwnd2);
2085
2086     /* Same thing the other way around. */
2087     GetWindowRect(hwnd2, &rc1);
2088     ret = SetWindowPos(hwnd2, hwnd_child, 1, 2, 3, 4, 0);
2089     ok(ret, "Got %d\n", ret);
2090     GetWindowRect(hwnd2, &rc2);
2091     ok(rc1.left == rc2.left && rc1.top == rc2.top &&
2092        rc1.right == rc2.right && rc1.bottom == rc2.bottom,
2093        "(%d, %d, %d, %d) != (%d, %d, %d, %d)\n",
2094        rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom);
2095     check_active_state(hwnd2, hwnd2, hwnd2);
2096
2097     /* .. and with these windows. */
2098     GetWindowRect(hwnd_grandchild, &rc1);
2099     ret = SetWindowPos(hwnd_grandchild, hwnd_child2, 1, 2, 3, 4, 0);
2100     ok(ret, "Got %d\n", ret);
2101     GetWindowRect(hwnd_grandchild, &rc2);
2102     ok(rc1.left == rc2.left && rc1.top == rc2.top &&
2103        rc1.right == rc2.right && rc1.bottom == rc2.bottom,
2104        "(%d, %d, %d, %d) != (%d, %d, %d, %d)\n",
2105        rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom);
2106     check_active_state(hwnd2, hwnd2, hwnd2);
2107
2108     /* Add SWP_NOZORDER and it will be properly resized. */
2109     GetWindowRect(hwnd_grandchild, &rc1);
2110     ret = SetWindowPos(hwnd_grandchild, hwnd_child2, 1, 2, 3, 4, SWP_NOZORDER);
2111     ok(ret, "Got %d\n", ret);
2112     GetWindowRect(hwnd_grandchild, &rc2);
2113     ok((rc1.left+1) == rc2.left && (rc1.top+2) == rc2.top &&
2114        (rc1.left+4) == rc2.right && (rc1.top+6) == rc2.bottom,
2115        "(%d, %d, %d, %d) != (%d, %d, %d, %d)\n",
2116        rc1.left+1, rc1.top+2, rc1.left+4, rc1.top+6, rc2.left, rc2.top, rc2.right, rc2.bottom);
2117     check_active_state(hwnd2, hwnd2, hwnd2);
2118
2119     /* Given a sibling window, the window is properly resized. */
2120     GetWindowRect(hwnd_child, &rc1);
2121     ret = SetWindowPos(hwnd_child, hwnd_child2, 1, 2, 3, 4, 0);
2122     ok(ret, "Got %d\n", ret);
2123     GetWindowRect(hwnd_child, &rc2);
2124     ok((rc1.left+1) == rc2.left && (rc1.top+2) == rc2.top &&
2125        (rc1.left+4) == rc2.right && (rc1.top+6) == rc2.bottom,
2126        "(%d, %d, %d, %d) != (%d, %d, %d, %d)\n",
2127        rc1.left+1, rc1.top+2, rc1.left+4, rc1.top+6, rc2.left, rc2.top, rc2.right, rc2.bottom);
2128     check_active_state(hwnd2, hwnd2, hwnd2);
2129
2130     /* Involving the desktop window changes things. */
2131     ret = SetWindowPos(hwnd_child, hwnd_desktop, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2132     ok(!ret, "Got %d\n", ret);
2133     check_active_state(hwnd2, hwnd2, hwnd2);
2134
2135     GetWindowRect(hwnd_child, &rc1);
2136     ret = SetWindowPos(hwnd_child, hwnd_desktop, 0, 0, 0, 0, 0);
2137     ok(!ret, "Got %d\n", ret);
2138     GetWindowRect(hwnd_child, &rc2);
2139     ok(rc1.top == rc2.top && rc1.left == rc2.left &&
2140        rc1.bottom == rc2.bottom && rc1.right == rc2.right,
2141        "(%d, %d, %d, %d) != (%d, %d, %d, %d)\n",
2142        rc1.top, rc1.left, rc1.bottom, rc1.right, rc2.top, rc2.left, rc2.bottom, rc2.right);
2143     check_active_state(hwnd2, hwnd2, hwnd2);
2144
2145     ret = SetWindowPos(hwnd_desktop, hwnd_child, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2146     ok(!ret, "Got %d\n", ret);
2147     check_active_state(hwnd2, hwnd2, hwnd2);
2148
2149     ret = SetWindowPos(hwnd_desktop, hwnd, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2150     ok(!ret, "Got %d\n", ret);
2151     check_active_state(hwnd2, hwnd2, hwnd2);
2152
2153     ret = SetWindowPos(hwnd, hwnd_desktop, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
2154     ok(!ret, "Got %d\n", ret);
2155     check_active_state(hwnd2, hwnd2, hwnd2);
2156
2157     DestroyWindow(hwnd_grandchild);
2158     DestroyWindow(hwnd_child);
2159     DestroyWindow(hwnd_child2);
2160 }
2161
2162 static void test_SetMenu(HWND parent)
2163 {
2164     HWND child;
2165     HMENU hMenu, ret;
2166     BOOL retok;
2167     DWORD style;
2168
2169     hMenu = CreateMenu();
2170     assert(hMenu);
2171
2172     ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
2173     if (0)
2174     {
2175     /* fails on (at least) Wine, NT4, XP SP2 */
2176     test_nonclient_area(parent); 
2177     }
2178     ret = GetMenu(parent);
2179     ok(ret == hMenu, "unexpected menu id %p\n", ret);
2180     /* test whether we can destroy a menu assigned to a window */
2181     retok = DestroyMenu(hMenu);
2182     ok( retok, "DestroyMenu error %d\n", GetLastError());
2183     retok = IsMenu(hMenu);
2184     ok(!retok || broken(retok) /* nt4 */, "menu handle should be not valid after DestroyMenu\n");
2185     ret = GetMenu(parent);
2186     /* This test fails on Win9x */
2187     if (!is_win9x)
2188         ok(ret == hMenu, "unexpected menu id %p\n", ret);
2189     ok(SetMenu(parent, 0), "SetMenu(0) on a top level window should not fail\n");
2190     test_nonclient_area(parent);
2191
2192     hMenu = CreateMenu();
2193     assert(hMenu);
2194
2195     /* parent */
2196     ret = GetMenu(parent);
2197     ok(ret == 0, "unexpected menu id %p\n", ret);
2198
2199     ok(!SetMenu(parent, (HMENU)20), "SetMenu with invalid menu handle should fail\n");
2200     test_nonclient_area(parent);
2201     ret = GetMenu(parent);
2202     ok(ret == 0, "unexpected menu id %p\n", ret);
2203
2204     ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
2205     if (0)
2206     {
2207     /* fails on (at least) Wine, NT4, XP SP2 */
2208     test_nonclient_area(parent);
2209     }
2210     ret = GetMenu(parent);
2211     ok(ret == hMenu, "unexpected menu id %p\n", ret);
2212
2213     ok(SetMenu(parent, 0), "SetMenu(0) on a top level window should not fail\n");
2214     test_nonclient_area(parent);
2215     ret = GetMenu(parent);
2216     ok(ret == 0, "unexpected menu id %p\n", ret);
2217  
2218     /* child */
2219     child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, parent, (HMENU)10, 0, NULL);
2220     assert(child);
2221
2222     ret = GetMenu(child);
2223     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
2224
2225     ok(!SetMenu(child, (HMENU)20), "SetMenu with invalid menu handle should fail\n");
2226     test_nonclient_area(child);
2227     ret = GetMenu(child);
2228     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
2229
2230     ok(!SetMenu(child, hMenu), "SetMenu on a child window should fail\n");
2231     test_nonclient_area(child);
2232     ret = GetMenu(child);
2233     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
2234
2235     ok(!SetMenu(child, 0), "SetMenu(0) on a child window should fail\n");
2236     test_nonclient_area(child);
2237     ret = GetMenu(child);
2238     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
2239
2240     style = GetWindowLong(child, GWL_STYLE);
2241     SetWindowLong(child, GWL_STYLE, style | WS_POPUP);
2242     ok(SetMenu(child, hMenu), "SetMenu on a popup child window should not fail\n");
2243     ok(SetMenu(child, 0), "SetMenu on a popup child window should not fail\n");
2244     SetWindowLong(child, GWL_STYLE, style);
2245
2246     SetWindowLong(child, GWL_STYLE, style | WS_OVERLAPPED);
2247     ok(!SetMenu(child, hMenu), "SetMenu on a overlapped child window should fail\n");
2248     SetWindowLong(child, GWL_STYLE, style);
2249
2250     DestroyWindow(child);
2251     DestroyMenu(hMenu);
2252 }
2253
2254 static void test_window_tree(HWND parent, const DWORD *style, const int *order, int total)
2255 {
2256     HWND child[5], hwnd;
2257     INT_PTR i;
2258
2259     assert(total <= 5);
2260
2261     hwnd = GetWindow(parent, GW_CHILD);
2262     ok(!hwnd, "have to start without children to perform the test\n");
2263
2264     for (i = 0; i < total; i++)
2265     {
2266         if (style[i] & DS_CONTROL)
2267         {
2268             child[i] = CreateWindowExA(0, MAKEINTATOM(32770), "", style[i] & ~WS_VISIBLE,
2269                                        0,0,0,0, parent, (HMENU)i, 0, NULL);
2270             if (style[i] & WS_VISIBLE)
2271                 ShowWindow(child[i], SW_SHOW);
2272
2273             SetWindowPos(child[i], HWND_BOTTOM, 0,0,10,10, SWP_NOACTIVATE);
2274         }
2275         else
2276             child[i] = CreateWindowExA(0, "static", "", style[i], 0,0,10,10,
2277                                        parent, (HMENU)i, 0, NULL);
2278         trace("child[%ld] = %p\n", i, child[i]);
2279         ok(child[i] != 0, "CreateWindowEx failed to create child window\n");
2280     }
2281
2282     hwnd = GetWindow(parent, GW_CHILD);
2283     ok(hwnd != 0, "GetWindow(GW_CHILD) failed\n");
2284     ok(hwnd == GetWindow(child[total - 1], GW_HWNDFIRST), "GW_HWNDFIRST is wrong\n");
2285     ok(child[order[total - 1]] == GetWindow(child[0], GW_HWNDLAST), "GW_HWNDLAST is wrong\n");
2286
2287     for (i = 0; i < total; i++)
2288     {
2289         trace("hwnd[%ld] = %p\n", i, hwnd);
2290         ok(child[order[i]] == hwnd, "Z order of child #%ld is wrong\n", i);
2291
2292         hwnd = GetWindow(hwnd, GW_HWNDNEXT);
2293     }
2294
2295     for (i = 0; i < total; i++)
2296         ok(DestroyWindow(child[i]), "DestroyWindow failed\n");
2297 }
2298
2299 static void test_children_zorder(HWND parent)
2300 {
2301     const DWORD simple_style[5] = { WS_CHILD, WS_CHILD, WS_CHILD, WS_CHILD,
2302                                     WS_CHILD };
2303     const int simple_order[5] = { 0, 1, 2, 3, 4 };
2304
2305     const DWORD complex_style[5] = { WS_CHILD, WS_CHILD | WS_MAXIMIZE,
2306                              WS_CHILD | WS_VISIBLE, WS_CHILD,
2307                              WS_CHILD | WS_MAXIMIZE | WS_VISIBLE };
2308     const int complex_order_1[1] = { 0 };
2309     const int complex_order_2[2] = { 1, 0 };
2310     const int complex_order_3[3] = { 1, 0, 2 };
2311     const int complex_order_4[4] = { 1, 0, 2, 3 };
2312     const int complex_order_5[5] = { 4, 1, 0, 2, 3 };
2313     const DWORD complex_style_6[3] = { WS_CHILD | WS_VISIBLE,
2314                                        WS_CHILD | WS_CLIPSIBLINGS | DS_CONTROL | WS_VISIBLE,
2315                                        WS_CHILD | WS_VISIBLE };
2316     const int complex_order_6[3] = { 0, 1, 2 };
2317
2318     /* simple WS_CHILD */
2319     test_window_tree(parent, simple_style, simple_order, 5);
2320
2321     /* complex children styles */
2322     test_window_tree(parent, complex_style, complex_order_1, 1);
2323     test_window_tree(parent, complex_style, complex_order_2, 2);
2324     test_window_tree(parent, complex_style, complex_order_3, 3);
2325     test_window_tree(parent, complex_style, complex_order_4, 4);
2326     test_window_tree(parent, complex_style, complex_order_5, 5);
2327
2328     /* another set of complex children styles */
2329     test_window_tree(parent, complex_style_6, complex_order_6, 3);
2330 }
2331
2332 #define check_z_order(hwnd, next, prev, owner, topmost) \
2333         check_z_order_debug((hwnd), (next), (prev), (owner), (topmost), \
2334                             __FILE__, __LINE__)
2335
2336 static void check_z_order_debug(HWND hwnd, HWND next, HWND prev, HWND owner,
2337                                 BOOL topmost, const char *file, int line)
2338 {
2339     HWND test;
2340     DWORD ex_style;
2341
2342     test = GetWindow(hwnd, GW_HWNDNEXT);
2343     /* skip foreign windows */
2344     while (test && test != next &&
2345            (GetWindowThreadProcessId(test, NULL) != our_pid ||
2346             UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)) != GetModuleHandle(0) ||
2347             GetWindow(test, GW_OWNER) == next))
2348     {
2349         /*trace("skipping next %p (%p)\n", test, UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)));*/
2350         test = GetWindow(test, GW_HWNDNEXT);
2351     }
2352     ok_(file, line)(next == test, "%p: expected next %p, got %p\n", hwnd, next, test);
2353
2354     test = GetWindow(hwnd, GW_HWNDPREV);
2355     /* skip foreign windows */
2356     while (test && test != prev &&
2357            (GetWindowThreadProcessId(test, NULL) != our_pid ||
2358             UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)) != GetModuleHandle(0) ||
2359             GetWindow(test, GW_OWNER) == hwnd))
2360     {
2361         /*trace("skipping prev %p (%p)\n", test, UlongToHandle(GetWindowLongPtr(test, GWLP_HINSTANCE)));*/
2362         test = GetWindow(test, GW_HWNDPREV);
2363     }
2364     ok_(file, line)(prev == test, "%p: expected prev %p, got %p\n", hwnd, prev, test);
2365
2366     test = GetWindow(hwnd, GW_OWNER);
2367     ok_(file, line)(owner == test, "%p: expected owner %p, got %p\n", hwnd, owner, test);
2368
2369     ex_style = GetWindowLong(hwnd, GWL_EXSTYLE);
2370     ok_(file, line)(!(ex_style & WS_EX_TOPMOST) == !topmost, "%p: expected %stopmost\n",
2371                     hwnd, topmost ? "" : "NOT ");
2372 }
2373
2374 static void test_popup_zorder(HWND hwnd_D, HWND hwnd_E, DWORD style)
2375 {
2376     HWND hwnd_A, hwnd_B, hwnd_C, hwnd_F;
2377
2378     trace("hwnd_D %p, hwnd_E %p\n", hwnd_D, hwnd_E);
2379
2380     SetWindowPos(hwnd_E, hwnd_D, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2381
2382     check_z_order(hwnd_D, hwnd_E, 0, 0, FALSE);
2383     check_z_order(hwnd_E, 0, hwnd_D, 0, FALSE);
2384
2385     hwnd_F = CreateWindowEx(0, "MainWindowClass", "Owner window",
2386                             WS_OVERLAPPED | WS_CAPTION,
2387                             100, 100, 100, 100,
2388                             0, 0, GetModuleHandle(0), NULL);
2389     trace("hwnd_F %p\n", hwnd_F);
2390     check_z_order(hwnd_F, hwnd_D, 0, 0, FALSE);
2391
2392     SetWindowPos(hwnd_F, hwnd_E, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2393     check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2394     check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2395     check_z_order(hwnd_D, hwnd_E, 0, 0, FALSE);
2396
2397     hwnd_C = CreateWindowEx(0, "MainWindowClass", NULL,
2398                             style,
2399                             100, 100, 100, 100,
2400                             hwnd_F, 0, GetModuleHandle(0), NULL);
2401     trace("hwnd_C %p\n", hwnd_C);
2402     check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2403     check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2404     check_z_order(hwnd_D, hwnd_E, hwnd_C, 0, FALSE);
2405     check_z_order(hwnd_C, hwnd_D, 0, hwnd_F, FALSE);
2406
2407     hwnd_B = CreateWindowEx(WS_EX_TOPMOST, "MainWindowClass", NULL,
2408                             style,
2409                             100, 100, 100, 100,
2410                             hwnd_F, 0, GetModuleHandle(0), NULL);
2411     trace("hwnd_B %p\n", hwnd_B);
2412     check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2413     check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2414     check_z_order(hwnd_D, hwnd_E, hwnd_C, 0, FALSE);
2415     check_z_order(hwnd_C, hwnd_D, hwnd_B, hwnd_F, FALSE);
2416     check_z_order(hwnd_B, hwnd_C, 0, hwnd_F, TRUE);
2417
2418     hwnd_A = CreateWindowEx(WS_EX_TOPMOST, "MainWindowClass", NULL,
2419                             style,
2420                             100, 100, 100, 100,
2421                             0, 0, GetModuleHandle(0), NULL);
2422     trace("hwnd_A %p\n", hwnd_A);
2423     check_z_order(hwnd_F, 0, hwnd_E, 0, FALSE);
2424     check_z_order(hwnd_E, hwnd_F, hwnd_D, 0, FALSE);
2425     check_z_order(hwnd_D, hwnd_E, hwnd_C, 0, FALSE);
2426     check_z_order(hwnd_C, hwnd_D, hwnd_B, hwnd_F, FALSE);
2427     check_z_order(hwnd_B, hwnd_C, hwnd_A, hwnd_F, TRUE);
2428     check_z_order(hwnd_A, hwnd_B, 0, 0, TRUE);
2429
2430     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);
2431
2432     /* move hwnd_F and its popups up */
2433     SetWindowPos(hwnd_F, HWND_TOP, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2434     check_z_order(hwnd_E, 0, hwnd_D, 0, FALSE);
2435     check_z_order(hwnd_D, hwnd_E, hwnd_F, 0, FALSE);
2436     check_z_order(hwnd_F, hwnd_D, hwnd_C, 0, FALSE);
2437     check_z_order(hwnd_C, hwnd_F, hwnd_B, hwnd_F, FALSE);
2438     check_z_order(hwnd_B, hwnd_C, hwnd_A, hwnd_F, TRUE);
2439     check_z_order(hwnd_A, hwnd_B, 0, 0, TRUE);
2440
2441     /* move hwnd_F and its popups down */
2442 #if 0 /* enable once Wine is fixed to pass this test */
2443     SetWindowPos(hwnd_F, HWND_BOTTOM, 0,0,0,0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE);
2444     check_z_order(hwnd_F, 0, hwnd_C, 0, FALSE);
2445     check_z_order(hwnd_C, hwnd_F, hwnd_B, hwnd_F, FALSE);
2446     check_z_order(hwnd_B, hwnd_C, hwnd_E, hwnd_F, FALSE);
2447     check_z_order(hwnd_E, hwnd_B, hwnd_D, 0, FALSE);
2448     check_z_order(hwnd_D, hwnd_E, hwnd_A, 0, FALSE);
2449     check_z_order(hwnd_A, hwnd_D, 0, 0, TRUE);
2450 #endif
2451
2452     /* make hwnd_C owned by a topmost window */
2453     DestroyWindow( hwnd_C );
2454     hwnd_C = CreateWindowEx(0, "MainWindowClass", NULL,
2455                             style,
2456                             100, 100, 100, 100,
2457                             hwnd_A, 0, GetModuleHandle(0), NULL);
2458     trace("hwnd_C %p\n", hwnd_C);
2459     check_z_order(hwnd_E, 0, hwnd_D, 0, FALSE);
2460     check_z_order(hwnd_D, hwnd_E, hwnd_F, 0, FALSE);
2461     check_z_order(hwnd_F, hwnd_D, hwnd_B, 0, FALSE);
2462     check_z_order(hwnd_B, hwnd_F, hwnd_A, hwnd_F, TRUE);
2463     check_z_order(hwnd_A, hwnd_B, hwnd_C, 0, TRUE);
2464     check_z_order(hwnd_C, hwnd_A, 0, hwnd_A, TRUE);
2465
2466     DestroyWindow(hwnd_A);
2467     DestroyWindow(hwnd_B);
2468     DestroyWindow(hwnd_C);
2469     DestroyWindow(hwnd_F);
2470 }
2471
2472 static void test_vis_rgn( HWND hwnd )
2473 {
2474     RECT win_rect, rgn_rect;
2475     HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
2476     HDC hdc;
2477
2478     ShowWindow(hwnd,SW_SHOW);
2479     hdc = GetDC( hwnd );
2480     ok( GetRandomRgn( hdc, hrgn, SYSRGN ) != 0, "GetRandomRgn failed\n" );
2481     GetWindowRect( hwnd, &win_rect );
2482     GetRgnBox( hrgn, &rgn_rect );
2483     if (is_win9x)
2484     {
2485         trace("win9x, mapping to screen coords\n");
2486         MapWindowPoints( hwnd, 0, (POINT *)&rgn_rect, 2 );
2487     }
2488     trace("win: %d,%d-%d,%d\n", win_rect.left, win_rect.top, win_rect.right, win_rect.bottom );
2489     trace("rgn: %d,%d-%d,%d\n", rgn_rect.left, rgn_rect.top, rgn_rect.right, rgn_rect.bottom );
2490     ok( win_rect.left <= rgn_rect.left, "rgn left %d not inside win rect %d\n",
2491         rgn_rect.left, win_rect.left );
2492     ok( win_rect.top <= rgn_rect.top, "rgn top %d not inside win rect %d\n",
2493         rgn_rect.top, win_rect.top );
2494     ok( win_rect.right >= rgn_rect.right, "rgn right %d not inside win rect %d\n",
2495         rgn_rect.right, win_rect.right );
2496     ok( win_rect.bottom >= rgn_rect.bottom, "rgn bottom %d not inside win rect %d\n",
2497         rgn_rect.bottom, win_rect.bottom );
2498     ReleaseDC( hwnd, hdc );
2499 }
2500
2501 static LRESULT WINAPI set_focus_on_activate_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
2502 {
2503     if (msg == WM_ACTIVATE && LOWORD(wp) == WA_ACTIVE)
2504     {
2505         HWND child = GetWindow(hwnd, GW_CHILD);
2506         ok(child != 0, "couldn't find child window\n");
2507         SetFocus(child);
2508         ok(GetFocus() == child, "Focus should be on child %p\n", child);
2509         return 0;
2510     }
2511     return DefWindowProc(hwnd, msg, wp, lp);
2512 }
2513
2514 static void test_SetFocus(HWND hwnd)
2515 {
2516     HWND child, child2;
2517     WNDPROC old_wnd_proc;
2518
2519     /* check if we can set focus to non-visible windows */
2520
2521     ShowWindow(hwnd, SW_SHOW);
2522     SetFocus(0);
2523     SetFocus(hwnd);
2524     ok( GetFocus() == hwnd, "Failed to set focus to visible window %p\n", hwnd );
2525     ok( GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE, "Window %p not visible\n", hwnd );
2526     ShowWindow(hwnd, SW_HIDE);
2527     SetFocus(0);
2528     SetFocus(hwnd);
2529     ok( GetFocus() == hwnd, "Failed to set focus to invisible window %p\n", hwnd );
2530     ok( !(GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE), "Window %p still visible\n", hwnd );
2531     child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2532     assert(child);
2533     SetFocus(child);
2534     ok( GetFocus() == child, "Failed to set focus to invisible child %p\n", child );
2535     ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
2536     ShowWindow(child, SW_SHOW);
2537     ok( GetWindowLong(child,GWL_STYLE) & WS_VISIBLE, "Child %p is not visible\n", child );
2538     ok( GetFocus() == child, "Focus no longer on child %p\n", child );
2539     ShowWindow(child, SW_HIDE);
2540     ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
2541     ok( GetFocus() == hwnd, "Focus should be on parent %p, not %p\n", hwnd, GetFocus() );
2542     ShowWindow(child, SW_SHOW);
2543     child2 = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, child, 0, 0, NULL);
2544     assert(child2);
2545     ShowWindow(child2, SW_SHOW);
2546     SetFocus(child2);
2547     ShowWindow(child, SW_HIDE);
2548     ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
2549     ok( GetFocus() == child2, "Focus should be on %p, not %p\n", child2, GetFocus() );
2550     ShowWindow(child, SW_SHOW);
2551     SetFocus(child);
2552     ok( GetFocus() == child, "Focus should be on child %p\n", child );
2553     SetWindowPos(child,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_HIDEWINDOW);
2554     ok( GetFocus() == child, "Focus should still be on child %p\n", child );
2555
2556     ShowWindow(child, SW_HIDE);
2557     SetFocus(hwnd);
2558     ok( GetFocus() == hwnd, "Focus should be on parent %p, not %p\n", hwnd, GetFocus() );
2559     SetWindowPos(child,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_SHOWWINDOW);
2560     ok( GetFocus() == hwnd, "Focus should still be on parent %p, not %p\n", hwnd, GetFocus() );
2561     ShowWindow(child, SW_HIDE);
2562     ok( GetFocus() == hwnd, "Focus should still be on parent %p, not %p\n", hwnd, GetFocus() );
2563
2564     ShowWindow(hwnd, SW_SHOW);
2565     ShowWindow(child, SW_SHOW);
2566     SetFocus(child);
2567     ok( GetFocus() == child, "Focus should be on child %p\n", child );
2568     EnableWindow(hwnd, FALSE);
2569     ok( GetFocus() == child, "Focus should still be on child %p\n", child );
2570     EnableWindow(hwnd, TRUE);
2571
2572     ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2573     ShowWindow(hwnd, SW_SHOWMINIMIZED);
2574     ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2575 todo_wine
2576     ok( GetFocus() != child, "Focus should not be on child %p\n", child );
2577     ok( GetFocus() != hwnd, "Focus should not be on parent %p\n", hwnd );
2578     ShowWindow(hwnd, SW_RESTORE);
2579     ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2580     ok( GetFocus() == hwnd, "Focus should be on parent %p\n", hwnd );
2581     ShowWindow(hwnd, SW_SHOWMINIMIZED);
2582     ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2583     ok( GetFocus() != child, "Focus should not be on child %p\n", child );
2584 todo_wine
2585     ok( GetFocus() != hwnd, "Focus should not be on parent %p\n", hwnd );
2586     old_wnd_proc = (WNDPROC)SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)set_focus_on_activate_proc);
2587     ShowWindow(hwnd, SW_RESTORE);
2588     ok( GetActiveWindow() == hwnd, "parent window %p should be active\n", hwnd);
2589 todo_wine
2590     ok( GetFocus() == child, "Focus should be on child %p, not %p\n", child, GetFocus() );
2591
2592     SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)old_wnd_proc);
2593
2594     DestroyWindow( child2 );
2595     DestroyWindow( child );
2596 }
2597
2598 static void test_SetActiveWindow(HWND hwnd)
2599 {
2600     HWND hwnd2;
2601
2602     flush_events( TRUE );
2603     ShowWindow(hwnd, SW_HIDE);
2604     SetFocus(0);
2605     SetActiveWindow(0);
2606     check_wnd_state(0, 0, 0, 0);
2607
2608     /*trace("testing SetActiveWindow %p\n", hwnd);*/
2609
2610     ShowWindow(hwnd, SW_SHOW);
2611     check_wnd_state(hwnd, hwnd, hwnd, 0);
2612
2613     hwnd2 = SetActiveWindow(0);
2614     ok(hwnd2 == hwnd, "SetActiveWindow returned %p instead of %p\n", hwnd2, hwnd);
2615     if (!GetActiveWindow())  /* doesn't always work on vista */
2616     {
2617         check_wnd_state(0, 0, 0, 0);
2618         hwnd2 = SetActiveWindow(hwnd);
2619         ok(hwnd2 == 0, "SetActiveWindow returned %p instead of 0\n", hwnd2);
2620     }
2621     check_wnd_state(hwnd, hwnd, hwnd, 0);
2622
2623     SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2624     check_wnd_state(hwnd, hwnd, hwnd, 0);
2625
2626     SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_SHOWWINDOW);
2627     check_wnd_state(hwnd, hwnd, hwnd, 0);
2628
2629     ShowWindow(hwnd, SW_HIDE);
2630     check_wnd_state(0, 0, 0, 0);
2631
2632     /*trace("testing SetActiveWindow on an invisible window %p\n", hwnd);*/
2633     SetActiveWindow(hwnd);
2634     check_wnd_state(hwnd, hwnd, hwnd, 0);
2635     
2636     ShowWindow(hwnd, SW_SHOW);
2637     check_wnd_state(hwnd, hwnd, hwnd, 0);
2638
2639     hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2640     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2641
2642     DestroyWindow(hwnd2);
2643     check_wnd_state(hwnd, hwnd, hwnd, 0);
2644
2645     hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2646     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2647
2648     SetWindowPos(hwnd2,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2649     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2650
2651     DestroyWindow(hwnd2);
2652     check_wnd_state(hwnd, hwnd, hwnd, 0);
2653 }
2654
2655 struct create_window_thread_params
2656 {
2657     HWND window;
2658     HANDLE window_created;
2659     HANDLE test_finished;
2660 };
2661
2662 static DWORD WINAPI create_window_thread(void *param)
2663 {
2664     struct create_window_thread_params *p = param;
2665     DWORD res;
2666     BOOL ret;
2667
2668     p->window = CreateWindowA("static", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 0, 0, 0, 0, 0, 0);
2669
2670     ret = SetEvent(p->window_created);
2671     ok(ret, "SetEvent failed, last error %#x.\n", GetLastError());
2672
2673     res = WaitForSingleObject(p->test_finished, INFINITE);
2674     ok(res == WAIT_OBJECT_0, "Wait failed (%#x), last error %#x.\n", res, GetLastError());
2675
2676     DestroyWindow(p->window);
2677     return 0;
2678 }
2679
2680 static void test_SetForegroundWindow(HWND hwnd)
2681 {
2682     struct create_window_thread_params thread_params;
2683     HANDLE thread;
2684     DWORD res, tid;
2685     BOOL ret;
2686     HWND hwnd2;
2687     MSG msg;
2688
2689     flush_events( TRUE );
2690     ShowWindow(hwnd, SW_HIDE);
2691     SetFocus(0);
2692     SetActiveWindow(0);
2693     check_wnd_state(0, 0, 0, 0);
2694
2695     /*trace("testing SetForegroundWindow %p\n", hwnd);*/
2696
2697     ShowWindow(hwnd, SW_SHOW);
2698     check_wnd_state(hwnd, hwnd, hwnd, 0);
2699
2700     hwnd2 = SetActiveWindow(0);
2701     ok(hwnd2 == hwnd, "SetActiveWindow(0) returned %p instead of %p\n", hwnd2, hwnd);
2702     if (GetActiveWindow() == hwnd)  /* doesn't always work on vista */
2703         check_wnd_state(hwnd, hwnd, hwnd, 0);
2704     else
2705         check_wnd_state(0, 0, 0, 0);
2706
2707     ret = SetForegroundWindow(hwnd);
2708     if (!ret)
2709     {
2710         skip( "SetForegroundWindow not working\n" );
2711         return;
2712     }
2713     check_wnd_state(hwnd, hwnd, hwnd, 0);
2714
2715     SetLastError(0xdeadbeef);
2716     ret = SetForegroundWindow(0);
2717     ok(!ret, "SetForegroundWindow returned TRUE instead of FALSE\n");
2718     ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE ||
2719        broken(GetLastError() == 0xdeadbeef),  /* win9x */
2720        "got error %d expected ERROR_INVALID_WINDOW_HANDLE\n", GetLastError());
2721     check_wnd_state(hwnd, hwnd, hwnd, 0);
2722
2723     SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2724     check_wnd_state(hwnd, hwnd, hwnd, 0);
2725
2726     SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_SHOWWINDOW);
2727     check_wnd_state(hwnd, hwnd, hwnd, 0);
2728
2729     hwnd2 = GetForegroundWindow();
2730     ok(hwnd2 == hwnd, "Wrong foreground window %p\n", hwnd2);
2731     ret = SetForegroundWindow( GetDesktopWindow() );
2732     ok(ret, "SetForegroundWindow(desktop) error: %d\n", GetLastError());
2733     hwnd2 = GetForegroundWindow();
2734     ok(hwnd2 != hwnd, "Wrong foreground window %p\n", hwnd2);
2735
2736     ShowWindow(hwnd, SW_HIDE);
2737     check_wnd_state(0, 0, 0, 0);
2738
2739     /*trace("testing SetForegroundWindow on an invisible window %p\n", hwnd);*/
2740     ret = SetForegroundWindow(hwnd);
2741     ok(ret || broken(!ret), /* win98 */ "SetForegroundWindow returned FALSE instead of TRUE\n");
2742     check_wnd_state(hwnd, hwnd, hwnd, 0);
2743
2744     ShowWindow(hwnd, SW_SHOW);
2745     check_wnd_state(hwnd, hwnd, hwnd, 0);
2746
2747     hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2748     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2749
2750     DestroyWindow(hwnd2);
2751     check_wnd_state(hwnd, hwnd, hwnd, 0);
2752
2753     hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
2754     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2755
2756     SetWindowPos(hwnd2,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
2757     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2758
2759     DestroyWindow(hwnd2);
2760     check_wnd_state(hwnd, hwnd, hwnd, 0);
2761
2762     hwnd2 = CreateWindowA("static", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 0, 0, 0, 0, 0, 0);
2763     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2764
2765     thread_params.window_created = CreateEvent(NULL, FALSE, FALSE, NULL);
2766     ok(!!thread_params.window_created, "CreateEvent failed, last error %#x.\n", GetLastError());
2767     thread_params.test_finished = CreateEvent(NULL, FALSE, FALSE, NULL);
2768     ok(!!thread_params.test_finished, "CreateEvent failed, last error %#x.\n", GetLastError());
2769     thread = CreateThread(NULL, 0, create_window_thread, &thread_params, 0, &tid);
2770     ok(!!thread, "Failed to create thread, last error %#x.\n", GetLastError());
2771     res = WaitForSingleObject(thread_params.window_created, INFINITE);
2772     ok(res == WAIT_OBJECT_0, "Wait failed (%#x), last error %#x.\n", res, GetLastError());
2773     check_wnd_state(hwnd2, thread_params.window, hwnd2, 0);
2774
2775     SetForegroundWindow(hwnd2);
2776     check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2777
2778     while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessage(&msg);
2779     if (0) check_wnd_state(hwnd2, hwnd2, hwnd2, 0);
2780     todo_wine ok(GetActiveWindow() == hwnd2, "Expected active window %p, got %p.\n", hwnd2, GetActiveWindow());
2781     todo_wine ok(GetFocus() == hwnd2, "Expected focus window %p, got %p.\n", hwnd2, GetFocus());
2782
2783     SetEvent(thread_params.test_finished);
2784     WaitForSingleObject(thread, INFINITE);
2785     CloseHandle(thread_params.test_finished);
2786     CloseHandle(thread_params.window_created);
2787     CloseHandle(thread);
2788     DestroyWindow(hwnd2);
2789 }
2790
2791 static WNDPROC old_button_proc;
2792
2793 static LRESULT WINAPI button_hook_proc(HWND button, UINT msg, WPARAM wparam, LPARAM lparam)
2794 {
2795     LRESULT ret;
2796     USHORT key_state;
2797
2798     key_state = GetKeyState(VK_LBUTTON);
2799     ok(!(key_state & 0x8000), "VK_LBUTTON should not be pressed, state %04x\n", key_state);
2800
2801     ret = CallWindowProcA(old_button_proc, button, msg, wparam, lparam);
2802
2803     if (msg == WM_LBUTTONDOWN)
2804     {
2805         HWND hwnd, capture;
2806
2807         check_wnd_state(button, button, button, button);
2808
2809         hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2810         assert(hwnd);
2811         trace("hwnd %p\n", hwnd);
2812
2813         check_wnd_state(button, button, button, button);
2814
2815         ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2816
2817         check_wnd_state(button, button, button, button);
2818
2819         DestroyWindow(hwnd);
2820
2821         hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2822         assert(hwnd);
2823         trace("hwnd %p\n", hwnd);
2824
2825         check_wnd_state(button, button, button, button);
2826
2827         /* button wnd proc should release capture on WM_KILLFOCUS if it does
2828          * match internal button state.
2829          */
2830         SendMessage(button, WM_KILLFOCUS, 0, 0);
2831         check_wnd_state(button, button, button, 0);
2832
2833         ShowWindow(hwnd, SW_SHOW);
2834         check_wnd_state(hwnd, hwnd, hwnd, 0);
2835
2836         capture = SetCapture(hwnd);
2837         ok(capture == 0, "SetCapture() = %p\n", capture);
2838
2839         check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2840
2841         DestroyWindow(hwnd);
2842
2843         check_wnd_state(button, 0, button, 0);
2844     }
2845
2846     return ret;
2847 }
2848
2849 static void test_capture_1(void)
2850 {
2851     HWND button, capture;
2852
2853     capture = GetCapture();
2854     ok(capture == 0, "GetCapture() = %p\n", capture);
2855
2856     button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2857     assert(button);
2858     trace("button %p\n", button);
2859
2860     old_button_proc = (WNDPROC)SetWindowLongPtrA(button, GWLP_WNDPROC, (LONG_PTR)button_hook_proc);
2861
2862     SendMessageA(button, WM_LBUTTONDOWN, 0, 0);
2863
2864     capture = SetCapture(button);
2865     ok(capture == 0, "SetCapture() = %p\n", capture);
2866     check_wnd_state(button, 0, button, button);
2867
2868     DestroyWindow(button);
2869     /* old active window test depends on previously executed window
2870      * activation tests, and fails under NT4.
2871     check_wnd_state(oldActive, 0, oldFocus, 0);*/
2872 }
2873
2874 static void test_capture_2(void)
2875 {
2876     HWND button, hwnd, capture, oldFocus, oldActive;
2877
2878     oldFocus = GetFocus();
2879     oldActive = GetActiveWindow();
2880     check_wnd_state(oldActive, 0, oldFocus, 0);
2881
2882     button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2883     assert(button);
2884     trace("button %p\n", button);
2885
2886     check_wnd_state(button, button, button, 0);
2887
2888     capture = SetCapture(button);
2889     ok(capture == 0, "SetCapture() = %p\n", capture);
2890
2891     check_wnd_state(button, button, button, button);
2892
2893     /* button wnd proc should ignore WM_KILLFOCUS if it doesn't match
2894      * internal button state.
2895      */
2896     SendMessage(button, WM_KILLFOCUS, 0, 0);
2897     check_wnd_state(button, button, button, button);
2898
2899     hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2900     assert(hwnd);
2901     trace("hwnd %p\n", hwnd);
2902
2903     check_wnd_state(button, button, button, button);
2904
2905     ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2906
2907     check_wnd_state(button, button, button, button);
2908
2909     DestroyWindow(hwnd);
2910
2911     hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2912     assert(hwnd);
2913     trace("hwnd %p\n", hwnd);
2914
2915     check_wnd_state(button, button, button, button);
2916
2917     ShowWindow(hwnd, SW_SHOW);
2918
2919     check_wnd_state(hwnd, hwnd, hwnd, button);
2920
2921     capture = SetCapture(hwnd);
2922     ok(capture == button, "SetCapture() = %p\n", capture);
2923
2924     check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2925
2926     DestroyWindow(hwnd);
2927     check_wnd_state(button, button, button, 0);
2928
2929     DestroyWindow(button);
2930     check_wnd_state(oldActive, 0, oldFocus, 0);
2931 }
2932
2933 static void test_capture_3(HWND hwnd1, HWND hwnd2)
2934 {
2935     BOOL ret;
2936
2937     ShowWindow(hwnd1, SW_HIDE);
2938     ShowWindow(hwnd2, SW_HIDE);
2939
2940     ok(!IsWindowVisible(hwnd1), "%p should be invisible\n", hwnd1);
2941     ok(!IsWindowVisible(hwnd2), "%p should be invisible\n", hwnd2);
2942
2943     SetCapture(hwnd1);
2944     check_wnd_state(0, 0, 0, hwnd1);
2945
2946     SetCapture(hwnd2);
2947     check_wnd_state(0, 0, 0, hwnd2);
2948
2949     ShowWindow(hwnd1, SW_SHOW);
2950     check_wnd_state(hwnd1, hwnd1, hwnd1, hwnd2);
2951
2952     ret = ReleaseCapture();
2953     ok (ret, "releasecapture did not return TRUE.\n");
2954     ret = ReleaseCapture();
2955     ok (ret, "releasecapture did not return TRUE after second try.\n");
2956 }
2957
2958 static LRESULT CALLBACK test_capture_4_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2959 {
2960     GUITHREADINFO gti;
2961     HWND cap_wnd, cap_wnd2, set_cap_wnd;
2962     BOOL status;
2963     switch (msg)
2964     {
2965         case WM_CAPTURECHANGED:
2966
2967             /* now try to release capture from menu. this should fail */
2968             if (pGetGUIThreadInfo)
2969             {
2970                 memset(&gti, 0, sizeof(GUITHREADINFO));
2971                 gti.cbSize = sizeof(GUITHREADINFO);
2972                 status = pGetGUIThreadInfo(GetCurrentThreadId(), &gti);
2973                 ok(status, "GetGUIThreadInfo() failed!\n");
2974                 ok(gti.flags & GUI_INMENUMODE, "Thread info incorrect (flags=%08X)!\n", gti.flags);
2975             }
2976             cap_wnd = GetCapture();
2977
2978             /* check that re-setting the capture for the menu fails */
2979             set_cap_wnd = SetCapture(cap_wnd);
2980             ok(!set_cap_wnd || broken(set_cap_wnd == cap_wnd), /* nt4 */
2981                "SetCapture should have failed!\n");
2982             if (set_cap_wnd)
2983             {
2984                 DestroyWindow(hWnd);
2985                 break;
2986             }
2987
2988             /* check that SetCapture fails for another window and that it does not touch the error code */
2989             set_cap_wnd = SetCapture(hWnd);
2990             ok(!set_cap_wnd, "SetCapture should have failed!\n");
2991
2992             /* check that ReleaseCapture fails and does not touch the error code */
2993             status = ReleaseCapture();
2994             ok(!status, "ReleaseCapture should have failed!\n");
2995
2996             /* check that thread info did not change */
2997             if (pGetGUIThreadInfo)
2998             {
2999                 memset(&gti, 0, sizeof(GUITHREADINFO));
3000                 gti.cbSize = sizeof(GUITHREADINFO);
3001                 status = pGetGUIThreadInfo(GetCurrentThreadId(), &gti);
3002                 ok(status, "GetGUIThreadInfo() failed!\n");
3003                 ok(gti.flags & GUI_INMENUMODE, "Thread info incorrect (flags=%08X)!\n", gti.flags);
3004             }
3005
3006             /* verify that no capture change took place */
3007             cap_wnd2 = GetCapture();
3008             ok(cap_wnd2 == cap_wnd, "Capture changed!\n");
3009
3010             /* we are done. kill the window */
3011             DestroyWindow(hWnd);
3012             break;
3013
3014         default:
3015             return( DefWindowProcA( hWnd, msg, wParam, lParam ) );
3016     }
3017     return 0;
3018 }
3019
3020 /* Test that no-one can mess around with the current capture while a menu is open */
3021 static void test_capture_4(void)
3022 {
3023     BOOL ret;
3024     HMENU hmenu;
3025     HWND hwnd;
3026     WNDCLASSA wclass;
3027     HINSTANCE hInstance = GetModuleHandleA( NULL );
3028     ATOM aclass;
3029
3030     if (!pGetGUIThreadInfo)
3031     {
3032         win_skip("GetGUIThreadInfo is not available\n");
3033         return;
3034     }
3035     wclass.lpszClassName = "TestCapture4Class";
3036     wclass.style         = CS_HREDRAW | CS_VREDRAW;
3037     wclass.lpfnWndProc   = test_capture_4_proc;
3038     wclass.hInstance     = hInstance;
3039     wclass.hIcon         = LoadIconA( 0, IDI_APPLICATION );
3040     wclass.hCursor       = LoadCursorA( NULL, IDC_ARROW );
3041     wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1 );
3042     wclass.lpszMenuName  = 0;
3043     wclass.cbClsExtra    = 0;
3044     wclass.cbWndExtra    = 0;
3045     aclass = RegisterClassA( &wclass );
3046     ok( aclass, "RegisterClassA failed with error %d\n", GetLastError());
3047     hwnd = CreateWindowA( wclass.lpszClassName, "MenuTest",
3048                           WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0,
3049                           400, 200, NULL, NULL, hInstance, NULL);
3050     ok(hwnd != NULL, "CreateWindowEx failed with error %d\n", GetLastError());
3051     if (!hwnd) return;
3052     hmenu = CreatePopupMenu();
3053
3054     ret = AppendMenuA( hmenu, MF_STRING, 1, "winetest2");
3055     ok( ret, "AppendMenuA has failed!\n");
3056
3057     /* set main window to have initial capture */
3058     SetCapture(hwnd);
3059
3060     if (is_win9x)
3061     {
3062         win_skip("TrackPopupMenu test crashes on Win9x/WinMe\n");
3063     }
3064     else
3065     {
3066         /* create popup (it will self-destruct) */
3067         ret = TrackPopupMenu(hmenu, TPM_RETURNCMD, 100, 100, 0, hwnd, NULL);
3068         ok( ret == 0, "TrackPopupMenu returned %d expected zero\n", ret);
3069     }
3070
3071     /* clean up */
3072     DestroyMenu(hmenu);
3073     DestroyWindow(hwnd);
3074 }
3075
3076 /* PeekMessage wrapper that ignores the messages we don't care about */
3077 static BOOL peek_message( MSG *msg )
3078 {
3079     BOOL ret;
3080     do
3081     {
3082         ret = PeekMessageA(msg, 0, 0, 0, PM_REMOVE);
3083     } while (ret && (msg->message == WM_TIMER || ignore_message(msg->message)));
3084     return ret;
3085 }
3086
3087 static void test_keyboard_input(HWND hwnd)
3088 {
3089     MSG msg;
3090     BOOL ret;
3091
3092     flush_events( TRUE );
3093     SetWindowPos(hwnd, 0, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE|SWP_SHOWWINDOW);
3094     UpdateWindow(hwnd);
3095     flush_events( TRUE );
3096
3097     ok(GetActiveWindow() == hwnd, "wrong active window %p\n", GetActiveWindow());
3098
3099     SetFocus(hwnd);
3100     ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
3101
3102     flush_events( TRUE );
3103
3104     PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
3105     ret = peek_message(&msg);
3106     ok( ret, "no message available\n");
3107     ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3108     ret = peek_message(&msg);
3109     ok( !ret, "message %04x available\n", msg.message);
3110
3111     ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
3112
3113     PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
3114     ret = peek_message(&msg);
3115     ok(ret, "no message available\n");
3116     ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3117     ret = peek_message(&msg);
3118     ok( !ret, "message %04x available\n", msg.message);
3119
3120     ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
3121
3122     keybd_event(VK_SPACE, 0, 0, 0);
3123     if (!peek_message(&msg))
3124     {
3125         skip( "keybd_event didn't work, skipping keyboard test\n" );
3126         return;
3127     }
3128     ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3129     ret = peek_message(&msg);
3130     ok( !ret, "message %04x available\n", msg.message);
3131
3132     SetFocus(0);
3133     ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
3134
3135     flush_events( TRUE );
3136
3137     PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
3138     ret = peek_message(&msg);
3139     ok(ret, "no message available\n");
3140     ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3141     ret = peek_message(&msg);
3142     ok( !ret, "message %04x available\n", msg.message);
3143
3144     ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
3145
3146     PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
3147     ret = peek_message(&msg);
3148     ok(ret, "no message available\n");
3149     ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3150     ret = peek_message(&msg);
3151     ok( !ret, "message %04x available\n", msg.message);
3152
3153     ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
3154
3155     keybd_event(VK_SPACE, 0, 0, 0);
3156     ret = peek_message(&msg);
3157     ok(ret, "no message available\n");
3158     ok(msg.hwnd == hwnd && msg.message == WM_SYSKEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3159     ret = peek_message(&msg);
3160     ok( !ret, "message %04x available\n", msg.message);
3161 }
3162
3163 static BOOL wait_for_message( MSG *msg )
3164 {
3165     BOOL ret;
3166
3167     for (;;)
3168     {
3169         ret = peek_message(msg);
3170         if (ret)
3171         {
3172             if (msg->message == WM_PAINT) DispatchMessage(msg);
3173             else break;
3174         }
3175         else if (MsgWaitForMultipleObjects( 0, NULL, FALSE, 100, QS_ALLINPUT ) == WAIT_TIMEOUT) break;
3176     }
3177     if (!ret) msg->message = 0;
3178     return ret;
3179 }
3180
3181 static void test_mouse_input(HWND hwnd)
3182 {
3183     RECT rc;
3184     POINT pt;
3185     int x, y;
3186     HWND popup;
3187     MSG msg;
3188     BOOL ret;
3189     LRESULT res;
3190
3191     ShowWindow(hwnd, SW_SHOWNORMAL);
3192     UpdateWindow(hwnd);
3193     SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
3194
3195     GetWindowRect(hwnd, &rc);
3196     trace("main window %p: (%d,%d)-(%d,%d)\n", hwnd, rc.left, rc.top, rc.right, rc.bottom);
3197
3198     popup = CreateWindowExA(0, "MainWindowClass", NULL, WS_POPUP,
3199                             rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top,
3200                             hwnd, 0, 0, NULL);
3201     assert(popup != 0);
3202     ShowWindow(popup, SW_SHOW);
3203     UpdateWindow(popup);
3204     SetWindowPos( popup, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
3205
3206     GetWindowRect(popup, &rc);
3207     trace("popup window %p: (%d,%d)-(%d,%d)\n", popup, rc.left, rc.top, rc.right, rc.bottom);
3208
3209     x = rc.left + (rc.right - rc.left) / 2;
3210     y = rc.top + (rc.bottom - rc.top) / 2;
3211     trace("setting cursor to (%d,%d)\n", x, y);
3212
3213     SetCursorPos(x, y);
3214     GetCursorPos(&pt);
3215     if (x != pt.x || y != pt.y)
3216     {
3217         skip( "failed to set mouse position, skipping mouse input tests\n" );
3218         goto done;
3219     }
3220
3221     flush_events( TRUE );
3222
3223     /* Check that setting the same position may generate WM_MOUSEMOVE */
3224     SetCursorPos(x, y);
3225     msg.message = 0;
3226     ret = peek_message(&msg);
3227     if (ret)
3228     {
3229         ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n",
3230            msg.hwnd, msg.message);
3231         ok(msg.pt.x == x && msg.pt.y == y, "wrong message coords (%d,%d)/(%d,%d)\n",
3232            x, y, msg.pt.x, msg.pt.y);
3233     }
3234
3235     /* force the system to update its internal queue mouse position,
3236      * otherwise it won't generate relative mouse movements below.
3237      */
3238     mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
3239     flush_events( TRUE );
3240
3241     msg.message = 0;
3242     mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
3243     flush_events( FALSE );
3244     /* FIXME: SetCursorPos in Wine generates additional WM_MOUSEMOVE message */
3245     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE))
3246     {
3247         if (msg.message == WM_TIMER || ignore_message(msg.message)) continue;
3248         ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE,
3249            "hwnd %p message %04x\n", msg.hwnd, msg.message);
3250         DispatchMessage(&msg);
3251     }
3252     ret = peek_message(&msg);
3253     ok( !ret, "message %04x available\n", msg.message);
3254
3255     mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
3256     ShowWindow(popup, SW_HIDE);
3257     ret = wait_for_message( &msg );
3258     if (ret)
3259         ok(msg.hwnd == hwnd && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n", msg.hwnd, msg.message);
3260     flush_events( TRUE );
3261
3262     mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
3263     ShowWindow(hwnd, SW_HIDE);
3264     ret = wait_for_message( &msg );
3265     ok( !ret, "message %04x available\n", msg.message);
3266     flush_events( TRUE );
3267
3268     /* test mouse clicks */
3269
3270     ShowWindow(hwnd, SW_SHOW);
3271     SetWindowPos( hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
3272     flush_events( TRUE );
3273     ShowWindow(popup, SW_SHOW);
3274     SetWindowPos( popup, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
3275     flush_events( TRUE );
3276
3277     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
3278     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
3279     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
3280     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
3281
3282     ret = wait_for_message( &msg );
3283     if (!ret)
3284     {
3285         skip( "simulating mouse click doesn't work, skipping mouse button tests\n" );
3286         goto done;
3287     }
3288     if (msg.message == WM_MOUSEMOVE)  /* win2k has an extra WM_MOUSEMOVE here */
3289     {
3290         ret = wait_for_message( &msg );
3291         ok(ret, "no message available\n");
3292     }
3293
3294     ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
3295        msg.hwnd, popup, msg.message);
3296
3297     ret = wait_for_message( &msg );
3298     ok(ret, "no message available\n");
3299     ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
3300        msg.hwnd, popup, msg.message);
3301
3302     ret = wait_for_message( &msg );
3303     ok(ret, "no message available\n");
3304     ok(msg.hwnd == popup && msg.message == WM_LBUTTONDBLCLK, "hwnd %p/%p message %04x\n",
3305        msg.hwnd, popup, msg.message);
3306
3307     ret = wait_for_message( &msg );
3308     ok(ret, "no message available\n");
3309     ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
3310        msg.hwnd, popup, msg.message);
3311
3312     ret = peek_message(&msg);
3313     ok(!ret, "message %04x available\n", msg.message);
3314
3315     ShowWindow(popup, SW_HIDE);
3316     flush_events( TRUE );
3317
3318     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
3319     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
3320     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
3321     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
3322
3323     ret = wait_for_message( &msg );
3324     ok(ret, "no message available\n");
3325     ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
3326        msg.hwnd, hwnd, msg.message);
3327     ret = wait_for_message( &msg );
3328     ok(ret, "no message available\n");
3329     ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
3330        msg.hwnd, hwnd, msg.message);
3331
3332     test_lbuttondown_flag = TRUE;
3333     SendMessageA(hwnd, WM_COMMAND, (WPARAM)popup, 0);
3334     test_lbuttondown_flag = FALSE;
3335
3336     ret = wait_for_message( &msg );
3337     ok(ret, "no message available\n");
3338     ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p/%p message %04x\n",
3339        msg.hwnd, popup, msg.message);
3340     ok(peek_message(&msg), "no message available\n");
3341     ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p/%p message %04x\n",
3342        msg.hwnd, popup, msg.message);
3343     ok(peek_message(&msg), "no message available\n");
3344
3345     /* Test WM_MOUSEACTIVATE */
3346 #define TEST_MOUSEACTIVATE(A,B)                                                          \
3347        res = SendMessageA(hwnd, WM_MOUSEACTIVATE, (WPARAM)hwnd, (LPARAM)MAKELRESULT(A,0));   \
3348        ok(res == B, "WM_MOUSEACTIVATE for %s returned %ld\n", #A, res);
3349        
3350     TEST_MOUSEACTIVATE(HTERROR,MA_ACTIVATE);
3351     TEST_MOUSEACTIVATE(HTTRANSPARENT,MA_ACTIVATE);
3352     TEST_MOUSEACTIVATE(HTNOWHERE,MA_ACTIVATE);
3353     TEST_MOUSEACTIVATE(HTCLIENT,MA_ACTIVATE);
3354     TEST_MOUSEACTIVATE(HTCAPTION,MA_ACTIVATE);
3355     TEST_MOUSEACTIVATE(HTSYSMENU,MA_ACTIVATE);
3356     TEST_MOUSEACTIVATE(HTSIZE,MA_ACTIVATE);
3357     TEST_MOUSEACTIVATE(HTMENU,MA_ACTIVATE);
3358     TEST_MOUSEACTIVATE(HTHSCROLL,MA_ACTIVATE);
3359     TEST_MOUSEACTIVATE(HTVSCROLL,MA_ACTIVATE);
3360     TEST_MOUSEACTIVATE(HTMINBUTTON,MA_ACTIVATE);
3361     TEST_MOUSEACTIVATE(HTMAXBUTTON,MA_ACTIVATE);
3362     TEST_MOUSEACTIVATE(HTLEFT,MA_ACTIVATE);
3363     TEST_MOUSEACTIVATE(HTRIGHT,MA_ACTIVATE);
3364     TEST_MOUSEACTIVATE(HTTOP,MA_ACTIVATE);
3365     TEST_MOUSEACTIVATE(HTTOPLEFT,MA_ACTIVATE);
3366     TEST_MOUSEACTIVATE(HTTOPRIGHT,MA_ACTIVATE);
3367     TEST_MOUSEACTIVATE(HTBOTTOM,MA_ACTIVATE);
3368     TEST_MOUSEACTIVATE(HTBOTTOMLEFT,MA_ACTIVATE);
3369     TEST_MOUSEACTIVATE(HTBOTTOMRIGHT,MA_ACTIVATE);
3370     TEST_MOUSEACTIVATE(HTBORDER,MA_ACTIVATE);
3371     TEST_MOUSEACTIVATE(HTOBJECT,MA_ACTIVATE);
3372     TEST_MOUSEACTIVATE(HTCLOSE,MA_ACTIVATE);
3373     TEST_MOUSEACTIVATE(HTHELP,MA_ACTIVATE);
3374
3375 done:
3376     /* Clear any messages left behind by WM_MOUSEACTIVATE tests */
3377     flush_events( TRUE );
3378
3379     DestroyWindow(popup);
3380 }
3381
3382 static void test_validatergn(HWND hwnd)
3383 {
3384     HWND child;
3385     RECT rc, rc2;
3386     HRGN rgn;
3387     int ret;
3388     child = CreateWindowExA(0, "static", NULL, WS_CHILD| WS_VISIBLE, 10, 10, 10, 10, hwnd, 0, 0, NULL);
3389     ShowWindow(hwnd, SW_SHOW);
3390     UpdateWindow( hwnd);
3391     /* test that ValidateRect validates children*/
3392     InvalidateRect( child, NULL, 1);
3393     GetWindowRect( child, &rc);
3394     MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
3395     ret = GetUpdateRect( child, &rc2, 0);
3396     ok( ret == 1, "Expected GetUpdateRect to return non-zero, got %d\n", ret);
3397     ok( rc2.right > rc2.left && rc2.bottom > rc2.top,
3398             "Update rectangle is empty!\n");
3399     ValidateRect( hwnd, &rc);
3400     ret = GetUpdateRect( child, &rc2, 0);
3401     ok( !ret, "Expected GetUpdateRect to return zero, got %d\n", ret);
3402     ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
3403             "Update rectangle %d,%d-%d,%d is not empty!\n", rc2.left, rc2.top,
3404             rc2.right, rc2.bottom);
3405
3406     /* now test ValidateRgn */
3407     InvalidateRect( child, NULL, 1);
3408     GetWindowRect( child, &rc);
3409     MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
3410     rgn = CreateRectRgnIndirect( &rc);
3411     ValidateRgn( hwnd, rgn);
3412     ret = GetUpdateRect( child, &rc2, 0);
3413     ok( !ret, "Expected GetUpdateRect to return zero, got %d\n", ret);
3414     ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
3415             "Update rectangle %d,%d-%d,%d is not empty!\n", rc2.left, rc2.top,
3416             rc2.right, rc2.bottom);
3417
3418     DeleteObject( rgn);
3419     DestroyWindow( child );
3420 }
3421
3422 static void nccalchelper(HWND hwnd, INT x, INT y, RECT *prc)
3423 {
3424     RECT rc;
3425     MoveWindow( hwnd, 0, 0, x, y, 0);
3426     GetWindowRect( hwnd, prc);
3427     rc = *prc;
3428     DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)prc);
3429     trace("window rect is %d,%d - %d,%d, nccalc rect is %d,%d - %d,%d\n",
3430           rc.left,rc.top,rc.right,rc.bottom, prc->left,prc->top,prc->right,prc->bottom);
3431 }
3432
3433 static void test_nccalcscroll(HWND parent)
3434 {
3435     RECT rc1;
3436     INT sbheight = GetSystemMetrics( SM_CYHSCROLL);
3437     INT sbwidth = GetSystemMetrics( SM_CXVSCROLL);
3438     HWND hwnd = CreateWindowExA(0, "static", NULL, 
3439             WS_CHILD| WS_VISIBLE | WS_VSCROLL | WS_HSCROLL , 
3440             10, 10, 200, 200, parent, 0, 0, NULL); 
3441     ShowWindow( parent, SW_SHOW);
3442     UpdateWindow( parent);
3443
3444     /* test window too low for a horizontal scroll bar */
3445     nccalchelper( hwnd, 100, sbheight, &rc1);
3446     ok( rc1.bottom - rc1.top == sbheight, "Height should be %d size is %d,%d - %d,%d\n",
3447             sbheight, rc1.left, rc1.top, rc1.right, rc1.bottom);
3448
3449     /* test window just high enough for a horizontal scroll bar */
3450     nccalchelper( hwnd, 100, sbheight + 1, &rc1);
3451     ok( rc1.bottom - rc1.top == 1, "Height should be %d size is %d,%d - %d,%d\n",
3452             1, rc1.left, rc1.top, rc1.right, rc1.bottom);
3453
3454     /* test window too narrow for a vertical scroll bar */
3455     nccalchelper( hwnd, sbwidth - 1, 100, &rc1);
3456     ok( rc1.right - rc1.left == sbwidth - 1 , "Width should be %d size is %d,%d - %d,%d\n",
3457             sbwidth - 1, rc1.left, rc1.top, rc1.right, rc1.bottom);
3458
3459     /* test window just wide enough for a vertical scroll bar */
3460     nccalchelper( hwnd, sbwidth, 100, &rc1);
3461     ok( rc1.right - rc1.left == 0, "Width should be %d size is %d,%d - %d,%d\n",
3462             0, rc1.left, rc1.top, rc1.right, rc1.bottom);
3463
3464     /* same test, but with client edge: not enough width */
3465     SetWindowLong( hwnd, GWL_EXSTYLE, WS_EX_CLIENTEDGE | GetWindowLong( hwnd, GWL_EXSTYLE));
3466     nccalchelper( hwnd, sbwidth, 100, &rc1);
3467     ok( rc1.right - rc1.left == sbwidth - 2 * GetSystemMetrics(SM_CXEDGE),
3468             "Width should be %d size is %d,%d - %d,%d\n",
3469             sbwidth - 2 * GetSystemMetrics(SM_CXEDGE), rc1.left, rc1.top, rc1.right, rc1.bottom);
3470
3471     DestroyWindow( hwnd);
3472 }
3473
3474 static void test_SetParent(void)
3475 {
3476     HWND desktop = GetDesktopWindow();
3477     HMENU hMenu;
3478     HWND ret, parent, child1, child2, child3, child4, sibling, popup;
3479     BOOL bret;
3480
3481     parent = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3482                              100, 100, 200, 200, 0, 0, 0, NULL);
3483     assert(parent != 0);
3484     child1 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3485                              0, 0, 50, 50, parent, 0, 0, NULL);
3486     assert(child1 != 0);
3487     child2 = CreateWindowExA(0, "static", NULL, WS_POPUP,
3488                              0, 0, 50, 50, child1, 0, 0, NULL);
3489     assert(child2 != 0);
3490     child3 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3491                              0, 0, 50, 50, child2, 0, 0, NULL);
3492     assert(child3 != 0);
3493     child4 = CreateWindowExA(0, "static", NULL, WS_POPUP,
3494                              0, 0, 50, 50, child3, 0, 0, NULL);
3495     assert(child4 != 0);
3496
3497     trace("parent %p, child1 %p, child2 %p, child3 %p, child4 %p\n",
3498            parent, child1, child2, child3, child4);
3499
3500     check_parents(parent, desktop, 0, 0, 0, parent, parent);
3501     check_parents(child1, parent, parent, parent, 0, parent, parent);
3502     check_parents(child2, desktop, parent, parent, parent, child2, parent);
3503     check_parents(child3, child2, child2, child2, 0, child2, parent);
3504     check_parents(child4, desktop, child2, child2, child2, child4, parent);
3505
3506     ok(!IsChild(desktop, parent), "wrong parent/child %p/%p\n", desktop, parent);
3507     ok(!IsChild(desktop, child1), "wrong parent/child %p/%p\n", desktop, child1);
3508     ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
3509     ok(!IsChild(desktop, child3), "wrong parent/child %p/%p\n", desktop, child3);
3510     ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
3511
3512     ok(IsChild(parent, child1), "wrong parent/child %p/%p\n", parent, child1);
3513     ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
3514     ok(!IsChild(parent, child2), "wrong parent/child %p/%p\n", parent, child2);
3515     ok(!IsChild(child1, child2), "wrong parent/child %p/%p\n", child1, child2);
3516     ok(!IsChild(parent, child3), "wrong parent/child %p/%p\n", parent, child3);
3517     ok(IsChild(child2, child3), "wrong parent/child %p/%p\n", child2, child3);
3518     ok(!IsChild(parent, child4), "wrong parent/child %p/%p\n", parent, child4);
3519     ok(!IsChild(child3, child4), "wrong parent/child %p/%p\n", child3, child4);
3520     ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
3521
3522     if (!is_win9x) /* Win9x doesn't survive this test */
3523     {
3524         ok(!SetParent(parent, child1), "SetParent should fail\n");
3525         ok(!SetParent(child2, child3), "SetParent should fail\n");
3526         ok(SetParent(child1, parent) != 0, "SetParent should not fail\n");
3527         ret = SetParent(parent, child2);
3528         todo_wine ok( !ret || broken( ret != 0 ), "SetParent should fail\n");
3529         if (ret)  /* nt4, win2k */
3530         {
3531             ret = SetParent(parent, child3);
3532             ok(ret != 0, "SetParent should not fail\n");
3533             ret = SetParent(child2, parent);
3534             ok(!ret, "SetParent should fail\n");
3535             ret = SetParent(parent, child4);
3536             ok(ret != 0, "SetParent should not fail\n");
3537             check_parents(parent, child4, child4, 0, 0, child4, parent);
3538             check_parents(child1, parent, parent, parent, 0, child4, parent);
3539             check_parents(child2, desktop, parent, parent, parent, child2, parent);
3540             check_parents(child3, child2, child2, child2, 0, child2, parent);
3541             check_parents(child4, desktop, child2, child2, child2, child4, parent);
3542         }
3543         else
3544         {
3545             ret = SetParent(parent, child3);
3546             ok(ret != 0, "SetParent should not fail\n");
3547             ret = SetParent(child2, parent);
3548             ok(!ret, "SetParent should fail\n");
3549             ret = SetParent(parent, child4);
3550             ok(!ret, "SetParent should fail\n");
3551             check_parents(parent, child3, child3, 0, 0, child2, parent);
3552             check_parents(child1, parent, parent, parent, 0, child2, parent);
3553             check_parents(child2, desktop, parent, parent, parent, child2, parent);
3554             check_parents(child3, child2, child2, child2, 0, child2, parent);
3555             check_parents(child4, desktop, child2, child2, child2, child4, parent);
3556         }
3557     }
3558     else
3559         skip("Win9x/WinMe crash\n");
3560
3561     hMenu = CreateMenu();
3562     sibling = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3563                              100, 100, 200, 200, 0, hMenu, 0, NULL);
3564     assert(sibling != 0);
3565
3566     ok(SetParent(sibling, parent) != 0, "SetParent should not fail\n");
3567     ok(GetMenu(sibling) == hMenu, "SetParent should not remove menu\n");
3568
3569     ok(DestroyWindow(parent), "DestroyWindow() failed\n");
3570
3571     ok(!IsWindow(parent), "parent still exists\n");
3572     ok(!IsWindow(sibling), "sibling still exists\n");
3573     ok(!IsWindow(child1), "child1 still exists\n");
3574     ok(!IsWindow(child2), "child2 still exists\n");
3575     ok(!IsWindow(child3), "child3 still exists\n");
3576     ok(!IsWindow(child4), "child4 still exists\n");
3577
3578     parent = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
3579                              100, 100, 200, 200, 0, 0, 0, NULL);
3580     assert(parent != 0);
3581     child1 = CreateWindowExA(0, "static", NULL, WS_CHILD,
3582                              0, 0, 50, 50, parent, 0, 0, NULL);
3583     assert(child1 != 0);
3584     popup = CreateWindowExA(0, "static", NULL, WS_POPUP,
3585                              0, 0, 50, 50, 0, 0, 0, NULL);
3586     assert(popup != 0);
3587
3588     trace("parent %p, child %p, popup %p\n", parent, child1, popup);
3589
3590     check_parents(parent, desktop, 0, 0, 0, parent, parent);
3591     check_parents(child1, parent, parent, parent, 0, parent, parent);
3592     check_parents(popup, desktop, 0, 0, 0, popup, popup);
3593
3594     SetActiveWindow(parent);
3595     SetFocus(parent);
3596     check_active_state(parent, 0, parent);
3597
3598     ret = SetParent(popup, child1);
3599     ok(ret == desktop, "expected %p, got %p\n", desktop, ret);
3600     check_parents(popup, child1, child1, 0, 0, parent, popup);
3601 todo_wine
3602     check_active_state(popup, 0, popup);
3603
3604     SetActiveWindow(parent);
3605     SetFocus(parent);
3606     check_active_state(parent, 0, parent);
3607
3608     bret = SetForegroundWindow(popup);
3609 todo_wine {
3610     ok(bret || broken(!bret), "SetForegroundWindow() failed\n");
3611     if (!bret)
3612         check_active_state(popup, 0, popup);
3613     else
3614         check_active_state(popup, popup, popup);
3615     }
3616
3617     ok(DestroyWindow(parent), "DestroyWindow() failed\n");
3618
3619     ok(!IsWindow(parent), "parent still exists\n");
3620     ok(!IsWindow(child1), "child1 still exists\n");
3621     ok(!IsWindow(popup), "popup still exists\n");
3622 }
3623
3624 static LRESULT WINAPI StyleCheckProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
3625 {
3626     LPCREATESTRUCT lpcs;
3627     LPSTYLESTRUCT lpss;
3628
3629     switch (msg)
3630     {
3631     case WM_NCCREATE:
3632     case WM_CREATE:
3633         lpcs = (LPCREATESTRUCT)lparam;
3634         lpss = lpcs->lpCreateParams;
3635         if (lpss)
3636         {
3637             if ((lpcs->dwExStyle & WS_EX_DLGMODALFRAME) ||
3638                 ((!(lpcs->dwExStyle & WS_EX_STATICEDGE)) &&
3639                     (lpcs->style & (WS_DLGFRAME | WS_THICKFRAME))))
3640                 ok(lpcs->dwExStyle & WS_EX_WINDOWEDGE, "Window should have WS_EX_WINDOWEDGE style\n");
3641             else
3642                 ok(!(lpcs->dwExStyle & WS_EX_WINDOWEDGE), "Window shouldn't have WS_EX_WINDOWEDGE style\n");
3643
3644             ok((lpss->styleOld & ~WS_EX_WINDOWEDGE) == (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE),
3645                 "Ex style (0x%08x) should match what the caller passed to CreateWindowEx (0x%08x)\n",
3646                 (lpss->styleOld & ~WS_EX_WINDOWEDGE), (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE));
3647
3648             ok(lpss->styleNew == lpcs->style,
3649                 "Style (0x%08x) should match what the caller passed to CreateWindowEx (0x%08x)\n",
3650                 lpss->styleNew, lpcs->style);
3651         }
3652         break;
3653     }
3654     return DefWindowProc(hwnd, msg, wparam, lparam);
3655 }
3656
3657 static ATOM atomStyleCheckClass;
3658
3659 static void register_style_check_class(void)
3660 {
3661     WNDCLASS wc =
3662     {
3663         0,
3664         StyleCheckProc,
3665         0,
3666         0,
3667         GetModuleHandle(NULL),
3668         NULL,
3669         LoadCursor(NULL, IDC_ARROW),
3670         (HBRUSH)(COLOR_BTNFACE+1),
3671         NULL,
3672         TEXT("WineStyleCheck"),
3673     };
3674     
3675     atomStyleCheckClass = RegisterClass(&wc);
3676 }
3677
3678 static void check_window_style(DWORD dwStyleIn, DWORD dwExStyleIn, DWORD dwStyleOut, DWORD dwExStyleOut)
3679 {
3680     DWORD dwActualStyle;
3681     DWORD dwActualExStyle;
3682     STYLESTRUCT ss;
3683     HWND hwnd;
3684     HWND hwndParent = NULL;
3685
3686     ss.styleNew = dwStyleIn;
3687     ss.styleOld = dwExStyleIn;
3688
3689     if (dwStyleIn & WS_CHILD)
3690     {
3691         hwndParent = CreateWindowEx(0, MAKEINTATOM(atomStyleCheckClass), NULL,
3692             WS_OVERLAPPEDWINDOW, 0, 0, 0, 0, NULL, NULL, NULL, NULL);
3693     }
3694
3695     hwnd = CreateWindowEx(dwExStyleIn, MAKEINTATOM(atomStyleCheckClass), NULL,
3696                     dwStyleIn, 0, 0, 0, 0, hwndParent, NULL, NULL, &ss);
3697     assert(hwnd);
3698
3699     flush_events( TRUE );
3700
3701     dwActualStyle = GetWindowLong(hwnd, GWL_STYLE);
3702     dwActualExStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
3703     ok((dwActualStyle == dwStyleOut) && (dwActualExStyle == dwExStyleOut),
3704         "Style (0x%08x) should really be 0x%08x and/or Ex style (0x%08x) should really be 0x%08x\n",
3705         dwActualStyle, dwStyleOut, dwActualExStyle, dwExStyleOut);
3706
3707     /* try setting the styles explicitly */
3708     SetWindowLong( hwnd, GWL_EXSTYLE, dwExStyleIn );
3709     SetWindowLong( hwnd, GWL_STYLE, dwStyleIn );
3710     dwActualStyle = GetWindowLong(hwnd, GWL_STYLE);
3711     dwActualExStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
3712     /* WS_CLIPSIBLINGS can't be reset on top-level windows */
3713     if ((dwStyleIn & (WS_CHILD|WS_POPUP)) == WS_CHILD) dwStyleOut = dwStyleIn;
3714     else dwStyleOut = dwStyleIn | WS_CLIPSIBLINGS;
3715     /* WS_EX_WINDOWEDGE can't always be changed */
3716     if ((dwExStyleIn & WS_EX_DLGMODALFRAME) || (dwStyleIn & WS_THICKFRAME))
3717         dwExStyleOut = dwExStyleIn | WS_EX_WINDOWEDGE;
3718     else if (dwStyleIn & (WS_CHILD | WS_POPUP))
3719         dwExStyleOut = dwExStyleIn & ~WS_EX_WINDOWEDGE;
3720     else
3721         dwExStyleOut = dwExStyleIn;
3722     ok((dwActualStyle == dwStyleOut) && (dwActualExStyle == dwExStyleOut),
3723         "%08x/%08x: Style (0x%08x) should really be 0x%08x and/or Ex style (0x%08x) should really be 0x%08x\n",
3724        dwStyleIn, dwExStyleIn, dwActualStyle, dwStyleOut, dwActualExStyle, dwExStyleOut);
3725
3726     DestroyWindow(hwnd);
3727     if (hwndParent) DestroyWindow(hwndParent);
3728 }
3729
3730 /* tests what window styles the window manager automatically adds */
3731 static void test_window_styles(void)
3732 {
3733     register_style_check_class();
3734
3735     check_window_style(0, 0, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE);
3736     check_window_style(WS_OVERLAPPEDWINDOW, 0, WS_CLIPSIBLINGS|WS_OVERLAPPEDWINDOW, WS_EX_WINDOWEDGE);
3737     check_window_style(WS_CHILD, 0, WS_CHILD, 0);
3738     check_window_style(WS_CHILD|WS_POPUP, 0, WS_CHILD|WS_POPUP|WS_CLIPSIBLINGS, 0);
3739     check_window_style(WS_CHILD|WS_POPUP, WS_EX_APPWINDOW, WS_CHILD|WS_POPUP|WS_CLIPSIBLINGS, WS_EX_APPWINDOW);
3740     check_window_style(WS_CHILD|WS_POPUP, WS_EX_WINDOWEDGE, WS_CHILD|WS_POPUP|WS_CLIPSIBLINGS, 0);
3741     check_window_style(WS_CHILD, WS_EX_WINDOWEDGE, WS_CHILD, 0);
3742     check_window_style(0, WS_EX_TOOLWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW);
3743     check_window_style(WS_POPUP, 0, WS_POPUP|WS_CLIPSIBLINGS, 0);
3744     check_window_style(WS_POPUP, WS_EX_WINDOWEDGE, WS_POPUP|WS_CLIPSIBLINGS, 0);
3745     check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME, WS_CHILD, WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
3746     check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME|WS_EX_STATICEDGE, WS_CHILD, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
3747     check_window_style(WS_CAPTION, WS_EX_STATICEDGE, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE);
3748     check_window_style(0, WS_EX_APPWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_APPWINDOW|WS_EX_WINDOWEDGE);
3749
3750     if (pGetLayeredWindowAttributes)
3751     {
3752         check_window_style(0, WS_EX_LAYERED, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_LAYERED|WS_EX_WINDOWEDGE);
3753         check_window_style(0, WS_EX_LAYERED|WS_EX_TRANSPARENT, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_LAYERED|WS_EX_TRANSPARENT|WS_EX_WINDOWEDGE);
3754         check_window_style(0, WS_EX_LAYERED|WS_EX_TRANSPARENT|WS_EX_TOOLWINDOW, WS_CLIPSIBLINGS|WS_CAPTION,
3755                                                       WS_EX_LAYERED|WS_EX_TRANSPARENT|WS_EX_TOOLWINDOW|WS_EX_WINDOWEDGE);
3756     }
3757 }
3758
3759 static void test_scrollwindow( HWND hwnd)
3760 {
3761     HDC hdc;
3762     RECT rc, rc2, rc3;
3763     COLORREF colr;
3764
3765     ShowWindow( hwnd, SW_SHOW);
3766     UpdateWindow( hwnd);
3767     flush_events( TRUE );
3768     GetClientRect( hwnd, &rc);
3769     hdc = GetDC( hwnd);
3770     /* test ScrollWindow(Ex) with no clip rectangle */
3771     /* paint the lower half of the window black */
3772     rc2 = rc;
3773     rc2.top = ( rc2.top + rc2.bottom) / 2;
3774     FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
3775     /* paint the upper half of the window white */
3776     rc2.bottom = rc2.top;
3777     rc2.top =0;
3778     FillRect( hdc, &rc2, GetStockObject(WHITE_BRUSH));
3779     /* scroll lower half up */
3780     rc2 = rc;
3781     rc2.top = ( rc2.top + rc2.bottom) / 2;
3782     ScrollWindowEx( hwnd, 0, - rc2.top, &rc2, NULL, NULL, NULL, SW_ERASE);
3783     flush_events(FALSE);
3784     /* expected: black should have scrolled to the upper half */
3785     colr = GetPixel( hdc, (rc2.left+rc2.right)/ 2,  rc2.bottom / 4 );
3786     ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3787     /* Repeat that test of ScrollWindow(Ex) now with clip rectangle */
3788     /* paint the lower half of the window black */
3789     rc2 = rc;
3790     rc2.top = ( rc2.top + rc2.bottom) / 2;
3791     FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
3792     /* paint the upper half of the window white */
3793     rc2.bottom = rc2.top;
3794     rc2.top =0;
3795     FillRect( hdc, &rc2, GetStockObject(WHITE_BRUSH));
3796     /* scroll lower half up */
3797     rc2 = rc;
3798     rc2.top = ( rc2.top + rc2.bottom) / 2;
3799     rc3 = rc;
3800     rc3.left = rc3.right / 4;
3801     rc3.right -= rc3.right / 4;
3802     ScrollWindowEx( hwnd, 0, - rc2.top, &rc2, &rc3, NULL, NULL, SW_ERASE);
3803     flush_events(FALSE);
3804     /* expected: black should have scrolled to the upper half */
3805     colr = GetPixel( hdc, (rc2.left+rc2.right)/ 2,  rc2.bottom / 4 );
3806     ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
3807
3808     /* clean up */
3809     ReleaseDC( hwnd, hdc);
3810 }
3811
3812 static void test_scrollvalidate( HWND parent)
3813 {
3814     HDC hdc;
3815     HRGN hrgn=CreateRectRgn(0,0,0,0);
3816     HRGN exprgn, tmprgn, clipping;
3817     RECT rc, rcu, cliprc;
3818     /* create two overlapping child windows. The visual region
3819      * of hwnd1 is clipped by the overlapping part of
3820      * hwnd2 because of the WS_CLIPSIBLING style */
3821     HWND hwnd1, hwnd2;
3822
3823     clipping = CreateRectRgn(0,0,0,0);
3824     tmprgn = CreateRectRgn(0,0,0,0);
3825     exprgn = CreateRectRgn(0,0,0,0);
3826     hwnd2 = CreateWindowExA(0, "static", NULL,
3827             WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
3828             75, 30, 100, 100, parent, 0, 0, NULL);
3829     hwnd1 = CreateWindowExA(0, "static", NULL,
3830             WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
3831             25, 50, 100, 100, parent, 0, 0, NULL);
3832     ShowWindow( parent, SW_SHOW);
3833     UpdateWindow( parent);
3834     GetClientRect( hwnd1, &rc);
3835     cliprc=rc; 
3836     SetRectRgn( clipping, 10, 10, 90, 90);
3837     hdc = GetDC( hwnd1);
3838     /* for a visual touch */
3839     TextOut( hdc, 0,10, "0123456789", 10);
3840     ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
3841     if (winetest_debug > 0) dump_region(hrgn);
3842     /* create a region with what is expected */
3843     SetRectRgn( exprgn, 39,0,49,74);
3844     SetRectRgn( tmprgn, 88,79,98,93);
3845     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3846     SetRectRgn( tmprgn, 0,93,98,98);
3847     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3848     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3849     trace("update rect is %d,%d - %d,%d\n",
3850             rcu.left,rcu.top,rcu.right,rcu.bottom);
3851     /* now with clipping region */
3852     SelectClipRgn( hdc, clipping);
3853     ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
3854     if (winetest_debug > 0) dump_region(hrgn);
3855     /* create a region with what is expected */
3856     SetRectRgn( exprgn, 39,10,49,74);
3857     SetRectRgn( tmprgn, 80,79,90,85);
3858     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3859     SetRectRgn( tmprgn, 10,85,90,90);
3860     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3861     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3862     trace("update rect is %d,%d - %d,%d\n",
3863             rcu.left,rcu.top,rcu.right,rcu.bottom);
3864     ReleaseDC( hwnd1, hdc);
3865
3866     /* test scrolling a window with an update region */
3867     DestroyWindow( hwnd2);
3868     ValidateRect( hwnd1, NULL);
3869     SetRect( &rc, 40,40, 50,50);
3870     InvalidateRect( hwnd1, &rc, 1);
3871     GetClientRect( hwnd1, &rc);
3872     cliprc=rc;
3873     ScrollWindowEx( hwnd1, -10, 0, &rc, &cliprc, hrgn, &rcu,
3874       SW_SCROLLCHILDREN | SW_INVALIDATE);
3875     if (winetest_debug > 0) dump_region(hrgn);
3876     SetRectRgn( exprgn, 88,0,98,98);
3877     SetRectRgn( tmprgn, 30, 40, 50, 50);
3878     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3879     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3880
3881     /* clear an update region */
3882     UpdateWindow( hwnd1 );
3883
3884     SetRect( &rc, 0,40, 100,60);
3885     SetRect( &cliprc, 0,0, 100,100);
3886     ScrollWindowEx( hwnd1, 0, -25, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3887     if (winetest_debug > 0) dump_region( hrgn );
3888     SetRectRgn( exprgn, 0, 40, 98, 60 );
3889     ok( EqualRgn( exprgn, hrgn), "wrong update region in excessive scroll\n");
3890
3891     /* now test ScrollWindowEx with a combination of
3892      * WS_CLIPCHILDREN style and SW_SCROLLCHILDREN flag */
3893     /* make hwnd2 the child of hwnd1 */
3894     hwnd2 = CreateWindowExA(0, "static", NULL,
3895             WS_CHILD| WS_VISIBLE | WS_BORDER ,
3896             50, 50, 100, 100, hwnd1, 0, 0, NULL);
3897     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPSIBLINGS);
3898     GetClientRect( hwnd1, &rc);
3899     cliprc=rc;
3900
3901     /* WS_CLIPCHILDREN and SW_SCROLLCHILDREN */
3902     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
3903     ValidateRect( hwnd1, NULL);
3904     ValidateRect( hwnd2, NULL);
3905     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu,
3906       SW_SCROLLCHILDREN | SW_INVALIDATE);
3907     if (winetest_debug > 0) dump_region(hrgn);
3908     SetRectRgn( exprgn, 88,0,98,88);
3909     SetRectRgn( tmprgn, 0,88,98,98);
3910     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3911     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3912
3913     /* SW_SCROLLCHILDREN */
3914     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
3915     ValidateRect( hwnd1, NULL);
3916     ValidateRect( hwnd2, NULL);
3917     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_SCROLLCHILDREN | SW_INVALIDATE);
3918     if (winetest_debug > 0) dump_region(hrgn);
3919     /* expected region is the same as in previous test */
3920     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3921
3922     /* no SW_SCROLLCHILDREN */
3923     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
3924     ValidateRect( hwnd1, NULL);
3925     ValidateRect( hwnd2, NULL);
3926     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3927     if (winetest_debug > 0) dump_region(hrgn);
3928     /* expected region is the same as in previous test */
3929     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3930
3931     /* WS_CLIPCHILDREN and no SW_SCROLLCHILDREN */
3932     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
3933     ValidateRect( hwnd1, NULL);
3934     ValidateRect( hwnd2, NULL);
3935     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
3936     if (winetest_debug > 0) dump_region(hrgn);
3937     SetRectRgn( exprgn, 88,0,98,20);
3938     SetRectRgn( tmprgn, 20,20,98,30);
3939     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3940     SetRectRgn( tmprgn, 20,30,30,88);
3941     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3942     SetRectRgn( tmprgn, 0,88,30,98);
3943     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
3944     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
3945
3946     /* clean up */
3947     DeleteObject( hrgn);
3948     DeleteObject( exprgn);
3949     DeleteObject( tmprgn);
3950     DestroyWindow( hwnd1);
3951     DestroyWindow( hwnd2);
3952 }
3953
3954 /* couple of tests of return values of scrollbar functions
3955  * called on a scrollbarless window */ 
3956 static void test_scroll(void)
3957 {
3958     BOOL ret;
3959     INT min, max;
3960     SCROLLINFO si;
3961     HWND hwnd = CreateWindowExA(0, "Static", "Wine test window",
3962         WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP,
3963         100, 100, 200, 200, 0, 0, 0, NULL);
3964     /* horizontal */
3965     ret = GetScrollRange( hwnd, SB_HORZ, &min, &max);
3966     if (!ret)  /* win9x */
3967     {
3968         win_skip( "GetScrollRange doesn't work\n" );
3969         DestroyWindow( hwnd);
3970         return;
3971     }
3972     ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
3973     ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
3974     si.cbSize = sizeof( si);
3975     si.fMask = SIF_PAGE;
3976     si.nPage = 0xdeadbeef;
3977     ret = GetScrollInfo( hwnd, SB_HORZ, &si);
3978     ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
3979     ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
3980     /* vertical */
3981     ret = GetScrollRange( hwnd, SB_VERT, &min, &max);
3982     ok( ret, "GetScrollRange returns FALSE\n");
3983     ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
3984     ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
3985     si.cbSize = sizeof( si);
3986     si.fMask = SIF_PAGE;
3987     si.nPage = 0xdeadbeef;
3988     ret = GetScrollInfo( hwnd, SB_VERT, &si);
3989     ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
3990     ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
3991     /* clean up */
3992     DestroyWindow( hwnd);
3993 }
3994
3995 static void test_scrolldc( HWND parent)
3996 {
3997     HDC hdc;
3998     HRGN exprgn, tmprgn, hrgn;
3999     RECT rc, rc2, rcu, cliprc;
4000     HWND hwnd1;
4001     COLORREF colr;
4002
4003     hrgn = CreateRectRgn(0,0,0,0);
4004     tmprgn = CreateRectRgn(0,0,0,0);
4005     exprgn = CreateRectRgn(0,0,0,0);
4006
4007     hwnd1 = CreateWindowExA(0, "static", NULL,
4008             WS_CHILD| WS_VISIBLE,
4009             25, 50, 100, 100, parent, 0, 0, NULL);
4010     ShowWindow( parent, SW_SHOW);
4011     UpdateWindow( parent);
4012     flush_events( TRUE );
4013     GetClientRect( hwnd1, &rc);
4014     hdc = GetDC( hwnd1);
4015     /* paint the upper half of the window black */
4016     rc2 = rc;
4017     rc2.bottom = ( rc.top + rc.bottom) /2;
4018     FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
4019     /* clip region is the lower half */
4020     cliprc=rc; 
4021     cliprc.top = (rc.top + rc.bottom) /2;
4022     /* test whether scrolled pixels are properly clipped */ 
4023     colr = GetPixel( hdc, (rc.left+rc.right)/2, ( rc.top + rc.bottom) /2 - 1);
4024     ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
4025     /* this scroll should not cause any visible changes */ 
4026     ScrollDC( hdc, 5, -20, &rc, &cliprc, hrgn, &rcu);
4027     colr = GetPixel( hdc, (rc.left+rc.right)/2, ( rc.top + rc.bottom) /2 - 1);
4028     ok ( colr == 0, "pixel should be black, color is %08x\n", colr);
4029     /* test with NULL clip rect */
4030     ScrollDC( hdc, 20, -20, &rc, NULL, hrgn, &rcu);
4031     /*FillRgn(hdc, hrgn, GetStockObject(WHITE_BRUSH));*/
4032     trace("update rect: %d,%d - %d,%d\n",
4033            rcu.left, rcu.top, rcu.right, rcu.bottom);
4034     if (winetest_debug > 0) dump_region(hrgn);
4035     SetRect(&rc2, 0, 0, 100, 100);
4036     ok(EqualRect(&rcu, &rc2), "rects do not match (%d,%d-%d,%d) / (%d,%d-%d,%d)\n",
4037        rcu.left, rcu.top, rcu.right, rcu.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom);
4038
4039     SetRectRgn( exprgn, 0, 0, 20, 80);
4040     SetRectRgn( tmprgn, 0, 80, 100, 100);
4041     CombineRgn(exprgn, exprgn, tmprgn, RGN_OR);
4042     if (winetest_debug > 0) dump_region(exprgn);
4043     ok(EqualRgn(exprgn, hrgn), "wrong update region\n");
4044     /* test clip rect > scroll rect */ 
4045     FillRect( hdc, &rc, GetStockObject(WHITE_BRUSH));
4046     rc2=rc;
4047     InflateRect( &rc2, -(rc.right-rc.left)/4, -(rc.bottom-rc.top)/4);
4048     FillRect( hdc, &rc2, GetStockObject(BLACK_BRUSH));
4049     ScrollDC( hdc, 10, 10, &rc2, &rc, hrgn, &rcu);
4050     SetRectRgn( exprgn, 25, 25, 75, 35);
4051     SetRectRgn( tmprgn, 25, 35, 35, 75);
4052     CombineRgn(exprgn, exprgn, tmprgn, RGN_OR);
4053     ok(EqualRgn(exprgn, hrgn), "wrong update region\n");
4054     trace("update rect: %d,%d - %d,%d\n",
4055            rcu.left, rcu.top, rcu.right, rcu.bottom);
4056     if (winetest_debug > 0) dump_region(hrgn);
4057
4058     /* clean up */
4059     DeleteObject(hrgn);
4060     DeleteObject(exprgn);
4061     DeleteObject(tmprgn);
4062     DestroyWindow(hwnd1);
4063 }
4064
4065 static void test_params(void)
4066 {
4067     HWND hwnd;
4068     INT rc;
4069
4070     ok(!IsWindow(0), "IsWindow(0)\n");
4071     ok(!IsWindow(HWND_BROADCAST), "IsWindow(HWND_BROADCAST)\n");
4072     ok(!IsWindow(HWND_TOPMOST), "IsWindow(HWND_TOPMOST)\n");
4073
4074     /* Just a param check */
4075     if (pGetMonitorInfoA)
4076     {
4077         SetLastError(0xdeadbeef);
4078         rc = GetWindowText(hwndMain2, NULL, 1024);
4079         ok( rc==0, "GetWindowText: rc=%d err=%d\n",rc,GetLastError());
4080     }
4081     else
4082     {
4083         /* Skips actually on Win95 and NT4 */
4084         win_skip("Test would crash on Win95\n");
4085     }
4086
4087     SetLastError(0xdeadbeef);
4088     hwnd=CreateWindow("LISTBOX", "TestList",
4089                       (LBS_STANDARD & ~LBS_SORT),
4090                       0, 0, 100, 100,
4091                       NULL, (HMENU)1, NULL, 0);
4092
4093     ok(!hwnd || broken(hwnd != NULL), /* w2k3 sp2 */
4094        "CreateWindow with invalid menu handle should fail\n");
4095     if (!hwnd)
4096         ok(GetLastError() == ERROR_INVALID_MENU_HANDLE || /* NT */
4097            GetLastError() == 0xdeadbeef, /* Win9x */
4098            "wrong last error value %d\n", GetLastError());
4099 }
4100
4101 static void test_AWRwindow(LPCSTR class, LONG style, LONG exStyle, BOOL menu)
4102 {
4103     HWND hwnd = 0;
4104
4105     hwnd = CreateWindowEx(exStyle, class, class, style,
4106                           110, 100,
4107                           225, 200,
4108                           0,
4109                           menu ? hmenu : 0,
4110                           0, 0);
4111     if (!hwnd) {
4112         trace("Failed to create window class=%s, style=0x%08x, exStyle=0x%08x\n", class, style, exStyle);
4113         return;
4114     }
4115     ShowWindow(hwnd, SW_SHOW);
4116
4117     test_nonclient_area(hwnd);
4118
4119     SetMenu(hwnd, 0);
4120     DestroyWindow(hwnd);
4121 }
4122
4123 static BOOL AWR_init(void)
4124 {
4125     WNDCLASS class;
4126
4127     class.style         = CS_HREDRAW | CS_VREDRAW;
4128     class.lpfnWndProc     = DefWindowProcA;
4129     class.cbClsExtra    = 0;
4130     class.cbWndExtra    = 0;
4131     class.hInstance     = 0;
4132     class.hIcon         = LoadIcon (0, IDI_APPLICATION);
4133     class.hCursor       = LoadCursor (0, IDC_ARROW);
4134     class.hbrBackground = 0;
4135     class.lpszMenuName  = 0;
4136     class.lpszClassName = szAWRClass;
4137     
4138     if (!RegisterClass (&class)) {
4139         ok(FALSE, "RegisterClass failed\n");
4140         return FALSE;
4141     }
4142
4143     hmenu = CreateMenu();
4144     if (!hmenu)
4145         return FALSE;
4146     ok(hmenu != 0, "Failed to create menu\n");
4147     ok(AppendMenu(hmenu, MF_STRING, 1, "Test!"), "Failed to create menu item\n");
4148     
4149     return TRUE;
4150 }
4151
4152
4153 static void test_AWR_window_size(BOOL menu)
4154 {
4155     LONG styles[] = {
4156         WS_POPUP,
4157         WS_MAXIMIZE, WS_BORDER, WS_DLGFRAME, 
4158         WS_SYSMENU, 
4159         WS_THICKFRAME,
4160         WS_MINIMIZEBOX, WS_MAXIMIZEBOX,
4161         WS_HSCROLL, WS_VSCROLL
4162     };
4163     LONG exStyles[] = {
4164         WS_EX_CLIENTEDGE,
4165         WS_EX_TOOLWINDOW, WS_EX_WINDOWEDGE,
4166         WS_EX_APPWINDOW,
4167 #if 0
4168         /* These styles have problems on (at least) WinXP (SP2) and Wine */
4169         WS_EX_DLGMODALFRAME, 
4170         WS_EX_STATICEDGE, 
4171 #endif
4172     };
4173
4174     int i;    
4175
4176     /* A exhaustive check of all the styles takes too long
4177      * so just do a (hopefully representative) sample
4178      */
4179     for (i = 0; i < COUNTOF(styles); ++i)
4180         test_AWRwindow(szAWRClass, styles[i], 0, menu);
4181     for (i = 0; i < COUNTOF(exStyles); ++i) {
4182         test_AWRwindow(szAWRClass, WS_POPUP, exStyles[i], menu);
4183         test_AWRwindow(szAWRClass, WS_THICKFRAME, exStyles[i], menu);
4184     }
4185 }
4186 #undef COUNTOF
4187
4188 #define SHOWSYSMETRIC(SM) trace(#SM "=%d\n", GetSystemMetrics(SM))
4189
4190 static void test_AdjustWindowRect(void)
4191 {
4192     if (!AWR_init())
4193         return;
4194     
4195     SHOWSYSMETRIC(SM_CYCAPTION);
4196     SHOWSYSMETRIC(SM_CYSMCAPTION);
4197     SHOWSYSMETRIC(SM_CYMENU);
4198     SHOWSYSMETRIC(SM_CXEDGE);
4199     SHOWSYSMETRIC(SM_CYEDGE);
4200     SHOWSYSMETRIC(SM_CXVSCROLL);
4201     SHOWSYSMETRIC(SM_CYHSCROLL);
4202     SHOWSYSMETRIC(SM_CXFRAME);
4203     SHOWSYSMETRIC(SM_CYFRAME);
4204     SHOWSYSMETRIC(SM_CXDLGFRAME);
4205     SHOWSYSMETRIC(SM_CYDLGFRAME);
4206     SHOWSYSMETRIC(SM_CXBORDER);
4207     SHOWSYSMETRIC(SM_CYBORDER);  
4208
4209     test_AWR_window_size(FALSE);
4210     test_AWR_window_size(TRUE);
4211
4212     DestroyMenu(hmenu);
4213 }
4214 #undef SHOWSYSMETRIC
4215
4216
4217 /* Global variables to trigger exit from loop */
4218 static int redrawComplete, WMPAINT_count;
4219
4220 static LRESULT WINAPI redraw_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
4221 {
4222     switch (msg)
4223     {
4224     case WM_PAINT:
4225         trace("doing WM_PAINT %d\n", WMPAINT_count);
4226         WMPAINT_count++;
4227         if (WMPAINT_count > 10 && redrawComplete == 0) {
4228             PAINTSTRUCT ps;
4229             BeginPaint(hwnd, &ps);
4230             EndPaint(hwnd, &ps);
4231             return 1;
4232         }
4233         return 0;
4234     }
4235     return DefWindowProc(hwnd, msg, wparam, lparam);
4236 }
4237
4238 /* Ensure we exit from RedrawNow regardless of invalidated area */
4239 static void test_redrawnow(void)
4240 {
4241    WNDCLASSA cls;
4242    HWND hwndMain;
4243
4244    cls.style = CS_DBLCLKS;
4245    cls.lpfnWndProc = redraw_window_procA;
4246    cls.cbClsExtra = 0;
4247    cls.cbWndExtra = 0;
4248    cls.hInstance = GetModuleHandleA(0);
4249    cls.hIcon = 0;
4250    cls.hCursor = LoadCursorA(0, IDC_ARROW);
4251    cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4252    cls.lpszMenuName = NULL;
4253    cls.lpszClassName = "RedrawWindowClass";
4254
4255    if(!RegisterClassA(&cls)) {
4256        trace("Register failed %d\n", GetLastError());
4257        return;
4258    }
4259
4260    hwndMain = CreateWindowA("RedrawWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
4261                             CW_USEDEFAULT, 0, 100, 100, NULL, NULL, 0, NULL);
4262
4263    ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
4264    ShowWindow(hwndMain, SW_SHOW);
4265    ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
4266    RedrawWindow(hwndMain, NULL,NULL,RDW_UPDATENOW | RDW_ALLCHILDREN);
4267    ok( WMPAINT_count == 1 || broken(WMPAINT_count == 0), /* sometimes on win9x */
4268        "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
4269    redrawComplete = TRUE;
4270    ok( WMPAINT_count < 10, "RedrawWindow (RDW_UPDATENOW) never completed (%d)\n", WMPAINT_count);
4271
4272    /* clean up */
4273    DestroyWindow( hwndMain);
4274 }
4275
4276 struct parentdc_stat {
4277     RECT client;
4278     RECT clip;
4279     RECT paint;
4280 };
4281
4282 struct parentdc_test {
4283    struct parentdc_stat main, main_todo;
4284    struct parentdc_stat child1, child1_todo;
4285    struct parentdc_stat child2, child2_todo;
4286 };
4287
4288 static LRESULT WINAPI parentdc_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
4289 {
4290     RECT rc;
4291     PAINTSTRUCT ps;
4292
4293     struct parentdc_stat *t = (struct parentdc_stat *)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
4294
4295     switch (msg)
4296     {
4297     case WM_PAINT:
4298         GetClientRect(hwnd, &rc);
4299         CopyRect(&t->client, &rc);
4300         GetWindowRect(hwnd, &rc);
4301         trace("WM_PAINT: hwnd %p, client rect (%d,%d)-(%d,%d), window rect (%d,%d)-(%d,%d)\n", hwnd,
4302               t->client.left, t->client.top, t->client.right, t->client.bottom,
4303               rc.left, rc.top, rc.right, rc.bottom);
4304         BeginPaint(hwnd, &ps);
4305         CopyRect(&t->paint, &ps.rcPaint);
4306         GetClipBox(ps.hdc, &rc);
4307         CopyRect(&t->clip, &rc);
4308         trace("clip rect (%d,%d)-(%d,%d), paint rect (%d,%d)-(%d,%d)\n",
4309               rc.left, rc.top, rc.right, rc.bottom,
4310               ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right, ps.rcPaint.bottom);
4311         EndPaint(hwnd, &ps);
4312         return 0;
4313     }
4314     return DefWindowProc(hwnd, msg, wparam, lparam);
4315 }
4316
4317 static void zero_parentdc_stat(struct parentdc_stat *t)
4318 {
4319     SetRectEmpty(&t->client);
4320     SetRectEmpty(&t->clip);
4321     SetRectEmpty(&t->paint);
4322 }
4323
4324 static void zero_parentdc_test(struct parentdc_test *t)
4325 {
4326     zero_parentdc_stat(&t->main);
4327     zero_parentdc_stat(&t->child1);
4328     zero_parentdc_stat(&t->child2);
4329 }
4330
4331 #define parentdc_field_ok(t, w, r, f, got) \
4332   ok (t.w.r.f==got.w.r.f, "window " #w ", rect " #r ", field " #f \
4333       ": expected %d, got %d\n", \
4334       t.w.r.f, got.w.r.f)
4335
4336 #define parentdc_todo_field_ok(t, w, r, f, got) \
4337   if (t.w##_todo.r.f) todo_wine { parentdc_field_ok(t, w, r, f, got); } \
4338   else parentdc_field_ok(t, w, r, f, got)
4339
4340 #define parentdc_rect_ok(t, w, r, got) \
4341   parentdc_todo_field_ok(t, w, r, left, got); \
4342   parentdc_todo_field_ok(t, w, r, top, got); \
4343   parentdc_todo_field_ok(t, w, r, right, got); \
4344   parentdc_todo_field_ok(t, w, r, bottom, got);
4345
4346 #define parentdc_win_ok(t, w, got) \
4347   parentdc_rect_ok(t, w, client, got); \
4348   parentdc_rect_ok(t, w, clip, got); \
4349   parentdc_rect_ok(t, w, paint, got);
4350
4351 #define parentdc_ok(t, got) \
4352   parentdc_win_ok(t, main, got); \
4353   parentdc_win_ok(t, child1, got); \
4354   parentdc_win_ok(t, child2, got);
4355
4356 static void test_csparentdc(void)
4357 {
4358    WNDCLASSA clsMain, cls;
4359    HWND hwndMain, hwnd1, hwnd2;
4360    RECT rc;
4361
4362    struct parentdc_test test_answer;
4363
4364 #define nothing_todo {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}
4365    const struct parentdc_test test1 = 
4366    {
4367         {{0, 0, 150, 150}, {0, 0, 150, 150}, {0, 0, 150, 150}}, nothing_todo,
4368         {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
4369         {{0, 0, 40, 40}, {-40, -40, 110, 110}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
4370    };
4371
4372    const struct parentdc_test test2 = 
4373    {
4374         {{0, 0, 150, 150}, {0, 0, 50, 50}, {0, 0, 50, 50}}, nothing_todo,
4375         {{0, 0, 40, 40}, {-20, -20, 30, 30}, {0, 0, 30, 30}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
4376         {{0, 0, 40, 40}, {-40, -40, 10, 10}, {0, 0, 10, 10}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
4377    };
4378
4379    const struct parentdc_test test3 = 
4380    {
4381         {{0, 0, 150, 150}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
4382         {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
4383         {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
4384    };
4385
4386    const struct parentdc_test test4 = 
4387    {
4388         {{0, 0, 150, 150}, {40, 40, 50, 50}, {40, 40, 50, 50}}, nothing_todo,
4389         {{0, 0, 40, 40}, {20, 20, 30, 30}, {20, 20, 30, 30}}, nothing_todo,
4390         {{0, 0, 40, 40}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
4391    };
4392
4393    const struct parentdc_test test5 = 
4394    {
4395         {{0, 0, 150, 150}, {20, 20, 60, 60}, {20, 20, 60, 60}}, nothing_todo,
4396         {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
4397         {{0, 0, 40, 40}, {-20, -20, 20, 20}, {0, 0, 20, 20}}, {{0, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 0, 0}},
4398    };
4399
4400    const struct parentdc_test test6 = 
4401    {
4402         {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
4403         {{0, 0, 40, 40}, {0, 0, 10, 10}, {0, 0, 10, 10}}, nothing_todo,
4404         {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
4405    };
4406
4407    const struct parentdc_test test7 = 
4408    {
4409         {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
4410         {{0, 0, 40, 40}, {-20, -20, 130, 130}, {0, 0, 40, 40}}, {{0, 0, 0, 0}, {1, 1, 1, 1}, {0, 0, 0, 0}},
4411         {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}, nothing_todo,
4412    };
4413 #undef nothing_todo
4414
4415    clsMain.style = CS_DBLCLKS;
4416    clsMain.lpfnWndProc = parentdc_window_procA;
4417    clsMain.cbClsExtra = 0;
4418    clsMain.cbWndExtra = 0;
4419    clsMain.hInstance = GetModuleHandleA(0);
4420    clsMain.hIcon = 0;
4421    clsMain.hCursor = LoadCursorA(0, IDC_ARROW);
4422    clsMain.hbrBackground = GetStockObject(WHITE_BRUSH);
4423    clsMain.lpszMenuName = NULL;
4424    clsMain.lpszClassName = "ParentDcMainWindowClass";
4425
4426    if(!RegisterClassA(&clsMain)) {
4427        trace("Register failed %d\n", GetLastError());
4428        return;
4429    }
4430
4431    cls.style = CS_DBLCLKS | CS_PARENTDC;
4432    cls.lpfnWndProc = parentdc_window_procA;
4433    cls.cbClsExtra = 0;
4434    cls.cbWndExtra = 0;
4435    cls.hInstance = GetModuleHandleA(0);
4436    cls.hIcon = 0;
4437    cls.hCursor = LoadCursorA(0, IDC_ARROW);
4438    cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4439    cls.lpszMenuName = NULL;
4440    cls.lpszClassName = "ParentDcWindowClass";
4441
4442    if(!RegisterClassA(&cls)) {
4443        trace("Register failed %d\n", GetLastError());
4444        return;
4445    }
4446
4447    SetRect(&rc, 0, 0, 150, 150);
4448    AdjustWindowRectEx(&rc, WS_OVERLAPPEDWINDOW, FALSE, 0);
4449    hwndMain = CreateWindowA("ParentDcMainWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
4450                             CW_USEDEFAULT, 0, rc.right - rc.left, rc.bottom - rc.top, NULL, NULL, 0, NULL);
4451    SetWindowLongPtrA(hwndMain, GWLP_USERDATA, (DWORD_PTR)&test_answer.main);
4452    hwnd1 = CreateWindowA("ParentDcWindowClass", "Child Window 1", WS_CHILD,
4453                             20, 20, 40, 40, hwndMain, NULL, 0, NULL);
4454    SetWindowLongPtrA(hwnd1, GWLP_USERDATA, (DWORD_PTR)&test_answer.child1);
4455    hwnd2 = CreateWindowA("ParentDcWindowClass", "Child Window 2", WS_CHILD,
4456                             40, 40, 40, 40, hwndMain, NULL, 0, NULL);
4457    SetWindowLongPtrA(hwnd2, GWLP_USERDATA, (DWORD_PTR)&test_answer.child2);
4458    ShowWindow(hwndMain, SW_SHOW);
4459    ShowWindow(hwnd1, SW_SHOW);
4460    ShowWindow(hwnd2, SW_SHOW);
4461    SetWindowPos(hwndMain, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
4462    flush_events( TRUE );
4463
4464    zero_parentdc_test(&test_answer);
4465    InvalidateRect(hwndMain, NULL, TRUE);
4466    flush_events( TRUE );
4467    parentdc_ok(test1, test_answer);
4468
4469    zero_parentdc_test(&test_answer);
4470    SetRect(&rc, 0, 0, 50, 50);
4471    InvalidateRect(hwndMain, &rc, TRUE);
4472    flush_events( TRUE );
4473    parentdc_ok(test2, test_answer);
4474
4475    zero_parentdc_test(&test_answer);
4476    SetRect(&rc, 0, 0, 10, 10);
4477    InvalidateRect(hwndMain, &rc, TRUE);
4478    flush_events( TRUE );
4479    parentdc_ok(test3, test_answer);
4480
4481    zero_parentdc_test(&test_answer);
4482    SetRect(&rc, 40, 40, 50, 50);
4483    InvalidateRect(hwndMain, &rc, TRUE);
4484    flush_events( TRUE );
4485    parentdc_ok(test4, test_answer);
4486
4487    zero_parentdc_test(&test_answer);
4488    SetRect(&rc, 20, 20, 60, 60);
4489    InvalidateRect(hwndMain, &rc, TRUE);
4490    flush_events( TRUE );
4491    parentdc_ok(test5, test_answer);
4492
4493    zero_parentdc_test(&test_answer);
4494    SetRect(&rc, 0, 0, 10, 10);
4495    InvalidateRect(hwnd1, &rc, TRUE);
4496    flush_events( TRUE );
4497    parentdc_ok(test6, test_answer);
4498
4499    zero_parentdc_test(&test_answer);
4500    SetRect(&rc, -5, -5, 65, 65);
4501    InvalidateRect(hwnd1, &rc, TRUE);
4502    flush_events( TRUE );
4503    parentdc_ok(test7, test_answer);
4504
4505    DestroyWindow(hwndMain);
4506    DestroyWindow(hwnd1);
4507    DestroyWindow(hwnd2);
4508 }
4509
4510 static LRESULT WINAPI def_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
4511 {
4512     return DefWindowProcA(hwnd, msg, wparam, lparam);
4513 }
4514
4515 static LRESULT WINAPI def_window_procW(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
4516 {
4517     return DefWindowProcW(hwnd, msg, wparam, lparam);
4518 }
4519
4520 static void test_IsWindowUnicode(void)
4521 {
4522     static const char ansi_class_nameA[] = "ansi class name";
4523     static const WCHAR ansi_class_nameW[] = {'a','n','s','i',' ','c','l','a','s','s',' ','n','a','m','e',0};
4524     static const char unicode_class_nameA[] = "unicode class name";
4525     static const WCHAR unicode_class_nameW[] = {'u','n','i','c','o','d','e',' ','c','l','a','s','s',' ','n','a','m','e',0};
4526     WNDCLASSA classA;
4527     WNDCLASSW classW;
4528     HWND hwnd;
4529
4530     memset(&classW, 0, sizeof(classW));
4531     classW.hInstance = GetModuleHandleA(0);
4532     classW.lpfnWndProc = def_window_procW;
4533     classW.lpszClassName = unicode_class_nameW;
4534     if (!RegisterClassW(&classW)) return; /* this catches Win9x as well */
4535
4536     memset(&classA, 0, sizeof(classA));
4537     classA.hInstance = GetModuleHandleA(0);
4538     classA.lpfnWndProc = def_window_procA;
4539     classA.lpszClassName = ansi_class_nameA;
4540     assert(RegisterClassA(&classA));
4541
4542     /* unicode class: window proc */
4543     hwnd = CreateWindowExW(0, unicode_class_nameW, NULL, WS_POPUP,
4544                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4545     assert(hwnd);
4546
4547     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4548     SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
4549     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4550     SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
4551     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4552
4553     DestroyWindow(hwnd);
4554
4555     hwnd = CreateWindowExA(0, unicode_class_nameA, NULL, WS_POPUP,
4556                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4557     assert(hwnd);
4558
4559     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4560     SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
4561     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4562     SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
4563     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4564
4565     DestroyWindow(hwnd);
4566
4567     /* ansi class: window proc */
4568     hwnd = CreateWindowExW(0, ansi_class_nameW, NULL, WS_POPUP,
4569                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4570     assert(hwnd);
4571
4572     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4573     SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
4574     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4575     SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
4576     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4577
4578     DestroyWindow(hwnd);
4579
4580     hwnd = CreateWindowExA(0, ansi_class_nameA, NULL, WS_POPUP,
4581                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4582     assert(hwnd);
4583
4584     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4585     SetWindowLongPtrW(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procW);
4586     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4587     SetWindowLongPtrA(hwnd, GWLP_WNDPROC, (ULONG_PTR)def_window_procA);
4588     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4589
4590     DestroyWindow(hwnd);
4591
4592     /* unicode class: class proc */
4593     hwnd = CreateWindowExW(0, unicode_class_nameW, NULL, WS_POPUP,
4594                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4595     assert(hwnd);
4596
4597     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4598     SetClassLongPtrA(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procA);
4599     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4600     /* do not restore class window proc back to unicode */
4601
4602     DestroyWindow(hwnd);
4603
4604     hwnd = CreateWindowExA(0, unicode_class_nameA, NULL, WS_POPUP,
4605                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4606     assert(hwnd);
4607
4608     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4609     SetClassLongPtrW(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procW);
4610     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4611
4612     DestroyWindow(hwnd);
4613
4614     /* ansi class: class proc */
4615     hwnd = CreateWindowExW(0, ansi_class_nameW, NULL, WS_POPUP,
4616                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4617     assert(hwnd);
4618
4619     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4620     SetClassLongPtrW(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procW);
4621     ok(!IsWindowUnicode(hwnd), "IsWindowUnicode expected to return FALSE\n");
4622     /* do not restore class window proc back to ansi */
4623
4624     DestroyWindow(hwnd);
4625
4626     hwnd = CreateWindowExA(0, ansi_class_nameA, NULL, WS_POPUP,
4627                            0, 0, 100, 100, GetDesktopWindow(), 0, 0, NULL);
4628     assert(hwnd);
4629
4630     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4631     SetClassLongPtrA(hwnd, GCLP_WNDPROC, (ULONG_PTR)def_window_procA);
4632     ok(IsWindowUnicode(hwnd), "IsWindowUnicode expected to return TRUE\n");
4633
4634     DestroyWindow(hwnd);
4635 }
4636
4637 static LRESULT CALLBACK minmax_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
4638 {
4639     MINMAXINFO *minmax;
4640
4641     if (msg != WM_GETMINMAXINFO)
4642         return DefWindowProc(hwnd, msg, wp, lp);
4643
4644     minmax = (MINMAXINFO *)lp;
4645
4646     if ((GetWindowLong(hwnd, GWL_STYLE) & WS_CHILD))
4647     {
4648         minmax->ptReserved.x = 0;
4649         minmax->ptReserved.y = 0;
4650         minmax->ptMaxSize.x = 400;
4651         minmax->ptMaxSize.y = 400;
4652         minmax->ptMaxPosition.x = 300;
4653         minmax->ptMaxPosition.y = 300;
4654         minmax->ptMaxTrackSize.x = 200;
4655         minmax->ptMaxTrackSize.y = 200;
4656         minmax->ptMinTrackSize.x = 100;
4657         minmax->ptMinTrackSize.y = 100;
4658     }
4659     else
4660         DefWindowProc(hwnd, msg, wp, lp);
4661     return 1;
4662 }
4663
4664 static int expected_cx, expected_cy;
4665 static RECT expected_rect, broken_rect;
4666
4667 static LRESULT CALLBACK winsizes_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
4668 {
4669     switch(msg)
4670     {
4671     case WM_GETMINMAXINFO:
4672     {
4673         RECT rect;
4674         GetWindowRect( hwnd, &rect );
4675         ok( !rect.left && !rect.top && !rect.right && !rect.bottom,
4676             "wrong rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
4677         return DefWindowProc(hwnd, msg, wp, lp);
4678     }
4679     case WM_NCCREATE:
4680     case WM_CREATE:
4681     {
4682         CREATESTRUCTA *cs = (CREATESTRUCTA *)lp;
4683         RECT rect;
4684         GetWindowRect( hwnd, &rect );
4685         trace( "hwnd %p msg %x size %dx%d rect %d,%d-%d,%d\n",
4686                hwnd, msg, cs->cx, cs->cy, rect.left, rect.top, rect.right, rect.bottom );
4687         ok( cs->cx == expected_cx || broken(cs->cx == (short)expected_cx),
4688             "wrong x size %d/%d\n", cs->cx, expected_cx );
4689         ok( cs->cy == expected_cy || broken(cs->cy == (short)expected_cy),
4690             "wrong y size %d/%d\n", cs->cy, expected_cy );
4691         ok( (rect.right - rect.left == expected_rect.right - expected_rect.left &&
4692              rect.bottom - rect.top == expected_rect.bottom - expected_rect.top) ||
4693             (rect.right - rect.left == min( 65535, expected_rect.right - expected_rect.left ) &&
4694              rect.bottom - rect.top == min( 65535, expected_rect.bottom - expected_rect.top )) ||
4695             broken( rect.right - rect.left == broken_rect.right - broken_rect.left &&
4696                     rect.bottom - rect.top == broken_rect.bottom - broken_rect.top) ||
4697             broken( rect.right - rect.left == (short)broken_rect.right - (short)broken_rect.left &&
4698                     rect.bottom - rect.top == (short)broken_rect.bottom - (short)broken_rect.top),
4699             "wrong rect %d,%d-%d,%d / %d,%d-%d,%d\n",
4700             rect.left, rect.top, rect.right, rect.bottom,
4701             expected_rect.left, expected_rect.top, expected_rect.right, expected_rect.bottom );
4702         return DefWindowProc(hwnd, msg, wp, lp);
4703     }
4704     case WM_NCCALCSIZE:
4705     {
4706         RECT rect, *r = (RECT *)lp;
4707         GetWindowRect( hwnd, &rect );
4708         ok( !memcmp( &rect, r, sizeof(rect) ),
4709             "passed rect %d,%d-%d,%d doesn't match window rect %d,%d-%d,%d\n",
4710             r->left, r->top, r->right, r->bottom, rect.left, rect.top, rect.right, rect.bottom );
4711         return DefWindowProc(hwnd, msg, wp, lp);
4712     }
4713     default:
4714         return DefWindowProc(hwnd, msg, wp, lp);
4715     }
4716 }
4717
4718 static void test_CreateWindow(void)
4719 {
4720     WNDCLASS cls;
4721     HWND hwnd, parent;
4722     HMENU hmenu;
4723     RECT rc, rc_minmax;
4724     MINMAXINFO minmax;
4725     BOOL res;
4726
4727 #define expect_menu(window, menu) \
4728     SetLastError(0xdeadbeef); \
4729     res = (GetMenu(window) == (HMENU)menu); \
4730     ok(res, "GetMenu error %d\n", GetLastError())
4731
4732 #define expect_style(window, style)\
4733     ok((ULONG)GetWindowLong(window, GWL_STYLE) == (style), "expected style %x != %x\n", (LONG)(style), GetWindowLong(window, GWL_STYLE))
4734
4735 #define expect_ex_style(window, ex_style)\
4736     ok((ULONG)GetWindowLong(window, GWL_EXSTYLE) == (ex_style), "expected ex_style %x != %x\n", (LONG)(ex_style), GetWindowLong(window, GWL_EXSTYLE))
4737
4738 #define expect_gle_broken_9x(gle)\
4739     ok(GetLastError() == gle ||\
4740        broken(GetLastError() == 0xdeadbeef),\
4741        "IsMenu set error %d\n", GetLastError())
4742
4743     hmenu = CreateMenu();
4744     assert(hmenu != 0);
4745     parent = GetDesktopWindow();
4746     assert(parent != 0);
4747
4748     SetLastError(0xdeadbeef);
4749     res = IsMenu(hmenu);
4750     ok(res, "IsMenu error %d\n", GetLastError());
4751
4752     /* WS_CHILD */
4753     SetLastError(0xdeadbeef);
4754     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD,
4755                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4756     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4757     expect_menu(hwnd, 1);
4758     expect_style(hwnd, WS_CHILD);
4759     expect_ex_style(hwnd, WS_EX_APPWINDOW);
4760     DestroyWindow(hwnd);
4761
4762     SetLastError(0xdeadbeef);
4763     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_CAPTION,
4764                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4765     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4766     expect_menu(hwnd, 1);
4767     expect_style(hwnd, WS_CHILD | WS_CAPTION);
4768     expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4769     DestroyWindow(hwnd);
4770
4771     SetLastError(0xdeadbeef);
4772     hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD,
4773                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4774     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4775     expect_menu(hwnd, 1);
4776     expect_style(hwnd, WS_CHILD);
4777     expect_ex_style(hwnd, 0);
4778     DestroyWindow(hwnd);
4779
4780     SetLastError(0xdeadbeef);
4781     hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_CAPTION,
4782                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4783     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4784     expect_menu(hwnd, 1);
4785     expect_style(hwnd, WS_CHILD | WS_CAPTION);
4786     expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4787     DestroyWindow(hwnd);
4788
4789     /* WS_POPUP */
4790     SetLastError(0xdeadbeef);
4791     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP,
4792                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4793     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4794     expect_menu(hwnd, hmenu);
4795     expect_style(hwnd, WS_POPUP | WS_CLIPSIBLINGS);
4796     expect_ex_style(hwnd, WS_EX_APPWINDOW);
4797     DestroyWindow(hwnd);
4798     SetLastError(0xdeadbeef);
4799     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4800     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4801
4802     hmenu = CreateMenu();
4803     assert(hmenu != 0);
4804     SetLastError(0xdeadbeef);
4805     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP | WS_CAPTION,
4806                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4807     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4808     expect_menu(hwnd, hmenu);
4809     expect_style(hwnd, WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4810     expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4811     DestroyWindow(hwnd);
4812     SetLastError(0xdeadbeef);
4813     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4814     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4815
4816     hmenu = CreateMenu();
4817     assert(hmenu != 0);
4818     SetLastError(0xdeadbeef);
4819     hwnd = CreateWindowEx(0, "static", NULL, WS_POPUP,
4820                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4821     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4822     expect_menu(hwnd, hmenu);
4823     expect_style(hwnd, WS_POPUP | WS_CLIPSIBLINGS);
4824     expect_ex_style(hwnd, 0);
4825     DestroyWindow(hwnd);
4826     SetLastError(0xdeadbeef);
4827     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4828     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4829
4830     hmenu = CreateMenu();
4831     assert(hmenu != 0);
4832     SetLastError(0xdeadbeef);
4833     hwnd = CreateWindowEx(0, "static", NULL, WS_POPUP | WS_CAPTION,
4834                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4835     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4836     expect_menu(hwnd, hmenu);
4837     expect_style(hwnd, WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4838     expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4839     DestroyWindow(hwnd);
4840     SetLastError(0xdeadbeef);
4841     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4842     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4843
4844     /* WS_CHILD | WS_POPUP */
4845     SetLastError(0xdeadbeef);
4846     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP,
4847                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4848     ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4849     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4850     if (hwnd)
4851         DestroyWindow(hwnd);
4852
4853     hmenu = CreateMenu();
4854     assert(hmenu != 0);
4855     SetLastError(0xdeadbeef);
4856     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP,
4857                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4858     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4859     expect_menu(hwnd, hmenu);
4860     expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CLIPSIBLINGS);
4861     expect_ex_style(hwnd, WS_EX_APPWINDOW);
4862     DestroyWindow(hwnd);
4863     SetLastError(0xdeadbeef);
4864     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4865     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4866
4867     SetLastError(0xdeadbeef);
4868     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4869                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4870     ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4871     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4872     if (hwnd)
4873         DestroyWindow(hwnd);
4874
4875     hmenu = CreateMenu();
4876     assert(hmenu != 0);
4877     SetLastError(0xdeadbeef);
4878     hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4879                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4880     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4881     expect_menu(hwnd, hmenu);
4882     expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4883     expect_ex_style(hwnd, WS_EX_APPWINDOW | WS_EX_WINDOWEDGE);
4884     DestroyWindow(hwnd);
4885     SetLastError(0xdeadbeef);
4886     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4887     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4888
4889     SetLastError(0xdeadbeef);
4890     hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP,
4891                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4892     ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4893     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4894     if (hwnd)
4895         DestroyWindow(hwnd);
4896
4897     hmenu = CreateMenu();
4898     assert(hmenu != 0);
4899     SetLastError(0xdeadbeef);
4900     hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP,
4901                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4902     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4903     expect_menu(hwnd, hmenu);
4904     expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CLIPSIBLINGS);
4905     expect_ex_style(hwnd, 0);
4906     DestroyWindow(hwnd);
4907     SetLastError(0xdeadbeef);
4908     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4909     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4910
4911     SetLastError(0xdeadbeef);
4912     hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4913                            0, 0, 100, 100, parent, (HMENU)1, 0, NULL);
4914     ok(!hwnd || broken(hwnd != 0 /* Win9x */), "CreateWindowEx should fail\n");
4915     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4916     if (hwnd)
4917         DestroyWindow(hwnd);
4918
4919     hmenu = CreateMenu();
4920     assert(hmenu != 0);
4921     SetLastError(0xdeadbeef);
4922     hwnd = CreateWindowEx(0, "static", NULL, WS_CHILD | WS_POPUP | WS_CAPTION,
4923                            0, 0, 100, 100, parent, hmenu, 0, NULL);
4924     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4925     expect_menu(hwnd, hmenu);
4926     expect_style(hwnd, WS_CHILD | WS_POPUP | WS_CAPTION | WS_CLIPSIBLINGS);
4927     expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4928     DestroyWindow(hwnd);
4929     SetLastError(0xdeadbeef);
4930     ok(!IsMenu(hmenu), "IsMenu should fail\n");
4931     expect_gle_broken_9x(ERROR_INVALID_MENU_HANDLE);
4932
4933     /* test child window sizing */
4934     cls.style = 0;
4935     cls.lpfnWndProc = minmax_wnd_proc;
4936     cls.cbClsExtra = 0;
4937     cls.cbWndExtra = 0;
4938     cls.hInstance = GetModuleHandle(0);
4939     cls.hIcon = 0;
4940     cls.hCursor = LoadCursorA(0, IDC_ARROW);
4941     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
4942     cls.lpszMenuName = NULL;
4943     cls.lpszClassName = "MinMax_WndClass";
4944     RegisterClass(&cls);
4945
4946     SetLastError(0xdeadbeef);
4947     parent = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_CAPTION | WS_SYSMENU | WS_THICKFRAME,
4948                            0, 0, 100, 100, 0, 0, 0, NULL);
4949     ok(parent != 0, "CreateWindowEx error %d\n", GetLastError());
4950     expect_menu(parent, 0);
4951     expect_style(parent, WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_CLIPSIBLINGS);
4952     expect_ex_style(parent, WS_EX_WINDOWEDGE);
4953
4954     memset(&minmax, 0, sizeof(minmax));
4955     SendMessage(parent, WM_GETMINMAXINFO, 0, (LPARAM)&minmax);
4956     SetRect(&rc_minmax, 0, 0, minmax.ptMaxSize.x, minmax.ptMaxSize.y);
4957     ok(IsRectEmpty(&rc_minmax), "ptMaxSize is not empty\n");
4958     SetRect(&rc_minmax, 0, 0, minmax.ptMaxTrackSize.x, minmax.ptMaxTrackSize.y);
4959     ok(IsRectEmpty(&rc_minmax), "ptMaxTrackSize is not empty\n");
4960
4961     GetWindowRect(parent, &rc);
4962     ok(!IsRectEmpty(&rc), "parent window rect is empty\n");
4963     GetClientRect(parent, &rc);
4964     ok(!IsRectEmpty(&rc), "parent client rect is empty\n");
4965
4966     InflateRect(&rc, 200, 200);
4967     trace("creating child with rect (%d,%d-%d,%d)\n", rc.left, rc.top, rc.right, rc.bottom);
4968
4969     SetLastError(0xdeadbeef);
4970     hwnd = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME,
4971                           rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top,
4972                           parent, (HMENU)1, 0, NULL);
4973     ok(hwnd != 0, "CreateWindowEx error %d\n", GetLastError());
4974     expect_menu(hwnd, 1);
4975     expect_style(hwnd, WS_CHILD | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME);
4976     expect_ex_style(hwnd, WS_EX_WINDOWEDGE);
4977
4978     memset(&minmax, 0, sizeof(minmax));
4979     SendMessage(hwnd, WM_GETMINMAXINFO, 0, (LPARAM)&minmax);
4980     SetRect(&rc_minmax, 0, 0, minmax.ptMaxTrackSize.x, minmax.ptMaxTrackSize.y);
4981
4982     GetWindowRect(hwnd, &rc);
4983     OffsetRect(&rc, -rc.left, -rc.top);
4984     ok(EqualRect(&rc, &rc_minmax), "rects don't match: (%d,%d-%d,%d) and (%d,%d-%d,%d)\n",
4985        rc.left, rc.top, rc.right, rc.bottom,
4986        rc_minmax.left, rc_minmax.top, rc_minmax.right, rc_minmax.bottom);
4987     DestroyWindow(hwnd);
4988
4989     cls.lpfnWndProc = winsizes_wnd_proc;
4990     cls.lpszClassName = "Sizes_WndClass";
4991     RegisterClass(&cls);
4992
4993     expected_cx = expected_cy = 200000;
4994     SetRect( &expected_rect, 0, 0, 200000, 200000 );
4995     broken_rect = expected_rect;
4996     hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 300000, 300000, 200000, 200000, parent, 0, 0, NULL);
4997     ok( hwnd != 0, "creation failed err %u\n", GetLastError());
4998     GetClientRect( hwnd, &rc );
4999     ok( rc.right == 200000 || rc.right == 65535 || broken(rc.right == (short)200000),
5000         "invalid rect right %u\n", rc.right );
5001     ok( rc.bottom == 200000 || rc.bottom == 65535 || broken(rc.bottom == (short)200000),
5002         "invalid rect bottom %u\n", rc.bottom );
5003     DestroyWindow(hwnd);
5004
5005     expected_cx = expected_cy = -10;
5006     SetRect( &expected_rect, 0, 0, 0, 0 );
5007     SetRect( &broken_rect, 0, 0, -10, -10 );
5008     hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, -20, -20, -10, -10, parent, 0, 0, NULL);
5009     ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5010     GetClientRect( hwnd, &rc );
5011     ok( rc.right == 0, "invalid rect right %u\n", rc.right );
5012     ok( rc.bottom == 0, "invalid rect bottom %u\n", rc.bottom );
5013     DestroyWindow(hwnd);
5014
5015     expected_cx = expected_cy = -200000;
5016     SetRect( &expected_rect, 0, 0, 0, 0 );
5017     SetRect( &broken_rect, 0, 0, -200000, -200000 );
5018     hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, -300000, -300000, -200000, -200000, parent, 0, 0, NULL);
5019     ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5020     GetClientRect( hwnd, &rc );
5021     ok( rc.right == 0, "invalid rect right %u\n", rc.right );
5022     ok( rc.bottom == 0, "invalid rect bottom %u\n", rc.bottom );
5023     DestroyWindow(hwnd);
5024
5025     /* we need a parent at 0,0 so that child coordinates match */
5026     DestroyWindow(parent);
5027     parent = CreateWindowEx(0, "MinMax_WndClass", NULL, WS_POPUP, 0, 0, 100, 100, 0, 0, 0, NULL);
5028     ok(parent != 0, "CreateWindowEx error %d\n", GetLastError());
5029
5030     expected_cx = 100;
5031     expected_cy = 0x7fffffff;
5032     SetRect( &expected_rect, 10, 10, 110, 0x7fffffff );
5033     SetRect( &broken_rect, 10, 10, 110, 0x7fffffffU + 10 );
5034     hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 10, 10, 100, 0x7fffffff, parent, 0, 0, NULL);
5035     ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5036     GetClientRect( hwnd, &rc );
5037     ok( rc.right == 100, "invalid rect right %u\n", rc.right );
5038     ok( rc.bottom == 0x7fffffff - 10 || rc.bottom ==65535 || broken(rc.bottom == 0),
5039         "invalid rect bottom %u\n", rc.bottom );
5040     DestroyWindow(hwnd);
5041
5042     expected_cx = 0x7fffffff;
5043     expected_cy = 0x7fffffff;
5044     SetRect( &expected_rect, 20, 10, 0x7fffffff, 0x7fffffff );
5045     SetRect( &broken_rect, 20, 10, 0x7fffffffU + 20, 0x7fffffffU + 10 );
5046     hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_CHILD, 20, 10, 0x7fffffff, 0x7fffffff, parent, 0, 0, NULL);
5047     ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5048     GetClientRect( hwnd, &rc );
5049     ok( rc.right == 0x7fffffff - 20 || rc.right == 65535 || broken(rc.right == 0),
5050         "invalid rect right %u\n", rc.right );
5051     ok( rc.bottom == 0x7fffffff - 10 || rc.right == 65535 || broken(rc.bottom == 0),
5052         "invalid rect bottom %u\n", rc.bottom );
5053     DestroyWindow(hwnd);
5054
5055     /* top level window */
5056     expected_cx = expected_cy = 200000;
5057     SetRect( &expected_rect, 0, 0, GetSystemMetrics(SM_CXMAXTRACK), GetSystemMetrics(SM_CYMAXTRACK) );
5058     hwnd = CreateWindowExA(0, "Sizes_WndClass", NULL, WS_OVERLAPPEDWINDOW, 300000, 300000, 200000, 200000, 0, 0, 0, NULL);
5059     ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5060     GetClientRect( hwnd, &rc );
5061     ok( rc.right <= expected_cx, "invalid rect right %u\n", rc.right );
5062     ok( rc.bottom <= expected_cy, "invalid rect bottom %u\n", rc.bottom );
5063     DestroyWindow(hwnd);
5064
5065     if (pGetLayout && pSetLayout)
5066     {
5067         HDC hdc = GetDC( parent );
5068         pSetLayout( hdc, LAYOUT_RTL );
5069         if (pGetLayout( hdc ))
5070         {
5071             ReleaseDC( parent, hdc );
5072             DestroyWindow( parent );
5073             SetLastError( 0xdeadbeef );
5074             parent = CreateWindowEx(WS_EX_APPWINDOW | WS_EX_LAYOUTRTL, "static", NULL, WS_POPUP,
5075                                     0, 0, 100, 100, 0, 0, 0, NULL);
5076             ok( parent != 0, "creation failed err %u\n", GetLastError());
5077             expect_ex_style( parent, WS_EX_APPWINDOW | WS_EX_LAYOUTRTL );
5078             hwnd = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 20, 20, parent, 0, 0, NULL);
5079             ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5080             expect_ex_style( hwnd, WS_EX_LAYOUTRTL );
5081             DestroyWindow( hwnd );
5082             hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 20, 20, parent, 0, 0, NULL);
5083             ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5084             expect_ex_style( hwnd, 0 );
5085             DestroyWindow( hwnd );
5086             SetWindowLongW( parent, GWL_EXSTYLE, WS_EX_APPWINDOW | WS_EX_LAYOUTRTL | WS_EX_NOINHERITLAYOUT );
5087             hwnd = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 20, 20, parent, 0, 0, NULL);
5088             ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5089             expect_ex_style( hwnd, 0 );
5090             DestroyWindow( hwnd );
5091
5092             if (pGetProcessDefaultLayout && pSetProcessDefaultLayout)
5093             {
5094                 DWORD layout;
5095
5096                 SetLastError( 0xdeadbeef );
5097                 ok( !pGetProcessDefaultLayout( NULL ), "GetProcessDefaultLayout succeeded\n" );
5098                 ok( GetLastError() == ERROR_NOACCESS, "wrong error %u\n", GetLastError() );
5099                 SetLastError( 0xdeadbeef );
5100                 res = pGetProcessDefaultLayout( &layout );
5101                 ok( res, "GetProcessDefaultLayout failed err %u\n", GetLastError ());
5102                 ok( layout == 0, "GetProcessDefaultLayout wrong layout %x\n", layout );
5103                 SetLastError( 0xdeadbeef );
5104                 res = pSetProcessDefaultLayout( 7 );
5105                 ok( res, "SetProcessDefaultLayout failed err %u\n", GetLastError ());
5106                 res = pGetProcessDefaultLayout( &layout );
5107                 ok( res, "GetProcessDefaultLayout failed err %u\n", GetLastError ());
5108                 ok( layout == 7, "GetProcessDefaultLayout wrong layout %x\n", layout );
5109                 SetLastError( 0xdeadbeef );
5110                 res = pSetProcessDefaultLayout( LAYOUT_RTL );
5111                 ok( res, "SetProcessDefaultLayout failed err %u\n", GetLastError ());
5112                 res = pGetProcessDefaultLayout( &layout );
5113                 ok( res, "GetProcessDefaultLayout failed err %u\n", GetLastError ());
5114                 ok( layout == LAYOUT_RTL, "GetProcessDefaultLayout wrong layout %x\n", layout );
5115                 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP,
5116                                       0, 0, 100, 100, 0, 0, 0, NULL);
5117                 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5118                 expect_ex_style( hwnd, WS_EX_APPWINDOW | WS_EX_LAYOUTRTL );
5119                 DestroyWindow( hwnd );
5120                 hwnd = CreateWindowEx(WS_EX_APPWINDOW, "static", NULL, WS_POPUP,
5121                                       0, 0, 100, 100, parent, 0, 0, NULL);
5122                 ok( hwnd != 0, "creation failed err %u\n", GetLastError());
5123                 expect_ex_style( hwnd, WS_EX_APPWINDOW );
5124                 DestroyWindow( hwnd );
5125                 pSetProcessDefaultLayout( 0 );
5126             }
5127             else win_skip( "SetProcessDefaultLayout not supported\n" );
5128         }
5129         else win_skip( "SetLayout not supported\n" );
5130     }
5131     else win_skip( "SetLayout not available\n" );
5132
5133     DestroyWindow(parent);
5134
5135     UnregisterClass("MinMax_WndClass", GetModuleHandle(0));
5136     UnregisterClass("Sizes_WndClass", GetModuleHandle(0));
5137
5138 #undef expect_gle_broken_9x
5139 #undef expect_menu
5140 #undef expect_style
5141 #undef expect_ex_style
5142 }
5143
5144 /* function that remembers whether the system the test is running on sets the
5145  * last error for user32 functions to make the tests stricter */
5146 static int check_error(DWORD actual, DWORD expected)
5147 {
5148     static int sets_last_error = -1;
5149     if (sets_last_error == -1)
5150         sets_last_error = (actual != 0xdeadbeef);
5151     return (!sets_last_error && (actual == 0xdeadbeef)) || (actual == expected);
5152 }
5153
5154 static void test_SetWindowLong(void)
5155 {
5156     LONG_PTR retval;
5157     WNDPROC old_window_procW;
5158
5159     SetLastError(0xdeadbeef);
5160     retval = SetWindowLongPtr(NULL, GWLP_WNDPROC, 0);
5161     ok(!retval, "SetWindowLongPtr on invalid window handle should have returned 0 instead of 0x%lx\n", retval);
5162     ok(check_error(GetLastError(), ERROR_INVALID_WINDOW_HANDLE),
5163         "SetWindowLongPtr should have set error to ERROR_INVALID_WINDOW_HANDLE instead of %d\n", GetLastError());
5164
5165     SetLastError(0xdeadbeef);
5166     retval = SetWindowLongPtr(hwndMain, 0xdeadbeef, 0);
5167     ok(!retval, "SetWindowLongPtr on invalid index should have returned 0 instead of 0x%lx\n", retval);
5168     ok(check_error(GetLastError(), ERROR_INVALID_INDEX),
5169         "SetWindowLongPtr should have set error to ERROR_INVALID_INDEX instead of %d\n", GetLastError());
5170
5171     SetLastError(0xdeadbeef);
5172     retval = SetWindowLongPtr(hwndMain, GWLP_WNDPROC, 0);
5173     ok((WNDPROC)retval == main_window_procA || broken(!retval), /* win9x */
5174         "SetWindowLongPtr on invalid window proc should have returned address of main_window_procA instead of 0x%lx\n", retval);
5175     ok(GetLastError() == 0xdeadbeef, "SetWindowLongPtr shouldn't have set the last error, instead of setting it to %d\n", GetLastError());
5176     retval = GetWindowLongPtr(hwndMain, GWLP_WNDPROC);
5177     ok((WNDPROC)retval == main_window_procA,
5178         "SetWindowLongPtr on invalid window proc shouldn't have changed the value returned by GetWindowLongPtr, instead of changing it to 0x%lx\n", retval);
5179     ok(!IsWindowUnicode(hwndMain), "hwndMain shouldn't be Unicode\n");
5180
5181     old_window_procW = (WNDPROC)GetWindowLongPtrW(hwndMain, GWLP_WNDPROC);
5182     SetLastError(0xdeadbeef);
5183     retval = SetWindowLongPtrW(hwndMain, GWLP_WNDPROC, 0);
5184     if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
5185     {
5186         ok(GetLastError() == 0xdeadbeef, "SetWindowLongPtr shouldn't have set the last error, instead of setting it to %d\n", GetLastError());
5187         ok(retval != 0, "SetWindowLongPtr error %d\n", GetLastError());
5188         ok((WNDPROC)retval == old_window_procW,
5189             "SetWindowLongPtr on invalid window proc shouldn't have changed the value returned by GetWindowLongPtr, instead of changing it to 0x%lx\n", retval);
5190         ok(IsWindowUnicode(hwndMain), "hwndMain should now be Unicode\n");
5191
5192         /* set it back to ANSI */
5193         SetWindowLongPtr(hwndMain, GWLP_WNDPROC, 0);
5194     }
5195 }
5196
5197 static void test_ShowWindow(void)
5198 {
5199     HWND hwnd;
5200     DWORD style;
5201     RECT rcMain, rc, rcMinimized;
5202     LPARAM ret;
5203
5204     SetRect(&rcMain, 120, 120, 210, 210);
5205
5206     hwnd = CreateWindowEx(0, "MainWindowClass", NULL,
5207                           WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
5208                           WS_MAXIMIZEBOX | WS_POPUP,
5209                           rcMain.left, rcMain.top,
5210                           rcMain.right - rcMain.left, rcMain.bottom - rcMain.top,
5211                           0, 0, 0, NULL);
5212     assert(hwnd);
5213
5214     style = GetWindowLong(hwnd, GWL_STYLE);
5215     ok(!(style & WS_DISABLED), "window should not be disabled\n");
5216     ok(!(style & WS_VISIBLE), "window should not be visible\n");
5217     ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
5218     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5219     GetWindowRect(hwnd, &rc);
5220     ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
5221        rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
5222        rc.left, rc.top, rc.right, rc.bottom);
5223
5224     ret = ShowWindow(hwnd, SW_SHOW);
5225     ok(!ret, "not expected ret: %lu\n", ret);
5226     style = GetWindowLong(hwnd, GWL_STYLE);
5227     ok(!(style & WS_DISABLED), "window should not be disabled\n");
5228     ok(style & WS_VISIBLE, "window should be visible\n");
5229     ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
5230     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5231     GetWindowRect(hwnd, &rc);
5232     ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
5233        rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
5234        rc.left, rc.top, rc.right, rc.bottom);
5235
5236     ret = ShowWindow(hwnd, SW_MINIMIZE);
5237     ok(ret, "not expected ret: %lu\n", ret);
5238     style = GetWindowLong(hwnd, GWL_STYLE);
5239     ok(!(style & WS_DISABLED), "window should not be disabled\n");
5240     ok(style & WS_VISIBLE, "window should be visible\n");
5241     ok(style & WS_MINIMIZE, "window should be minimized\n");
5242     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5243     GetWindowRect(hwnd, &rcMinimized);
5244     ok(!EqualRect(&rcMain, &rcMinimized), "rects shouldn't match\n");
5245     /* shouldn't be able to resize minimized windows */
5246     ret = SetWindowPos(hwnd, 0, 0, 0,
5247                        (rcMinimized.right - rcMinimized.left) * 2,
5248                        (rcMinimized.bottom - rcMinimized.top) * 2,
5249                        SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER);
5250     ok(ret, "not expected ret: %lu\n", ret);
5251     GetWindowRect(hwnd, &rc);
5252     ok(EqualRect(&rc, &rcMinimized), "rects should match\n");
5253
5254     ShowWindow(hwnd, SW_RESTORE);
5255     ok(ret, "not expected ret: %lu\n", ret);
5256     style = GetWindowLong(hwnd, GWL_STYLE);
5257     ok(!(style & WS_DISABLED), "window should not be disabled\n");
5258     ok(style & WS_VISIBLE, "window should be visible\n");
5259     ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
5260     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5261     GetWindowRect(hwnd, &rc);
5262     ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
5263        rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
5264        rc.left, rc.top, rc.right, rc.bottom);
5265
5266     ret = EnableWindow(hwnd, FALSE);
5267     ok(!ret, "not expected ret: %lu\n", ret);
5268     style = GetWindowLong(hwnd, GWL_STYLE);
5269     ok(style & WS_DISABLED, "window should be disabled\n");
5270
5271     ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_MINIMIZE, 0);
5272     ok(!ret, "not expected ret: %lu\n", ret);
5273     style = GetWindowLong(hwnd, GWL_STYLE);
5274     ok(style & WS_DISABLED, "window should be disabled\n");
5275     ok(style & WS_VISIBLE, "window should be visible\n");
5276     ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
5277     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5278     GetWindowRect(hwnd, &rc);
5279     ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
5280        rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
5281        rc.left, rc.top, rc.right, rc.bottom);
5282
5283     ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_MAXIMIZE, 0);
5284     ok(!ret, "not expected ret: %lu\n", ret);
5285     style = GetWindowLong(hwnd, GWL_STYLE);
5286     ok(style & WS_DISABLED, "window should be disabled\n");
5287     ok(style & WS_VISIBLE, "window should be visible\n");
5288     ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
5289     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5290     GetWindowRect(hwnd, &rc);
5291     ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
5292        rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
5293        rc.left, rc.top, rc.right, rc.bottom);
5294
5295     ret = ShowWindow(hwnd, SW_MINIMIZE);
5296     ok(ret, "not expected ret: %lu\n", ret);
5297     style = GetWindowLong(hwnd, GWL_STYLE);
5298     ok(style & WS_DISABLED, "window should be disabled\n");
5299     ok(style & WS_VISIBLE, "window should be visible\n");
5300     ok(style & WS_MINIMIZE, "window should be minimized\n");
5301     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5302     GetWindowRect(hwnd, &rc);
5303     ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
5304
5305     ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_RESTORE, 0);
5306     ok(!ret, "not expected ret: %lu\n", ret);
5307     style = GetWindowLong(hwnd, GWL_STYLE);
5308     ok(style & WS_DISABLED, "window should be disabled\n");
5309     ok(style & WS_VISIBLE, "window should be visible\n");
5310     ok(style & WS_MINIMIZE, "window should be minimized\n");
5311     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5312     GetWindowRect(hwnd, &rc);
5313     ok(!EqualRect(&rcMain, &rc), "rects shouldn't match\n");
5314
5315     ret = ShowWindow(hwnd, SW_RESTORE);
5316     ok(ret, "not expected ret: %lu\n", ret);
5317     style = GetWindowLong(hwnd, GWL_STYLE);
5318     ok(style & WS_DISABLED, "window should be disabled\n");
5319     ok(style & WS_VISIBLE, "window should be visible\n");
5320     ok(!(style & WS_MINIMIZE), "window should not be minimized\n");
5321     ok(!(style & WS_MAXIMIZE), "window should not be maximized\n");
5322     GetWindowRect(hwnd, &rc);
5323     ok(EqualRect(&rcMain, &rc), "expected (%d,%d)-(%d,%d), got (%d,%d)-(%d,%d)\n",
5324        rcMain.left, rcMain.top, rcMain.right, rcMain.bottom,
5325        rc.left, rc.top, rc.right, rc.bottom);
5326
5327     ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0);
5328     ok(!ret, "not expected ret: %lu\n", ret);
5329     ok(IsWindow(hwnd), "window should exist\n");
5330
5331     ret = EnableWindow(hwnd, TRUE);
5332     ok(ret, "not expected ret: %lu\n", ret);
5333
5334     ret = DefWindowProc(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0);
5335     ok(!ret, "not expected ret: %lu\n", ret);
5336     ok(!IsWindow(hwnd), "window should not exist\n");
5337 }
5338
5339 static void test_gettext(void)
5340 {
5341     WNDCLASS cls;
5342     LPCSTR clsname = "gettexttest";
5343     HWND hwnd;
5344     LRESULT r;
5345
5346     memset( &cls, 0, sizeof cls );
5347     cls.lpfnWndProc = DefWindowProc;
5348     cls.lpszClassName = clsname;
5349     cls.hInstance = GetModuleHandle(NULL);
5350
5351     if (!RegisterClass( &cls )) return;
5352
5353     hwnd = CreateWindow( clsname, "test text", WS_OVERLAPPED, 0, 0, 10, 10, 0, NULL, NULL, NULL);
5354     ok( hwnd != NULL, "window was null\n");
5355
5356     r = SendMessage( hwnd, WM_GETTEXT, 0x10, 0x1000);
5357     ok( r == 0, "settext should return zero\n");
5358
5359     r = SendMessage( hwnd, WM_GETTEXT, 0x10000, 0);
5360     ok( r == 0, "settext should return zero (%ld)\n", r);
5361
5362     r = SendMessage( hwnd, WM_GETTEXT, 0xff000000, 0x1000);
5363     ok( r == 0, "settext should return zero (%ld)\n", r);
5364
5365     r = SendMessage( hwnd, WM_GETTEXT, 0x1000, 0xff000000);
5366     ok( r == 0, "settext should return zero (%ld)\n", r);
5367
5368     DestroyWindow(hwnd);
5369     UnregisterClass( clsname, NULL );
5370 }
5371
5372
5373 static void test_GetUpdateRect(void)
5374 {
5375     MSG msg;
5376     BOOL ret, parent_wm_paint, grandparent_wm_paint;
5377     RECT rc1, rc2;
5378     HWND hgrandparent, hparent, hchild;
5379     WNDCLASSA cls;
5380     static const char classNameA[] = "GetUpdateRectClass";
5381
5382     hgrandparent = CreateWindowA("static", "grandparent", WS_OVERLAPPEDWINDOW,
5383                                  0, 0, 100, 100, NULL, NULL, 0, NULL);
5384
5385     hparent = CreateWindowA("static", "parent", WS_CHILD|WS_VISIBLE,
5386                             0, 0, 100, 100, hgrandparent, NULL, 0, NULL);
5387
5388     hchild = CreateWindowA("static", "child", WS_CHILD|WS_VISIBLE,
5389                             10, 10, 30, 30, hparent, NULL, 0, NULL);
5390
5391     ShowWindow(hgrandparent, SW_SHOW);
5392     UpdateWindow(hgrandparent);
5393     flush_events( TRUE );
5394
5395     ShowWindow(hchild, SW_HIDE);
5396     SetRect(&rc2, 0, 0, 0, 0);
5397     ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
5398     ok(!ret, "GetUpdateRect returned not empty region\n");
5399     ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
5400        rc1.left, rc1.top, rc1.right, rc1.bottom,
5401        rc2.left, rc2.top, rc2.right, rc2.bottom);
5402
5403     SetRect(&rc2, 10, 10, 40, 40);
5404     ret = GetUpdateRect(hparent, &rc1, FALSE);
5405     ok(ret, "GetUpdateRect returned empty region\n");
5406     ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
5407             rc1.left, rc1.top, rc1.right, rc1.bottom,
5408             rc2.left, rc2.top, rc2.right, rc2.bottom);
5409
5410     parent_wm_paint = FALSE;
5411     grandparent_wm_paint = FALSE;
5412     while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
5413     {
5414         if (msg.message == WM_PAINT)
5415         {
5416             if (msg.hwnd == hgrandparent) grandparent_wm_paint = TRUE;
5417             if (msg.hwnd == hparent) parent_wm_paint = TRUE;
5418         }
5419         DispatchMessage(&msg);
5420     }
5421     ok(parent_wm_paint, "WM_PAINT should have been received in parent\n");
5422     ok(!grandparent_wm_paint, "WM_PAINT should NOT have been received in grandparent\n");
5423
5424     DestroyWindow(hgrandparent);
5425
5426     cls.style = 0;
5427     cls.lpfnWndProc = DefWindowProcA;
5428     cls.cbClsExtra = 0;
5429     cls.cbWndExtra = 0;
5430     cls.hInstance = GetModuleHandleA(0);
5431     cls.hIcon = 0;
5432     cls.hCursor = LoadCursorA(0, IDC_ARROW);
5433     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5434     cls.lpszMenuName = NULL;
5435     cls.lpszClassName = classNameA;
5436
5437     if(!RegisterClassA(&cls)) {
5438        trace("Register failed %d\n", GetLastError());
5439        return;
5440     }
5441
5442     hgrandparent = CreateWindowA(classNameA, "grandparent", WS_OVERLAPPEDWINDOW,
5443                                  0, 0, 100, 100, NULL, NULL, 0, NULL);
5444
5445     hparent = CreateWindowA(classNameA, "parent", WS_CHILD|WS_VISIBLE,
5446                             0, 0, 100, 100, hgrandparent, NULL, 0, NULL);
5447
5448     hchild = CreateWindowA(classNameA, "child", WS_CHILD|WS_VISIBLE,
5449                             10, 10, 30, 30, hparent, NULL, 0, NULL);
5450
5451     ShowWindow(hgrandparent, SW_SHOW);
5452     UpdateWindow(hgrandparent);
5453     flush_events( TRUE );
5454
5455     ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
5456     ok(!ret, "GetUpdateRect returned not empty region\n");
5457
5458     ShowWindow(hchild, SW_HIDE);
5459
5460     SetRect(&rc2, 0, 0, 0, 0);
5461     ret = GetUpdateRect(hgrandparent, &rc1, FALSE);
5462     ok(!ret, "GetUpdateRect returned not empty region\n");
5463     ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
5464        rc1.left, rc1.top, rc1.right, rc1.bottom,
5465        rc2.left, rc2.top, rc2.right, rc2.bottom);
5466
5467     SetRect(&rc2, 10, 10, 40, 40);
5468     ret = GetUpdateRect(hparent, &rc1, FALSE);
5469     ok(ret, "GetUpdateRect returned empty region\n");
5470     ok(EqualRect(&rc1, &rc2), "rects do not match (%d,%d,%d,%d) / (%d,%d,%d,%d)\n",
5471             rc1.left, rc1.top, rc1.right, rc1.bottom,
5472             rc2.left, rc2.top, rc2.right, rc2.bottom);
5473
5474     parent_wm_paint = FALSE;
5475     grandparent_wm_paint = FALSE;
5476     while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
5477     {
5478         if (msg.message == WM_PAINT)
5479         {
5480             if (msg.hwnd == hgrandparent) grandparent_wm_paint = TRUE;
5481             if (msg.hwnd == hparent) parent_wm_paint = TRUE;
5482         }
5483         DispatchMessage(&msg);
5484     }
5485     ok(parent_wm_paint, "WM_PAINT should have been received in parent\n");
5486     ok(!grandparent_wm_paint, "WM_PAINT should NOT have been received in grandparent\n");
5487
5488     DestroyWindow(hgrandparent);
5489 }
5490
5491
5492 static LRESULT CALLBACK TestExposedRegion_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
5493 {
5494     if(msg == WM_PAINT)
5495     {
5496         PAINTSTRUCT ps;
5497         RECT updateRect;
5498         DWORD waitResult;
5499         HWND win;
5500         const int waitTime = 2000;
5501
5502         BeginPaint(hwnd, &ps);
5503
5504         /* create and destroy window to create an exposed region on this window */
5505         win = CreateWindowA("static", "win", WS_VISIBLE,
5506                              10,10,50,50, NULL, NULL, 0, NULL);
5507         DestroyWindow(win);
5508
5509         waitResult = MsgWaitForMultipleObjects( 0, NULL, FALSE, waitTime, QS_PAINT );
5510
5511         ValidateRect(hwnd, NULL);
5512         EndPaint(hwnd, &ps);
5513
5514         if(waitResult != WAIT_TIMEOUT)
5515         {
5516             GetUpdateRect(hwnd, &updateRect, FALSE);
5517             ok(IsRectEmpty(&updateRect), "Exposed rect should be empty\n");
5518         }
5519
5520         return 1;
5521     }
5522     return DefWindowProc(hwnd, msg, wParam, lParam);
5523 }
5524
5525 static void test_Expose(void)
5526 {
5527     WNDCLASSA cls;
5528     HWND mw;
5529
5530     memset(&cls, 0, sizeof(WNDCLASSA));
5531     cls.lpfnWndProc = TestExposedRegion_WndProc;
5532     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5533     cls.lpszClassName = "TestExposeClass";
5534     RegisterClassA(&cls);
5535
5536     mw = CreateWindowA("TestExposeClass", "MainWindow", WS_VISIBLE|WS_OVERLAPPEDWINDOW,
5537                             0, 0, 200, 100, NULL, NULL, 0, NULL);
5538
5539     UpdateWindow(mw);
5540     DestroyWindow(mw);
5541 }
5542
5543 static LRESULT CALLBACK TestNCRedraw_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
5544 {
5545     static UINT ncredrawflags;
5546     PAINTSTRUCT ps;
5547
5548     switch(msg)
5549     {
5550     case WM_CREATE:
5551         ncredrawflags = *(UINT *) (((CREATESTRUCT *)lParam)->lpCreateParams);
5552         return 0;
5553     case WM_NCPAINT:
5554         RedrawWindow(hwnd, NULL, NULL, ncredrawflags);
5555         break;
5556     case WM_PAINT:
5557         BeginPaint(hwnd, &ps);
5558         EndPaint(hwnd, &ps);
5559         return 0;
5560     }
5561     return DefWindowProc(hwnd, msg, wParam, lParam);
5562 }
5563
5564 static void run_NCRedrawLoop(UINT flags)
5565 {
5566     HWND hwnd;
5567     MSG msg;
5568
5569     UINT loopcount = 0;
5570
5571     hwnd = CreateWindowA("TestNCRedrawClass", "MainWindow",
5572                          WS_OVERLAPPEDWINDOW, 0, 0, 200, 100,
5573                          NULL, NULL, 0, &flags);
5574     ShowWindow(hwnd, SW_SHOW);
5575     UpdateWindow(hwnd);
5576     flush_events( FALSE );
5577     while(PeekMessage(&msg, hwnd, 0, 0, PM_REMOVE) != 0)
5578     {
5579         if (msg.message == WM_PAINT) loopcount++;
5580         if (loopcount >= 100) break;
5581         TranslateMessage(&msg);
5582         DispatchMessage(&msg);
5583         MsgWaitForMultipleObjects(0, NULL, FALSE, 100, QS_ALLINPUT);
5584     }
5585     if (flags == (RDW_INVALIDATE | RDW_FRAME))
5586         todo_wine ok(loopcount < 100, "Detected infinite WM_PAINT loop (%x).\n", flags);
5587     else
5588         ok(loopcount < 100, "Detected infinite WM_PAINT loop (%x).\n", flags);
5589     DestroyWindow(hwnd);
5590 }
5591
5592 static void test_NCRedraw(void)
5593 {
5594     WNDCLASSA wndclass;
5595
5596     wndclass.lpszClassName = "TestNCRedrawClass";
5597     wndclass.style = CS_HREDRAW | CS_VREDRAW;
5598     wndclass.lpfnWndProc = TestNCRedraw_WndProc;
5599     wndclass.cbClsExtra = 0;
5600     wndclass.cbWndExtra = 0;
5601     wndclass.hInstance = 0;
5602     wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
5603     wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
5604     wndclass.hbrBackground = GetStockObject(WHITE_BRUSH);
5605     wndclass.lpszMenuName = NULL;
5606
5607     RegisterClassA(&wndclass);
5608
5609     run_NCRedrawLoop(RDW_INVALIDATE | RDW_FRAME);
5610     run_NCRedrawLoop(RDW_INVALIDATE);
5611 }
5612
5613 static void test_GetWindowModuleFileName(void)
5614 {
5615     HWND hwnd;
5616     HINSTANCE hinst;
5617     UINT ret1, ret2;
5618     char buf1[MAX_PATH], buf2[MAX_PATH];
5619
5620     if (!pGetWindowModuleFileNameA)
5621     {
5622         win_skip("GetWindowModuleFileNameA is not available\n");
5623         return;
5624     }
5625
5626     hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0,0,0,0, 0, 0, 0, NULL);
5627     assert(hwnd);
5628
5629     hinst = (HINSTANCE)GetWindowLongPtr(hwnd, GWLP_HINSTANCE);
5630     ok(hinst == 0 || broken(hinst == GetModuleHandle(0)), /* win9x */ "expected 0, got %p\n", hinst);
5631
5632     buf1[0] = 0;
5633     SetLastError(0xdeadbeef);
5634     ret1 = GetModuleFileName(hinst, buf1, sizeof(buf1));
5635     ok(ret1, "GetModuleFileName error %u\n", GetLastError());
5636
5637     buf2[0] = 0;
5638     SetLastError(0xdeadbeef);
5639     ret2 = pGetWindowModuleFileNameA(hwnd, buf2, sizeof(buf2));
5640     ok(ret2 || broken(!ret2), /* nt4 sp 3 */
5641        "GetWindowModuleFileNameA error %u\n", GetLastError());
5642
5643     if (ret2)
5644     {
5645         ok(ret1 == ret2 || broken(ret2 == ret1 + 1), /* win98 */ "%u != %u\n", ret1, ret2);
5646         ok(!strcmp(buf1, buf2), "%s != %s\n", buf1, buf2);
5647     }
5648     hinst = GetModuleHandle(0);
5649
5650     SetLastError(0xdeadbeef);
5651     ret2 = GetModuleFileName(hinst, buf2, ret1 - 2);
5652     ok(ret2 == ret1 - 2 || broken(ret2 == ret1 - 3), /* win98 */
5653        "expected %u, got %u\n", ret1 - 2, ret2);
5654     ok(GetLastError() == 0xdeadbeef /* XP */ ||
5655        GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
5656        "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
5657
5658     SetLastError(0xdeadbeef);
5659     ret2 = GetModuleFileName(hinst, buf2, 0);
5660     ok(!ret2, "GetModuleFileName should return 0\n");
5661     ok(GetLastError() == 0xdeadbeef /* XP */ ||
5662        GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
5663        "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
5664
5665     SetLastError(0xdeadbeef);
5666     ret2 = pGetWindowModuleFileNameA(hwnd, buf2, ret1 - 2);
5667     ok(ret2 == ret1 - 2 || broken(ret2 == ret1 - 3) /* win98 */ || broken(!ret2), /* nt4 sp3 */
5668        "expected %u, got %u\n", ret1 - 2, ret2);
5669     ok(GetLastError() == 0xdeadbeef /* XP */ ||
5670        GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
5671        "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
5672
5673     SetLastError(0xdeadbeef);
5674     ret2 = pGetWindowModuleFileNameA(hwnd, buf2, 0);
5675     ok(!ret2, "expected 0, got %u\n", ret2);
5676     ok(GetLastError() == 0xdeadbeef /* XP */ ||
5677        GetLastError() == ERROR_INSUFFICIENT_BUFFER, /* win2k3, vista */
5678        "expected 0xdeadbeef or ERROR_INSUFFICIENT_BUFFER, got %u\n", GetLastError());
5679
5680     DestroyWindow(hwnd);
5681
5682     buf2[0] = 0;
5683     hwnd = (HWND)0xdeadbeef;
5684     SetLastError(0xdeadbeef);
5685     ret1 = pGetWindowModuleFileNameA(hwnd, buf1, sizeof(buf1));
5686     ok(!ret1, "expected 0, got %u\n", ret1);
5687     ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE || broken(GetLastError() == 0xdeadbeef), /* win9x */
5688        "expected ERROR_INVALID_WINDOW_HANDLE, got %u\n", GetLastError());
5689
5690     hwnd = FindWindow("Shell_TrayWnd", NULL);
5691     ok(IsWindow(hwnd) || broken(!hwnd), "got invalid tray window %p\n", hwnd);
5692     SetLastError(0xdeadbeef);
5693     ret1 = pGetWindowModuleFileNameA(hwnd, buf1, sizeof(buf1));
5694     ok(!ret1 || broken(ret1), /* win98 */ "expected 0, got %u\n", ret1);
5695
5696     if (!ret1)  /* inter-process GetWindowModuleFileName works on win9x, so don't test the desktop there */
5697     {
5698         ret1 = GetModuleFileName(0, buf1, sizeof(buf1));
5699         hwnd = GetDesktopWindow();
5700         ok(IsWindow(hwnd), "got invalid desktop window %p\n", hwnd);
5701         SetLastError(0xdeadbeef);
5702         ret2 = pGetWindowModuleFileNameA(hwnd, buf2, sizeof(buf2));
5703         ok(!ret2 ||
5704            ret1 == ret2 || /* vista */
5705            broken(ret2),  /* some win98 return user.exe as file name */
5706            "expected 0 or %u, got %u %s\n", ret1, ret2, buf2);
5707     }
5708 }
5709
5710 static void test_hwnd_message(void)
5711 {
5712     static const WCHAR mainwindowclassW[] = {'M','a','i','n','W','i','n','d','o','w','C','l','a','s','s',0};
5713     static const WCHAR message_windowW[] = {'m','e','s','s','a','g','e',' ','w','i','n','d','o','w',0};
5714
5715     HWND parent = 0, hwnd, found;
5716     RECT rect;
5717
5718     /* HWND_MESSAGE is not supported below w2k, but win9x return != 0
5719        on CreateWindowExA and crash later in the test.
5720        Use UNICODE here to fail on win9x */
5721     hwnd = CreateWindowExW(0, mainwindowclassW, message_windowW, WS_CAPTION | WS_VISIBLE,
5722                            100, 100, 200, 200, HWND_MESSAGE, 0, 0, NULL);
5723     if (!hwnd)
5724     {
5725         win_skip("CreateWindowExW with parent HWND_MESSAGE failed\n");
5726         return;
5727     }
5728
5729     ok( !GetParent(hwnd), "GetParent should return 0 for message only windows\n" );
5730     if (pGetAncestor)
5731     {
5732         char buffer[100];
5733         HWND root, desktop = GetDesktopWindow();
5734
5735         parent = pGetAncestor(hwnd, GA_PARENT);
5736         ok(parent != 0, "GetAncestor(GA_PARENT) should not return 0 for message windows\n");
5737         ok(parent != desktop, "GetAncestor(GA_PARENT) should not return desktop for message windows\n");
5738         root = pGetAncestor(hwnd, GA_ROOT);
5739         ok(root == hwnd, "GetAncestor(GA_ROOT) should return hwnd for message windows\n");
5740         ok( !pGetAncestor(parent, GA_PARENT) || broken(pGetAncestor(parent, GA_PARENT) != 0), /* win2k */
5741             "parent shouldn't have parent %p\n", pGetAncestor(parent, GA_PARENT) );
5742         trace("parent %p root %p desktop %p\n", parent, root, desktop);
5743         if (!GetClassNameA( parent, buffer, sizeof(buffer) )) buffer[0] = 0;
5744         ok( !lstrcmpi( buffer, "Message" ), "wrong parent class '%s'\n", buffer );
5745         GetWindowRect( parent, &rect );
5746         ok( rect.left == 0 && rect.right == 100 && rect.top == 0 && rect.bottom == 100,
5747             "wrong parent rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
5748     }
5749     GetWindowRect( hwnd, &rect );
5750     ok( rect.left == 100 && rect.right == 300 && rect.top == 100 && rect.bottom == 300,
5751         "wrong window rect %d,%d-%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
5752
5753     /* test FindWindow behavior */
5754
5755     found = FindWindowExA( 0, 0, 0, "message window" );
5756     ok( found == hwnd, "didn't find message window %p/%p\n", found, hwnd );
5757     SetLastError(0xdeadbeef);
5758     found = FindWindowExA( GetDesktopWindow(), 0, 0, "message window" );
5759     ok( found == 0, "found message window %p/%p\n", found, hwnd );
5760     ok( GetLastError() == 0xdeadbeef, "expected deadbeef, got %d\n", GetLastError() );
5761     if (parent)
5762     {
5763         found = FindWindowExA( parent, 0, 0, "message window" );
5764         ok( found == hwnd, "didn't find message window %p/%p\n", found, hwnd );
5765     }
5766
5767     /* test IsChild behavior */
5768
5769     if (parent) ok( !IsChild( parent, hwnd ), "HWND_MESSAGE is child of top window\n" );
5770
5771     /* test IsWindowVisible behavior */
5772
5773     ok( !IsWindowVisible( hwnd ), "HWND_MESSAGE window is visible\n" );
5774     if (parent) ok( !IsWindowVisible( parent ), "HWND_MESSAGE parent is visible\n" );
5775
5776     DestroyWindow(hwnd);
5777 }
5778
5779 static void test_layered_window(void)
5780 {
5781     HWND hwnd;
5782     COLORREF key = 0;
5783     BYTE alpha = 0;
5784     DWORD flags = 0;
5785     POINT pt = { 0, 0 };
5786     SIZE sz = { 200, 200 };
5787     HDC hdc;
5788     HBITMAP hbm;
5789     BOOL ret;
5790
5791     if (!pGetLayeredWindowAttributes || !pSetLayeredWindowAttributes || !pUpdateLayeredWindow)
5792     {
5793         win_skip( "layered windows not supported\n" );
5794         return;
5795     }
5796
5797     hdc = CreateCompatibleDC( 0 );
5798     hbm = CreateCompatibleBitmap( hdc, 200, 200 );
5799     SelectObject( hdc, hbm );
5800
5801     hwnd = CreateWindowExA(0, "MainWindowClass", "message window", WS_CAPTION,
5802                            100, 100, 200, 200, 0, 0, 0, NULL);
5803     assert( hwnd );
5804     SetLastError( 0xdeadbeef );
5805     ret = pUpdateLayeredWindow( hwnd, 0, NULL, &sz, hdc, &pt, 0, NULL, ULW_OPAQUE );
5806     ok( !ret, "UpdateLayeredWindow should fail on non-layered window\n" );
5807     ok( GetLastError() == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", GetLastError() );
5808     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5809     ok( !ret, "GetLayeredWindowAttributes should fail on non-layered window\n" );
5810     ret = pSetLayeredWindowAttributes( hwnd, 0, 0, LWA_ALPHA );
5811     ok( !ret, "SetLayeredWindowAttributes should fail on non-layered window\n" );
5812     SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5813     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5814     ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5815     ret = pUpdateLayeredWindow( hwnd, 0, NULL, &sz, hdc, &pt, 0, NULL, ULW_OPAQUE );
5816     ok( ret, "UpdateLayeredWindow should succeed on layered window\n" );
5817     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5818     ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5819     ret = pSetLayeredWindowAttributes( hwnd, 0x123456, 44, LWA_ALPHA );
5820     ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5821     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5822     ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5823     ok( key == 0x123456 || key == 0, "wrong color key %x\n", key );
5824     ok( alpha == 44, "wrong alpha %u\n", alpha );
5825     ok( flags == LWA_ALPHA, "wrong flags %x\n", flags );
5826     SetLastError( 0xdeadbeef );
5827     ret = pUpdateLayeredWindow( hwnd, 0, NULL, &sz, hdc, &pt, 0, NULL, ULW_OPAQUE );
5828     ok( !ret, "UpdateLayeredWindow should fail on layered but initialized window\n" );
5829     ok( GetLastError() == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", GetLastError() );
5830
5831     /* clearing WS_EX_LAYERED resets attributes */
5832     SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED );
5833     SetLastError( 0xdeadbeef );
5834     ret = pUpdateLayeredWindow( hwnd, 0, NULL, &sz, hdc, &pt, 0, NULL, ULW_OPAQUE );
5835     ok( !ret, "UpdateLayeredWindow should fail on non-layered window\n" );
5836     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5837     ok( !ret, "GetLayeredWindowAttributes should fail on no longer layered window\n" );
5838     SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5839     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5840     ok( !ret, "GetLayeredWindowAttributes should fail on layered but not initialized window\n" );
5841     ret = pUpdateLayeredWindow( hwnd, 0, NULL, &sz, hdc, &pt, 0, NULL, ULW_OPAQUE );
5842     ok( ret, "UpdateLayeredWindow should succeed on layered window\n" );
5843     ret = pSetLayeredWindowAttributes( hwnd, 0x654321, 22, LWA_COLORKEY | LWA_ALPHA );
5844     ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5845     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5846     ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5847     ok( key == 0x654321, "wrong color key %x\n", key );
5848     ok( alpha == 22, "wrong alpha %u\n", alpha );
5849     ok( flags == (LWA_COLORKEY | LWA_ALPHA), "wrong flags %x\n", flags );
5850     SetLastError( 0xdeadbeef );
5851     ret = pUpdateLayeredWindow( hwnd, 0, NULL, &sz, hdc, &pt, 0, NULL, ULW_OPAQUE );
5852     ok( !ret, "UpdateLayeredWindow should fail on layered but initialized window\n" );
5853     ok( GetLastError() == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %u\n", GetLastError() );
5854
5855     ret = pSetLayeredWindowAttributes( hwnd, 0x888888, 33, LWA_COLORKEY );
5856     ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5857     alpha = 0;
5858     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5859     ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5860     ok( key == 0x888888, "wrong color key %x\n", key );
5861     /* alpha not changed on vista if LWA_ALPHA is not set */
5862     ok( alpha == 22 || alpha == 33, "wrong alpha %u\n", alpha );
5863     ok( flags == LWA_COLORKEY, "wrong flags %x\n", flags );
5864
5865     /* color key may or may not be changed without LWA_COLORKEY */
5866     ret = pSetLayeredWindowAttributes( hwnd, 0x999999, 44, 0 );
5867     ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5868     alpha = 0;
5869     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5870     ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5871     ok( key == 0x888888 || key == 0x999999, "wrong color key %x\n", key );
5872     ok( alpha == 22 || alpha == 44, "wrong alpha %u\n", alpha );
5873     ok( flags == 0, "wrong flags %x\n", flags );
5874
5875     /* default alpha and color key is 0 */
5876     SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) & ~WS_EX_LAYERED );
5877     SetWindowLong( hwnd, GWL_EXSTYLE, GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED );
5878     ret = pSetLayeredWindowAttributes( hwnd, 0x222222, 55, 0 );
5879     ok( ret, "SetLayeredWindowAttributes should succeed on layered window\n" );
5880     ret = pGetLayeredWindowAttributes( hwnd, &key, &alpha, &flags );
5881     ok( ret, "GetLayeredWindowAttributes should succeed on layered window\n" );
5882     ok( key == 0 || key == 0x222222, "wrong color key %x\n", key );
5883     ok( alpha == 0 || alpha == 55, "wrong alpha %u\n", alpha );
5884     ok( flags == 0, "wrong flags %x\n", flags );
5885
5886     DestroyWindow( hwnd );
5887     DeleteDC( hdc );
5888     DeleteObject( hbm );
5889 }
5890
5891 static MONITORINFO mi;
5892
5893 static LRESULT CALLBACK fullscreen_wnd_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
5894 {
5895     switch (msg)
5896     {
5897         case WM_NCCREATE:
5898         {
5899             CREATESTRUCTA *cs = (CREATESTRUCTA *)lp;
5900             trace("WM_NCCREATE: rect %d,%d-%d,%d\n", cs->x, cs->y, cs->cx, cs->cy);
5901             ok(cs->x == mi.rcMonitor.left && cs->y == mi.rcMonitor.top &&
5902                cs->cx == mi.rcMonitor.right && cs->cy == mi.rcMonitor.bottom,
5903                "expected %d,%d-%d,%d, got %d,%d-%d,%d\n",
5904                mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5905                cs->x, cs->y, cs->cx, cs->cy);
5906             break;
5907         }
5908         case WM_GETMINMAXINFO:
5909         {
5910             MINMAXINFO *minmax = (MINMAXINFO *)lp;
5911             dump_minmax_info(minmax);
5912             ok(minmax->ptMaxPosition.x <= mi.rcMonitor.left, "%d <= %d\n", minmax->ptMaxPosition.x, mi.rcMonitor.left);
5913             ok(minmax->ptMaxPosition.y <= mi.rcMonitor.top, "%d <= %d\n", minmax->ptMaxPosition.y, mi.rcMonitor.top);
5914             ok(minmax->ptMaxSize.x >= mi.rcMonitor.right, "%d >= %d\n", minmax->ptMaxSize.x, mi.rcMonitor.right);
5915             ok(minmax->ptMaxSize.y >= mi.rcMonitor.bottom, "%d >= %d\n", minmax->ptMaxSize.y, mi.rcMonitor.bottom);
5916             break;
5917         }
5918     }
5919     return DefWindowProc(hwnd, msg, wp, lp);
5920 }
5921
5922 static void test_fullscreen(void)
5923 {
5924     static const DWORD t_style[] = {
5925         WS_OVERLAPPED, WS_POPUP, WS_CHILD, WS_THICKFRAME, WS_DLGFRAME
5926     };
5927     static const DWORD t_ex_style[] = {
5928         0, WS_EX_APPWINDOW, WS_EX_TOOLWINDOW
5929     };
5930     WNDCLASS cls;
5931     HWND hwnd;
5932     int i, j;
5933     POINT pt;
5934     RECT rc;
5935     HMONITOR hmon;
5936     LRESULT ret;
5937
5938     if (!pGetMonitorInfoA || !pMonitorFromPoint)
5939     {
5940         win_skip("GetMonitorInfoA or MonitorFromPoint are not available on this platform\n");
5941         return;
5942     }
5943
5944     pt.x = pt.y = 0;
5945     SetLastError(0xdeadbeef);
5946     hmon = pMonitorFromPoint(pt, MONITOR_DEFAULTTOPRIMARY);
5947     ok(hmon != 0, "MonitorFromPoint error %u\n", GetLastError());
5948
5949     mi.cbSize = sizeof(mi);
5950     SetLastError(0xdeadbeef);
5951     ret = pGetMonitorInfoA(hmon, &mi);
5952     ok(ret, "GetMonitorInfo error %u\n", GetLastError());
5953     trace("monitor (%d,%d-%d,%d), work (%d,%d-%d,%d)\n",
5954         mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5955         mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
5956
5957     cls.style = 0;
5958     cls.lpfnWndProc = fullscreen_wnd_proc;
5959     cls.cbClsExtra = 0;
5960     cls.cbWndExtra = 0;
5961     cls.hInstance = GetModuleHandle(0);
5962     cls.hIcon = 0;
5963     cls.hCursor = LoadCursorA(0, IDC_ARROW);
5964     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
5965     cls.lpszMenuName = NULL;
5966     cls.lpszClassName = "fullscreen_class";
5967     RegisterClass(&cls);
5968
5969     for (i = 0; i < sizeof(t_style)/sizeof(t_style[0]); i++)
5970     {
5971         DWORD style, ex_style;
5972
5973         /* avoid a WM interaction */
5974         assert(!(t_style[i] & WS_VISIBLE));
5975
5976         for (j = 0; j < sizeof(t_ex_style)/sizeof(t_ex_style[0]); j++)
5977         {
5978             int fixup;
5979
5980             style = t_style[i];
5981             ex_style = t_ex_style[j];
5982
5983             hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5984                                    mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5985                                    GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5986             ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5987             GetWindowRect(hwnd, &rc);
5988             trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5989             ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
5990                rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
5991                "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
5992             DestroyWindow(hwnd);
5993
5994             style = t_style[i] | WS_MAXIMIZE;
5995             hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
5996                                    mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
5997                                    GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
5998             ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
5999             GetWindowRect(hwnd, &rc);
6000             trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6001             ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
6002                rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
6003                "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6004             DestroyWindow(hwnd);
6005
6006             style = t_style[i] | WS_MAXIMIZE | WS_CAPTION;
6007             hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
6008                                    mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
6009                                    GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
6010             ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
6011             GetWindowRect(hwnd, &rc);
6012             trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6013             ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
6014                rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
6015                "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6016             DestroyWindow(hwnd);
6017
6018             style = t_style[i] | WS_CAPTION | WS_MAXIMIZEBOX;
6019             hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
6020                                    mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
6021                                    GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
6022             ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
6023             GetWindowRect(hwnd, &rc);
6024             trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6025             ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
6026                rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
6027                "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6028             DestroyWindow(hwnd);
6029
6030             style = t_style[i] | WS_MAXIMIZE | WS_CAPTION | WS_MAXIMIZEBOX;
6031             hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
6032                                    mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
6033                                    GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
6034             ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
6035             GetWindowRect(hwnd, &rc);
6036             trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6037             /* Windows makes a maximized window slightly larger (to hide the borders?) */
6038             fixup = min(abs(rc.left), abs(rc.top));
6039             InflateRect(&rc, -fixup, -fixup);
6040             ok(rc.left >= mi.rcWork.left && rc.top <= mi.rcWork.top &&
6041                rc.right <= mi.rcWork.right && rc.bottom <= mi.rcWork.bottom,
6042                "%#x/%#x: window rect %d,%d-%d,%d must be in %d,%d-%d,%d\n",
6043                ex_style, style, rc.left, rc.top, rc.right, rc.bottom,
6044                mi.rcWork.left, mi.rcWork.top, mi.rcWork.right, mi.rcWork.bottom);
6045             DestroyWindow(hwnd);
6046
6047             style = t_style[i] | WS_MAXIMIZE | WS_MAXIMIZEBOX;
6048             hwnd = CreateWindowExA(ex_style, "fullscreen_class", NULL, style,
6049                                    mi.rcMonitor.left, mi.rcMonitor.top, mi.rcMonitor.right, mi.rcMonitor.bottom,
6050                                    GetDesktopWindow(), 0, GetModuleHandle(0), NULL);
6051             ok(hwnd != 0, "%d: CreateWindowExA(%#x/%#x) failed\n", i, ex_style, style);
6052             GetWindowRect(hwnd, &rc);
6053             trace("%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6054             /* Windows makes a maximized window slightly larger (to hide the borders?) */
6055             fixup = min(abs(rc.left), abs(rc.top));
6056             InflateRect(&rc, -fixup, -fixup);
6057             if (style & (WS_CHILD | WS_POPUP))
6058                 ok(rc.left <= mi.rcMonitor.left && rc.top <= mi.rcMonitor.top &&
6059                    rc.right >= mi.rcMonitor.right && rc.bottom >= mi.rcMonitor.bottom,
6060                    "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6061             else
6062                 ok(rc.left >= mi.rcWork.left && rc.top <= mi.rcWork.top &&
6063                    rc.right <= mi.rcWork.right && rc.bottom <= mi.rcWork.bottom,
6064                    "%#x/%#x: window rect %d,%d-%d,%d\n", ex_style, style, rc.left, rc.top, rc.right, rc.bottom);
6065             DestroyWindow(hwnd);
6066         }
6067     }
6068
6069     UnregisterClass("fullscreen_class", GetModuleHandle(0));
6070 }
6071
6072 static BOOL test_thick_child_got_minmax;
6073 static const char * test_thick_child_name;
6074 static LONG test_thick_child_style;
6075 static LONG test_thick_child_exStyle;
6076
6077 static LRESULT WINAPI test_thick_child_size_winproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
6078 {
6079     MINMAXINFO* minmax;
6080     int expectedMinTrackX;
6081     int expectedMinTrackY;
6082     int actualMinTrackX;
6083     int actualMinTrackY;
6084     int expectedMaxTrackX;
6085     int expectedMaxTrackY;
6086     int actualMaxTrackX;
6087     int actualMaxTrackY;
6088     int expectedMaxSizeX;
6089     int expectedMaxSizeY;
6090     int actualMaxSizeX;
6091     int actualMaxSizeY;
6092     int expectedPosX;
6093     int expectedPosY;
6094     int actualPosX;
6095     int actualPosY;
6096     LONG adjustedStyle;
6097     RECT rect;
6098     switch (msg)
6099     {
6100         case WM_GETMINMAXINFO:
6101         {
6102             minmax = (MINMAXINFO *)lparam;
6103             trace("hwnd %p, WM_GETMINMAXINFO, %08lx, %08lx\n", hwnd, wparam, lparam);
6104             dump_minmax_info( minmax );
6105
6106             test_thick_child_got_minmax = TRUE;
6107
6108
6109             adjustedStyle = test_thick_child_style;
6110             if ((adjustedStyle & WS_CAPTION) == WS_CAPTION)
6111                 adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
6112             GetClientRect(GetParent(hwnd), &rect);
6113             AdjustWindowRectEx(&rect, adjustedStyle, FALSE, test_thick_child_exStyle);
6114
6115             if (test_thick_child_style & (WS_DLGFRAME | WS_BORDER))
6116             {
6117                 expectedMinTrackX = GetSystemMetrics(SM_CXMINTRACK);
6118                 expectedMinTrackY = GetSystemMetrics(SM_CYMINTRACK);
6119             }
6120             else
6121             {
6122                 expectedMinTrackX = -2 * rect.left;
6123                 expectedMinTrackY = -2 * rect.top;
6124             }
6125             actualMinTrackX =  minmax->ptMinTrackSize.x;
6126             actualMinTrackY =  minmax->ptMinTrackSize.y;
6127
6128             ok(actualMinTrackX == expectedMinTrackX && actualMinTrackY == expectedMinTrackY,
6129                 "expected minTrack %dx%d, actual minTrack %dx%d for %s\n",
6130                 expectedMinTrackX, expectedMinTrackY, actualMinTrackX, actualMinTrackY,
6131                 test_thick_child_name);
6132
6133             actualMaxTrackX = minmax->ptMaxTrackSize.x;
6134             actualMaxTrackY = minmax->ptMaxTrackSize.y;
6135             expectedMaxTrackX = GetSystemMetrics(SM_CXMAXTRACK);
6136             expectedMaxTrackY = GetSystemMetrics(SM_CYMAXTRACK);
6137             ok(actualMaxTrackX == expectedMaxTrackX &&  actualMaxTrackY == expectedMaxTrackY,
6138                 "expected maxTrack %dx%d, actual maxTrack %dx%d for %s\n",
6139                  expectedMaxTrackX, expectedMaxTrackY, actualMaxTrackX, actualMaxTrackY,
6140                 test_thick_child_name);
6141
6142             expectedMaxSizeX = rect.right - rect.left;
6143             expectedMaxSizeY = rect.bottom - rect.top;
6144             actualMaxSizeX = minmax->ptMaxSize.x;
6145             actualMaxSizeY = minmax->ptMaxSize.y;
6146
6147             ok(actualMaxSizeX == expectedMaxSizeX &&  actualMaxSizeY == expectedMaxSizeY,
6148                 "expected maxSize %dx%d, actual maxSize %dx%d for %s\n",
6149                 expectedMaxSizeX, expectedMaxSizeY, actualMaxSizeX, actualMaxSizeY,
6150                 test_thick_child_name);
6151
6152
6153             expectedPosX = rect.left;
6154             expectedPosY = rect.top;
6155             actualPosX = minmax->ptMaxPosition.x;
6156             actualPosY = minmax->ptMaxPosition.y;
6157             ok(actualPosX == expectedPosX && actualPosY == expectedPosY,
6158                 "expected maxPosition (%d/%d), actual maxPosition (%d/%d) for %s\n",
6159                 expectedPosX, expectedPosY, actualPosX, actualPosY, test_thick_child_name);
6160
6161             break;
6162         }
6163     }
6164
6165     return DefWindowProcA(hwnd, msg, wparam, lparam);
6166 }
6167
6168 #define NUMBER_OF_THICK_CHILD_TESTS 16
6169 static void test_thick_child_size(HWND parentWindow)
6170 {
6171     BOOL success;
6172     RECT childRect;
6173     RECT adjustedParentRect;
6174     HWND childWindow;
6175     LONG childWidth;
6176     LONG childHeight;
6177     LONG expectedWidth;
6178     LONG expectedHeight;
6179     WNDCLASSA cls;
6180     LPCTSTR className = "THICK_CHILD_CLASS";
6181     int i;
6182     LONG adjustedStyle;
6183     static const LONG styles[NUMBER_OF_THICK_CHILD_TESTS] = {
6184         WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
6185         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
6186         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
6187         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
6188         WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
6189         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
6190         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
6191         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
6192         WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
6193         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
6194         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
6195         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
6196         WS_CHILD | WS_VISIBLE | WS_THICKFRAME,
6197         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME,
6198         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER,
6199         WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER,
6200     };
6201
6202     static const LONG exStyles[NUMBER_OF_THICK_CHILD_TESTS] = {
6203         0,
6204         0,
6205         0,
6206         0,
6207         WS_EX_DLGMODALFRAME,
6208         WS_EX_DLGMODALFRAME,
6209         WS_EX_DLGMODALFRAME,
6210         WS_EX_DLGMODALFRAME,
6211         WS_EX_STATICEDGE,
6212         WS_EX_STATICEDGE,
6213         WS_EX_STATICEDGE,
6214         WS_EX_STATICEDGE,
6215         WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
6216         WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
6217         WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
6218         WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME,
6219     };
6220     static const char *styleName[NUMBER_OF_THICK_CHILD_TESTS] = {
6221         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME",
6222         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME",
6223         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER",
6224         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER",
6225         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME, exstyle= WS_EX_DLGMODALFRAME",
6226         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_DLGMODALFRAME",
6227         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_DLGMODALFRAME",
6228         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_DLGMODALFRAME",
6229         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME exstyle= WS_EX_STATICEDGE",
6230         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_STATICEDGE",
6231         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE",
6232         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE",
6233         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME, exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
6234         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
6235         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_DLGFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
6236         "style=WS_CHILD | WS_VISIBLE | WS_THICKFRAME | WS_BORDER exstyle= WS_EX_STATICEDGE | WS_EX_DLGMODALFRAME",
6237     };
6238
6239     cls.style = 0;
6240     cls.lpfnWndProc = test_thick_child_size_winproc;
6241     cls.cbClsExtra = 0;
6242     cls.cbWndExtra = 0;
6243     cls.hInstance = GetModuleHandleA(0);
6244     cls.hIcon = 0;
6245     cls.hCursor = LoadCursorA(0, IDC_ARROW);
6246     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
6247     cls.lpszMenuName = NULL;
6248     cls.lpszClassName = className;
6249     SetLastError(0xdeadbeef);
6250     success = RegisterClassA(&cls);
6251     ok(success,"RegisterClassA failed, error: %u\n", GetLastError());
6252
6253     for(i = 0; i < NUMBER_OF_THICK_CHILD_TESTS; i++)
6254     {
6255         test_thick_child_name = styleName[i];
6256         test_thick_child_style = styles[i];
6257         test_thick_child_exStyle = exStyles[i];
6258         test_thick_child_got_minmax = FALSE;
6259
6260         SetLastError(0xdeadbeef);
6261         childWindow = CreateWindowEx( exStyles[i], className, "", styles[i],  0, 0, 0, 0, parentWindow, 0,  GetModuleHandleA(0),  NULL );
6262         ok(childWindow != NULL, "Failed to create child window, error: %u\n", GetLastError());
6263
6264         ok(test_thick_child_got_minmax, "Got no WM_GETMINMAXINFO\n");
6265
6266         SetLastError(0xdeadbeef);
6267         success = GetWindowRect(childWindow, &childRect);
6268         ok(success,"GetWindowRect call failed, error: %u\n", GetLastError());
6269         childWidth = childRect.right - childRect.left;
6270         childHeight = childRect.bottom - childRect.top;
6271
6272         adjustedStyle = styles[i];
6273         if ((adjustedStyle & WS_CAPTION) == WS_CAPTION)
6274             adjustedStyle &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
6275         GetClientRect(GetParent(childWindow), &adjustedParentRect);
6276         AdjustWindowRectEx(&adjustedParentRect, adjustedStyle, FALSE, test_thick_child_exStyle);
6277
6278
6279         if (test_thick_child_style & (WS_DLGFRAME | WS_BORDER))
6280         {
6281             expectedWidth = GetSystemMetrics(SM_CXMINTRACK);
6282             expectedHeight = GetSystemMetrics(SM_CYMINTRACK);
6283         }
6284         else
6285         {
6286             expectedWidth = -2 * adjustedParentRect.left;
6287             expectedHeight = -2 * adjustedParentRect.top;
6288         }
6289
6290         ok((childWidth == expectedWidth) && (childHeight == expectedHeight),
6291             "size of window (%s) is wrong: expected size %dx%d != actual size %dx%d\n",
6292             test_thick_child_name, expectedWidth, expectedHeight, childWidth, childHeight);
6293
6294         SetLastError(0xdeadbeef);
6295         success = DestroyWindow(childWindow);
6296         ok(success,"DestroyWindow call failed, error: %u\n", GetLastError());
6297     }
6298     ok(UnregisterClass(className, GetModuleHandleA(0)),"UnregisterClass call failed\n");
6299 }
6300
6301 static void test_handles( HWND full_hwnd )
6302 {
6303     HWND hwnd = full_hwnd;
6304     BOOL ret;
6305     RECT rect;
6306
6307     SetLastError( 0xdeadbeef );
6308     ret = GetWindowRect( hwnd, &rect );
6309     ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
6310
6311 #ifdef _WIN64
6312     if ((ULONG_PTR)full_hwnd >> 32)
6313         hwnd = (HWND)((ULONG_PTR)full_hwnd & ~0u);
6314     else
6315         hwnd = (HWND)((ULONG_PTR)full_hwnd | ((ULONG_PTR)~0u << 32));
6316     SetLastError( 0xdeadbeef );
6317     ret = GetWindowRect( hwnd, &rect );
6318     ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
6319
6320     hwnd = (HWND)(((ULONG_PTR)full_hwnd & ~0u) | ((ULONG_PTR)0x1234 << 32));
6321     SetLastError( 0xdeadbeef );
6322     ret = GetWindowRect( hwnd, &rect );
6323     ok( ret, "GetWindowRect failed for %p err %u\n", hwnd, GetLastError() );
6324
6325     hwnd = (HWND)(((ULONG_PTR)full_hwnd & 0xffff) | ((ULONG_PTR)0x9876 << 16));
6326     SetLastError( 0xdeadbeef );
6327     ret = GetWindowRect( hwnd, &rect );
6328     ok( !ret, "GetWindowRect succeeded for %p\n", hwnd );
6329     ok( GetLastError() == ERROR_INVALID_WINDOW_HANDLE, "wrong error %u\n", GetLastError() );
6330
6331     hwnd = (HWND)(((ULONG_PTR)full_hwnd & 0xffff) | ((ULONG_PTR)0x12345678 << 16));
6332     SetLastError( 0xdeadbeef );
6333     ret = GetWindowRect( hwnd, &rect );
6334     ok( !ret, "GetWindowRect succeeded for %p\n", hwnd );
6335     ok( GetLastError() == ERROR_INVALID_WINDOW_HANDLE, "wrong error %u\n", GetLastError() );
6336 #endif
6337 }
6338
6339 static void test_winregion(void)
6340 {
6341     HWND hwnd;
6342     RECT r;
6343     int ret, width;
6344     HRGN hrgn;
6345
6346     if (!pGetWindowRgnBox)
6347     {
6348         win_skip("GetWindowRgnBox not supported\n");
6349         return;
6350     }
6351
6352     hwnd = CreateWindowExA(0, "static", NULL, WS_VISIBLE, 10, 10, 10, 10, NULL, 0, 0, NULL);
6353     /* NULL prect */
6354     SetLastError(0xdeadbeef);
6355     ret = pGetWindowRgnBox(hwnd, NULL);
6356     ok( ret == ERROR, "Expected ERROR, got %d\n", ret);
6357     ok( GetLastError() == 0xdeadbeef, "Expected , got %d\n", GetLastError());
6358
6359     hrgn = CreateRectRgn(2, 3, 10, 15);
6360     ok( hrgn != NULL, "Region creation failed\n");
6361     if (hrgn)
6362     {
6363         SetWindowRgn(hwnd, hrgn, FALSE);
6364
6365         SetLastError(0xdeadbeef);
6366         ret = pGetWindowRgnBox(hwnd, NULL);
6367         ok( ret == ERROR, "Expected ERROR, got %d\n", ret);
6368         ok( GetLastError() == 0xdeadbeef, "Expected , got %d\n", GetLastError());
6369
6370         r.left = r.top = r.right = r.bottom = 0;
6371         ret = pGetWindowRgnBox(hwnd, &r);
6372         ok( ret == SIMPLEREGION, "Expected SIMPLEREGION, got %d\n", ret);
6373         ok( r.left == 2 && r.top == 3 && r.right == 10 && r.bottom == 15,
6374            "Expected (2,3,10,15), got (%d,%d,%d,%d)\n", r.left, r.top,
6375                                                             r.right, r.bottom);
6376         if (pMirrorRgn)
6377         {
6378             hrgn = CreateRectRgn(2, 3, 10, 15);
6379             ret = pMirrorRgn( hwnd, hrgn );
6380             ok( ret == TRUE, "MirrorRgn failed %u\n", ret );
6381             r.left = r.top = r.right = r.bottom = 0;
6382             GetWindowRect( hwnd, &r );
6383             width = r.right - r.left;
6384             r.left = r.top = r.right = r.bottom = 0;
6385             ret = GetRgnBox( hrgn, &r );
6386             ok( ret == SIMPLEREGION, "GetRgnBox failed %u\n", ret );
6387             ok( r.left == width - 10 && r.top == 3 && r.right == width - 2 && r.bottom == 15,
6388                 "Wrong rectangle (%d,%d,%d,%d) for width %d\n", r.left, r.top, r.right, r.bottom, width );
6389         }
6390         else win_skip( "MirrorRgn not supported\n" );
6391     }
6392     DestroyWindow(hwnd);
6393 }
6394
6395 static void test_rtl_layout(void)
6396 {
6397     HWND parent, child;
6398     RECT r;
6399     POINT pt;
6400
6401     if (!pSetProcessDefaultLayout)
6402     {
6403         win_skip( "SetProcessDefaultLayout not supported\n" );
6404         return;
6405     }
6406
6407     parent = CreateWindowExA(WS_EX_LAYOUTRTL, "static", NULL, WS_POPUP, 100, 100, 300, 300, NULL, 0, 0, NULL);
6408     child = CreateWindowExA(0, "static", NULL, WS_CHILD, 10, 10, 20, 20, parent, 0, 0, NULL);
6409
6410     GetWindowRect( parent, &r );
6411     ok( r.left == 100 && r.right == 400, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6412     GetClientRect( parent, &r );
6413     ok( r.left == 0 && r.right == 300, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6414     GetClientRect( child, &r );
6415     ok( r.left == 0 && r.right == 20, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6416     MapWindowPoints( child, parent, (POINT *)&r, 2 );
6417     ok( r.left == 10 && r.right == 30, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6418     GetWindowRect( child, &r );
6419     ok( r.left == 370 && r.right == 390, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6420     MapWindowPoints( NULL, parent, (POINT *)&r, 2 );
6421     ok( r.left == 10 && r.right == 30, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6422     GetWindowRect( child, &r );
6423     MapWindowPoints( NULL, parent, (POINT *)&r, 1 );
6424     MapWindowPoints( NULL, parent, (POINT *)&r + 1, 1 );
6425     ok( r.left == 30 && r.right == 10, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6426     pt.x = pt.y = 12;
6427     MapWindowPoints( child, parent, &pt, 1 );
6428     ok( pt.x == 22 && pt.y == 22, "wrong point %d,%d\n", pt.x, pt.y );
6429     SetWindowPos( parent, 0, 0, 0, 250, 250, SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE );
6430     GetWindowRect( parent, &r );
6431     ok( r.left == 100 && r.right == 350, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6432     GetWindowRect( child, &r );
6433     ok( r.left == 320 && r.right == 340, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6434     SetWindowLongW( parent, GWL_EXSTYLE, 0 );
6435     GetWindowRect( child, &r );
6436     ok( r.left == 320 && r.right == 340, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6437     MapWindowPoints( NULL, parent, (POINT *)&r, 2 );
6438     ok( r.left == 220 && r.right == 240, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6439     SetWindowLongW( parent, GWL_EXSTYLE, WS_EX_LAYOUTRTL );
6440     GetWindowRect( child, &r );
6441     ok( r.left == 320 && r.right == 340, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6442     MapWindowPoints( NULL, parent, (POINT *)&r, 2 );
6443     ok( r.left == 10 && r.right == 30, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6444     SetWindowPos( child, 0, 0, 0, 30, 30, SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE );
6445     GetWindowRect( child, &r );
6446     ok( r.left == 310 && r.right == 340, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6447     MapWindowPoints( NULL, parent, (POINT *)&r, 2 );
6448     ok( r.left == 10 && r.right == 40, "wrong rect %d,%d - %d,%d\n", r.left, r.top, r.right, r.bottom );
6449     DestroyWindow( child );
6450     DestroyWindow( parent );
6451 }
6452
6453 static void test_FlashWindowEx(void)
6454 {
6455     HWND hwnd;
6456     FLASHWINFO finfo;
6457     BOOL ret;
6458
6459     if (!pFlashWindowEx)
6460     {
6461         win_skip( "FlashWindowEx not supported\n" );
6462         return;
6463     }
6464
6465     hwnd = CreateWindowExA( 0, "MainWindowClass", "FlashWindow", WS_POPUP,
6466                             0, 0, 0, 0, 0, 0, 0, NULL );
6467     ok( hwnd != 0, "CreateWindowExA error %d\n", GetLastError() );
6468
6469     finfo.cbSize = sizeof(FLASHWINFO);
6470     finfo.dwFlags = FLASHW_TIMER;
6471     finfo.uCount = 3;
6472     finfo.dwTimeout = 200;
6473     finfo.hwnd = NULL;
6474     SetLastError(0xdeadbeef);
6475     ret = pFlashWindowEx(&finfo);
6476     todo_wine ok(!ret && GetLastError() == ERROR_INVALID_PARAMETER,
6477                  "FlashWindowEx returned with %d\n", GetLastError());
6478
6479     finfo.hwnd = hwnd;
6480     SetLastError(0xdeadbeef);
6481     ret = pFlashWindowEx(NULL);
6482     todo_wine ok(!ret && GetLastError() == ERROR_NOACCESS,
6483        "FlashWindowEx returned with %d\n", GetLastError());
6484
6485     SetLastError(0xdeadbeef);
6486     ret = pFlashWindowEx(&finfo);
6487     todo_wine ok(!ret, "FlashWindowEx succeeded\n");
6488
6489     finfo.cbSize = sizeof(FLASHWINFO) - 1;
6490     SetLastError(0xdeadbeef);
6491     ret = pFlashWindowEx(&finfo);
6492     todo_wine ok(!ret && GetLastError()==ERROR_INVALID_PARAMETER,
6493        "FlashWindowEx succeeded\n");
6494
6495     finfo.cbSize = sizeof(FLASHWINFO) + 1;
6496     SetLastError(0xdeadbeef);
6497     ret = pFlashWindowEx(&finfo);
6498     todo_wine ok(!ret && GetLastError()==ERROR_INVALID_PARAMETER,
6499        "FlashWindowEx succeeded\n");
6500     finfo.cbSize = sizeof(FLASHWINFO);
6501
6502     DestroyWindow( hwnd );
6503
6504     SetLastError(0xdeadbeef);
6505     ret = pFlashWindowEx(&finfo);
6506     todo_wine ok(!ret && GetLastError() == ERROR_INVALID_PARAMETER,
6507        "FlashWindowEx returned with %d\n", GetLastError());
6508
6509     ok(finfo.cbSize == sizeof(FLASHWINFO), "FlashWindowEx modified cdSize to %x\n", finfo.cbSize);
6510     ok(finfo.hwnd == hwnd, "FlashWindowEx modified hwnd to %p\n", finfo.hwnd);
6511     ok(finfo.dwFlags == FLASHW_TIMER, "FlashWindowEx modified dwFlags to %x\n", finfo.dwFlags);
6512     ok(finfo.uCount == 3, "FlashWindowEx modified uCount to %x\n", finfo.uCount);
6513     ok(finfo.dwTimeout == 200, "FlashWindowEx modified dwTimeout to %x\n", finfo.dwTimeout);
6514
6515     hwnd = CreateWindowExA( 0, "MainWindowClass", "FlashWindow", WS_VISIBLE | WS_POPUPWINDOW,
6516                             0, 0, 0, 0, 0, 0, 0, NULL );
6517     ok( hwnd != 0, "CreateWindowExA error %d\n", GetLastError() );
6518     finfo.hwnd = hwnd;
6519
6520     SetLastError(0xdeadbeef);
6521     ret = pFlashWindowEx(NULL);
6522     todo_wine ok(!ret && GetLastError() == ERROR_NOACCESS,
6523        "FlashWindowEx returned with %d\n", GetLastError());
6524
6525     SetLastError(0xdeadbeef);
6526     ret = pFlashWindowEx(&finfo);
6527     todo_wine ok(!ret, "FlashWindowEx succeeded\n");
6528
6529     ok(finfo.cbSize == sizeof(FLASHWINFO), "FlashWindowEx modified cdSize to %x\n", finfo.cbSize);
6530     ok(finfo.hwnd == hwnd, "FlashWindowEx modified hwnd to %p\n", finfo.hwnd);
6531     ok(finfo.dwFlags == FLASHW_TIMER, "FlashWindowEx modified dwFlags to %x\n", finfo.dwFlags);
6532     ok(finfo.uCount == 3, "FlashWindowEx modified uCount to %x\n", finfo.uCount);
6533     ok(finfo.dwTimeout == 200, "FlashWindowEx modified dwTimeout to %x\n", finfo.dwTimeout);
6534
6535     finfo.dwFlags = FLASHW_STOP;
6536     SetLastError(0xdeadbeef);
6537     ret = pFlashWindowEx(&finfo);
6538     ok(ret, "FlashWindowEx failed with %d\n", GetLastError());
6539
6540     DestroyWindow( hwnd );
6541 }
6542
6543 static void test_FindWindowEx(void)
6544 {
6545     HWND hwnd, found;
6546     CHAR title[1];
6547
6548     hwnd = CreateWindowExA( 0, "MainWindowClass", "caption", WS_POPUP, 0,0,0,0, 0, 0, 0, NULL );
6549     ok( hwnd != 0, "CreateWindowExA error %d\n", GetLastError() );
6550
6551     title[0] = 0;
6552
6553     found = FindWindowExA( 0, 0, "MainWindowClass", title );
6554     ok( found == NULL, "expected a NULL hwnd\n" );
6555     found = FindWindowExA( 0, 0, "MainWindowClass", NULL );
6556     ok( found == hwnd, "found is %p, expected a valid hwnd\n", found );
6557
6558     DestroyWindow( hwnd );
6559
6560     hwnd = CreateWindowExA( 0, "MainWindowClass", NULL, WS_POPUP, 0,0,0,0, 0, 0, 0, NULL );
6561     ok( hwnd != 0, "CreateWindowExA error %d\n", GetLastError() );
6562
6563     found = FindWindowExA( 0, 0, "MainWindowClass", title );
6564     ok( found == hwnd, "found is %p, expected a valid hwnd\n", found );
6565     found = FindWindowExA( 0, 0, "MainWindowClass", NULL );
6566     ok( found == hwnd, "found is %p, expected a valid hwnd\n", found );
6567
6568     DestroyWindow( hwnd );
6569
6570     /* test behaviour with a window title that is an empty character */
6571     found = FindWindowExA( 0, 0, "Shell_TrayWnd", title );
6572     ok( found != NULL, "found is NULL, expected a valid hwnd\n" );
6573     found = FindWindowExA( 0, 0, "Shell_TrayWnd", NULL );
6574     ok( found != NULL, "found is NULL, expected a valid hwnd\n" );
6575 }
6576
6577 static void test_GetLastActivePopup(void)
6578 {
6579     HWND hwndOwner, hwndPopup1, hwndPopup2;
6580
6581     hwndOwner = CreateWindowExA(0, "MainWindowClass", NULL,
6582                                 WS_VISIBLE | WS_POPUPWINDOW,
6583                                 100, 100, 200, 200,
6584                                 NULL, 0, GetModuleHandle(0), NULL);
6585     hwndPopup1 = CreateWindowExA(0, "MainWindowClass", NULL,
6586                                  WS_VISIBLE | WS_POPUPWINDOW,
6587                                  100, 100, 200, 200,
6588                                  hwndOwner, 0, GetModuleHandle(0), NULL);
6589     hwndPopup2 = CreateWindowExA(0, "MainWindowClass", NULL,
6590                                  WS_VISIBLE | WS_POPUPWINDOW,
6591                                  100, 100, 200, 200,
6592                                  hwndPopup1, 0, GetModuleHandle(0), NULL);
6593     ok( GetLastActivePopup(hwndOwner) == hwndPopup2, "wrong last active popup\n" );
6594     DestroyWindow( hwndPopup2 );
6595     DestroyWindow( hwndPopup1 );
6596     DestroyWindow( hwndOwner );
6597 }
6598
6599 START_TEST(win)
6600 {
6601     HMODULE user32 = GetModuleHandleA( "user32.dll" );
6602     HMODULE gdi32 = GetModuleHandleA("gdi32.dll");
6603     pGetAncestor = (void *)GetProcAddress( user32, "GetAncestor" );
6604     pGetWindowInfo = (void *)GetProcAddress( user32, "GetWindowInfo" );
6605     pGetWindowModuleFileNameA = (void *)GetProcAddress( user32, "GetWindowModuleFileNameA" );
6606     pGetLayeredWindowAttributes = (void *)GetProcAddress( user32, "GetLayeredWindowAttributes" );
6607     pSetLayeredWindowAttributes = (void *)GetProcAddress( user32, "SetLayeredWindowAttributes" );
6608     pUpdateLayeredWindow = (void *)GetProcAddress( user32, "UpdateLayeredWindow" );
6609     pGetMonitorInfoA = (void *)GetProcAddress( user32,  "GetMonitorInfoA" );
6610     pMonitorFromPoint = (void *)GetProcAddress( user32,  "MonitorFromPoint" );
6611     pGetWindowRgnBox = (void *)GetProcAddress( user32, "GetWindowRgnBox" );
6612     pGetGUIThreadInfo = (void *)GetProcAddress( user32, "GetGUIThreadInfo" );
6613     pGetProcessDefaultLayout = (void *)GetProcAddress( user32, "GetProcessDefaultLayout" );
6614     pSetProcessDefaultLayout = (void *)GetProcAddress( user32, "SetProcessDefaultLayout" );
6615     pFlashWindowEx = (void *)GetProcAddress( user32, "FlashWindowEx" );
6616     pGetLayout = (void *)GetProcAddress( gdi32, "GetLayout" );
6617     pSetLayout = (void *)GetProcAddress( gdi32, "SetLayout" );
6618     pMirrorRgn = (void *)GetProcAddress( gdi32, "MirrorRgn" );
6619
6620     if (!RegisterWindowClasses()) assert(0);
6621
6622     SetLastError(0xdeafbeef);
6623     GetWindowLongPtrW(GetDesktopWindow(), GWLP_WNDPROC);
6624     is_win9x = (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED);
6625
6626     hhook = SetWindowsHookExA(WH_CBT, cbt_hook_proc, 0, GetCurrentThreadId());
6627     if (!hhook) win_skip( "Cannot set CBT hook, skipping some tests\n" );
6628
6629     /* make sure that these tests are executed first */
6630     test_FindWindowEx();
6631     test_SetParent();
6632
6633     hwndMain = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window",
6634                                WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
6635                                WS_MAXIMIZEBOX | WS_POPUP,
6636                                100, 100, 200, 200,
6637                                0, 0, GetModuleHandle(0), NULL);
6638     hwndMain2 = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window 2",
6639                                 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
6640                                 WS_MAXIMIZEBOX | WS_POPUP,
6641                                 100, 100, 200, 200,
6642                                 0, 0, GetModuleHandle(0), NULL);
6643     assert( hwndMain );
6644     assert( hwndMain2 );
6645
6646     our_pid = GetWindowThreadProcessId(hwndMain, NULL);
6647
6648     /* Add the tests below this line */
6649     test_thick_child_size(hwndMain);
6650     test_fullscreen();
6651     test_hwnd_message();
6652     test_nonclient_area(hwndMain);
6653     test_params();
6654     test_GetWindowModuleFileName();
6655     test_capture_1();
6656     test_capture_2();
6657     test_capture_3(hwndMain, hwndMain2);
6658     test_capture_4();
6659     test_rtl_layout();
6660     test_FlashWindowEx();
6661
6662     test_CreateWindow();
6663     test_parent_owner();
6664     test_enum_thread_windows();
6665
6666     test_mdi();
6667     test_icons();
6668     test_SetWindowPos(hwndMain, hwndMain2);
6669     test_SetMenu(hwndMain);
6670     test_SetFocus(hwndMain);
6671     test_SetActiveWindow(hwndMain);
6672     test_NCRedraw();
6673
6674     test_children_zorder(hwndMain);
6675     test_popup_zorder(hwndMain2, hwndMain, WS_POPUP);
6676     test_popup_zorder(hwndMain2, hwndMain, 0);
6677     test_GetLastActivePopup();
6678     test_keyboard_input(hwndMain);
6679     test_mouse_input(hwndMain);
6680     test_validatergn(hwndMain);
6681     test_nccalcscroll( hwndMain);
6682     test_scrollwindow( hwndMain);
6683     test_scrollvalidate( hwndMain);
6684     test_scrolldc( hwndMain);
6685     test_scroll();
6686     test_IsWindowUnicode();
6687     test_vis_rgn(hwndMain);
6688
6689     test_AdjustWindowRect();
6690     test_window_styles();
6691     test_redrawnow();
6692     test_csparentdc();
6693     test_SetWindowLong();
6694     test_ShowWindow();
6695     if (0) test_gettext(); /* crashes on NT4 */
6696     test_GetUpdateRect();
6697     test_Expose();
6698     test_layered_window();
6699
6700     test_SetForegroundWindow(hwndMain);
6701     test_shell_window();
6702     test_handles( hwndMain );
6703     test_winregion();
6704
6705     /* add the tests above this line */
6706     if (hhook) UnhookWindowsHookEx(hhook);
6707
6708     DestroyWindow(hwndMain2);
6709     DestroyWindow(hwndMain);
6710 }