Fix declarations.
[wine] / dlls / user / 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 /* To get ICON_SMALL2 with the MSVC headers */
24 #define _WIN32_WINNT 0x0501
25
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
28
29 #include <assert.h>
30 #include <stdlib.h>
31 #include <stdarg.h>
32 #include <stdio.h>
33
34 #include "windef.h"
35 #include "winbase.h"
36 #include "wingdi.h"
37 #include "winuser.h"
38
39 #include "wine/test.h"
40
41 #ifndef SPI_GETDESKWALLPAPER
42 #define SPI_GETDESKWALLPAPER 0x0073
43 #endif
44
45 #define LONG_PTR INT_PTR
46 #define ULONG_PTR UINT_PTR
47
48 void dump_region(HRGN hrgn);
49
50 static HWND (WINAPI *pGetAncestor)(HWND,UINT);
51 static BOOL (WINAPI *pGetWindowInfo)(HWND,WINDOWINFO*);
52
53 static BOOL test_lbuttondown_flag;
54 static HWND hwndMessage;
55 static HWND hwndMain, hwndMain2;
56 static HHOOK hhook;
57
58 static const char* szAWRClass = "Winsize";
59 static HMENU hmenu;
60
61 #define COUNTOF(arr) (sizeof(arr)/sizeof(arr[0]))
62
63 /* check the values returned by the various parent/owner functions on a given window */
64 static void check_parents( HWND hwnd, HWND ga_parent, HWND gwl_parent, HWND get_parent,
65                            HWND gw_owner, HWND ga_root, HWND ga_root_owner )
66 {
67     HWND res;
68
69     if (pGetAncestor)
70     {
71         res = pGetAncestor( hwnd, GA_PARENT );
72         ok( res == ga_parent, "Wrong result for GA_PARENT %p expected %p\n", res, ga_parent );
73     }
74     res = (HWND)GetWindowLongA( hwnd, GWL_HWNDPARENT );
75     ok( res == gwl_parent, "Wrong result for GWL_HWNDPARENT %p expected %p\n", res, gwl_parent );
76     res = GetParent( hwnd );
77     ok( res == get_parent, "Wrong result for GetParent %p expected %p\n", res, get_parent );
78     res = GetWindow( hwnd, GW_OWNER );
79     ok( res == gw_owner, "Wrong result for GW_OWNER %p expected %p\n", res, gw_owner );
80     if (pGetAncestor)
81     {
82         res = pGetAncestor( hwnd, GA_ROOT );
83         ok( res == ga_root, "Wrong result for GA_ROOT %p expected %p\n", res, ga_root );
84         res = pGetAncestor( hwnd, GA_ROOTOWNER );
85         ok( res == ga_root_owner, "Wrong result for GA_ROOTOWNER %p expected %p\n", res, ga_root_owner );
86     }
87 }
88
89
90 static HWND create_tool_window( LONG style, HWND parent )
91 {
92     HWND ret = CreateWindowExA(0, "ToolWindowClass", "Tool window 1", style,
93                                0, 0, 100, 100, parent, 0, 0, NULL );
94     ok( ret != 0, "Creation failed\n" );
95     return ret;
96 }
97
98 /* test parent and owner values for various combinations */
99 static void test_parent_owner(void)
100 {
101     LONG style;
102     HWND test, owner, ret;
103     HWND desktop = GetDesktopWindow();
104     HWND child = create_tool_window( WS_CHILD, hwndMain );
105
106     trace( "main window %p main2 %p desktop %p child %p\n", hwndMain, hwndMain2, desktop, child );
107
108     /* child without parent, should fail */
109     test = CreateWindowExA(0, "ToolWindowClass", "Tool window 1",
110                            WS_CHILD, 0, 0, 100, 100, 0, 0, 0, NULL );
111     ok( !test, "WS_CHILD without parent created\n" );
112
113     /* desktop window */
114     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
115     style = GetWindowLongA( desktop, GWL_STYLE );
116     ok( !SetWindowLongA( desktop, GWL_STYLE, WS_POPUP ), "Set GWL_STYLE on desktop succeeded\n" );
117     ok( !SetWindowLongA( desktop, GWL_STYLE, 0 ), "Set GWL_STYLE on desktop succeeded\n" );
118     ok( GetWindowLongA( desktop, GWL_STYLE ) == style, "Desktop style changed\n" );
119
120     /* normal child window */
121     test = create_tool_window( WS_CHILD, hwndMain );
122     trace( "created child %p\n", test );
123     check_parents( test, hwndMain, hwndMain, hwndMain, 0, hwndMain, hwndMain );
124     SetWindowLongA( test, GWL_STYLE, 0 );
125     check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
126     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
127     check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
128     SetWindowLongA( test, GWL_STYLE, WS_POPUP|WS_CHILD );
129     check_parents( test, hwndMain, hwndMain, 0, 0, hwndMain, test );
130     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
131     DestroyWindow( test );
132
133     /* normal child window with WS_MAXIMIZE */
134     test = create_tool_window( WS_CHILD | WS_MAXIMIZE, hwndMain );
135     DestroyWindow( test );
136
137     /* normal child window with WS_THICKFRAME */
138     test = create_tool_window( WS_CHILD | WS_THICKFRAME, hwndMain );
139     DestroyWindow( test );
140
141     /* popup window with WS_THICKFRAME */
142     test = create_tool_window( WS_POPUP | WS_THICKFRAME, hwndMain );
143     DestroyWindow( test );
144
145     /* child of desktop */
146     test = create_tool_window( WS_CHILD, desktop );
147     trace( "created child of desktop %p\n", test );
148     check_parents( test, desktop, 0, desktop, 0, test, desktop );
149     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
150     check_parents( test, desktop, 0, 0, 0, test, test );
151     SetWindowLongA( test, GWL_STYLE, 0 );
152     check_parents( test, desktop, 0, 0, 0, test, test );
153     DestroyWindow( test );
154
155     /* child of desktop with WS_MAXIMIZE */
156     test = create_tool_window( WS_CHILD | WS_MAXIMIZE, desktop );
157     DestroyWindow( test );
158
159     /* child of desktop with WS_MINIMIZE */
160     test = create_tool_window( WS_CHILD | WS_MINIMIZE, desktop );
161     DestroyWindow( test );
162
163     /* child of child */
164     test = create_tool_window( WS_CHILD, child );
165     trace( "created child of child %p\n", test );
166     check_parents( test, child, child, child, 0, hwndMain, hwndMain );
167     SetWindowLongA( test, GWL_STYLE, 0 );
168     check_parents( test, child, child, 0, 0, hwndMain, test );
169     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
170     check_parents( test, child, child, 0, 0, hwndMain, test );
171     DestroyWindow( test );
172
173     /* child of child with WS_MAXIMIZE */
174     test = create_tool_window( WS_CHILD | WS_MAXIMIZE, child );
175     DestroyWindow( test );
176
177     /* child of child with WS_MINIMIZE */
178     test = create_tool_window( WS_CHILD | WS_MINIMIZE, child );
179     DestroyWindow( test );
180
181     /* not owned top-level window */
182     test = create_tool_window( 0, 0 );
183     trace( "created top-level %p\n", test );
184     check_parents( test, desktop, 0, 0, 0, test, test );
185     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
186     check_parents( test, desktop, 0, 0, 0, test, test );
187     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
188     check_parents( test, desktop, 0, desktop, 0, test, desktop );
189     DestroyWindow( test );
190
191     /* not owned top-level window with WS_MAXIMIZE */
192     test = create_tool_window( WS_MAXIMIZE, 0 );
193     DestroyWindow( test );
194
195     /* owned top-level window */
196     test = create_tool_window( 0, hwndMain );
197     trace( "created owned top-level %p\n", test );
198     check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
199     SetWindowLongA( test, GWL_STYLE, WS_POPUP );
200     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
201     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
202     check_parents( test, desktop, hwndMain, desktop, hwndMain, test, desktop );
203     DestroyWindow( test );
204
205     /* owned top-level window with WS_MAXIMIZE */
206     test = create_tool_window( WS_MAXIMIZE, hwndMain );
207     DestroyWindow( test );
208
209     /* not owned popup */
210     test = create_tool_window( WS_POPUP, 0 );
211     trace( "created popup %p\n", test );
212     check_parents( test, desktop, 0, 0, 0, test, test );
213     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
214     check_parents( test, desktop, 0, desktop, 0, test, desktop );
215     SetWindowLongA( test, GWL_STYLE, 0 );
216     check_parents( test, desktop, 0, 0, 0, test, test );
217     DestroyWindow( test );
218
219     /* not owned popup with WS_MAXIMIZE */
220     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, 0 );
221     DestroyWindow( test );
222
223     /* owned popup */
224     test = create_tool_window( WS_POPUP, hwndMain );
225     trace( "created owned popup %p\n", test );
226     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
227     SetWindowLongA( test, GWL_STYLE, WS_CHILD );
228     check_parents( test, desktop, hwndMain, desktop, hwndMain, test, desktop );
229     SetWindowLongA( test, GWL_STYLE, 0 );
230     check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
231     DestroyWindow( test );
232
233     /* owned popup with WS_MAXIMIZE */
234     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, hwndMain );
235     DestroyWindow( test );
236
237     /* top-level window owned by child (same as owned by top-level) */
238     test = create_tool_window( 0, child );
239     trace( "created top-level owned by child %p\n", test );
240     check_parents( test, desktop, hwndMain, 0, hwndMain, test, test );
241     DestroyWindow( test );
242
243     /* top-level window owned by child (same as owned by top-level) with WS_MAXIMIZE */
244     test = create_tool_window( WS_MAXIMIZE, child );
245     DestroyWindow( test );
246
247     /* popup owned by desktop (same as not owned) */
248     test = create_tool_window( WS_POPUP, desktop );
249     trace( "created popup owned by desktop %p\n", test );
250     check_parents( test, desktop, 0, 0, 0, test, test );
251     DestroyWindow( test );
252
253     /* popup owned by desktop (same as not owned) with WS_MAXIMIZE */
254     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, desktop );
255     DestroyWindow( test );
256
257     /* popup owned by child (same as owned by top-level) */
258     test = create_tool_window( WS_POPUP, child );
259     trace( "created popup owned by child %p\n", test );
260     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
261     DestroyWindow( test );
262
263     /* popup owned by child (same as owned by top-level) with WS_MAXIMIZE */
264     test = create_tool_window( WS_POPUP | WS_MAXIMIZE, child );
265     DestroyWindow( test );
266
267     /* not owned popup with WS_CHILD (same as WS_POPUP only) */
268     test = create_tool_window( WS_POPUP | WS_CHILD, 0 );
269     trace( "created WS_CHILD popup %p\n", test );
270     check_parents( test, desktop, 0, 0, 0, test, test );
271     DestroyWindow( test );
272
273     /* not owned popup with WS_CHILD | WS_MAXIMIZE (same as WS_POPUP only) */
274     test = create_tool_window( WS_POPUP | WS_CHILD | WS_MAXIMIZE, 0 );
275     DestroyWindow( test );
276
277     /* owned popup with WS_CHILD (same as WS_POPUP only) */
278     test = create_tool_window( WS_POPUP | WS_CHILD, hwndMain );
279     trace( "created owned WS_CHILD popup %p\n", test );
280     check_parents( test, desktop, hwndMain, hwndMain, hwndMain, test, hwndMain );
281     DestroyWindow( test );
282
283     /* owned popup with WS_CHILD (same as WS_POPUP only) with WS_MAXIMIZE */
284     test = create_tool_window( WS_POPUP | WS_CHILD | WS_MAXIMIZE, hwndMain );
285     DestroyWindow( test );
286
287     /******************** parent changes *************************/
288     trace( "testing parent changes\n" );
289
290     /* desktop window */
291     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
292 #if 0 /* this test succeeds on NT but crashes on win9x systems */
293     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)hwndMain2 );
294     ok( !ret, "Set GWL_HWNDPARENT succeeded on desktop\n" );
295     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
296     ok( !SetParent( desktop, hwndMain ), "SetParent succeeded on desktop\n" );
297     check_parents( desktop, 0, 0, 0, 0, 0, 0 );
298 #endif
299     /* normal child window */
300     test = create_tool_window( WS_CHILD, hwndMain );
301     trace( "created child %p\n", test );
302
303     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)hwndMain2 );
304     ok( ret == hwndMain, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain );
305     check_parents( test, hwndMain2, hwndMain2, hwndMain2, 0, hwndMain2, hwndMain2 );
306
307     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)child );
308     ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
309     check_parents( test, child, child, child, 0, hwndMain, hwndMain );
310
311     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)desktop );
312     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
313     check_parents( test, desktop, 0, desktop, 0, test, desktop );
314
315     /* window is now child of desktop so GWL_HWNDPARENT changes owner from now on */
316     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)child );
317     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
318     check_parents( test, desktop, child, desktop, child, test, desktop );
319
320     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, 0 );
321     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
322     check_parents( test, desktop, 0, desktop, 0, test, desktop );
323     DestroyWindow( test );
324
325     /* not owned top-level window */
326     test = create_tool_window( 0, 0 );
327     trace( "created top-level %p\n", test );
328
329     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)hwndMain2 );
330     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
331     check_parents( test, desktop, hwndMain2, 0, hwndMain2, test, test );
332
333     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)child );
334     ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
335     check_parents( test, desktop, child, 0, child, test, test );
336
337     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, 0 );
338     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
339     check_parents( test, desktop, 0, 0, 0, test, test );
340     DestroyWindow( test );
341
342     /* not owned popup */
343     test = create_tool_window( WS_POPUP, 0 );
344     trace( "created popup %p\n", test );
345
346     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)hwndMain2 );
347     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
348     check_parents( test, desktop, hwndMain2, hwndMain2, hwndMain2, test, hwndMain2 );
349
350     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (LONG_PTR)child );
351     ok( ret == hwndMain2, "GWL_HWNDPARENT return value %p expected %p\n", ret, hwndMain2 );
352     check_parents( test, desktop, child, child, child, test, hwndMain );
353
354     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, 0 );
355     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
356     check_parents( test, desktop, 0, 0, 0, test, test );
357     DestroyWindow( test );
358
359     /* normal child window */
360     test = create_tool_window( WS_CHILD, hwndMain );
361     trace( "created child %p\n", test );
362
363     ret = SetParent( test, desktop );
364     ok( ret == hwndMain, "SetParent return value %p expected %p\n", ret, hwndMain );
365     check_parents( test, desktop, 0, desktop, 0, test, desktop );
366
367     ret = SetParent( test, child );
368     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
369     check_parents( test, child, child, child, 0, hwndMain, hwndMain );
370
371     ret = SetParent( test, hwndMain2 );
372     ok( ret == child, "SetParent return value %p expected %p\n", ret, child );
373     check_parents( test, hwndMain2, hwndMain2, hwndMain2, 0, hwndMain2, hwndMain2 );
374     DestroyWindow( test );
375
376     /* not owned top-level window */
377     test = create_tool_window( 0, 0 );
378     trace( "created top-level %p\n", test );
379
380     ret = SetParent( test, child );
381     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
382     check_parents( test, child, child, 0, 0, hwndMain, test );
383     DestroyWindow( test );
384
385     /* owned popup */
386     test = create_tool_window( WS_POPUP, hwndMain2 );
387     trace( "created owned popup %p\n", test );
388
389     ret = SetParent( test, child );
390     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
391     check_parents( test, child, child, hwndMain2, hwndMain2, hwndMain, hwndMain2 );
392
393     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (ULONG_PTR)hwndMain );
394     ok( ret == child, "GWL_HWNDPARENT return value %p expected %p\n", ret, child );
395     check_parents( test, hwndMain, hwndMain, hwndMain2, hwndMain2, hwndMain, hwndMain2 );
396     DestroyWindow( test );
397
398     /**************** test owner destruction *******************/
399
400     /* owned child popup */
401     owner = create_tool_window( 0, 0 );
402     test = create_tool_window( WS_POPUP, owner );
403     trace( "created owner %p and popup %p\n", owner, test );
404     ret = SetParent( test, child );
405     ok( ret == desktop, "SetParent return value %p expected %p\n", ret, desktop );
406     check_parents( test, child, child, owner, owner, hwndMain, owner );
407     /* window is now child of 'child' but owned by 'owner' */
408     DestroyWindow( owner );
409     ok( IsWindow(test), "Window %p destroyed by owner destruction\n", test );
410     /* Win98 doesn't pass this test. It doesn't allow a destroyed owner,
411      * while Win95, Win2k, WinXP do.
412      */
413     /*check_parents( test, child, child, owner, owner, hwndMain, owner );*/
414     ok( !IsWindow(owner), "Owner %p not destroyed\n", owner );
415     DestroyWindow(test);
416
417     /* owned top-level popup */
418     owner = create_tool_window( 0, 0 );
419     test = create_tool_window( WS_POPUP, owner );
420     trace( "created owner %p and popup %p\n", owner, test );
421     check_parents( test, desktop, owner, owner, owner, test, owner );
422     DestroyWindow( owner );
423     ok( !IsWindow(test), "Window %p not destroyed by owner destruction\n", test );
424
425     /* top-level popup owned by child */
426     owner = create_tool_window( WS_CHILD, hwndMain2 );
427     test = create_tool_window( WS_POPUP, 0 );
428     trace( "created owner %p and popup %p\n", owner, test );
429     ret = (HWND)SetWindowLongA( test, GWL_HWNDPARENT, (ULONG_PTR)owner );
430     ok( ret == 0, "GWL_HWNDPARENT return value %p expected 0\n", ret );
431     check_parents( test, desktop, owner, owner, owner, test, hwndMain2 );
432     DestroyWindow( owner );
433     ok( IsWindow(test), "Window %p destroyed by owner destruction\n", test );
434     ok( !IsWindow(owner), "Owner %p not destroyed\n", owner );
435     /* Win98 doesn't pass this test. It doesn't allow a destroyed owner,
436      * while Win95, Win2k, WinXP do.
437      */
438     /*check_parents( test, desktop, owner, owner, owner, test, owner );*/
439     DestroyWindow(test);
440
441     /* final cleanup */
442     DestroyWindow(child);
443 }
444
445
446 static LRESULT WINAPI main_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
447 {
448     switch (msg)
449     {
450         case WM_GETMINMAXINFO:
451         {
452             MINMAXINFO* minmax = (MINMAXINFO *)lparam;
453
454             trace("hwnd %p, WM_GETMINMAXINFO, %08x, %08lx\n", hwnd, wparam, lparam);
455             trace("ptReserved (%ld,%ld), ptMaxSize (%ld,%ld), ptMaxPosition (%ld,%ld)\n"
456                   "       ptMinTrackSize (%ld,%ld), ptMaxTrackSize (%ld,%ld)\n",
457                   minmax->ptReserved.x, minmax->ptReserved.y,
458                   minmax->ptMaxSize.x, minmax->ptMaxSize.y,
459                   minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
460                   minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
461                   minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
462             SetWindowLongA(hwnd, GWL_USERDATA, 0x20031021);
463             break;
464         }
465         case WM_WINDOWPOSCHANGING:
466         {
467             BOOL is_win9x = GetWindowLongPtrW(hwnd, GWLP_WNDPROC) == 0;
468             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
469             trace("main: WM_WINDOWPOSCHANGING\n");
470             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
471                    winpos->hwnd, winpos->hwndInsertAfter,
472                    winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
473             if (!(winpos->flags & SWP_NOMOVE))
474             {
475                 ok(winpos->x >= -32768 && winpos->x <= 32767, "bad winpos->x %d\n", winpos->x);
476                 ok(winpos->y >= -32768 && winpos->y <= 32767, "bad winpos->y %d\n", winpos->y);
477             }
478             /* Win9x does not fixup cx/xy for WM_WINDOWPOSCHANGING */
479             if (!(winpos->flags & SWP_NOSIZE) && !is_win9x)
480             {
481                 ok(winpos->cx >= 0 && winpos->cx <= 32767, "bad winpos->cx %d\n", winpos->cx);
482                 ok(winpos->cy >= 0 && winpos->cy <= 32767, "bad winpos->cy %d\n", winpos->cy);
483             }
484             break;
485         }
486         case WM_WINDOWPOSCHANGED:
487         {
488             RECT rc1, rc2;
489             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
490             trace("main: WM_WINDOWPOSCHANGED\n");
491             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
492                    winpos->hwnd, winpos->hwndInsertAfter,
493                    winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
494             ok(winpos->x >= -32768 && winpos->x <= 32767, "bad winpos->x %d\n", winpos->x);
495             ok(winpos->y >= -32768 && winpos->y <= 32767, "bad winpos->y %d\n", winpos->y);
496
497             ok(winpos->cx >= 0 && winpos->cx <= 32767, "bad winpos->cx %d\n", winpos->cx);
498             ok(winpos->cy >= 0 && winpos->cy <= 32767, "bad winpos->cy %d\n", winpos->cy);
499
500             GetWindowRect(hwnd, &rc1);
501             trace("window: (%ld,%ld)-(%ld,%ld)\n", rc1.left, rc1.top, rc1.right, rc1.bottom);
502             SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
503             /* note: winpos coordinates are relative to parent */
504             MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
505             trace("pos: (%ld,%ld)-(%ld,%ld)\n", rc2.left, rc2.top, rc2.right, rc2.bottom);
506 #if 0 /* Uncomment this once the test succeeds in all cases */
507             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
508 #endif
509
510             GetClientRect(hwnd, &rc2);
511             DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
512             MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
513             ok(EqualRect(&rc1, &rc2), "rects do not match (%ld,%ld-%ld,%ld) / (%ld,%ld-%ld,%ld)\n",
514                rc1.left, rc1.top, rc1.right, rc1.bottom, rc2.left, rc2.top, rc2.right, rc2.bottom );
515             break;
516         }
517         case WM_NCCREATE:
518         {
519             BOOL got_getminmaxinfo = GetWindowLongA(hwnd, GWL_USERDATA) == 0x20031021;
520             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
521
522             trace("WM_NCCREATE: hwnd %p, parent %p, style %08lx\n", hwnd, cs->hwndParent, cs->style);
523             if (got_getminmaxinfo)
524                 trace("%p got WM_GETMINMAXINFO\n", hwnd);
525
526             if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
527                 ok(got_getminmaxinfo, "main: WM_GETMINMAXINFO should have been received before WM_NCCREATE\n");
528             else
529                 ok(!got_getminmaxinfo, "main: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
530             break;
531         }
532         case WM_COMMAND:
533             if (test_lbuttondown_flag)
534                 ShowWindow((HWND)wparam, SW_SHOW);
535             break;
536     }
537
538     return DefWindowProcA(hwnd, msg, wparam, lparam);
539 }
540
541 static LRESULT WINAPI tool_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
542 {
543     switch (msg)
544     {
545         case WM_GETMINMAXINFO:
546         {
547             MINMAXINFO* minmax = (MINMAXINFO *)lparam;
548
549             trace("hwnd %p, WM_GETMINMAXINFO, %08x, %08lx\n", hwnd, wparam, lparam);
550             trace("ptReserved (%ld,%ld), ptMaxSize (%ld,%ld), ptMaxPosition (%ld,%ld)\n"
551                   "       ptMinTrackSize (%ld,%ld), ptMaxTrackSize (%ld,%ld)\n",
552                   minmax->ptReserved.x, minmax->ptReserved.y,
553                   minmax->ptMaxSize.x, minmax->ptMaxSize.y,
554                   minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
555                   minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
556                   minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
557             SetWindowLongA(hwnd, GWL_USERDATA, 0x20031021);
558             break;
559         }
560         case WM_NCCREATE:
561         {
562             BOOL got_getminmaxinfo = GetWindowLongA(hwnd, GWL_USERDATA) == 0x20031021;
563             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
564
565             trace("WM_NCCREATE: hwnd %p, parent %p, style %08lx\n", hwnd, cs->hwndParent, cs->style);
566             if (got_getminmaxinfo)
567                 trace("%p got WM_GETMINMAXINFO\n", hwnd);
568
569             if ((cs->style & WS_THICKFRAME) || !(cs->style & (WS_POPUP | WS_CHILD)))
570                 ok(got_getminmaxinfo, "tool: WM_GETMINMAXINFO should have been received before WM_NCCREATE\n");
571             else
572                 ok(!got_getminmaxinfo, "tool: WM_GETMINMAXINFO should NOT have been received before WM_NCCREATE\n");
573             break;
574         }
575     }
576
577     return DefWindowProcA(hwnd, msg, wparam, lparam);
578 }
579
580 static BOOL RegisterWindowClasses(void)
581 {
582     WNDCLASSA cls;
583
584     cls.style = CS_DBLCLKS;
585     cls.lpfnWndProc = main_window_procA;
586     cls.cbClsExtra = 0;
587     cls.cbWndExtra = 0;
588     cls.hInstance = GetModuleHandleA(0);
589     cls.hIcon = 0;
590     cls.hCursor = LoadCursorA(0, (LPSTR)IDC_ARROW);
591     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
592     cls.lpszMenuName = NULL;
593     cls.lpszClassName = "MainWindowClass";
594
595     if(!RegisterClassA(&cls)) return FALSE;
596
597     cls.style = 0;
598     cls.lpfnWndProc = tool_window_procA;
599     cls.cbClsExtra = 0;
600     cls.cbWndExtra = 0;
601     cls.hInstance = GetModuleHandleA(0);
602     cls.hIcon = 0;
603     cls.hCursor = LoadCursorA(0, (LPSTR)IDC_ARROW);
604     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
605     cls.lpszMenuName = NULL;
606     cls.lpszClassName = "ToolWindowClass";
607
608     if(!RegisterClassA(&cls)) return FALSE;
609
610     return TRUE;
611 }
612
613 static void verify_window_info(HWND hwnd, const WINDOWINFO *info, BOOL test_borders)
614 {
615     RECT rcWindow, rcClient;
616     UINT border;
617     DWORD status;
618
619     ok(IsWindow(hwnd), "bad window handle\n");
620
621     GetWindowRect(hwnd, &rcWindow);
622     ok(EqualRect(&rcWindow, &info->rcWindow), "wrong rcWindow\n");
623
624     GetClientRect(hwnd, &rcClient);
625     /* translate to screen coordinates */
626     MapWindowPoints(hwnd, 0, (LPPOINT)&rcClient, 2);
627     ok(EqualRect(&rcClient, &info->rcClient), "wrong rcClient\n");
628
629     ok(info->dwStyle == (DWORD)GetWindowLongA(hwnd, GWL_STYLE),
630        "wrong dwStyle: %08lx != %08lx\n", info->dwStyle, GetWindowLongA(hwnd, GWL_STYLE));
631     ok(info->dwExStyle == (DWORD)GetWindowLongA(hwnd, GWL_EXSTYLE),
632        "wrong dwExStyle: %08lx != %08lx\n", info->dwExStyle, GetWindowLongA(hwnd, GWL_EXSTYLE));
633     status = (GetActiveWindow() == hwnd) ? WS_ACTIVECAPTION : 0;
634     ok(info->dwWindowStatus == status, "wrong dwWindowStatus: %04lx != %04lx\n",
635        info->dwWindowStatus, status);
636
637     if (test_borders && !IsRectEmpty(&rcWindow))
638     {
639         trace("rcWindow: %ld,%ld - %ld,%ld\n", rcWindow.left, rcWindow.top, rcWindow.right, rcWindow.bottom);
640         trace("rcClient: %ld,%ld - %ld,%ld\n", rcClient.left, rcClient.top, rcClient.right, rcClient.bottom);
641
642         ok(info->cxWindowBorders == (unsigned)(rcClient.left - rcWindow.left),
643             "wrong cxWindowBorders %d != %ld\n", info->cxWindowBorders, rcClient.left - rcWindow.left);
644         border = min(rcWindow.bottom - rcClient.bottom, rcClient.top - rcWindow.top);
645         ok(info->cyWindowBorders == border,
646            "wrong cyWindowBorders %d != %d\n", info->cyWindowBorders, border);
647     }
648
649     ok(info->atomWindowType == GetClassLongA(hwnd, GCW_ATOM), "wrong atomWindowType\n");
650     ok(info->wCreatorVersion == 0x0400, "wrong wCreatorVersion %04x\n", info->wCreatorVersion);
651 }
652
653 static void FixedAdjustWindowRectEx(RECT* rc, LONG style, BOOL menu, LONG exstyle)
654 {
655     AdjustWindowRectEx(rc, style, menu, exstyle);
656     /* AdjustWindowRectEx does not include scroll bars */
657     if (style & WS_VSCROLL)
658     {
659         if(exstyle & WS_EX_LEFTSCROLLBAR)
660             rc->left  -= GetSystemMetrics(SM_CXVSCROLL);
661         else
662             rc->right += GetSystemMetrics(SM_CXVSCROLL);
663     }
664     if (style & WS_HSCROLL)
665         rc->bottom += GetSystemMetrics(SM_CYHSCROLL);
666 }
667
668 static void test_nonclient_area(HWND hwnd)
669 {
670     DWORD style, exstyle;
671     RECT rc_window, rc_client, rc;
672     BOOL menu;
673     BOOL is_win9x = GetWindowLongW(hwnd, GWL_WNDPROC) == 0;
674
675     style = GetWindowLongA(hwnd, GWL_STYLE);
676     exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
677     menu = !(style & WS_CHILD) && GetMenu(hwnd) != 0;
678
679     GetWindowRect(hwnd, &rc_window);
680     trace("window: (%ld,%ld)-(%ld,%ld)\n", rc_window.left, rc_window.top, rc_window.right, rc_window.bottom);
681     GetClientRect(hwnd, &rc_client);
682     trace("client: (%ld,%ld)-(%ld,%ld)\n", rc_client.left, rc_client.top, rc_client.right, rc_client.bottom);
683
684     /* avoid some cases when things go wrong */
685     if (IsRectEmpty(&rc_window) || IsRectEmpty(&rc_client) ||
686         rc_window.right > 32768 || rc_window.bottom > 32768) return;
687
688     CopyRect(&rc, &rc_client);
689     MapWindowPoints(hwnd, 0, (LPPOINT)&rc, 2);
690     FixedAdjustWindowRectEx(&rc, style, menu, exstyle);
691
692     trace("calc window: (%ld,%ld)-(%ld,%ld)\n", rc.left, rc.top, rc.right, rc.bottom);
693     ok(EqualRect(&rc, &rc_window), "window rect does not match: style:exstyle=0x%08lx:0x%08lx, menu=%d\n", style, exstyle, menu);
694
695
696     CopyRect(&rc, &rc_window);
697     DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc);
698     MapWindowPoints(0, hwnd, (LPPOINT)&rc, 2);
699     trace("calc client: (%ld,%ld)-(%ld,%ld)\n", rc.left, rc.top, rc.right, rc.bottom);
700     ok(EqualRect(&rc, &rc_client), "client rect does not match: style:exstyle=0x%08lx:0x%08lx, menu=%d\n", style, exstyle, menu);
701
702     /* Win9x doesn't like WM_NCCALCSIZE with synthetic data and crashes */;
703     if (is_win9x)
704         return;
705
706     /* and now test AdjustWindowRectEx and WM_NCCALCSIZE on synthetic data */
707     SetRect(&rc_client, 0, 0, 250, 150);
708     CopyRect(&rc_window, &rc_client);
709     MapWindowPoints(hwnd, 0, (LPPOINT)&rc_window, 2);
710     FixedAdjustWindowRectEx(&rc_window, style, menu, exstyle);
711     trace("calc window: (%ld,%ld)-(%ld,%ld)\n",
712         rc_window.left, rc_window.top, rc_window.right, rc_window.bottom);
713
714     CopyRect(&rc, &rc_window);
715     DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc);
716     MapWindowPoints(0, hwnd, (LPPOINT)&rc, 2);
717     trace("calc client: (%ld,%ld)-(%ld,%ld)\n", rc.left, rc.top, rc.right, rc.bottom);
718     ok(EqualRect(&rc, &rc_client), "synthetic rect does not match: style:exstyle=0x%08lx:0x%08lx, menu=%d\n", style, exstyle, menu);
719 }
720
721 static LRESULT CALLBACK cbt_hook_proc(int nCode, WPARAM wParam, LPARAM lParam) 
722
723     static const char *CBT_code_name[10] = {
724         "HCBT_MOVESIZE",
725         "HCBT_MINMAX",
726         "HCBT_QS",
727         "HCBT_CREATEWND",
728         "HCBT_DESTROYWND",
729         "HCBT_ACTIVATE",
730         "HCBT_CLICKSKIPPED",
731         "HCBT_KEYSKIPPED",
732         "HCBT_SYSCOMMAND",
733         "HCBT_SETFOCUS" };
734     const char *code_name = (nCode >= 0 && nCode <= HCBT_SETFOCUS) ? CBT_code_name[nCode] : "Unknown";
735
736     trace("CBT: %d (%s), %08x, %08lx\n", nCode, code_name, wParam, lParam);
737
738     /* on HCBT_DESTROYWND window state is undefined */
739     if (nCode != HCBT_DESTROYWND && IsWindow((HWND)wParam))
740     {
741         if (pGetWindowInfo)
742         {
743             WINDOWINFO info;
744
745             /* Win98 actually does check the info.cbSize and doesn't allow
746              * it to be anything except sizeof(WINDOWINFO), while Win95, Win2k,
747              * WinXP do not check it at all.
748              */
749             info.cbSize = sizeof(WINDOWINFO);
750             ok(pGetWindowInfo((HWND)wParam, &info), "GetWindowInfo should not fail\n");
751             /* win2k SP4 returns broken border info if GetWindowInfo
752              * is being called from HCBT_DESTROYWND or HCBT_MINMAX hook proc.
753              */
754             verify_window_info((HWND)wParam, &info, nCode != HCBT_MINMAX);
755         }
756     }
757
758     switch (nCode)
759     {
760         case HCBT_CREATEWND:
761         {
762 #if 0 /* Uncomment this once the test succeeds in all cases */
763             static const RECT rc_null;
764             RECT rc;
765 #endif
766             LONG style;
767             CBT_CREATEWNDA *createwnd = (CBT_CREATEWNDA *)lParam;
768             trace("HCBT_CREATEWND: hwnd %p, parent %p, style %08lx\n",
769                   (HWND)wParam, createwnd->lpcs->hwndParent, createwnd->lpcs->style);
770             ok(createwnd->hwndInsertAfter == HWND_TOP, "hwndInsertAfter should be always HWND_TOP\n");
771
772             /* WS_VISIBLE should be turned off yet */
773             style = createwnd->lpcs->style & ~WS_VISIBLE;
774             ok(style == GetWindowLongA((HWND)wParam, GWL_STYLE),
775                 "style of hwnd and style in the CREATESTRUCT do not match: %08lx != %08lx\n",
776                 GetWindowLongA((HWND)wParam, GWL_STYLE), style);
777
778 #if 0 /* Uncomment this once the test succeeds in all cases */
779             if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD)
780             {
781                 ok(GetParent((HWND)wParam) == hwndMessage,
782                    "wrong result from GetParent %p: message window %p\n",
783                    GetParent((HWND)wParam), hwndMessage);
784             }
785             else
786                 ok(!GetParent((HWND)wParam), "GetParent should return 0 at this point\n");
787
788             ok(!GetWindow((HWND)wParam, GW_OWNER), "GW_OWNER should be set to 0 at this point\n");
789 #endif
790 #if 0       /* while NT assigns GW_HWNDFIRST/LAST some values at this point,
791              * Win9x still has them set to 0.
792              */
793             ok(GetWindow((HWND)wParam, GW_HWNDFIRST) != 0, "GW_HWNDFIRST should not be set to 0 at this point\n");
794             ok(GetWindow((HWND)wParam, GW_HWNDLAST) != 0, "GW_HWNDLAST should not be set to 0 at this point\n");
795 #endif
796             ok(!GetWindow((HWND)wParam, GW_HWNDPREV), "GW_HWNDPREV should be set to 0 at this point\n");
797             ok(!GetWindow((HWND)wParam, GW_HWNDNEXT), "GW_HWNDNEXT should be set to 0 at this point\n");
798
799 #if 0 /* Uncomment this once the test succeeds in all cases */
800             if (pGetAncestor)
801             {
802                 ok(pGetAncestor((HWND)wParam, GA_PARENT) == hwndMessage, "GA_PARENT should be set to hwndMessage at this point\n");
803                 ok(pGetAncestor((HWND)wParam, GA_ROOT) == (HWND)wParam,
804                    "GA_ROOT is set to %p, expected %p\n", pGetAncestor((HWND)wParam, GA_ROOT), (HWND)wParam);
805
806                 if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD)
807                     ok(pGetAncestor((HWND)wParam, GA_ROOTOWNER) == hwndMessage,
808                        "GA_ROOTOWNER should be set to hwndMessage at this point\n");
809                 else
810                     ok(pGetAncestor((HWND)wParam, GA_ROOTOWNER) == (HWND)wParam,
811                        "GA_ROOTOWNER is set to %p, expected %p\n", pGetAncestor((HWND)wParam, GA_ROOTOWNER), (HWND)wParam);
812             }
813
814             ok(GetWindowRect((HWND)wParam, &rc), "GetWindowRect failed\n");
815             ok(EqualRect(&rc, &rc_null), "window rect should be set to 0 HCBT_CREATEWND\n");
816             ok(GetClientRect((HWND)wParam, &rc), "GetClientRect failed\n");
817             ok(EqualRect(&rc, &rc_null), "client rect should be set to 0 on HCBT_CREATEWND\n");
818 #endif
819             break;
820         }
821     }
822
823     return CallNextHookEx(hhook, nCode, wParam, lParam);
824 }
825
826 static void test_shell_window(void)
827 {
828     BOOL ret;
829     DWORD error;
830     HMODULE hinst, hUser32;
831     BOOL (WINAPI*SetShellWindow)(HWND);
832     BOOL (WINAPI*SetShellWindowEx)(HWND, HWND);
833     HWND hwnd1, hwnd2, hwnd3, hwnd4, hwnd5;
834     HWND shellWindow, nextWnd;
835
836     if (!GetWindowLongW(GetDesktopWindow(), GWL_STYLE))
837     {
838         trace("Skipping shell window test on Win9x\n");
839         return;
840     }
841
842     shellWindow = GetShellWindow();
843     hinst = GetModuleHandle(0);
844     hUser32 = GetModuleHandleA("user32");
845
846     SetShellWindow = (void *)GetProcAddress(hUser32, "SetShellWindow");
847     SetShellWindowEx = (void *)GetProcAddress(hUser32, "SetShellWindowEx");
848
849     trace("previous shell window: %p\n", shellWindow);
850
851     if (shellWindow) {
852         DWORD pid;
853         HANDLE hProcess;
854
855         ret = DestroyWindow(shellWindow);
856         error = GetLastError();
857
858         ok(!ret, "DestroyWindow(shellWindow)\n");
859         /* passes on Win XP, but not on Win98 */
860         ok(error==ERROR_ACCESS_DENIED, "ERROR_ACCESS_DENIED after DestroyWindow(shellWindow)\n");
861
862         /* close old shell instance */
863         GetWindowThreadProcessId(shellWindow, &pid);
864         hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
865         ret = TerminateProcess(hProcess, 0);
866         ok(ret, "termination of previous shell process failed: GetLastError()=%ld\n", GetLastError());
867         WaitForSingleObject(hProcess, INFINITE);    /* wait for termination */
868         CloseHandle(hProcess);
869     }
870
871     hwnd1 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST1"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 100, 100, 300, 200, 0, 0, hinst, 0);
872     trace("created window 1: %p\n", hwnd1);
873
874     ret = SetShellWindow(hwnd1);
875     ok(ret, "first call to SetShellWindow(hwnd1)\n");
876     shellWindow = GetShellWindow();
877     ok(shellWindow==hwnd1, "wrong shell window: %p\n", shellWindow);
878
879     ret = SetShellWindow(hwnd1);
880     ok(!ret, "second call to SetShellWindow(hwnd1)\n");
881
882     ret = SetShellWindow(0);
883     error = GetLastError();
884     /* passes on Win XP, but not on Win98
885     ok(!ret, "reset shell window by SetShellWindow(0)\n");
886     ok(error==ERROR_INVALID_WINDOW_HANDLE, "ERROR_INVALID_WINDOW_HANDLE after SetShellWindow(0)\n"); */
887
888     ret = SetShellWindow(hwnd1);
889     /* passes on Win XP, but not on Win98
890     ok(!ret, "third call to SetShellWindow(hwnd1)\n"); */
891
892     todo_wine
893     {
894         SetWindowLong(hwnd1, GWL_EXSTYLE, GetWindowLong(hwnd1,GWL_EXSTYLE)|WS_EX_TOPMOST);
895         ret = GetWindowLong(hwnd1,GWL_EXSTYLE)&WS_EX_TOPMOST? TRUE: FALSE;
896         ok(!ret, "SetWindowExStyle(hwnd1, WS_EX_TOPMOST)\n");
897     }
898
899     ret = DestroyWindow(hwnd1);
900     ok(ret, "DestroyWindow(hwnd1)\n");
901
902     hwnd2 = CreateWindowEx(WS_EX_TOPMOST, TEXT("#32770"), TEXT("TEST2"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 150, 250, 300, 200, 0, 0, hinst, 0);
903     trace("created window 2: %p\n", hwnd2);
904     ret = SetShellWindow(hwnd2);
905     ok(!ret, "SetShellWindow(hwnd2) with WS_EX_TOPMOST\n");
906
907     hwnd3 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST3"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 200, 400, 300, 200, 0, 0, hinst, 0);
908     trace("created window 3: %p\n", hwnd3);
909
910     hwnd4 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST4"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 250, 500, 300, 200, 0, 0, hinst, 0);
911     trace("created window 4: %p\n", hwnd4);
912
913     nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
914     ok(nextWnd==hwnd3, "wrong next window for hwnd4: %p - expected hwnd3\n", nextWnd);
915
916     ret = SetShellWindow(hwnd4);
917     ok(ret, "SetShellWindow(hwnd4)\n");
918     shellWindow = GetShellWindow();
919     ok(shellWindow==hwnd4, "wrong shell window: %p - expected hwnd4\n", shellWindow);
920
921     nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
922     ok(nextWnd==0, "wrong next window for hwnd4: %p - expected 0\n", nextWnd);
923
924     ret = SetWindowPos(hwnd4, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
925     ok(ret, "SetWindowPos(hwnd4, HWND_TOPMOST)\n");
926
927     ret = SetWindowPos(hwnd4, hwnd3, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
928     ok(ret, "SetWindowPos(hwnd4, hwnd3\n");
929
930     ret = SetShellWindow(hwnd3);
931     ok(!ret, "SetShellWindow(hwnd3)\n");
932     shellWindow = GetShellWindow();
933     ok(shellWindow==hwnd4, "wrong shell window: %p - expected hwnd4\n", shellWindow);
934
935     hwnd5 = CreateWindowEx(0, TEXT("#32770"), TEXT("TEST5"), WS_OVERLAPPEDWINDOW/*|WS_VISIBLE*/, 300, 600, 300, 200, 0, 0, hinst, 0);
936     trace("created window 5: %p\n", hwnd5);
937     ret = SetWindowPos(hwnd4, hwnd5, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE);
938     ok(ret, "SetWindowPos(hwnd4, hwnd5)\n");
939
940     todo_wine
941     {
942         nextWnd = GetWindow(hwnd4, GW_HWNDNEXT);
943         ok(nextWnd==0, "wrong next window for hwnd4 after SetWindowPos(): %p - expected 0\n", nextWnd);
944     }
945
946     /* destroy test windows */
947     DestroyWindow(hwnd2);
948     DestroyWindow(hwnd3);
949     DestroyWindow(hwnd4);
950     DestroyWindow(hwnd5);
951 }
952
953 /************** MDI test ****************/
954
955 static const char mdi_lParam_test_message[] = "just a test string";
956
957 static void test_MDI_create(HWND parent, HWND mdi_client, INT first_id)
958 {
959     MDICREATESTRUCTA mdi_cs;
960     HWND mdi_child;
961     static const WCHAR classW[] = {'M','D','I','_','c','h','i','l','d','_','C','l','a','s','s','_','1',0};
962     static const WCHAR titleW[] = {'M','D','I',' ','c','h','i','l','d',0};
963     BOOL isWin9x = FALSE;
964
965     mdi_cs.szClass = "MDI_child_Class_1";
966     mdi_cs.szTitle = "MDI child";
967     mdi_cs.hOwner = GetModuleHandle(0);
968     mdi_cs.x = CW_USEDEFAULT;
969     mdi_cs.y = CW_USEDEFAULT;
970     mdi_cs.cx = CW_USEDEFAULT;
971     mdi_cs.cy = CW_USEDEFAULT;
972     mdi_cs.style = 0;
973     mdi_cs.lParam = (LPARAM)mdi_lParam_test_message;
974     mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
975     ok(mdi_child != 0, "MDI child creation failed\n");
976     ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
977     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
978     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
979
980     mdi_cs.style = 0x7fffffff; /* without WS_POPUP */
981     mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
982     ok(mdi_child != 0, "MDI child creation failed\n");
983     ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
984     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
985     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
986
987     mdi_cs.style = 0xffffffff; /* with WS_POPUP */
988     mdi_child = (HWND)SendMessageA(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
989     if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
990     {
991         ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
992     }
993     else
994     {
995         ok(mdi_child != 0, "MDI child creation failed\n");
996         ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
997         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
998         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
999     }
1000
1001     /* test MDICREATESTRUCT A<->W mapping */
1002     /* MDICREATESTRUCTA and MDICREATESTRUCTW have the same layout */
1003     mdi_cs.style = 0;
1004     mdi_cs.szClass = (LPCSTR)classW;
1005     mdi_cs.szTitle = (LPCSTR)titleW;
1006     SetLastError(0xdeadbeef);
1007     mdi_child = (HWND)SendMessageW(mdi_client, WM_MDICREATE, 0, (LPARAM)&mdi_cs);
1008     if (!mdi_child)
1009     {
1010         if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1011             isWin9x = TRUE;
1012         else
1013             ok(mdi_child != 0, "MDI child creation failed\n");
1014     }
1015     else
1016     {
1017         ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1018         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1019         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1020     }
1021
1022     mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1023                                  0,
1024                                  CW_USEDEFAULT, CW_USEDEFAULT,
1025                                  CW_USEDEFAULT, CW_USEDEFAULT,
1026                                  mdi_client, GetModuleHandle(0),
1027                                  (LPARAM)mdi_lParam_test_message);
1028     ok(mdi_child != 0, "MDI child creation failed\n");
1029     ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1030     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1031     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1032
1033     mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1034                                  0x7fffffff, /* without WS_POPUP */
1035                                  CW_USEDEFAULT, CW_USEDEFAULT,
1036                                  CW_USEDEFAULT, CW_USEDEFAULT,
1037                                  mdi_client, GetModuleHandle(0),
1038                                  (LPARAM)mdi_lParam_test_message);
1039     ok(mdi_child != 0, "MDI child creation failed\n");
1040     ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1041     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1042     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1043
1044     mdi_child = CreateMDIWindowA("MDI_child_Class_1", "MDI child",
1045                                  0xffffffff, /* with WS_POPUP */
1046                                  CW_USEDEFAULT, CW_USEDEFAULT,
1047                                  CW_USEDEFAULT, CW_USEDEFAULT,
1048                                  mdi_client, GetModuleHandle(0),
1049                                  (LPARAM)mdi_lParam_test_message);
1050     if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1051     {
1052         ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1053     }
1054     else
1055     {
1056         ok(mdi_child != 0, "MDI child creation failed\n");
1057         ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1058         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1059         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1060     }
1061
1062     /* test MDICREATESTRUCT A<->W mapping */
1063     SetLastError(0xdeadbeef);
1064     mdi_child = CreateMDIWindowW(classW, titleW,
1065                                  0,
1066                                  CW_USEDEFAULT, CW_USEDEFAULT,
1067                                  CW_USEDEFAULT, CW_USEDEFAULT,
1068                                  mdi_client, GetModuleHandle(0),
1069                                  (LPARAM)mdi_lParam_test_message);
1070     if (!mdi_child)
1071     {
1072         if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1073             isWin9x = TRUE;
1074         else
1075             ok(mdi_child != 0, "MDI child creation failed\n");
1076     }
1077     else
1078     {
1079         ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1080         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1081         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1082     }
1083
1084     mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1085                                 0,
1086                                 CW_USEDEFAULT, CW_USEDEFAULT,
1087                                 CW_USEDEFAULT, CW_USEDEFAULT,
1088                                 mdi_client, 0, GetModuleHandle(0),
1089                                 (LPVOID)mdi_lParam_test_message);
1090     ok(mdi_child != 0, "MDI child creation failed\n");
1091     ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1092     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1093     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1094
1095     mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1096                                 0x7fffffff, /* without WS_POPUP */
1097                                 CW_USEDEFAULT, CW_USEDEFAULT,
1098                                 CW_USEDEFAULT, CW_USEDEFAULT,
1099                                 mdi_client, 0, GetModuleHandle(0),
1100                                 (LPVOID)mdi_lParam_test_message);
1101     ok(mdi_child != 0, "MDI child creation failed\n");
1102     ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1103     SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1104     ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1105
1106     mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_1", "MDI child",
1107                                 0xffffffff, /* with WS_POPUP */
1108                                 CW_USEDEFAULT, CW_USEDEFAULT,
1109                                 CW_USEDEFAULT, CW_USEDEFAULT,
1110                                 mdi_client, 0, GetModuleHandle(0),
1111                                 (LPVOID)mdi_lParam_test_message);
1112     if (GetWindowLongA(mdi_client, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1113     {
1114         ok(!mdi_child, "MDI child with WS_POPUP and with MDIS_ALLCHILDSTYLES should fail\n");
1115     }
1116     else
1117     {
1118         ok(mdi_child != 0, "MDI child creation failed\n");
1119         ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1120         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1121         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1122     }
1123
1124     /* test MDICREATESTRUCT A<->W mapping */
1125     SetLastError(0xdeadbeef);
1126     mdi_child = CreateWindowExW(WS_EX_MDICHILD, classW, titleW,
1127                                 0,
1128                                 CW_USEDEFAULT, CW_USEDEFAULT,
1129                                 CW_USEDEFAULT, CW_USEDEFAULT,
1130                                 mdi_client, 0, GetModuleHandle(0),
1131                                 (LPVOID)mdi_lParam_test_message);
1132     if (!mdi_child)
1133     {
1134         if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1135             isWin9x = TRUE;
1136         else
1137             ok(mdi_child != 0, "MDI child creation failed\n");
1138     }
1139     else
1140     {
1141         ok(GetWindowLongA(mdi_child, GWL_ID) == first_id, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1142         SendMessageA(mdi_client, WM_MDIDESTROY, (WPARAM)mdi_child, 0);
1143         ok(!IsWindow(mdi_child), "WM_MDIDESTROY failed\n");
1144     }
1145
1146     /* This test fails on Win9x */
1147     if (!isWin9x)
1148     {
1149         mdi_child = CreateWindowExA(WS_EX_MDICHILD, "MDI_child_Class_2", "MDI child",
1150                                 WS_CHILD,
1151                                 CW_USEDEFAULT, CW_USEDEFAULT,
1152                                 CW_USEDEFAULT, CW_USEDEFAULT,
1153                                 parent, 0, GetModuleHandle(0),
1154                                 (LPVOID)mdi_lParam_test_message);
1155         ok(!mdi_child, "WS_EX_MDICHILD with a not MDIClient parent should fail\n");
1156     }
1157
1158     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1159                                 WS_CHILD, /* without WS_POPUP */
1160                                 CW_USEDEFAULT, CW_USEDEFAULT,
1161                                 CW_USEDEFAULT, CW_USEDEFAULT,
1162                                 mdi_client, 0, GetModuleHandle(0),
1163                                 (LPVOID)mdi_lParam_test_message);
1164     ok(mdi_child != 0, "MDI child creation failed\n");
1165     ok(GetWindowLongA(mdi_child, GWL_ID) == 0, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1166     DestroyWindow(mdi_child);
1167
1168     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1169                                 WS_CHILD | WS_POPUP, /* with WS_POPUP */
1170                                 CW_USEDEFAULT, CW_USEDEFAULT,
1171                                 CW_USEDEFAULT, CW_USEDEFAULT,
1172                                 mdi_client, 0, GetModuleHandle(0),
1173                                 (LPVOID)mdi_lParam_test_message);
1174     ok(mdi_child != 0, "MDI child creation failed\n");
1175     ok(GetWindowLongA(mdi_child, GWL_ID) == 0, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1176     DestroyWindow(mdi_child);
1177
1178     /* maximized child */
1179     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1180                                 WS_CHILD | WS_MAXIMIZE,
1181                                 CW_USEDEFAULT, CW_USEDEFAULT,
1182                                 CW_USEDEFAULT, CW_USEDEFAULT,
1183                                 mdi_client, 0, GetModuleHandle(0),
1184                                 (LPVOID)mdi_lParam_test_message);
1185     ok(mdi_child != 0, "MDI child creation failed\n");
1186     ok(GetWindowLongA(mdi_child, GWL_ID) == 0, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1187     DestroyWindow(mdi_child);
1188
1189     trace("Creating maximized child with a caption\n");
1190     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1191                                 WS_CHILD | WS_MAXIMIZE | WS_CAPTION,
1192                                 CW_USEDEFAULT, CW_USEDEFAULT,
1193                                 CW_USEDEFAULT, CW_USEDEFAULT,
1194                                 mdi_client, 0, GetModuleHandle(0),
1195                                 (LPVOID)mdi_lParam_test_message);
1196     ok(mdi_child != 0, "MDI child creation failed\n");
1197     ok(GetWindowLongA(mdi_child, GWL_ID) == 0, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1198     DestroyWindow(mdi_child);
1199
1200     trace("Creating maximized child with a caption and a thick frame\n");
1201     mdi_child = CreateWindowExA(0, "MDI_child_Class_2", "MDI child",
1202                                 WS_CHILD | WS_MAXIMIZE | WS_CAPTION | WS_THICKFRAME,
1203                                 CW_USEDEFAULT, CW_USEDEFAULT,
1204                                 CW_USEDEFAULT, CW_USEDEFAULT,
1205                                 mdi_client, 0, GetModuleHandle(0),
1206                                 (LPVOID)mdi_lParam_test_message);
1207     ok(mdi_child != 0, "MDI child creation failed\n");
1208     ok(GetWindowLongA(mdi_child, GWL_ID) == 0, "wrong child id %ld\n", GetWindowLongA(mdi_child, GWL_ID));
1209     DestroyWindow(mdi_child);
1210 }
1211
1212 /**********************************************************************
1213  * MDI_ChildGetMinMaxInfo (copied from windows/mdi.c)
1214  *
1215  * Note: The rule here is that client rect of the maximized MDI child
1216  *       is equal to the client rect of the MDI client window.
1217  */
1218 static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax )
1219 {
1220     RECT rect;
1221
1222     GetClientRect( client, &rect );
1223     AdjustWindowRectEx( &rect, GetWindowLongA( hwnd, GWL_STYLE ),
1224                         0, GetWindowLongA( hwnd, GWL_EXSTYLE ));
1225
1226     rect.right -= rect.left;
1227     rect.bottom -= rect.top;
1228     lpMinMax->ptMaxSize.x = rect.right;
1229     lpMinMax->ptMaxSize.y = rect.bottom;
1230
1231     lpMinMax->ptMaxPosition.x = rect.left;
1232     lpMinMax->ptMaxPosition.y = rect.top;
1233
1234     trace("max rect (%ld,%ld - %ld, %ld)\n",
1235            rect.left, rect.top, rect.right, rect.bottom);
1236 }
1237
1238 static LRESULT WINAPI mdi_child_wnd_proc_1(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1239 {
1240     switch (msg)
1241     {
1242         case WM_NCCREATE:
1243         case WM_CREATE:
1244         {
1245             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
1246             MDICREATESTRUCTA *mdi_cs = (MDICREATESTRUCTA *)cs->lpCreateParams;
1247
1248             ok(cs->dwExStyle & WS_EX_MDICHILD, "WS_EX_MDICHILD should be set\n");
1249             ok(mdi_cs->lParam == (LPARAM)mdi_lParam_test_message, "wrong mdi_cs->lParam\n");
1250
1251             ok(!lstrcmpA(cs->lpszClass, "MDI_child_Class_1"), "wrong class name\n");
1252             ok(!lstrcmpA(cs->lpszClass, mdi_cs->szClass), "class name does not match\n");
1253             ok(!lstrcmpA(cs->lpszName, "MDI child"), "wrong title\n");
1254             ok(!lstrcmpA(cs->lpszName, mdi_cs->szTitle), "title does not match\n");
1255             ok(cs->hInstance == mdi_cs->hOwner, "%p != %p\n", cs->hInstance, mdi_cs->hOwner);
1256
1257             /* MDICREATESTRUCT should have original values */
1258             ok(mdi_cs->style == 0 || mdi_cs->style == 0x7fffffff || mdi_cs->style == 0xffffffff,
1259                 "mdi_cs->style does not match (%08lx)\n", mdi_cs->style);
1260             ok(mdi_cs->x == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->x);
1261             ok(mdi_cs->y == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->y);
1262             ok(mdi_cs->cx == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->cx);
1263             ok(mdi_cs->cy == CW_USEDEFAULT, "%d != CW_USEDEFAULT\n", mdi_cs->cy);
1264
1265             /* CREATESTRUCT should have fixed values */
1266             ok(cs->x != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->x);
1267             ok(cs->y != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->y);
1268
1269             /* cx/cy == CW_USEDEFAULT are translated to NOT zero values */
1270             ok(cs->cx != CW_USEDEFAULT && cs->cx != 0, "%d == CW_USEDEFAULT\n", cs->cx);
1271             ok(cs->cy != CW_USEDEFAULT && cs->cy != 0, "%d == CW_USEDEFAULT\n", cs->cy);
1272
1273             ok(!(cs->style & WS_POPUP), "WS_POPUP is not allowed\n");
1274
1275             if (GetWindowLongA(cs->hwndParent, GWL_STYLE) & MDIS_ALLCHILDSTYLES)
1276             {
1277                 LONG style = mdi_cs->style | WS_CHILD | WS_CLIPSIBLINGS;
1278                 ok(cs->style == style,
1279                    "cs->style does not match (%08lx)\n", cs->style);
1280             }
1281             else
1282             {
1283                 LONG style = mdi_cs->style;
1284                 style &= ~WS_POPUP;
1285                 style |= WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_CAPTION |
1286                     WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
1287                 ok(cs->style == style,
1288                    "cs->style does not match (%08lx)\n", cs->style);
1289             }
1290             break;
1291         }
1292
1293         case WM_GETMINMAXINFO:
1294         {
1295             HWND client = GetParent(hwnd);
1296             RECT rc;
1297             MINMAXINFO *minmax = (MINMAXINFO *)lparam;
1298             MINMAXINFO my_minmax;
1299             LONG style, exstyle;
1300
1301             style = GetWindowLongA(hwnd, GWL_STYLE);
1302             exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
1303
1304             GetWindowRect(client, &rc);
1305             trace("MDI client %p window size = (%ld x %ld)\n", client, rc.right-rc.left, rc.bottom-rc.top);
1306             GetClientRect(client, &rc);
1307             trace("MDI client %p client size = (%ld x %ld)\n", client, rc.right, rc.bottom);
1308             trace("screen size: %d x %d\n", GetSystemMetrics(SM_CXSCREEN),
1309                                             GetSystemMetrics(SM_CYSCREEN));
1310
1311             GetClientRect(client, &rc);
1312             if ((style & WS_CAPTION) == WS_CAPTION)
1313                 style &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
1314             AdjustWindowRectEx(&rc, style, 0, exstyle);
1315             trace("MDI child: calculated max window size = (%ld x %ld)\n", rc.right-rc.left, rc.bottom-rc.top);
1316
1317             trace("ptReserved = (%ld,%ld)\n"
1318                   "ptMaxSize = (%ld,%ld)\n"
1319                   "ptMaxPosition = (%ld,%ld)\n"
1320                   "ptMinTrackSize = (%ld,%ld)\n"
1321                   "ptMaxTrackSize = (%ld,%ld)\n",
1322                   minmax->ptReserved.x, minmax->ptReserved.y,
1323                   minmax->ptMaxSize.x, minmax->ptMaxSize.y,
1324                   minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
1325                   minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
1326                   minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
1327
1328             ok(minmax->ptMaxSize.x == rc.right - rc.left, "default width of maximized child %ld != %ld\n",
1329                minmax->ptMaxSize.x, rc.right - rc.left);
1330             ok(minmax->ptMaxSize.y == rc.bottom - rc.top, "default height of maximized child %ld != %ld\n",
1331                minmax->ptMaxSize.y, rc.bottom - rc.top);
1332
1333             DefMDIChildProcA(hwnd, msg, wparam, lparam);
1334
1335             trace("DefMDIChildProc returned:\n"
1336                   "ptReserved = (%ld,%ld)\n"
1337                   "ptMaxSize = (%ld,%ld)\n"
1338                   "ptMaxPosition = (%ld,%ld)\n"
1339                   "ptMinTrackSize = (%ld,%ld)\n"
1340                   "ptMaxTrackSize = (%ld,%ld)\n",
1341                   minmax->ptReserved.x, minmax->ptReserved.y,
1342                   minmax->ptMaxSize.x, minmax->ptMaxSize.y,
1343                   minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
1344                   minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
1345                   minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
1346
1347             MDI_ChildGetMinMaxInfo(client, hwnd, &my_minmax);
1348             ok(minmax->ptMaxSize.x == my_minmax.ptMaxSize.x, "default width of maximized child %ld != %ld\n",
1349                minmax->ptMaxSize.x, my_minmax.ptMaxSize.x);
1350             ok(minmax->ptMaxSize.y == my_minmax.ptMaxSize.y, "default height of maximized child %ld != %ld\n",
1351                minmax->ptMaxSize.y, my_minmax.ptMaxSize.y);
1352
1353             return 1;
1354         }
1355
1356         case WM_MDIACTIVATE:
1357         {
1358             HWND active, client = GetParent(hwnd);
1359             /*trace("%p WM_MDIACTIVATE %08x %08lx\n", hwnd, wparam, lparam);*/
1360             active = (HWND)SendMessageA(client, WM_MDIGETACTIVE, 0, 0);
1361             if (hwnd == (HWND)lparam) /* if we are being activated */
1362                 ok (active == (HWND)lparam, "new active %p != active %p\n", (HWND)lparam, active);
1363             else
1364                 ok (active == (HWND)wparam, "old active %p != active %p\n", (HWND)wparam, active);
1365             break;
1366         }
1367     }
1368     return DefMDIChildProcA(hwnd, msg, wparam, lparam);
1369 }
1370
1371 static LRESULT WINAPI mdi_child_wnd_proc_2(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1372 {
1373     switch (msg)
1374     {
1375         case WM_NCCREATE:
1376         case WM_CREATE:
1377         {
1378             CREATESTRUCTA *cs = (CREATESTRUCTA *)lparam;
1379
1380             trace("%s\n", (msg == WM_NCCREATE) ? "WM_NCCREATE" : "WM_CREATE");
1381             trace("x %d, y %d, cx %d, cy %d\n", cs->x, cs->y, cs->cx, cs->cy);
1382
1383             ok(!(cs->dwExStyle & WS_EX_MDICHILD), "WS_EX_MDICHILD should not be set\n");
1384             ok(cs->lpCreateParams == mdi_lParam_test_message, "wrong cs->lpCreateParams\n");
1385
1386             ok(!lstrcmpA(cs->lpszClass, "MDI_child_Class_2"), "wrong class name\n");
1387             ok(!lstrcmpA(cs->lpszName, "MDI child"), "wrong title\n");
1388
1389             /* CREATESTRUCT should have fixed values */
1390             /* For some reason Win9x doesn't translate cs->x from CW_USEDEFAULT,
1391                while NT does. */
1392             /*ok(cs->x != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->x);*/
1393             ok(cs->y != CW_USEDEFAULT, "%d == CW_USEDEFAULT\n", cs->y);
1394
1395             /* cx/cy == CW_USEDEFAULT are translated to 0 */
1396             /* For some reason Win98 doesn't translate cs->cx from CW_USEDEFAULT,
1397                while Win95, Win2k, WinXP do. */
1398             /*ok(cs->cx == 0, "%d != 0\n", cs->cx);*/
1399             ok(cs->cy == 0, "%d != 0\n", cs->cy);
1400             break;
1401         }
1402
1403         case WM_GETMINMAXINFO:
1404         {
1405             HWND parent = GetParent(hwnd);
1406             RECT rc;
1407             MINMAXINFO *minmax = (MINMAXINFO *)lparam;
1408             LONG style, exstyle;
1409
1410             trace("WM_GETMINMAXINFO\n");
1411
1412             style = GetWindowLongA(hwnd, GWL_STYLE);
1413             exstyle = GetWindowLongA(hwnd, GWL_EXSTYLE);
1414
1415             GetClientRect(parent, &rc);
1416             trace("parent %p client size = (%ld x %ld)\n", parent, rc.right, rc.bottom);
1417
1418             GetClientRect(parent, &rc);
1419             if ((style & WS_CAPTION) == WS_CAPTION)
1420                 style &= ~WS_BORDER; /* WS_CAPTION = WS_DLGFRAME | WS_BORDER */
1421             AdjustWindowRectEx(&rc, style, 0, exstyle);
1422             trace("calculated max child window size = (%ld x %ld)\n", rc.right-rc.left, rc.bottom-rc.top);
1423
1424             trace("ptReserved = (%ld,%ld)\n"
1425                   "ptMaxSize = (%ld,%ld)\n"
1426                   "ptMaxPosition = (%ld,%ld)\n"
1427                   "ptMinTrackSize = (%ld,%ld)\n"
1428                   "ptMaxTrackSize = (%ld,%ld)\n",
1429                   minmax->ptReserved.x, minmax->ptReserved.y,
1430                   minmax->ptMaxSize.x, minmax->ptMaxSize.y,
1431                   minmax->ptMaxPosition.x, minmax->ptMaxPosition.y,
1432                   minmax->ptMinTrackSize.x, minmax->ptMinTrackSize.y,
1433                   minmax->ptMaxTrackSize.x, minmax->ptMaxTrackSize.y);
1434
1435             ok(minmax->ptMaxSize.x == rc.right - rc.left, "default width of maximized child %ld != %ld\n",
1436                minmax->ptMaxSize.x, rc.right - rc.left);
1437             ok(minmax->ptMaxSize.y == rc.bottom - rc.top, "default height of maximized child %ld != %ld\n",
1438                minmax->ptMaxSize.y, rc.bottom - rc.top);
1439             break;
1440         }
1441
1442         case WM_WINDOWPOSCHANGED:
1443         {
1444             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1445             RECT rc1, rc2;
1446
1447             GetWindowRect(hwnd, &rc1);
1448             trace("window: (%ld,%ld)-(%ld,%ld)\n", rc1.left, rc1.top, rc1.right, rc1.bottom);
1449             SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
1450             /* note: winpos coordinates are relative to parent */
1451             MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
1452             trace("pos: (%ld,%ld)-(%ld,%ld)\n", rc2.left, rc2.top, rc2.right, rc2.bottom);
1453             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1454
1455             GetWindowRect(hwnd, &rc1);
1456             GetClientRect(hwnd, &rc2);
1457             DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
1458             MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
1459             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1460         }
1461         /* fall through */
1462         case WM_WINDOWPOSCHANGING:
1463         {
1464             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1465             WINDOWPOS my_winpos = *winpos;
1466
1467             trace("%s\n", (msg == WM_WINDOWPOSCHANGING) ? "WM_WINDOWPOSCHANGING" : "WM_WINDOWPOSCHANGED");
1468             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1469                   winpos->hwnd, winpos->hwndInsertAfter,
1470                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1471
1472             DefWindowProcA(hwnd, msg, wparam, lparam);
1473
1474             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1475                   winpos->hwnd, winpos->hwndInsertAfter,
1476                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1477
1478             ok(!memcmp(&my_winpos, winpos, sizeof(WINDOWPOS)),
1479                "DefWindowProc should not change WINDOWPOS values\n");
1480
1481             return 1;
1482         }
1483     }
1484     return DefWindowProcA(hwnd, msg, wparam, lparam);
1485 }
1486
1487 static LRESULT WINAPI mdi_main_wnd_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1488 {
1489     static HWND mdi_client;
1490
1491     switch (msg)
1492     {
1493         case WM_CREATE:
1494         {
1495             CLIENTCREATESTRUCT client_cs;
1496             RECT rc;
1497
1498             GetClientRect(hwnd, &rc);
1499
1500             client_cs.hWindowMenu = 0;
1501             client_cs.idFirstChild = 1;
1502
1503             /* MDIClient without MDIS_ALLCHILDSTYLES */
1504             mdi_client = CreateWindowExA(0, "mdiclient",
1505                                          NULL,
1506                                          WS_CHILD /*| WS_VISIBLE*/,
1507                                           /* tests depend on a not zero MDIClient size */
1508                                          0, 0, rc.right, rc.bottom,
1509                                          hwnd, 0, GetModuleHandle(0),
1510                                          (LPVOID)&client_cs);
1511             assert(mdi_client);
1512             test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1513             DestroyWindow(mdi_client);
1514
1515             /* MDIClient with MDIS_ALLCHILDSTYLES */
1516             mdi_client = CreateWindowExA(0, "mdiclient",
1517                                          NULL,
1518                                          WS_CHILD | MDIS_ALLCHILDSTYLES /*| WS_VISIBLE*/,
1519                                           /* tests depend on a not zero MDIClient size */
1520                                          0, 0, rc.right, rc.bottom,
1521                                          hwnd, 0, GetModuleHandle(0),
1522                                          (LPVOID)&client_cs);
1523             assert(mdi_client);
1524             test_MDI_create(hwnd, mdi_client, client_cs.idFirstChild);
1525             DestroyWindow(mdi_client);
1526             break;
1527         }
1528
1529         case WM_WINDOWPOSCHANGED:
1530         {
1531             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1532             RECT rc1, rc2;
1533
1534             GetWindowRect(hwnd, &rc1);
1535             trace("window: (%ld,%ld)-(%ld,%ld)\n", rc1.left, rc1.top, rc1.right, rc1.bottom);
1536             SetRect(&rc2, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy);
1537             /* note: winpos coordinates are relative to parent */
1538             MapWindowPoints(GetParent(hwnd), 0, (LPPOINT)&rc2, 2);
1539             trace("pos: (%ld,%ld)-(%ld,%ld)\n", rc2.left, rc2.top, rc2.right, rc2.bottom);
1540             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1541
1542             GetWindowRect(hwnd, &rc1);
1543             GetClientRect(hwnd, &rc2);
1544             DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)&rc1);
1545             MapWindowPoints(0, hwnd, (LPPOINT)&rc1, 2);
1546             ok(EqualRect(&rc1, &rc2), "rects do not match\n");
1547         }
1548         /* fall through */
1549         case WM_WINDOWPOSCHANGING:
1550         {
1551             WINDOWPOS *winpos = (WINDOWPOS *)lparam;
1552             WINDOWPOS my_winpos = *winpos;
1553
1554             trace("%s\n", (msg == WM_WINDOWPOSCHANGING) ? "WM_WINDOWPOSCHANGING" : "WM_WINDOWPOSCHANGED");
1555             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1556                   winpos->hwnd, winpos->hwndInsertAfter,
1557                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1558
1559             DefWindowProcA(hwnd, msg, wparam, lparam);
1560
1561             trace("%p after %p, x %d, y %d, cx %d, cy %d flags %08x\n",
1562                   winpos->hwnd, winpos->hwndInsertAfter,
1563                   winpos->x, winpos->y, winpos->cx, winpos->cy, winpos->flags);
1564
1565             ok(!memcmp(&my_winpos, winpos, sizeof(WINDOWPOS)),
1566                "DefWindowProc should not change WINDOWPOS values\n");
1567
1568             return 1;
1569         }
1570
1571         case WM_CLOSE:
1572             PostQuitMessage(0);
1573             break;
1574     }
1575     return DefFrameProcA(hwnd, mdi_client, msg, wparam, lparam);
1576 }
1577
1578 static BOOL mdi_RegisterWindowClasses(void)
1579 {
1580     WNDCLASSA cls;
1581
1582     cls.style = 0;
1583     cls.lpfnWndProc = mdi_main_wnd_procA;
1584     cls.cbClsExtra = 0;
1585     cls.cbWndExtra = 0;
1586     cls.hInstance = GetModuleHandleA(0);
1587     cls.hIcon = 0;
1588     cls.hCursor = LoadCursorA(0, (LPSTR)IDC_ARROW);
1589     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
1590     cls.lpszMenuName = NULL;
1591     cls.lpszClassName = "MDI_parent_Class";
1592     if(!RegisterClassA(&cls)) return FALSE;
1593
1594     cls.lpfnWndProc = mdi_child_wnd_proc_1;
1595     cls.lpszClassName = "MDI_child_Class_1";
1596     if(!RegisterClassA(&cls)) return FALSE;
1597
1598     cls.lpfnWndProc = mdi_child_wnd_proc_2;
1599     cls.lpszClassName = "MDI_child_Class_2";
1600     if(!RegisterClassA(&cls)) return FALSE;
1601
1602     return TRUE;
1603 }
1604
1605 static void test_mdi(void)
1606 {
1607     HWND mdi_hwndMain;
1608     /*MSG msg;*/
1609
1610     if (!mdi_RegisterWindowClasses()) assert(0);
1611
1612     mdi_hwndMain = CreateWindowExA(0, "MDI_parent_Class", "MDI parent window",
1613                                    WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
1614                                    WS_MAXIMIZEBOX /*| WS_VISIBLE*/,
1615                                    100, 100, CW_USEDEFAULT, CW_USEDEFAULT,
1616                                    GetDesktopWindow(), 0,
1617                                    GetModuleHandle(0), NULL);
1618     assert(mdi_hwndMain);
1619 /*
1620     while(GetMessage(&msg, 0, 0, 0))
1621     {
1622         TranslateMessage(&msg);
1623         DispatchMessage(&msg);
1624     }
1625 */
1626 }
1627
1628 static void test_icons(void)
1629 {
1630     WNDCLASSEXA cls;
1631     HWND hwnd;
1632     HICON icon = LoadIconA(0, (LPSTR)IDI_APPLICATION);
1633     HICON icon2 = LoadIconA(0, (LPSTR)IDI_QUESTION);
1634     HICON small_icon = LoadImageA(0, (LPSTR)IDI_APPLICATION, IMAGE_ICON,
1635                                   GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED );
1636     HICON res;
1637
1638     cls.cbSize = sizeof(cls);
1639     cls.style = 0;
1640     cls.lpfnWndProc = DefWindowProcA;
1641     cls.cbClsExtra = 0;
1642     cls.cbWndExtra = 0;
1643     cls.hInstance = 0;
1644     cls.hIcon = LoadIconA(0, (LPSTR)IDI_HAND);
1645     cls.hIconSm = small_icon;
1646     cls.hCursor = LoadCursorA(0, (LPSTR)IDC_ARROW);
1647     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
1648     cls.lpszMenuName = NULL;
1649     cls.lpszClassName = "IconWindowClass";
1650
1651     RegisterClassExA(&cls);
1652
1653     hwnd = CreateWindowExA(0, "IconWindowClass", "icon test", 0,
1654                            100, 100, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, NULL, NULL);
1655     assert( hwnd );
1656
1657     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1658     ok( res == 0, "wrong big icon %p/0\n", res );
1659     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_BIG, (LPARAM)icon );
1660     ok( res == 0, "wrong previous big icon %p/0\n", res );
1661     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1662     ok( res == icon, "wrong big icon after set %p/%p\n", res, icon );
1663     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_BIG, (LPARAM)icon2 );
1664     ok( res == icon, "wrong previous big icon %p/%p\n", res, icon );
1665     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1666     ok( res == icon2, "wrong big icon after set %p/%p\n", res, icon2 );
1667
1668     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1669     ok( res == 0, "wrong small icon %p/0\n", res );
1670     /* this test is XP specific */
1671     /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1672     ok( res != 0, "wrong small icon %p\n", res );*/
1673     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_SMALL, (LPARAM)icon );
1674     ok( res == 0, "wrong previous small icon %p/0\n", res );
1675     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1676     ok( res == icon, "wrong small icon after set %p/%p\n", res, icon );
1677     /* this test is XP specific */
1678     /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1679     ok( res == icon, "wrong small icon after set %p/%p\n", res, icon );*/
1680     res = (HICON)SendMessageA( hwnd, WM_SETICON, ICON_SMALL, (LPARAM)small_icon );
1681     ok( res == icon, "wrong previous small icon %p/%p\n", res, icon );
1682     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL, 0 );
1683     ok( res == small_icon, "wrong small icon after set %p/%p\n", res, small_icon );
1684     /* this test is XP specific */
1685     /*res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_SMALL2, 0 );
1686     ok( res == small_icon, "wrong small icon after set %p/%p\n", res, small_icon );*/
1687
1688     /* make sure the big icon hasn't changed */
1689     res = (HICON)SendMessageA( hwnd, WM_GETICON, ICON_BIG, 0 );
1690     ok( res == icon2, "wrong big icon after set %p/%p\n", res, icon2 );
1691 }
1692
1693 static LRESULT WINAPI nccalcsize_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
1694 {
1695     if (msg == WM_NCCALCSIZE)
1696     {
1697         RECT *rect = (RECT *)lparam;
1698         /* first time around increase the rectangle, next time decrease it */
1699         if (rect->left == 100) InflateRect( rect, 10, 10 );
1700         else InflateRect( rect, -10, -10 );
1701         return 0;
1702     }
1703     return DefWindowProc( hwnd, msg, wparam, lparam );
1704 }
1705
1706 static void test_SetWindowPos(HWND hwnd)
1707 {
1708     RECT orig_win_rc, rect;
1709     LONG_PTR old_proc;
1710     BOOL is_win9x = GetWindowLongPtrW(hwnd, GWLP_WNDPROC) == 0;
1711
1712     SetRect(&rect, 111, 222, 333, 444);
1713     ok(!GetWindowRect(0, &rect), "GetWindowRect succeeded\n");
1714     ok(rect.left == 111 && rect.top == 222 && rect.right == 333 && rect.bottom == 444,
1715        "wrong window rect %ld,%ld-%ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom );
1716
1717     SetRect(&rect, 111, 222, 333, 444);
1718     ok(!GetClientRect(0, &rect), "GetClientRect succeeded\n");
1719     ok(rect.left == 111 && rect.top == 222 && rect.right == 333 && rect.bottom == 444,
1720        "wrong window rect %ld,%ld-%ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom );
1721
1722     GetWindowRect(hwnd, &orig_win_rc);
1723
1724     old_proc = SetWindowLongPtr( hwnd, GWLP_WNDPROC, (ULONG_PTR)nccalcsize_proc );
1725     SetWindowPos(hwnd, 0, 100, 100, 0, 0, SWP_NOZORDER|SWP_FRAMECHANGED);
1726     GetWindowRect( hwnd, &rect );
1727     ok( rect.left == 100 && rect.top == 100 && rect.right == 100 && rect.bottom == 100,
1728         "invalid window rect %ld,%ld-%ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom );
1729     GetClientRect( hwnd, &rect );
1730     MapWindowPoints( hwnd, 0, (POINT *)&rect, 2 );
1731     ok( rect.left == 90 && rect.top == 90 && rect.right == 110 && rect.bottom == 110,
1732         "invalid client rect %ld,%ld-%ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom );
1733
1734     SetWindowPos(hwnd, 0, 200, 200, 0, 0, SWP_NOZORDER|SWP_FRAMECHANGED);
1735     GetWindowRect( hwnd, &rect );
1736     ok( rect.left == 200 && rect.top == 200 && rect.right == 200 && rect.bottom == 200,
1737         "invalid window rect %ld,%ld-%ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom );
1738     GetClientRect( hwnd, &rect );
1739     MapWindowPoints( hwnd, 0, (POINT *)&rect, 2 );
1740     ok( rect.left == 210 && rect.top == 210 && rect.right == 190 && rect.bottom == 190,
1741         "invalid client rect %ld,%ld-%ld,%ld\n", rect.left, rect.top, rect.right, rect.bottom );
1742
1743     SetWindowPos(hwnd, 0, orig_win_rc.left, orig_win_rc.top,
1744                  orig_win_rc.right, orig_win_rc.bottom, 0);
1745     SetWindowLongPtr( hwnd, GWLP_WNDPROC, old_proc );
1746
1747     /* Win9x truncates coordinates to 16-bit irrespectively */
1748     if (!is_win9x)
1749     {
1750         SetWindowPos(hwnd, 0, -32769, -40000, -32769, -90000, SWP_NOMOVE);
1751         SetWindowPos(hwnd, 0, 32768, 40000, 32768, 40000, SWP_NOMOVE);
1752
1753         SetWindowPos(hwnd, 0, -32769, -40000, -32769, -90000, SWP_NOSIZE);
1754         SetWindowPos(hwnd, 0, 32768, 40000, 32768, 40000, SWP_NOSIZE);
1755     }
1756
1757     SetWindowPos(hwnd, 0, orig_win_rc.left, orig_win_rc.top,
1758                  orig_win_rc.right, orig_win_rc.bottom, 0);
1759 }
1760
1761 static void test_SetMenu(HWND parent)
1762 {
1763     HWND child;
1764     HMENU hMenu, ret;
1765     BOOL is_win9x = GetWindowLongPtrW(parent, GWLP_WNDPROC) == 0;
1766     BOOL retok;
1767     DWORD style;
1768
1769     hMenu = CreateMenu();
1770     assert(hMenu);
1771
1772     ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
1773 #if 0
1774     /* fails on (at least) Wine, NT4, XP SP2 */
1775     test_nonclient_area(parent); 
1776 #endif
1777     ret = GetMenu(parent);
1778     ok(ret == hMenu, "unexpected menu id %p\n", ret);
1779     /* test whether we can destroy a menu assigned to a window */
1780     retok = DestroyMenu(hMenu);
1781     ok( retok, "DestroyMenu error %ld\n", GetLastError());
1782     ok(!IsMenu(hMenu), "menu handle should be not valid after DestroyMenu\n");
1783     ret = GetMenu(parent);
1784     /* This test fails on Win9x */
1785     if (!is_win9x)
1786         ok(ret == hMenu, "unexpected menu id %p\n", ret);
1787     ok(SetMenu(parent, 0), "SetMenu(0) on a top level window should not fail\n");
1788     test_nonclient_area(parent);
1789
1790     hMenu = CreateMenu();
1791     assert(hMenu);
1792
1793     /* parent */
1794     ret = GetMenu(parent);
1795     ok(ret == 0, "unexpected menu id %p\n", ret);
1796
1797     ok(!SetMenu(parent, (HMENU)20), "SetMenu with invalid menu handle should fail\n");
1798     test_nonclient_area(parent);
1799     ret = GetMenu(parent);
1800     ok(ret == 0, "unexpected menu id %p\n", ret);
1801
1802     ok(SetMenu(parent, hMenu), "SetMenu on a top level window should not fail\n");
1803 #if 0
1804     /* fails on (at least) Wine, NT4, XP SP2 */
1805     test_nonclient_area(parent);
1806 #endif
1807     ret = GetMenu(parent);
1808     ok(ret == hMenu, "unexpected menu id %p\n", ret);
1809
1810     ok(SetMenu(parent, 0), "SetMenu(0) on a top level window should not fail\n");
1811     test_nonclient_area(parent);
1812     ret = GetMenu(parent);
1813     ok(ret == 0, "unexpected menu id %p\n", ret);
1814  
1815     /* child */
1816     child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, parent, (HMENU)10, 0, NULL);
1817     assert(child);
1818
1819     ret = GetMenu(child);
1820     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1821
1822     ok(!SetMenu(child, (HMENU)20), "SetMenu with invalid menu handle should fail\n");
1823     test_nonclient_area(child);
1824     ret = GetMenu(child);
1825     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1826
1827     ok(!SetMenu(child, hMenu), "SetMenu on a child window should fail\n");
1828     test_nonclient_area(child);
1829     ret = GetMenu(child);
1830     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1831
1832     ok(!SetMenu(child, 0), "SetMenu(0) on a child window should fail\n");
1833     test_nonclient_area(child);
1834     ret = GetMenu(child);
1835     ok(ret == (HMENU)10, "unexpected menu id %p\n", ret);
1836
1837     style = GetWindowLong(child, GWL_STYLE);
1838     SetWindowLong(child, GWL_STYLE, style | WS_POPUP);
1839     ok(SetMenu(child, hMenu), "SetMenu on a popup child window should not fail\n");
1840     ok(SetMenu(child, 0), "SetMenu on a popup child window should not fail\n");
1841     SetWindowLong(child, GWL_STYLE, style);
1842
1843     SetWindowLong(child, GWL_STYLE, style | WS_OVERLAPPED);
1844     ok(!SetMenu(child, hMenu), "SetMenu on a overlapped child window should fail\n");
1845     SetWindowLong(child, GWL_STYLE, style);
1846
1847     DestroyWindow(child);
1848     DestroyMenu(hMenu);
1849 }
1850
1851 static void test_window_tree(HWND parent, const DWORD *style, const int *order, int total)
1852 {
1853     HWND child[5], hwnd;
1854     int i;
1855
1856     assert(total <= 5);
1857
1858     hwnd = GetWindow(parent, GW_CHILD);
1859     ok(!hwnd, "have to start without children to perform the test\n");
1860
1861     for (i = 0; i < total; i++)
1862     {
1863         child[i] = CreateWindowExA(0, "static", "", style[i], 0,0,10,10,
1864                                    parent, 0, 0, NULL);
1865         trace("child[%d] = %p\n", i, child[i]);
1866         ok(child[i] != 0, "CreateWindowEx failed to create child window\n");
1867     }
1868
1869     hwnd = GetWindow(parent, GW_CHILD);
1870     ok(hwnd != 0, "GetWindow(GW_CHILD) failed\n");
1871     ok(hwnd == GetWindow(child[total - 1], GW_HWNDFIRST), "GW_HWNDFIRST is wrong\n");
1872     ok(child[order[total - 1]] == GetWindow(child[0], GW_HWNDLAST), "GW_HWNDLAST is wrong\n");
1873
1874     for (i = 0; i < total; i++)
1875     {
1876         trace("hwnd[%d] = %p\n", i, hwnd);
1877         ok(child[order[i]] == hwnd, "Z order of child #%d is wrong\n", i);
1878
1879         hwnd = GetWindow(hwnd, GW_HWNDNEXT);
1880     }
1881
1882     for (i = 0; i < total; i++)
1883         ok(DestroyWindow(child[i]), "DestroyWindow failed\n");
1884 }
1885
1886 static void test_children_zorder(HWND parent)
1887 {
1888     const DWORD simple_style[5] = { WS_CHILD, WS_CHILD, WS_CHILD, WS_CHILD,
1889                                     WS_CHILD };
1890     const int simple_order[5] = { 0, 1, 2, 3, 4 };
1891
1892     const DWORD complex_style[5] = { WS_CHILD, WS_CHILD | WS_MAXIMIZE,
1893                              WS_CHILD | WS_VISIBLE, WS_CHILD,
1894                              WS_CHILD | WS_MAXIMIZE | WS_VISIBLE };
1895     const int complex_order_1[1] = { 0 };
1896     const int complex_order_2[2] = { 1, 0 };
1897     const int complex_order_3[3] = { 1, 0, 2 };
1898     const int complex_order_4[4] = { 1, 0, 2, 3 };
1899     const int complex_order_5[5] = { 4, 1, 0, 2, 3 };
1900
1901     /* simple WS_CHILD */
1902     test_window_tree(parent, simple_style, simple_order, 5);
1903
1904     /* complex children styles */
1905     test_window_tree(parent, complex_style, complex_order_1, 1);
1906     test_window_tree(parent, complex_style, complex_order_2, 2);
1907     test_window_tree(parent, complex_style, complex_order_3, 3);
1908     test_window_tree(parent, complex_style, complex_order_4, 4);
1909     test_window_tree(parent, complex_style, complex_order_5, 5);
1910 }
1911
1912 static void test_SetFocus(HWND hwnd)
1913 {
1914     HWND child;
1915
1916     /* check if we can set focus to non-visible windows */
1917
1918     ShowWindow(hwnd, SW_SHOW);
1919     SetFocus(0);
1920     SetFocus(hwnd);
1921     ok( GetFocus() == hwnd, "Failed to set focus to visible window %p\n", hwnd );
1922     ok( GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE, "Window %p not visible\n", hwnd );
1923     ShowWindow(hwnd, SW_HIDE);
1924     SetFocus(0);
1925     SetFocus(hwnd);
1926     ok( GetFocus() == hwnd, "Failed to set focus to invisible window %p\n", hwnd );
1927     ok( !(GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE), "Window %p still visible\n", hwnd );
1928     child = CreateWindowExA(0, "static", NULL, WS_CHILD, 0, 0, 0, 0, hwnd, 0, 0, NULL);
1929     assert(child);
1930     SetFocus(child);
1931     ok( GetFocus() == child, "Failed to set focus to invisible child %p\n", child );
1932     ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
1933     ShowWindow(child, SW_SHOW);
1934     ok( GetWindowLong(child,GWL_STYLE) & WS_VISIBLE, "Child %p is not visible\n", child );
1935     ok( GetFocus() == child, "Focus no longer on child %p\n", child );
1936     ShowWindow(child, SW_HIDE);
1937     ok( !(GetWindowLong(child,GWL_STYLE) & WS_VISIBLE), "Child %p is visible\n", child );
1938     ok( GetFocus() == hwnd, "Focus should be on parent %p, not %p\n", hwnd, GetFocus() );
1939     ShowWindow(child, SW_SHOW);
1940     SetFocus(child);
1941     ok( GetFocus() == child, "Focus should be on child %p\n", child );
1942     SetWindowPos(child,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_HIDEWINDOW);
1943     ok( GetFocus() == child, "Focus should still be on child %p\n", child );
1944
1945     ShowWindow(child, SW_HIDE);
1946     SetFocus(hwnd);
1947     ok( GetFocus() == hwnd, "Focus should be on parent %p, not %p\n", hwnd, GetFocus() );
1948     SetWindowPos(child,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_SHOWWINDOW);
1949     ok( GetFocus() == hwnd, "Focus should still be on parent %p, not %p\n", hwnd, GetFocus() );
1950     ShowWindow(child, SW_HIDE);
1951     ok( GetFocus() == hwnd, "Focus should still be on parent %p, not %p\n", hwnd, GetFocus() );
1952
1953     ShowWindow(hwnd, SW_SHOW);
1954     ShowWindow(child, SW_SHOW);
1955     SetFocus(child);
1956     ok( GetFocus() == child, "Focus should be on child %p\n", child );
1957     EnableWindow(hwnd, FALSE);
1958     ok( GetFocus() == child, "Focus should still be on child %p\n", child );
1959     EnableWindow(hwnd, TRUE);
1960
1961     DestroyWindow( child );
1962 }
1963
1964 static void test_SetActiveWindow(HWND hwnd)
1965 {
1966     HWND hwnd2;
1967
1968     ShowWindow(hwnd, SW_SHOW);
1969     SetActiveWindow(0);
1970     SetActiveWindow(hwnd);
1971     ok( GetActiveWindow() == hwnd, "Failed to set focus to visible window %p\n", hwnd );
1972     SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
1973     ok( GetActiveWindow() == hwnd, "Window %p no longer active\n", hwnd );
1974     SetWindowPos(hwnd,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_SHOWWINDOW);
1975     ShowWindow(hwnd, SW_HIDE);
1976     ok( GetActiveWindow() != hwnd, "Window %p is still active\n", hwnd );
1977
1978     /* trace("**testing an invisible window now\n"); */
1979     SetActiveWindow(hwnd);
1980     ok( GetActiveWindow() == hwnd, "Window %p not active\n", hwnd );
1981     ok( !(GetWindowLong(hwnd,GWL_STYLE) & WS_VISIBLE), "Window %p is visible\n", hwnd );
1982     
1983     ShowWindow(hwnd, SW_SHOW);
1984
1985     hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
1986     ok( GetActiveWindow() == hwnd2, "Window %p is not active\n", hwnd2 );
1987     DestroyWindow(hwnd2);
1988     ok( GetActiveWindow() != hwnd2, "Window %p is still active\n", hwnd2 );
1989
1990     hwnd2 = CreateWindowExA(0, "static", NULL, WS_POPUP|WS_VISIBLE, 0, 0, 0, 0, hwnd, 0, 0, NULL);
1991     ok( GetActiveWindow() == hwnd2, "Window %p is not active\n", hwnd2 );
1992     SetWindowPos(hwnd2,0,0,0,0,0,SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE|SWP_HIDEWINDOW);
1993     ok( GetActiveWindow() == hwnd2, "Window %p no longer active (%p)\n", hwnd2, GetActiveWindow() );
1994     DestroyWindow(hwnd2);
1995     ok( GetActiveWindow() != hwnd2, "Window %p is still active\n", hwnd2 );
1996 }
1997
1998 static void check_wnd_state(HWND active, HWND foreground, HWND focus, HWND capture)
1999 {
2000     ok(active == GetActiveWindow(), "GetActiveWindow() = %p\n", GetActiveWindow());
2001     if (foreground)
2002         ok(foreground == GetForegroundWindow(), "GetForegroundWindow() = %p\n", GetForegroundWindow());
2003     ok(focus == GetFocus(), "GetFocus() = %p\n", GetFocus());
2004     ok(capture == GetCapture(), "GetCapture() = %p\n", GetCapture());
2005 }
2006
2007 static WNDPROC old_button_proc;
2008
2009 static LRESULT WINAPI button_hook_proc(HWND button, UINT msg, WPARAM wparam, LPARAM lparam)
2010 {
2011     LRESULT ret;
2012     USHORT key_state;
2013
2014     key_state = GetKeyState(VK_LBUTTON);
2015     ok(!(key_state & 0x8000), "VK_LBUTTON should not be pressed, state %04x\n", key_state);
2016
2017     ret = CallWindowProcA(old_button_proc, button, msg, wparam, lparam);
2018
2019     if (msg == WM_LBUTTONDOWN)
2020     {
2021         HWND hwnd, capture;
2022
2023         check_wnd_state(button, button, button, button);
2024
2025         hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2026         assert(hwnd);
2027         trace("hwnd %p\n", hwnd);
2028
2029         check_wnd_state(button, button, button, button);
2030
2031         ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2032
2033         check_wnd_state(button, button, button, button);
2034
2035         DestroyWindow(hwnd);
2036
2037         hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2038         assert(hwnd);
2039         trace("hwnd %p\n", hwnd);
2040
2041         check_wnd_state(button, button, button, button);
2042
2043         /* button wnd proc should release capture on WM_KILLFOCUS if it does
2044          * match internal button state.
2045          */
2046         SendMessage(button, WM_KILLFOCUS, 0, 0);
2047         check_wnd_state(button, button, button, 0);
2048
2049         ShowWindow(hwnd, SW_SHOW);
2050         check_wnd_state(hwnd, hwnd, hwnd, 0);
2051
2052         capture = SetCapture(hwnd);
2053         ok(capture == 0, "SetCapture() = %p\n", capture);
2054
2055         check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2056
2057         DestroyWindow(hwnd);
2058
2059         check_wnd_state(button, 0, button, 0);
2060     }
2061
2062     return ret;
2063 }
2064
2065 static void test_capture_1(void)
2066 {
2067     HWND button, capture;
2068
2069     capture = GetCapture();
2070     ok(capture == 0, "GetCapture() = %p\n", capture);
2071
2072     button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2073     assert(button);
2074     trace("button %p\n", button);
2075
2076     old_button_proc = (WNDPROC)SetWindowLongPtrA(button, GWLP_WNDPROC, (LONG_PTR)button_hook_proc);
2077
2078     SendMessageA(button, WM_LBUTTONDOWN, 0, 0);
2079
2080     capture = SetCapture(button);
2081     ok(capture == 0, "SetCapture() = %p\n", capture);
2082     check_wnd_state(button, 0, button, button);
2083
2084     DestroyWindow(button);
2085     check_wnd_state(0, 0, 0, 0);
2086 }
2087
2088 static void test_capture_2(void)
2089 {
2090     HWND button, hwnd, capture;
2091
2092     check_wnd_state(0, 0, 0, 0);
2093
2094     button = CreateWindowExA(0, "button", NULL, WS_POPUP | WS_VISIBLE, 0, 0, 10, 10, 0, 0, 0, NULL);
2095     assert(button);
2096     trace("button %p\n", button);
2097
2098     check_wnd_state(button, button, button, 0);
2099
2100     capture = SetCapture(button);
2101     ok(capture == 0, "SetCapture() = %p\n", capture);
2102
2103     check_wnd_state(button, button, button, button);
2104
2105     /* button wnd proc should ignore WM_KILLFOCUS if it doesn't match
2106      * internal button state.
2107      */
2108     SendMessage(button, WM_KILLFOCUS, 0, 0);
2109     check_wnd_state(button, button, button, button);
2110
2111     hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2112     assert(hwnd);
2113     trace("hwnd %p\n", hwnd);
2114
2115     check_wnd_state(button, button, button, button);
2116
2117     ShowWindow(hwnd, SW_SHOWNOACTIVATE);
2118
2119     check_wnd_state(button, button, button, button);
2120
2121     DestroyWindow(hwnd);
2122
2123     hwnd = CreateWindowExA(0, "static", NULL, WS_POPUP, 0, 0, 10, 10, 0, 0, 0, NULL);
2124     assert(hwnd);
2125     trace("hwnd %p\n", hwnd);
2126
2127     check_wnd_state(button, button, button, button);
2128
2129     ShowWindow(hwnd, SW_SHOW);
2130
2131     check_wnd_state(hwnd, hwnd, hwnd, button);
2132
2133     capture = SetCapture(hwnd);
2134     ok(capture == button, "SetCapture() = %p\n", capture);
2135
2136     check_wnd_state(hwnd, hwnd, hwnd, hwnd);
2137
2138     DestroyWindow(hwnd);
2139     check_wnd_state(button, button, button, 0);
2140
2141     DestroyWindow(button);
2142     check_wnd_state(0, 0, 0, 0);
2143 }
2144
2145 static void test_capture_3(HWND hwnd1, HWND hwnd2)
2146 {
2147     ShowWindow(hwnd1, SW_HIDE);
2148     ShowWindow(hwnd2, SW_HIDE);
2149
2150     ok(!IsWindowVisible(hwnd1), "%p should be invisible\n", hwnd1);
2151     ok(!IsWindowVisible(hwnd2), "%p should be invisible\n", hwnd2);
2152
2153     SetCapture(hwnd1);
2154     check_wnd_state(0, 0, 0, hwnd1);
2155
2156     SetCapture(hwnd2);
2157     check_wnd_state(0, 0, 0, hwnd2);
2158
2159     ShowWindow(hwnd1, SW_SHOW);
2160     check_wnd_state(hwnd1, hwnd1, hwnd1, hwnd2);
2161
2162     ReleaseCapture();
2163 }
2164
2165 static void test_keyboard_input(HWND hwnd)
2166 {
2167     MSG msg;
2168     BOOL ret;
2169
2170     ShowWindow(hwnd, SW_SHOW);
2171     UpdateWindow(hwnd);
2172
2173     ok(GetActiveWindow() == hwnd, "wrong active window %p\n", GetActiveWindow());
2174
2175     SetFocus(hwnd);
2176     ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2177
2178     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg);
2179
2180     PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
2181     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2182     ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2183     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2184     ok( !ret, "message %04x available\n", msg.message);
2185
2186     ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2187
2188     PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
2189     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2190     ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2191     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2192     ok( !ret, "message %04x available\n", msg.message);
2193
2194     ok(GetFocus() == hwnd, "wrong focus window %p\n", GetFocus());
2195
2196     keybd_event(VK_SPACE, 0, 0, 0);
2197     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2198     ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2199     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2200     ok( !ret, "message %04x available\n", msg.message);
2201
2202     SetFocus(0);
2203     ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2204
2205     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessage(&msg);
2206
2207     PostMessageA(hwnd, WM_KEYDOWN, 0, 0);
2208     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2209     ok(msg.hwnd == hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2210     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2211     ok( !ret, "message %04x available\n", msg.message);
2212
2213     ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2214
2215     PostThreadMessageA(GetCurrentThreadId(), WM_KEYDOWN, 0, 0);
2216     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2217     ok(!msg.hwnd && msg.message == WM_KEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2218     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2219     ok( !ret, "message %04x available\n", msg.message);
2220
2221     ok(GetFocus() == 0, "wrong focus window %p\n", GetFocus());
2222
2223     keybd_event(VK_SPACE, 0, 0, 0);
2224     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2225     ok(msg.hwnd == hwnd && msg.message == WM_SYSKEYDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2226     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2227     ok( !ret, "message %04x available\n", msg.message);
2228 }
2229
2230 static void test_mouse_input(HWND hwnd)
2231 {
2232     RECT rc;
2233     POINT pt;
2234     int x, y;
2235     HWND popup;
2236     MSG msg;
2237     BOOL ret;
2238
2239     ShowWindow(hwnd, SW_SHOW);
2240     UpdateWindow(hwnd);
2241
2242     GetWindowRect(hwnd, &rc);
2243     trace("main window %p: (%ld,%ld)-(%ld,%ld)\n", hwnd, rc.left, rc.top, rc.right, rc.bottom);
2244
2245     popup = CreateWindowExA(0, "MainWindowClass", NULL, WS_POPUP,
2246                             rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top,
2247                             hwnd, 0, 0, NULL);
2248     assert(popup != 0);
2249     ShowWindow(popup, SW_SHOW);
2250     UpdateWindow(popup);
2251
2252     GetWindowRect(popup, &rc);
2253     trace("popup window %p: (%ld,%ld)-(%ld,%ld)\n", popup, rc.left, rc.top, rc.right, rc.bottom);
2254
2255     x = rc.left + (rc.right - rc.left) / 2;
2256     y = rc.top + (rc.bottom - rc.top) / 2;
2257     trace("setting cursor to (%d,%d)\n", x, y);
2258
2259     SetCursorPos(x, y);
2260     GetCursorPos(&pt);
2261     ok(x == pt.x && y == pt.y, "wrong cursor pos (%ld,%ld), expected (%d,%d)\n", pt.x, pt.y, x, y);
2262
2263     /* force the system to update its internal queue mouse position,
2264      * otherwise it won't generate relative mouse movements below.
2265      */
2266     mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
2267     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg);
2268
2269     msg.message = 0;
2270     mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
2271     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2272     ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2273     /* FIXME: SetCursorPos in Wine generates additional WM_MOUSEMOVE message */
2274     if (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE))
2275         ok(msg.hwnd == popup && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2276     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2277     ok( !ret, "message %04x available\n", msg.message);
2278
2279     mouse_event(MOUSEEVENTF_MOVE, -1, -1, 0, 0);
2280     ShowWindow(popup, SW_HIDE);
2281     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2282     ok(msg.hwnd == hwnd && msg.message == WM_MOUSEMOVE, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2283     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg);
2284
2285     mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
2286     ShowWindow(hwnd, SW_HIDE);
2287     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2288     ok( !ret, "message %04x available\n", msg.message);
2289
2290     /* test mouse clicks */
2291
2292     ShowWindow(hwnd, SW_SHOW);
2293     ShowWindow(popup, SW_SHOW);
2294
2295     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg);
2296
2297     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2298     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2299     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2300     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2301
2302     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2303     ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2304     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2305     ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2306     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2307     ok(msg.hwnd == popup && msg.message == WM_LBUTTONDBLCLK, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2308     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2309     ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2310
2311     ret = PeekMessageA(&msg, 0, 0, 0, PM_REMOVE);
2312     ok(!ret, "message %04x available\n", msg.message);
2313
2314     ShowWindow(popup, SW_HIDE);
2315     while (PeekMessageA(&msg, 0, 0, 0, PM_REMOVE)) DispatchMessageA(&msg);
2316
2317     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2318     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2319     mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
2320     mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
2321
2322     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2323     ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2324     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2325     ok(msg.hwnd == hwnd && msg.message == WM_LBUTTONUP, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2326
2327     test_lbuttondown_flag = TRUE;
2328     SendMessageA(hwnd, WM_COMMAND, (WPARAM)popup, 0);
2329     test_lbuttondown_flag = FALSE;
2330
2331     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2332     ok(msg.hwnd == popup && msg.message == WM_LBUTTONDOWN, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2333     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2334     ok(msg.hwnd == popup && msg.message == WM_LBUTTONUP, "hwnd %p message %04x\n", msg.hwnd, msg.message);
2335     ok(PeekMessageA(&msg, 0, 0, 0, PM_REMOVE), "no message available\n");
2336
2337     DestroyWindow(popup);
2338 }
2339
2340 static void test_validatergn(HWND hwnd)
2341 {
2342     HWND child;
2343     RECT rc, rc2;
2344     HRGN rgn;
2345     int ret;
2346     child = CreateWindowExA(0, "static", NULL, WS_CHILD| WS_VISIBLE, 10, 10, 10, 10, hwnd, 0, 0, NULL);
2347     ShowWindow(hwnd, SW_SHOW);
2348     UpdateWindow( hwnd);
2349     /* test that ValidateRect validates children*/
2350     InvalidateRect( child, NULL, 1);
2351     GetWindowRect( child, &rc);
2352     MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
2353     ret = GetUpdateRect( child, &rc2, 0);
2354     ok( rc2.right > rc2.left && rc2.bottom > rc2.top,
2355             "Update rectangle is empty!\n");
2356     ValidateRect( hwnd, &rc);
2357     ret = GetUpdateRect( child, &rc2, 0);
2358     ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
2359             "Update rectangle %ld,%ld-%ld,%ld is not empty!\n", rc2.left, rc2.top,
2360             rc2.right, rc2.bottom);
2361
2362     /* now test ValidateRgn */
2363     InvalidateRect( child, NULL, 1);
2364     GetWindowRect( child, &rc);
2365     MapWindowPoints( NULL, hwnd, (POINT*) &rc, 2);
2366     rgn = CreateRectRgnIndirect( &rc);
2367     ValidateRgn( hwnd, rgn);
2368     ret = GetUpdateRect( child, &rc2, 0);
2369     ok( rc2.left == 0 && rc2.top == 0 && rc2.right == 0 && rc2.bottom == 0,
2370             "Update rectangle %ld,%ld-%ld,%ld is not empty!\n", rc2.left, rc2.top,
2371             rc2.right, rc2.bottom);
2372
2373     DeleteObject( rgn);
2374     DestroyWindow( child );
2375 }
2376
2377 static void nccalchelper(HWND hwnd, INT x, INT y, RECT *prc)
2378 {
2379     MoveWindow( hwnd, 0, 0, x, y, 0);
2380     GetWindowRect( hwnd, prc);
2381     trace("window rect is %ld,%ld - %ld,%ld\n", 
2382             prc->left,prc->top,prc->right,prc->bottom);
2383     DefWindowProcA(hwnd, WM_NCCALCSIZE, 0, (LPARAM)prc);
2384     trace("nccalc rect is %ld,%ld - %ld,%ld\n",
2385             prc->left,prc->top,prc->right,prc->bottom);
2386 }
2387
2388 static void test_nccalcscroll(HWND parent)
2389 {
2390     RECT rc1;
2391     INT sbheight = GetSystemMetrics( SM_CYHSCROLL);
2392     INT sbwidth = GetSystemMetrics( SM_CXVSCROLL);
2393     HWND hwnd = CreateWindowExA(0, "static", NULL, 
2394             WS_CHILD| WS_VISIBLE | WS_VSCROLL | WS_HSCROLL , 
2395             10, 10, 200, 200, parent, 0, 0, NULL); 
2396     ShowWindow( parent, SW_SHOW);
2397     UpdateWindow( parent);
2398
2399     /* test window too low for a horizontal scroll bar */
2400     nccalchelper( hwnd, 100, sbheight, &rc1);
2401     ok( rc1.bottom - rc1.top == sbheight, "Height should be %d size is %ld,%ld - %ld,%ld\n", 
2402             sbheight, rc1.left, rc1.top, rc1.right, rc1.bottom);
2403
2404     /* test window just high enough for a horizontal scroll bar */
2405     nccalchelper( hwnd, 100, sbheight + 1, &rc1);
2406     ok( rc1.bottom - rc1.top == 1, "Height should be %d size is %ld,%ld - %ld,%ld\n", 
2407             1, rc1.left, rc1.top, rc1.right, rc1.bottom);
2408
2409     /* test window too narrow for a vertical scroll bar */
2410     nccalchelper( hwnd, sbwidth - 1, 100, &rc1);
2411     ok( rc1.right - rc1.left == sbwidth - 1 , "Width should be %d size is %ld,%ld - %ld,%ld\n", 
2412             sbwidth - 1, rc1.left, rc1.top, rc1.right, rc1.bottom);
2413
2414     /* test window just wide enough for a vertical scroll bar */
2415     nccalchelper( hwnd, sbwidth, 100, &rc1);
2416     ok( rc1.right - rc1.left == 0, "Width should be %d size is %ld,%ld - %ld,%ld\n", 
2417             0, rc1.left, rc1.top, rc1.right, rc1.bottom);
2418
2419     /* same test, but with client edge: not enough width */
2420     SetWindowLong( hwnd, GWL_EXSTYLE, WS_EX_CLIENTEDGE | GetWindowLong( hwnd, GWL_EXSTYLE));
2421     nccalchelper( hwnd, sbwidth, 100, &rc1);
2422     ok( rc1.right - rc1.left == sbwidth - 2 * GetSystemMetrics(SM_CXEDGE),
2423             "Width should be %d size is %ld,%ld - %ld,%ld\n", 
2424             sbwidth - 2 * GetSystemMetrics(SM_CXEDGE), rc1.left, rc1.top, rc1.right, rc1.bottom);
2425
2426     DestroyWindow( hwnd);
2427 }
2428
2429 static void test_SetParent(void)
2430 {
2431     BOOL ret;
2432     HWND desktop = GetDesktopWindow();
2433     HMENU hMenu;
2434     BOOL is_win9x = GetWindowLongPtrW(desktop, GWLP_WNDPROC) == 0;
2435     HWND parent, child1, child2, child3, child4, sibling;
2436
2437     parent = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
2438                              100, 100, 200, 200, 0, 0, 0, NULL);
2439     assert(parent != 0);
2440     child1 = CreateWindowExA(0, "static", NULL, WS_CHILD,
2441                              0, 0, 50, 50, parent, 0, 0, NULL);
2442     assert(child1 != 0);
2443     child2 = CreateWindowExA(0, "static", NULL, WS_POPUP,
2444                              0, 0, 50, 50, child1, 0, 0, NULL);
2445     assert(child2 != 0);
2446     child3 = CreateWindowExA(0, "static", NULL, WS_CHILD,
2447                              0, 0, 50, 50, child2, 0, 0, NULL);
2448     assert(child3 != 0);
2449     child4 = CreateWindowExA(0, "static", NULL, WS_POPUP,
2450                              0, 0, 50, 50, child3, 0, 0, NULL);
2451     assert(child4 != 0);
2452
2453     trace("parent %p, child1 %p, child2 %p, child3 %p, child4 %p\n",
2454            parent, child1, child2, child3, child4);
2455
2456     check_parents(parent, desktop, 0, 0, 0, parent, parent);
2457     check_parents(child1, parent, parent, parent, 0, parent, parent);
2458     check_parents(child2, desktop, parent, parent, parent, child2, parent);
2459     check_parents(child3, child2, child2, child2, 0, child2, parent);
2460     check_parents(child4, desktop, child2, child2, child2, child4, parent);
2461
2462 todo_wine {
2463     ok(!IsChild(desktop, parent), "wrong parent/child %p/%p\n", desktop, parent);
2464     ok(!IsChild(desktop, child1), "wrong parent/child %p/%p\n", desktop, child1);
2465     ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
2466     ok(!IsChild(desktop, child3), "wrong parent/child %p/%p\n", desktop, child3);
2467     ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
2468 }
2469
2470     ok(IsChild(parent, child1), "wrong parent/child %p/%p\n", parent, child1);
2471 todo_wine {
2472     ok(!IsChild(desktop, child2), "wrong parent/child %p/%p\n", desktop, child2);
2473 }
2474     ok(!IsChild(parent, child2), "wrong parent/child %p/%p\n", parent, child2);
2475     ok(!IsChild(child1, child2), "wrong parent/child %p/%p\n", child1, child2);
2476     ok(!IsChild(parent, child3), "wrong parent/child %p/%p\n", parent, child3);
2477     ok(IsChild(child2, child3), "wrong parent/child %p/%p\n", child2, child3);
2478     ok(!IsChild(parent, child4), "wrong parent/child %p/%p\n", parent, child4);
2479     ok(!IsChild(child3, child4), "wrong parent/child %p/%p\n", child3, child4);
2480 todo_wine {
2481     ok(!IsChild(desktop, child4), "wrong parent/child %p/%p\n", desktop, child4);
2482 }
2483
2484     if (!is_win9x) /* Win9x doesn't survive this test */
2485     {
2486         ok(!SetParent(parent, child1), "SetParent should fail\n");
2487         ok(!SetParent(child2, child3), "SetParent should fail\n");
2488         ok(SetParent(child1, parent) != 0, "SetParent should not fail\n");
2489         ok(SetParent(parent, child2) != 0, "SetParent should not fail\n");
2490         ok(SetParent(parent, child3) != 0, "SetParent should not fail\n");
2491         ok(!SetParent(child2, parent), "SetParent should fail\n");
2492         ok(SetParent(parent, child4) != 0, "SetParent should not fail\n");
2493
2494         check_parents(parent, child4, child4, 0, 0, child4, parent);
2495         check_parents(child1, parent, parent, parent, 0, child4, parent);
2496         check_parents(child2, desktop, parent, parent, parent, child2, parent);
2497         check_parents(child3, child2, child2, child2, 0, child2, parent);
2498         check_parents(child4, desktop, child2, child2, child2, child4, parent);
2499     }
2500
2501     hMenu = CreateMenu();
2502     sibling = CreateWindowExA(0, "static", NULL, WS_OVERLAPPEDWINDOW,
2503                              100, 100, 200, 200, 0, hMenu, 0, NULL);
2504     assert(sibling != 0);
2505
2506     ok(SetParent(sibling, parent) != 0, "SetParent should not fail\n");
2507     ok(GetMenu(sibling) == hMenu, "SetParent should not remove menu\n");
2508
2509     ret = DestroyWindow(parent);
2510     ok( ret, "DestroyWindow() error %ld\n", GetLastError());
2511
2512     ok(!IsWindow(parent), "parent still exists\n");
2513     ok(!IsWindow(sibling), "sibling still exists\n");
2514     ok(!IsWindow(child1), "child1 still exists\n");
2515     ok(!IsWindow(child2), "child2 still exists\n");
2516     ok(!IsWindow(child3), "child3 still exists\n");
2517     ok(!IsWindow(child4), "child4 still exists\n");
2518 }
2519
2520 static LRESULT WINAPI StyleCheckProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
2521 {
2522     LPCREATESTRUCT lpcs;
2523     LPSTYLESTRUCT lpss;
2524
2525     switch (msg)
2526     {
2527     case WM_NCCREATE:
2528     case WM_CREATE:
2529         lpcs = (LPCREATESTRUCT)lparam;
2530         lpss = (LPSTYLESTRUCT)lpcs->lpCreateParams;
2531         if (lpss)
2532         {
2533             if ((lpcs->dwExStyle & WS_EX_DLGMODALFRAME) ||
2534                 ((!(lpcs->dwExStyle & WS_EX_STATICEDGE)) &&
2535                     (lpcs->style & (WS_DLGFRAME | WS_THICKFRAME))))
2536                 ok(lpcs->dwExStyle & WS_EX_WINDOWEDGE, "Window should have WS_EX_WINDOWEDGE style\n");
2537             else
2538                 ok(!(lpcs->dwExStyle & WS_EX_WINDOWEDGE), "Window shouldn't have WS_EX_WINDOWEDGE style\n");
2539
2540             ok((lpss->styleOld & ~WS_EX_WINDOWEDGE) == (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE),
2541                 "Ex style (0x%08lx) should match what the caller passed to CreateWindowEx (0x%08lx)\n",
2542                 (lpss->styleOld & ~WS_EX_WINDOWEDGE), (lpcs->dwExStyle & ~WS_EX_WINDOWEDGE));
2543
2544             ok(lpss->styleNew == lpcs->style,
2545                 "Style (0x%08lx) should match what the caller passed to CreateWindowEx (0x%08lx)\n",
2546                 lpss->styleNew, lpcs->style);
2547         }
2548         break;
2549     }
2550     return DefWindowProc(hwnd, msg, wparam, lparam);
2551 }
2552
2553 static ATOM atomStyleCheckClass;
2554
2555 static void register_style_check_class(void)
2556 {
2557     WNDCLASS wc =
2558     {
2559         0,
2560         StyleCheckProc,
2561         0,
2562         0,
2563         GetModuleHandle(NULL),
2564         NULL,
2565         LoadCursor(NULL, IDC_ARROW),
2566         (HBRUSH)(COLOR_BTNFACE+1),
2567         NULL,
2568         TEXT("WineStyleCheck"),
2569     };
2570     
2571     atomStyleCheckClass = RegisterClass(&wc);
2572 }
2573
2574 static void check_window_style(DWORD dwStyleIn, DWORD dwExStyleIn, DWORD dwStyleOut, DWORD dwExStyleOut)
2575 {
2576     DWORD dwActualStyle;
2577     DWORD dwActualExStyle;
2578     STYLESTRUCT ss;
2579     HWND hwnd;
2580     HWND hwndParent = NULL;
2581     MSG msg;
2582
2583     ss.styleNew = dwStyleIn;
2584     ss.styleOld = dwExStyleIn;
2585
2586     if (dwStyleIn & WS_CHILD)
2587     {
2588         hwndParent = CreateWindowEx(0, MAKEINTATOM(atomStyleCheckClass), NULL,
2589             WS_OVERLAPPEDWINDOW, 0, 0, 0, 0, NULL, NULL, NULL, NULL);
2590     }
2591
2592     hwnd = CreateWindowEx(dwExStyleIn, MAKEINTATOM(atomStyleCheckClass), NULL,
2593                     dwStyleIn, 0, 0, 0, 0, hwndParent, NULL, NULL, &ss);
2594     assert(hwnd);
2595
2596     while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
2597     {
2598         TranslateMessage(&msg);
2599         DispatchMessage(&msg);
2600     }
2601
2602     dwActualStyle = GetWindowLong(hwnd, GWL_STYLE);
2603     dwActualExStyle = GetWindowLong(hwnd, GWL_EXSTYLE);
2604     ok((dwActualStyle == dwStyleOut) && (dwActualExStyle == dwExStyleOut),
2605         "Style (0x%08lx) should really be 0x%08lx and/or Ex style (0x%08lx) should really be 0x%08lx\n",
2606         dwActualStyle, dwStyleOut, dwActualExStyle, dwExStyleOut);
2607
2608     DestroyWindow(hwnd);
2609     if (hwndParent) DestroyWindow(hwndParent);
2610 }
2611
2612 /* tests what window styles the window manager automatically adds */
2613 static void test_window_styles()
2614 {
2615     register_style_check_class();
2616
2617     check_window_style(0, 0, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE);
2618     check_window_style(WS_OVERLAPPEDWINDOW, 0, WS_CLIPSIBLINGS|WS_OVERLAPPEDWINDOW, WS_EX_WINDOWEDGE);
2619     check_window_style(WS_CHILD, 0, WS_CHILD, 0);
2620     check_window_style(WS_CHILD, WS_EX_WINDOWEDGE, WS_CHILD, 0);
2621     check_window_style(0, WS_EX_TOOLWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_WINDOWEDGE|WS_EX_TOOLWINDOW);
2622     check_window_style(WS_POPUP, 0, WS_POPUP|WS_CLIPSIBLINGS, 0);
2623     check_window_style(WS_POPUP, WS_EX_WINDOWEDGE, WS_POPUP|WS_CLIPSIBLINGS, 0);
2624     check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME, WS_CHILD, WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
2625     check_window_style(WS_CHILD, WS_EX_DLGMODALFRAME|WS_EX_STATICEDGE, WS_CHILD, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE|WS_EX_DLGMODALFRAME);
2626     check_window_style(WS_CAPTION, WS_EX_STATICEDGE, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_STATICEDGE|WS_EX_WINDOWEDGE);
2627     check_window_style(0, WS_EX_APPWINDOW, WS_CLIPSIBLINGS|WS_CAPTION, WS_EX_APPWINDOW|WS_EX_WINDOWEDGE);
2628 }
2629
2630 static void test_scrollvalidate( HWND parent)
2631 {
2632     HDC hdc;
2633     HRGN hrgn=CreateRectRgn(0,0,0,0);
2634     HRGN exprgn, tmprgn, clipping;
2635     RECT rc, rcu, cliprc;
2636     /* create two overlapping child windows. The visual region
2637      * of hwnd1 is clipped by the overlapping part of
2638      * hwnd2 because of the WS_CLIPSIBLING style */
2639     HWND hwnd1, hwnd2;
2640
2641     hwnd2 = CreateWindowExA(0, "static", NULL,
2642             WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
2643             75, 30, 100, 100, parent, 0, 0, NULL);
2644     hwnd1 = CreateWindowExA(0, "static", NULL,
2645             WS_CHILD| WS_VISIBLE | WS_CLIPSIBLINGS | WS_BORDER ,
2646             25, 50, 100, 100, parent, 0, 0, NULL);
2647     ShowWindow( parent, SW_SHOW);
2648     UpdateWindow( parent);
2649     GetClientRect( hwnd1, &rc);
2650     cliprc=rc; 
2651     clipping = CreateRectRgn( 10, 10, 90, 90);
2652     hdc = GetDC( hwnd1);
2653     /* for a visual touch */
2654     TextOut( hdc, 0,10, "0123456789", 10);
2655     ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
2656     if (winetest_debug > 0) dump_region(hrgn);
2657     /* create a region with what is expected */
2658     exprgn = CreateRectRgn( 39,0,49,74);
2659     tmprgn = CreateRectRgn( 88,79,98,93);
2660     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2661     tmprgn = CreateRectRgn( 0,93,98,98);
2662     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2663     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2664     trace("update rect is %ld,%ld - %ld,%ld\n",
2665             rcu.left,rcu.top,rcu.right,rcu.bottom);
2666     /* now with clipping region */
2667     SelectClipRgn( hdc, clipping);
2668     ScrollDC( hdc, -10, -5, &rc, &cliprc, hrgn, &rcu);
2669     if (winetest_debug > 0) dump_region(hrgn);
2670     /* create a region with what is expected */
2671     exprgn = CreateRectRgn( 39,10,49,74);
2672     tmprgn = CreateRectRgn( 80,79,90,85);
2673     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2674     tmprgn = CreateRectRgn( 10,85,90,90);
2675     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2676     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2677     trace("update rect is %ld,%ld - %ld,%ld\n",
2678             rcu.left,rcu.top,rcu.right,rcu.bottom);
2679     ReleaseDC( hwnd1, hdc);
2680
2681     /* test scrolling a window with an update region */
2682     DestroyWindow( hwnd2);
2683     ValidateRect( hwnd1, NULL);
2684     SetRect( &rc, 40,40, 50,50);
2685     InvalidateRect( hwnd1, &rc, 1);
2686     GetClientRect( hwnd1, &rc);
2687     cliprc=rc;
2688     ScrollWindowEx( hwnd1, -10, 0, &rc, &cliprc, hrgn, &rcu,
2689       SW_SCROLLCHILDREN | SW_INVALIDATE);
2690     if (winetest_debug > 0) dump_region(hrgn);
2691     exprgn = CreateRectRgn( 88,0,98,98);
2692     tmprgn = CreateRectRgn( 30, 40, 50, 50);
2693     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2694     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2695
2696     /* now test ScrollWindowEx with a combination of
2697      * WS_CLIPCHILDREN style and SW_SCROLLCHILDREN flag */
2698     /* make hwnd2 the child of hwnd1 */
2699     hwnd2 = CreateWindowExA(0, "static", NULL,
2700             WS_CHILD| WS_VISIBLE | WS_BORDER ,
2701             50, 50, 100, 100, hwnd1, 0, 0, NULL);
2702     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPSIBLINGS);
2703     GetClientRect( hwnd1, &rc);
2704     cliprc=rc;
2705
2706     /* WS_CLIPCHILDREN and SW_SCROLLCHILDREN */
2707     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
2708     ValidateRect( hwnd1, NULL);
2709     ValidateRect( hwnd2, NULL);
2710     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu,
2711       SW_SCROLLCHILDREN | SW_INVALIDATE);
2712     if (winetest_debug > 0) dump_region(hrgn);
2713     exprgn = CreateRectRgn( 88,0,98,88);
2714     tmprgn = CreateRectRgn( 0,88,98,98);
2715     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2716     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2717
2718     /* SW_SCROLLCHILDREN */
2719     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
2720     ValidateRect( hwnd1, NULL);
2721     ValidateRect( hwnd2, NULL);
2722     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_SCROLLCHILDREN | SW_INVALIDATE);
2723     if (winetest_debug > 0) dump_region(hrgn);
2724     /* expected region is the same as in previous test */
2725     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2726
2727     /* no SW_SCROLLCHILDREN */
2728     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) & ~WS_CLIPCHILDREN );
2729     ValidateRect( hwnd1, NULL);
2730     ValidateRect( hwnd2, NULL);
2731     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
2732     if (winetest_debug > 0) dump_region(hrgn);
2733     /* expected region is the same as in previous test */
2734     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2735
2736     /* WS_CLIPCHILDREN and no SW_SCROLLCHILDREN */
2737     SetWindowLong( hwnd1, GWL_STYLE, GetWindowLong( hwnd1, GWL_STYLE) | WS_CLIPCHILDREN );
2738     ValidateRect( hwnd1, NULL);
2739     ValidateRect( hwnd2, NULL);
2740     ScrollWindowEx( hwnd1, -10, -10, &rc, &cliprc, hrgn, &rcu, SW_INVALIDATE);
2741     if (winetest_debug > 0) dump_region(hrgn);
2742     exprgn = CreateRectRgn( 88,0,98,20);
2743     tmprgn = CreateRectRgn( 20,20,98,30);
2744     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2745     tmprgn = CreateRectRgn( 20,30,30,88);
2746     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2747     tmprgn = CreateRectRgn( 0,88,30,98);
2748     CombineRgn( exprgn, exprgn, tmprgn, RGN_OR);
2749     ok( EqualRgn( exprgn, hrgn), "wrong update region\n");
2750
2751     /* clean up */
2752     DeleteObject( hrgn);
2753     DeleteObject( exprgn);
2754     DeleteObject( tmprgn);
2755     DestroyWindow( hwnd1);
2756     DestroyWindow( hwnd2);
2757 }
2758
2759 /* couple of tests of return values of scrollbar functions
2760  * called on a scrollbarless window */ 
2761 static void test_scroll(void)
2762 {
2763     BOOL ret;
2764     INT min, max;
2765     SCROLLINFO si;
2766     HWND hwnd = CreateWindowExA(0, "Static", "Wine test window",
2767         WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP,
2768         100, 100, 200, 200, 0, 0, 0, NULL);
2769     /* horizontal */
2770     ret = GetScrollRange( hwnd, SB_HORZ, &min, &max);
2771     ok( ret, "GetScrollRange returns FALSE\n");
2772     ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
2773     ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
2774     si.cbSize = sizeof( si);
2775     si.fMask = SIF_PAGE;
2776     si.nPage = 0xdeadbeef;
2777     ret = GetScrollInfo( hwnd, SB_HORZ, &si);
2778     ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
2779     ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
2780     /* vertical */
2781     ret = GetScrollRange( hwnd, SB_VERT, &min, &max);
2782     ok( ret, "GetScrollRange returns FALSE\n");
2783     ok( min == 0, "minimum scroll pos is %d (should be zero)\n", min);
2784     ok( max == 0, "maximum scroll pos is %d (should be zero)\n", min);
2785     si.cbSize = sizeof( si);
2786     si.fMask = SIF_PAGE;
2787     si.nPage = 0xdeadbeef;
2788     ret = GetScrollInfo( hwnd, SB_VERT, &si);
2789     ok( !ret, "GetScrollInfo returns %d (should be zero)\n", ret);
2790     ok( si.nPage == 0xdeadbeef, "unexpected value for nPage is %d\n", si.nPage);
2791     /* clean up */
2792     DestroyWindow( hwnd);
2793 }
2794
2795 static void test_params(void)
2796 {
2797     INT rc;
2798
2799     /* Just a param check */
2800     SetLastError(0xdeadbeef);
2801     rc = GetWindowText(hwndMain2, NULL, 1024);
2802     ok( rc==0, "GetWindowText: rc=%d err=%ld\n",rc,GetLastError());
2803 }
2804
2805 static void test_AWRwindow(LPCSTR class, LONG style, LONG exStyle, BOOL menu)
2806 {
2807     HWND hwnd = 0;
2808
2809     hwnd = CreateWindowEx(exStyle, class, class, style,
2810                           110, 100,
2811                           225, 200,
2812                           0,
2813                           menu ? hmenu : 0,
2814                           0, 0);
2815     if (!hwnd) {
2816         trace("Failed to create window class=%s, style=0x%08lx, exStyle=0x%08lx\n", class, style, exStyle);
2817         return;
2818     }
2819     ShowWindow(hwnd, SW_SHOW);
2820
2821     test_nonclient_area(hwnd);
2822
2823     SetMenu(hwnd, 0);
2824     DestroyWindow(hwnd);
2825 }
2826
2827 static BOOL AWR_init(void)
2828 {
2829     WNDCLASS class;
2830
2831     class.style         = CS_HREDRAW | CS_VREDRAW;
2832     class.lpfnWndProc     = DefWindowProcA;
2833     class.cbClsExtra    = 0;
2834     class.cbWndExtra    = 0;
2835     class.hInstance     = 0;
2836     class.hIcon         = LoadIcon (0, IDI_APPLICATION);
2837     class.hCursor       = LoadCursor (0, IDC_ARROW);
2838     class.hbrBackground = 0;
2839     class.lpszMenuName  = 0;
2840     class.lpszClassName = szAWRClass;
2841     
2842     if (!RegisterClass (&class)) {
2843         ok(FALSE, "RegisterClass failed\n");
2844         return FALSE;
2845     }
2846
2847     hmenu = CreateMenu();
2848     if (!hmenu)
2849         return FALSE;
2850     ok(hmenu != 0, "Failed to create menu\n");
2851     ok(AppendMenu(hmenu, MF_STRING, 1, "Test!"), "Failed to create menu item\n");
2852     
2853     return TRUE;
2854 }
2855
2856
2857 static void test_AWR_window_size(BOOL menu)
2858 {
2859     LONG styles[] = {
2860         WS_POPUP,
2861         WS_MAXIMIZE, WS_BORDER, WS_DLGFRAME, 
2862         WS_SYSMENU, 
2863         WS_THICKFRAME,
2864         WS_MINIMIZEBOX, WS_MAXIMIZEBOX,
2865         WS_HSCROLL, WS_VSCROLL
2866     };
2867     LONG exStyles[] = {
2868         WS_EX_CLIENTEDGE,
2869         WS_EX_TOOLWINDOW, WS_EX_WINDOWEDGE,
2870         WS_EX_APPWINDOW,
2871 #if 0
2872         /* These styles have problems on (at least) WinXP (SP2) and Wine */
2873         WS_EX_DLGMODALFRAME, 
2874         WS_EX_STATICEDGE, 
2875 #endif
2876     };
2877
2878     int i;    
2879
2880     /* A exhaustive check of all the styles takes too long
2881      * so just do a (hopefully representative) sample
2882      */
2883     for (i = 0; i < COUNTOF(styles); ++i)
2884         test_AWRwindow(szAWRClass, styles[i], 0, menu);
2885     for (i = 0; i < COUNTOF(exStyles); ++i) {
2886         test_AWRwindow(szAWRClass, WS_POPUP, exStyles[i], menu);
2887         test_AWRwindow(szAWRClass, WS_THICKFRAME, exStyles[i], menu);
2888     }
2889 }
2890 #undef COUNTOF
2891
2892 #define SHOWSYSMETRIC(SM) trace(#SM "=%d\n", GetSystemMetrics(SM))
2893
2894 static void test_AdjustWindowRect()
2895 {
2896     if (!AWR_init())
2897         return;
2898     
2899     SHOWSYSMETRIC(SM_CYCAPTION);
2900     SHOWSYSMETRIC(SM_CYSMCAPTION);
2901     SHOWSYSMETRIC(SM_CYMENU);
2902     SHOWSYSMETRIC(SM_CXEDGE);
2903     SHOWSYSMETRIC(SM_CYEDGE);
2904     SHOWSYSMETRIC(SM_CXVSCROLL);
2905     SHOWSYSMETRIC(SM_CYHSCROLL);
2906     SHOWSYSMETRIC(SM_CXFRAME);
2907     SHOWSYSMETRIC(SM_CYFRAME);
2908     SHOWSYSMETRIC(SM_CXDLGFRAME);
2909     SHOWSYSMETRIC(SM_CYDLGFRAME);
2910     SHOWSYSMETRIC(SM_CXBORDER);
2911     SHOWSYSMETRIC(SM_CYBORDER);  
2912
2913     test_AWR_window_size(FALSE);
2914     test_AWR_window_size(TRUE);
2915
2916     DestroyMenu(hmenu);
2917 }
2918 #undef SHOWSYSMETRIC
2919
2920
2921 /* Global variables to trigger exit from loop */
2922 static int redrawComplete, WMPAINT_count;
2923
2924 static LRESULT WINAPI redraw_window_procA(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
2925 {
2926     switch (msg)
2927     {
2928     case WM_PAINT:
2929         trace("doing WM_PAINT %d\n", WMPAINT_count);
2930         WMPAINT_count++;
2931         if (WMPAINT_count > 10 && redrawComplete == 0) {
2932             PAINTSTRUCT ps;
2933             BeginPaint(hwnd, &ps);
2934             EndPaint(hwnd, &ps);
2935             return 1;
2936         }
2937         return 0;
2938         break;
2939     }
2940     return DefWindowProc(hwnd, msg, wparam, lparam);
2941 }
2942
2943 /* Ensure we exit from RedrawNow regardless of invalidated area */
2944 static void test_redrawnow() {
2945
2946    WNDCLASSA cls;
2947    HWND hwndMain;
2948
2949    cls.style = CS_DBLCLKS;
2950    cls.lpfnWndProc = redraw_window_procA;
2951    cls.cbClsExtra = 0;
2952    cls.cbWndExtra = 0;
2953    cls.hInstance = GetModuleHandleA(0);
2954    cls.hIcon = 0;
2955    cls.hCursor = LoadCursorA(0, (LPSTR)IDC_ARROW);
2956    cls.hbrBackground = GetStockObject(WHITE_BRUSH);
2957    cls.lpszMenuName = NULL;
2958    cls.lpszClassName = "RedrawWindowClass";
2959
2960    if(!RegisterClassA(&cls)) {
2961        trace("Register failed %ld\n", GetLastError());
2962        return;
2963    }
2964
2965    hwndMain = CreateWindowA("RedrawWindowClass", "Main Window", WS_OVERLAPPEDWINDOW,
2966                             CW_USEDEFAULT, 0, 100, 100, NULL, NULL, 0, NULL);
2967
2968    ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
2969    ShowWindow(hwndMain, SW_SHOW);
2970    ok( WMPAINT_count == 0, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
2971    RedrawWindow(hwndMain, NULL,NULL,RDW_UPDATENOW | RDW_ALLCHILDREN);
2972    ok( WMPAINT_count == 1, "Multiple unexpected WM_PAINT calls %d\n", WMPAINT_count);
2973    redrawComplete = TRUE;
2974    ok( WMPAINT_count < 10, "RedrawWindow (RDW_UPDATENOW) never completed (%d)\n", WMPAINT_count);
2975
2976    /* clean up */
2977    DestroyWindow( hwndMain);
2978 }
2979
2980
2981 START_TEST(win)
2982 {
2983     pGetAncestor = (void *)GetProcAddress( GetModuleHandleA("user32.dll"), "GetAncestor" );
2984     pGetWindowInfo = (void *)GetProcAddress( GetModuleHandleA("user32.dll"), "GetWindowInfo" );
2985
2986     hwndMain = CreateWindowExA(0, "static", NULL, 0, 0, 0, 0, 0, HWND_MESSAGE, 0, 0, NULL);
2987     if (hwndMain)
2988     {
2989         ok(!GetParent(hwndMain), "GetParent should return 0 for message only windows\n");
2990         if (pGetAncestor)
2991         {
2992             hwndMessage = pGetAncestor(hwndMain, GA_PARENT);
2993             ok(hwndMessage != 0, "GetAncestor(GA_PARENT) should not return 0 for message only windows\n");
2994             trace("hwndMessage %p\n", hwndMessage);
2995         }
2996         DestroyWindow(hwndMain);
2997     }
2998     else
2999         trace("CreateWindowExA with parent HWND_MESSAGE failed\n");
3000
3001     if (!RegisterWindowClasses()) assert(0);
3002
3003     hhook = SetWindowsHookExA(WH_CBT, cbt_hook_proc, 0, GetCurrentThreadId());
3004     assert(hhook);
3005
3006     hwndMain = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window",
3007                                WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
3008                                WS_MAXIMIZEBOX | WS_POPUP,
3009                                100, 100, 200, 200,
3010                                0, 0, 0, NULL);
3011     test_nonclient_area(hwndMain);
3012
3013     hwndMain2 = CreateWindowExA(/*WS_EX_TOOLWINDOW*/ 0, "MainWindowClass", "Main window 2",
3014                                 WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
3015                                 WS_MAXIMIZEBOX | WS_POPUP,
3016                                 100, 100, 200, 200,
3017                                 0, 0, 0, NULL);
3018     assert( hwndMain );
3019     assert( hwndMain2 );
3020
3021     test_params();
3022
3023     test_capture_1();
3024     test_capture_2();
3025     test_capture_3(hwndMain, hwndMain2);
3026
3027     test_parent_owner();
3028     test_SetParent();
3029     test_shell_window();
3030
3031     test_mdi();
3032     test_icons();
3033     test_SetWindowPos(hwndMain);
3034     test_SetMenu(hwndMain);
3035     test_SetFocus(hwndMain);
3036     test_SetActiveWindow(hwndMain);
3037
3038     test_children_zorder(hwndMain);
3039     test_keyboard_input(hwndMain);
3040     test_mouse_input(hwndMain);
3041     test_validatergn(hwndMain);
3042     test_nccalcscroll( hwndMain);
3043     test_scrollvalidate( hwndMain);
3044     test_scroll();
3045
3046     UnhookWindowsHookEx(hhook);
3047
3048     test_AdjustWindowRect();
3049     test_window_styles();
3050     test_redrawnow();
3051 }