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