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