msi/tests: automation: Add tests for Installer::Products and Installer::ProductState.
[wine] / dlls / user32 / mdi.c
1 /* MDI.C
2  *
3  * Copyright 1994, Bob Amstadt
4  *           1995,1996 Alex Korobka
5  *
6  * This file contains routines to support MDI (Multiple Document
7  * Interface) features .
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  *
23  * Notes: Fairly complete implementation.
24  *        Also, Excel and WinWord do _not_ use MDI so if you're trying
25  *        to fix them look elsewhere.
26  *
27  * Notes on how the "More Windows..." is implemented:
28  *
29  *      When we have more than 9 opened windows, a "More Windows..."
30  *      option appears in the "Windows" menu. Each child window has
31  *      a WND* associated with it, accesible via the children list of
32  *      the parent window. This WND* has a wIDmenu member, which reflects
33  *      the position of the child in the window list. For example, with
34  *      9 child windows, we could have the following pattern:
35  *
36  *
37  *
38  *                Name of the child window    pWndChild->wIDmenu
39  *                     Doc1                       5000
40  *                     Doc2                       5001
41  *                     Doc3                       5002
42  *                     Doc4                       5003
43  *                     Doc5                       5004
44  *                     Doc6                       5005
45  *                     Doc7                       5006
46  *                     Doc8                       5007
47  *                     Doc9                       5008
48  *
49  *
50  *       The "Windows" menu, as the "More windows..." dialog, are constructed
51  *       in this order. If we add a child, we would have the following list:
52  *
53  *
54  *               Name of the child window    pWndChild->wIDmenu
55  *                     Doc1                       5000
56  *                     Doc2                       5001
57  *                     Doc3                       5002
58  *                     Doc4                       5003
59  *                     Doc5                       5004
60  *                     Doc6                       5005
61  *                     Doc7                       5006
62  *                     Doc8                       5007
63  *                     Doc9                       5008
64  *                     Doc10                      5009
65  *
66  *       But only 5000 to 5008 would be displayed in the "Windows" menu. We want
67  *       the last created child to be in the menu, so we swap the last child with
68  *       the 9th... Doc9 will be accessible via the "More Windows..." option.
69  *
70  *                     Doc1                       5000
71  *                     Doc2                       5001
72  *                     Doc3                       5002
73  *                     Doc4                       5003
74  *                     Doc5                       5004
75  *                     Doc6                       5005
76  *                     Doc7                       5006
77  *                     Doc8                       5007
78  *                     Doc9                       5009
79  *                     Doc10                      5008
80  *
81  */
82
83 #include <stdlib.h>
84 #include <stdarg.h>
85 #include <stdio.h>
86 #include <string.h>
87 #include <math.h>
88
89 #define OEMRESOURCE
90
91 #include "windef.h"
92 #include "winbase.h"
93 #include "wingdi.h"
94 #include "winuser.h"
95 #include "wownt32.h"
96 #include "wine/winuser16.h"
97 #include "wine/unicode.h"
98 #include "win.h"
99 #include "controls.h"
100 #include "user_private.h"
101 #include "wine/debug.h"
102 #include "dlgs.h"
103
104 WINE_DEFAULT_DEBUG_CHANNEL(mdi);
105
106 #define MDI_MAXTITLELENGTH      0xa1
107
108 #define WM_MDICALCCHILDSCROLL   0x10ac /* this is exactly what Windows uses */
109
110 /* "More Windows..." definitions */
111 #define MDI_MOREWINDOWSLIMIT    9       /* after this number of windows, a "More Windows..."
112                                            option will appear under the Windows menu */
113 #define MDI_IDC_LISTBOX         100
114 #define IDS_MDI_MOREWINDOWS     13
115
116 #define MDIF_NEEDUPDATE         0x0001
117
118 typedef struct
119 {
120     /* At some points, particularly when switching MDI children, active and
121      * maximized MDI children may be not the same window, so we need to track
122      * them separately.
123      * The only place where we switch to/from maximized state is DefMDIChildProc
124      * WM_SIZE/SIZE_MAXIMIZED handler. We get that notification only after the
125      * ShowWindow(SW_SHOWMAXIMIZED) request, therefore window is guaranteed to
126      * be visible at the time we get the notification, and it's safe to assume
127      * that hwndChildMaximized is always visible.
128      * If the app plays games with WS_VISIBLE, WS_MAXIMIZE or any other window
129      * states it must keep coherency with USER32 on its own. This is true for
130      * Windows as well.
131      */
132     UINT      nActiveChildren;
133     HWND      hwndChildMaximized;
134     HWND      hwndActiveChild;
135     HWND      *child; /* array of tracked children */
136     HMENU     hFrameMenu;
137     HMENU     hWindowMenu;
138     UINT      idFirstChild;
139     LPWSTR    frameTitle;
140     UINT      nTotalCreated;
141     UINT      mdiFlags;
142     UINT      sbRecalc;   /* SB_xxx flags for scrollbar fixup */
143 } MDICLIENTINFO;
144
145 static HBITMAP hBmpClose   = 0;
146
147 /* ----------------- declarations ----------------- */
148 static void MDI_UpdateFrameText( HWND, HWND, BOOL, LPCWSTR);
149 static BOOL MDI_AugmentFrameMenu( HWND, HWND );
150 static BOOL MDI_RestoreFrameMenu( HWND, HWND );
151 static LONG MDI_ChildActivate( HWND, HWND );
152 static LRESULT MDI_RefreshMenu(MDICLIENTINFO *);
153
154 static HWND MDI_MoreWindowsDialog(HWND);
155 static LRESULT WINAPI MDIClientWndProcA( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam );
156 static LRESULT WINAPI MDIClientWndProcW( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam );
157
158 /* -------- Miscellaneous service functions ----------
159  *
160  *                      MDI_GetChildByID
161  */
162 static HWND MDI_GetChildByID(HWND hwnd, UINT id, MDICLIENTINFO *ci)
163 {
164     int i;
165
166     for (i = 0; ci->nActiveChildren; i++)
167     {
168         if (GetWindowLongPtrW( ci->child[i], GWLP_ID ) == id)
169             return ci->child[i];
170     }
171     return 0;
172 }
173
174 static void MDI_PostUpdate(HWND hwnd, MDICLIENTINFO* ci, WORD recalc)
175 {
176     if( !(ci->mdiFlags & MDIF_NEEDUPDATE) )
177     {
178         ci->mdiFlags |= MDIF_NEEDUPDATE;
179         PostMessageA( hwnd, WM_MDICALCCHILDSCROLL, 0, 0);
180     }
181     ci->sbRecalc = recalc;
182 }
183
184
185 /*********************************************************************
186  * MDIClient class descriptor
187  */
188 const struct builtin_class_descr MDICLIENT_builtin_class =
189 {
190     "MDIClient",            /* name */
191     0,                      /* style */
192     MDIClientWndProcA,      /* procA */
193     MDIClientWndProcW,      /* procW */
194     sizeof(MDICLIENTINFO),  /* extra */
195     IDC_ARROW,              /* cursor */
196     (HBRUSH)(COLOR_APPWORKSPACE+1)    /* brush */
197 };
198
199
200 static MDICLIENTINFO *get_client_info( HWND client )
201 {
202     MDICLIENTINFO *ret = NULL;
203     WND *win = WIN_GetPtr( client );
204     if (win)
205     {
206         if (win == WND_OTHER_PROCESS)
207         {
208             if (IsWindow(client)) ERR( "client %p belongs to other process\n", client );
209             return NULL;
210         }
211         if (win->cbWndExtra < sizeof(MDICLIENTINFO)) WARN( "%p is not an MDI client\n", client );
212         else ret = (MDICLIENTINFO *)win->wExtra;
213         WIN_ReleasePtr( win );
214     }
215     return ret;
216 }
217
218 static BOOL is_close_enabled(HWND hwnd, HMENU hSysMenu)
219 {
220     if (GetClassLongW(hwnd, GCL_STYLE) & CS_NOCLOSE) return FALSE;
221
222     if (!hSysMenu) hSysMenu = GetSystemMenu(hwnd, FALSE);
223     if (hSysMenu)
224     {
225         UINT state = GetMenuState(hSysMenu, SC_CLOSE, MF_BYCOMMAND);
226         if (state == 0xFFFFFFFF || (state & (MF_DISABLED | MF_GRAYED)))
227             return FALSE;
228     }
229     return TRUE;
230 }
231
232 /**********************************************************************
233  *                      MDI_GetWindow
234  *
235  * returns "activatable" child different from the current or zero
236  */
237 static HWND MDI_GetWindow(MDICLIENTINFO *clientInfo, HWND hWnd, BOOL bNext,
238                             DWORD dwStyleMask )
239 {
240     int i;
241     HWND *list;
242     HWND last = 0;
243
244     dwStyleMask |= WS_DISABLED | WS_VISIBLE;
245     if( !hWnd ) hWnd = clientInfo->hwndActiveChild;
246
247     if (!(list = WIN_ListChildren( GetParent(hWnd) ))) return 0;
248     i = 0;
249     /* start from next after hWnd */
250     while (list[i] && list[i] != hWnd) i++;
251     if (list[i]) i++;
252
253     for ( ; list[i]; i++)
254     {
255         if (GetWindow( list[i], GW_OWNER )) continue;
256         if ((GetWindowLongW( list[i], GWL_STYLE ) & dwStyleMask) != WS_VISIBLE) continue;
257         last = list[i];
258         if (bNext) goto found;
259     }
260     /* now restart from the beginning */
261     for (i = 0; list[i] && list[i] != hWnd; i++)
262     {
263         if (GetWindow( list[i], GW_OWNER )) continue;
264         if ((GetWindowLongW( list[i], GWL_STYLE ) & dwStyleMask) != WS_VISIBLE) continue;
265         last = list[i];
266         if (bNext) goto found;
267     }
268  found:
269     HeapFree( GetProcessHeap(), 0, list );
270     return last;
271 }
272
273 /**********************************************************************
274  *                      MDI_CalcDefaultChildPos
275  *
276  *  It seems that the default height is about 2/3 of the client rect
277  */
278 void MDI_CalcDefaultChildPos( HWND hwndClient, INT total, LPPOINT lpPos, INT delta, UINT *id )
279 {
280     INT  nstagger;
281     RECT rect;
282     INT spacing = GetSystemMetrics(SM_CYCAPTION) + GetSystemMetrics(SM_CYFRAME) - 1;
283
284     if (total < 0) /* we are called from CreateWindow */
285     {
286         MDICLIENTINFO *ci = get_client_info(hwndClient);
287         total = ci ? ci->nTotalCreated : 0;
288         *id = ci->idFirstChild + ci->nActiveChildren;
289         TRACE("MDI child id %04x\n", *id);
290     }
291
292     GetClientRect( hwndClient, &rect );
293     if( rect.bottom - rect.top - delta >= spacing )
294         rect.bottom -= delta;
295
296     nstagger = (rect.bottom - rect.top)/(3 * spacing);
297     lpPos[1].x = (rect.right - rect.left - nstagger * spacing);
298     lpPos[1].y = (rect.bottom - rect.top - nstagger * spacing);
299     lpPos[0].x = lpPos[0].y = spacing * (total%(nstagger+1));
300 }
301
302 /**********************************************************************
303  *            MDISetMenu
304  */
305 static LRESULT MDISetMenu( HWND hwnd, HMENU hmenuFrame,
306                            HMENU hmenuWindow)
307 {
308     MDICLIENTINFO *ci;
309     HWND hwndFrame = GetParent(hwnd);
310
311     TRACE("%p %p %p\n", hwnd, hmenuFrame, hmenuWindow);
312
313     if (hmenuFrame && !IsMenu(hmenuFrame))
314     {
315         WARN("hmenuFrame is not a menu handle\n");
316         return 0L;
317     }
318
319     if (hmenuWindow && !IsMenu(hmenuWindow))
320     {
321         WARN("hmenuWindow is not a menu handle\n");
322         return 0L;
323     }
324
325     if (!(ci = get_client_info( hwnd ))) return 0;
326
327     if (hmenuFrame)
328     {
329         if (hmenuFrame == ci->hFrameMenu) return (LRESULT)hmenuFrame;
330
331         if (ci->hwndChildMaximized)
332             MDI_RestoreFrameMenu( hwndFrame, ci->hwndChildMaximized );
333     }
334
335     if( hmenuWindow && hmenuWindow != ci->hWindowMenu )
336     {
337         /* delete menu items from ci->hWindowMenu
338          * and add them to hmenuWindow */
339         /* Agent newsreader calls this function with  ci->hWindowMenu == NULL */
340         if( ci->hWindowMenu && ci->nActiveChildren )
341         {
342             UINT nActiveChildren_old = ci->nActiveChildren;
343
344             /* Remove all items from old Window menu */
345             ci->nActiveChildren = 0;
346             MDI_RefreshMenu(ci);
347
348             ci->hWindowMenu = hmenuWindow;
349
350             /* Add items to the new Window menu */
351             ci->nActiveChildren = nActiveChildren_old;
352             MDI_RefreshMenu(ci);
353         }
354         else
355             ci->hWindowMenu = hmenuWindow;
356     }
357
358     if (hmenuFrame)
359     {
360         SetMenu(hwndFrame, hmenuFrame);
361         if( hmenuFrame != ci->hFrameMenu )
362         {
363             HMENU oldFrameMenu = ci->hFrameMenu;
364
365             ci->hFrameMenu = hmenuFrame;
366             if (ci->hwndChildMaximized)
367                 MDI_AugmentFrameMenu( hwndFrame, ci->hwndChildMaximized );
368
369             return (LRESULT)oldFrameMenu;
370         }
371     }
372     else
373     {
374         /* SetMenu() may already have been called, meaning that this window
375          * already has its menu. But they may have done a SetMenu() on
376          * an MDI window, and called MDISetMenu() after the fact, meaning
377          * that the "if" to this "else" wouldn't catch the need to
378          * augment the frame menu.
379          */
380         if( ci->hwndChildMaximized )
381             MDI_AugmentFrameMenu( hwndFrame, ci->hwndChildMaximized );
382     }
383
384     return 0;
385 }
386
387 /**********************************************************************
388  *            MDIRefreshMenu
389  */
390 static LRESULT MDI_RefreshMenu(MDICLIENTINFO *ci)
391 {
392     UINT i, count, visible, id;
393     WCHAR buf[MDI_MAXTITLELENGTH];
394
395     TRACE("children %u, window menu %p\n", ci->nActiveChildren, ci->hWindowMenu);
396
397     if (!ci->hWindowMenu)
398         return 0;
399
400     if (!IsMenu(ci->hWindowMenu))
401     {
402         WARN("Window menu handle %p is no more valid\n", ci->hWindowMenu);
403         return 0;
404     }
405
406     /* Windows finds the last separator in the menu, and if after it
407      * there is a menu item with MDI magic ID removes all existing
408      * menu items after it, and then adds visible MDI children.
409      */
410     count = GetMenuItemCount(ci->hWindowMenu);
411     for (i = 0; i < count; i++)
412     {
413         MENUITEMINFOW mii;
414
415         memset(&mii, 0, sizeof(mii));
416         mii.cbSize = sizeof(mii);
417         mii.fMask  = MIIM_TYPE;
418         if (GetMenuItemInfoW(ci->hWindowMenu, i, TRUE, &mii))
419         {
420             if (mii.fType & MF_SEPARATOR)
421             {
422                 /* Windows checks only ID of the menu item */
423                 memset(&mii, 0, sizeof(mii));
424                 mii.cbSize = sizeof(mii);
425                 mii.fMask  = MIIM_ID;
426                 if (GetMenuItemInfoW(ci->hWindowMenu, i + 1, TRUE, &mii))
427                 {
428                     if (mii.wID == ci->idFirstChild)
429                     {
430                         TRACE("removing %u items including separator\n", count - i);
431                         while (RemoveMenu(ci->hWindowMenu, i, MF_BYPOSITION))
432                             /* nothing */;
433
434                         break;
435                     }
436                 }
437             }
438         }
439     }
440
441     visible = 0;
442     for (i = 0; i < ci->nActiveChildren; i++)
443     {
444         if (GetWindowLongW(ci->child[i], GWL_STYLE) & WS_VISIBLE)
445         {
446             id = ci->idFirstChild + visible;
447
448             if (visible == MDI_MOREWINDOWSLIMIT)
449             {
450                 LoadStringW(user32_module, IDS_MDI_MOREWINDOWS, buf, sizeof(buf)/sizeof(WCHAR));
451                 AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
452                 break;
453             }
454
455             if (!visible)
456                 /* Visio expects that separator has id 0 */
457                 AppendMenuW(ci->hWindowMenu, MF_SEPARATOR, 0, NULL);
458
459             visible++;
460
461             SetWindowLongPtrW(ci->child[i], GWLP_ID, id);
462
463             buf[0] = '&';
464             buf[1] = '0' + visible;
465             buf[2] = ' ';
466             InternalGetWindowText(ci->child[i], buf + 3, sizeof(buf)/sizeof(WCHAR) - 3);
467             TRACE("Adding %p, id %u %s\n", ci->child[i], id, debugstr_w(buf));
468             AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
469
470             if (ci->child[i] == ci->hwndActiveChild)
471                 CheckMenuItem(ci->hWindowMenu, id, MF_CHECKED);
472         }
473         else
474             TRACE("MDI child %p is not visible, skipping\n", ci->child[i]);
475     }
476
477     return (LRESULT)ci->hFrameMenu;
478 }
479
480
481 /* ------------------ MDI child window functions ---------------------- */
482
483 /**********************************************************************
484  *                      MDI_ChildGetMinMaxInfo
485  *
486  * Note: The rule here is that client rect of the maximized MDI child
487  *       is equal to the client rect of the MDI client window.
488  */
489 static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax )
490 {
491     RECT rect;
492
493     GetClientRect( client, &rect );
494     AdjustWindowRectEx( &rect, GetWindowLongW( hwnd, GWL_STYLE ),
495                         0, GetWindowLongW( hwnd, GWL_EXSTYLE ));
496
497     lpMinMax->ptMaxSize.x = rect.right -= rect.left;
498     lpMinMax->ptMaxSize.y = rect.bottom -= rect.top;
499
500     lpMinMax->ptMaxPosition.x = rect.left;
501     lpMinMax->ptMaxPosition.y = rect.top;
502
503     TRACE("max rect (%d,%d - %d, %d)\n",
504                         rect.left,rect.top,rect.right,rect.bottom);
505 }
506
507 /**********************************************************************
508  *                      MDI_SwitchActiveChild
509  *
510  * Note: SetWindowPos sends WM_CHILDACTIVATE to the child window that is
511  *       being activated
512  */
513 static void MDI_SwitchActiveChild( MDICLIENTINFO *ci, HWND hwndTo, BOOL activate )
514 {
515     HWND hwndPrev;
516
517     hwndPrev = ci->hwndActiveChild;
518
519     TRACE("from %p, to %p\n", hwndPrev, hwndTo);
520
521     if ( hwndTo != hwndPrev )
522     {
523         BOOL was_zoomed = IsZoomed(hwndPrev);
524
525         if (was_zoomed)
526         {
527             /* restore old MDI child */
528             SendMessageW( hwndPrev, WM_SETREDRAW, FALSE, 0 );
529             ShowWindow( hwndPrev, SW_RESTORE );
530             SendMessageW( hwndPrev, WM_SETREDRAW, TRUE, 0 );
531
532             /* activate new MDI child */
533             SetWindowPos( hwndTo, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE );
534             /* maximize new MDI child */
535             ShowWindow( hwndTo, SW_MAXIMIZE );
536         }
537         /* activate new MDI child */
538         SetWindowPos( hwndTo, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | (activate ? 0 : SWP_NOACTIVATE) );
539     }
540 }
541
542
543 /**********************************************************************
544  *                                      MDIDestroyChild
545  */
546 static LRESULT MDIDestroyChild( HWND client, MDICLIENTINFO *ci,
547                                 HWND child, BOOL flagDestroy )
548 {
549     UINT i;
550
551     TRACE("# of managed children %u\n", ci->nActiveChildren);
552
553     if( child == ci->hwndActiveChild )
554     {
555         HWND next = MDI_GetWindow(ci, child, TRUE, 0);
556         /* flagDestroy == 0 means we were called from WM_PARENTNOTIFY handler */
557         if (flagDestroy && next)
558             MDI_SwitchActiveChild(ci, next, TRUE);
559         else
560         {
561             ShowWindow(child, SW_HIDE);
562             if (child == ci->hwndChildMaximized)
563             {
564                 HWND frame = GetParent(client);
565                 MDI_RestoreFrameMenu(frame, child);
566                 ci->hwndChildMaximized = 0;
567                 MDI_UpdateFrameText(frame, client, TRUE, NULL);
568             }
569             if (flagDestroy) ci->hwndActiveChild = 0;
570         }
571     }
572
573     for (i = 0; i < ci->nActiveChildren; i++)
574     {
575         if (ci->child[i] == child)
576         {
577             HWND *new_child = HeapAlloc(GetProcessHeap(), 0, (ci->nActiveChildren - 1) * sizeof(HWND));
578             memcpy(new_child, ci->child, i * sizeof(HWND));
579             if (i + 1 < ci->nActiveChildren)
580                 memcpy(new_child + i, ci->child + i + 1, (ci->nActiveChildren - i - 1) * sizeof(HWND));
581             HeapFree(GetProcessHeap(), 0, ci->child);
582             ci->child = new_child;
583
584             ci->nActiveChildren--;
585             break;
586         }
587     }
588
589     if (flagDestroy)
590     {
591         SendMessageW(client, WM_MDIREFRESHMENU, 0, 0);
592         MDI_PostUpdate(GetParent(child), ci, SB_BOTH+1);
593         DestroyWindow(child);
594     }
595
596     TRACE("child destroyed - %p\n", child);
597     return 0;
598 }
599
600
601 /**********************************************************************
602  *                                      MDI_ChildActivate
603  *
604  * Called in response to WM_CHILDACTIVATE, or when last MDI child
605  * is being deactivated.
606  */
607 static LONG MDI_ChildActivate( HWND client, HWND child )
608 {
609     MDICLIENTINFO *clientInfo;
610     HWND prevActiveWnd, frame;
611     BOOL isActiveFrameWnd;
612
613     clientInfo = get_client_info( client );
614
615     if (clientInfo->hwndActiveChild == child) return 0;
616
617     TRACE("%p\n", child);
618
619     frame = GetParent(client);
620     isActiveFrameWnd = (GetActiveWindow() == frame);
621     prevActiveWnd = clientInfo->hwndActiveChild;
622
623     /* deactivate prev. active child */
624     if(prevActiveWnd)
625     {
626         SendMessageW( prevActiveWnd, WM_NCACTIVATE, FALSE, 0L );
627         SendMessageW( prevActiveWnd, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child);
628     }
629
630     MDI_SwitchActiveChild( clientInfo, child, FALSE );
631     clientInfo->hwndActiveChild = child;
632
633     MDI_RefreshMenu(clientInfo);
634
635     if( isActiveFrameWnd )
636     {
637         SendMessageW( child, WM_NCACTIVATE, TRUE, 0L);
638         /* Let the client window manage focus for children, but if the focus
639          * is already on the client (for instance this is the 1st child) then
640          * SetFocus won't work. It appears that Windows sends WM_SETFOCUS
641          * manually in this case.
642          */
643         if (SetFocus(client) == client)
644             SendMessageW( client, WM_SETFOCUS, (WPARAM)client, 0 );
645     }
646
647     SendMessageW( child, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child );
648     return TRUE;
649 }
650
651 /* -------------------- MDI client window functions ------------------- */
652
653 /**********************************************************************
654  *                              CreateMDIMenuBitmap
655  */
656 static HBITMAP CreateMDIMenuBitmap(void)
657 {
658  HDC            hDCSrc  = CreateCompatibleDC(0);
659  HDC            hDCDest = CreateCompatibleDC(hDCSrc);
660  HBITMAP        hbClose = LoadBitmapW(0, MAKEINTRESOURCEW(OBM_OLD_CLOSE) );
661  HBITMAP        hbCopy;
662  HBITMAP        hobjSrc, hobjDest;
663
664  hobjSrc = SelectObject(hDCSrc, hbClose);
665  hbCopy = CreateCompatibleBitmap(hDCSrc,GetSystemMetrics(SM_CXSIZE),GetSystemMetrics(SM_CYSIZE));
666  hobjDest = SelectObject(hDCDest, hbCopy);
667
668  BitBlt(hDCDest, 0, 0, GetSystemMetrics(SM_CXSIZE), GetSystemMetrics(SM_CYSIZE),
669           hDCSrc, GetSystemMetrics(SM_CXSIZE), 0, SRCCOPY);
670
671  SelectObject(hDCSrc, hobjSrc);
672  DeleteObject(hbClose);
673  DeleteDC(hDCSrc);
674
675  hobjSrc = SelectObject( hDCDest, GetStockObject(BLACK_PEN) );
676
677  MoveToEx( hDCDest, GetSystemMetrics(SM_CXSIZE) - 1, 0, NULL );
678  LineTo( hDCDest, GetSystemMetrics(SM_CXSIZE) - 1, GetSystemMetrics(SM_CYSIZE) - 1);
679
680  SelectObject(hDCDest, hobjSrc );
681  SelectObject(hDCDest, hobjDest);
682  DeleteDC(hDCDest);
683
684  return hbCopy;
685 }
686
687 /**********************************************************************
688  *                              MDICascade
689  */
690 static LONG MDICascade( HWND client, MDICLIENTINFO *ci )
691 {
692     HWND *win_array;
693     BOOL has_icons = FALSE;
694     int i, total;
695
696     if (ci->hwndChildMaximized)
697         SendMessageW(client, WM_MDIRESTORE, (WPARAM)ci->hwndChildMaximized, 0);
698
699     if (ci->nActiveChildren == 0) return 0;
700
701     if (!(win_array = WIN_ListChildren( client ))) return 0;
702
703     /* remove all the windows we don't want */
704     for (i = total = 0; win_array[i]; i++)
705     {
706         if (!IsWindowVisible( win_array[i] )) continue;
707         if (GetWindow( win_array[i], GW_OWNER )) continue; /* skip owned windows */
708         if (IsIconic( win_array[i] ))
709         {
710             has_icons = TRUE;
711             continue;
712         }
713         win_array[total++] = win_array[i];
714     }
715     win_array[total] = 0;
716
717     if (total)
718     {
719         INT delta = 0, n = 0, i;
720         POINT pos[2];
721         if (has_icons) delta = GetSystemMetrics(SM_CYICONSPACING) + GetSystemMetrics(SM_CYICON);
722
723         /* walk the list (backwards) and move windows */
724         for (i = total - 1; i >= 0; i--)
725         {
726             TRACE("move %p to (%d,%d) size [%d,%d]\n",
727                   win_array[i], pos[0].x, pos[0].y, pos[1].x, pos[1].y);
728
729             MDI_CalcDefaultChildPos(client, n++, pos, delta, NULL);
730             SetWindowPos( win_array[i], 0, pos[0].x, pos[0].y, pos[1].x, pos[1].y,
731                           SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER);
732         }
733     }
734     HeapFree( GetProcessHeap(), 0, win_array );
735
736     if (has_icons) ArrangeIconicWindows( client );
737     return 0;
738 }
739
740 /**********************************************************************
741  *                                      MDITile
742  */
743 static void MDITile( HWND client, MDICLIENTINFO *ci, WPARAM wParam )
744 {
745     HWND *win_array;
746     int i, total;
747     BOOL has_icons = FALSE;
748
749     if (ci->hwndChildMaximized)
750         SendMessageW(client, WM_MDIRESTORE, (WPARAM)ci->hwndChildMaximized, 0);
751
752     if (ci->nActiveChildren == 0) return;
753
754     if (!(win_array = WIN_ListChildren( client ))) return;
755
756     /* remove all the windows we don't want */
757     for (i = total = 0; win_array[i]; i++)
758     {
759         if (!IsWindowVisible( win_array[i] )) continue;
760         if (GetWindow( win_array[i], GW_OWNER )) continue; /* skip owned windows (icon titles) */
761         if (IsIconic( win_array[i] ))
762         {
763             has_icons = TRUE;
764             continue;
765         }
766         if ((wParam & MDITILE_SKIPDISABLED) && !IsWindowEnabled( win_array[i] )) continue;
767         win_array[total++] = win_array[i];
768     }
769     win_array[total] = 0;
770
771     TRACE("%u windows to tile\n", total);
772
773     if (total)
774     {
775         HWND *pWnd = win_array;
776         RECT rect;
777         int x, y, xsize, ysize;
778         int rows, columns, r, c, i;
779
780         GetClientRect(client,&rect);
781         rows    = (int) sqrt((double)total);
782         columns = total / rows;
783
784         if( wParam & MDITILE_HORIZONTAL )  /* version >= 3.1 */
785         {
786             i = rows;
787             rows = columns;  /* exchange r and c */
788             columns = i;
789         }
790
791         if (has_icons)
792         {
793             y = rect.bottom - 2 * GetSystemMetrics(SM_CYICONSPACING) - GetSystemMetrics(SM_CYICON);
794             rect.bottom = ( y - GetSystemMetrics(SM_CYICON) < rect.top )? rect.bottom: y;
795         }
796
797         ysize   = rect.bottom / rows;
798         xsize   = rect.right  / columns;
799
800         for (x = i = 0, c = 1; c <= columns && *pWnd; c++)
801         {
802             if (c == columns)
803             {
804                 rows  = total - i;
805                 ysize = rect.bottom / rows;
806             }
807
808             y = 0;
809             for (r = 1; r <= rows && *pWnd; r++, i++)
810             {
811                 SetWindowPos(*pWnd, 0, x, y, xsize, ysize,
812                              SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER);
813                 y += ysize;
814                 pWnd++;
815             }
816             x += xsize;
817         }
818     }
819     HeapFree( GetProcessHeap(), 0, win_array );
820     if (has_icons) ArrangeIconicWindows( client );
821 }
822
823 /* ----------------------- Frame window ---------------------------- */
824
825
826 /**********************************************************************
827  *                                      MDI_AugmentFrameMenu
828  */
829 static BOOL MDI_AugmentFrameMenu( HWND frame, HWND hChild )
830 {
831     HMENU menu = GetMenu( frame );
832     HMENU       hSysPopup = 0;
833     HBITMAP hSysMenuBitmap = 0;
834     HICON hIcon;
835
836     TRACE("frame %p,child %p\n",frame,hChild);
837
838     if( !menu ) return 0;
839
840     /* create a copy of sysmenu popup and insert it into frame menu bar */
841     if (!(hSysPopup = GetSystemMenu(hChild, FALSE)))
842     {
843         TRACE("child %p doesn't have a system menu\n", hChild);
844         return 0;
845     }
846
847     AppendMenuW(menu, MF_HELP | MF_BITMAP,
848                 SC_MINIMIZE, (LPCWSTR)HBMMENU_MBAR_MINIMIZE ) ;
849     AppendMenuW(menu, MF_HELP | MF_BITMAP,
850                 SC_RESTORE, (LPCWSTR)HBMMENU_MBAR_RESTORE );
851     AppendMenuW(menu, MF_HELP | MF_BITMAP,
852                 SC_CLOSE, is_close_enabled(hChild, hSysPopup) ?
853                 (LPCWSTR)HBMMENU_MBAR_CLOSE : (LPCWSTR)HBMMENU_MBAR_CLOSE_D );
854
855     /* The system menu is replaced by the child icon */
856     hIcon = (HICON)SendMessageW(hChild, WM_GETICON, ICON_SMALL, 0);
857     if (!hIcon)
858         hIcon = (HICON)SendMessageW(hChild, WM_GETICON, ICON_BIG, 0);
859     if (!hIcon)
860         hIcon = LoadImageW(0, MAKEINTRESOURCEW(IDI_WINLOGO), IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR);
861     if (hIcon)
862     {
863       HDC hMemDC;
864       HBITMAP hBitmap, hOldBitmap;
865       HBRUSH hBrush;
866       HDC hdc = GetDC(hChild);
867
868       if (hdc)
869       {
870         int cx, cy;
871         cx = GetSystemMetrics(SM_CXSMICON);
872         cy = GetSystemMetrics(SM_CYSMICON);
873         hMemDC = CreateCompatibleDC(hdc);
874         hBitmap = CreateCompatibleBitmap(hdc, cx, cy);
875         hOldBitmap = SelectObject(hMemDC, hBitmap);
876         SetMapMode(hMemDC, MM_TEXT);
877         hBrush = CreateSolidBrush(GetSysColor(COLOR_MENU));
878         DrawIconEx(hMemDC, 0, 0, hIcon, cx, cy, 0, hBrush, DI_NORMAL);
879         SelectObject (hMemDC, hOldBitmap);
880         DeleteObject(hBrush);
881         DeleteDC(hMemDC);
882         ReleaseDC(hChild, hdc);
883         hSysMenuBitmap = hBitmap;
884       }
885     }
886
887     if( !InsertMenuA(menu,0,MF_BYPOSITION | MF_BITMAP | MF_POPUP,
888                      (UINT_PTR)hSysPopup, (LPSTR)hSysMenuBitmap))
889     {
890         TRACE("not inserted\n");
891         DestroyMenu(hSysPopup);
892         return 0;
893     }
894
895     EnableMenuItem(hSysPopup, SC_SIZE, MF_BYCOMMAND | MF_GRAYED);
896     EnableMenuItem(hSysPopup, SC_MOVE, MF_BYCOMMAND | MF_GRAYED);
897     EnableMenuItem(hSysPopup, SC_MAXIMIZE, MF_BYCOMMAND | MF_GRAYED);
898     SetMenuDefaultItem(hSysPopup, SC_CLOSE, FALSE);
899
900     /* redraw menu */
901     DrawMenuBar(frame);
902
903     return 1;
904 }
905
906 /**********************************************************************
907  *                                      MDI_RestoreFrameMenu
908  */
909 static BOOL MDI_RestoreFrameMenu( HWND frame, HWND hChild )
910 {
911     MENUITEMINFOW menuInfo;
912     HMENU menu = GetMenu( frame );
913     INT nItems;
914     UINT iId;
915
916     TRACE("frame %p, child %p\n", frame, hChild);
917
918     if( !menu ) return 0;
919
920     /* if there is no system buttons then nothing to do */
921     nItems = GetMenuItemCount(menu) - 1;
922     iId = GetMenuItemID(menu, nItems);
923     if ( !(iId == SC_RESTORE || iId == SC_CLOSE) )
924         return 0;
925
926     /*
927      * Remove the system menu, If that menu is the icon of the window
928      * as it is in win95, we have to delete the bitmap.
929      */
930     memset(&menuInfo, 0, sizeof(menuInfo));
931     menuInfo.cbSize = sizeof(menuInfo);
932     menuInfo.fMask  = MIIM_DATA | MIIM_TYPE;
933
934     GetMenuItemInfoW(menu,
935                      0,
936                      TRUE,
937                      &menuInfo);
938
939     RemoveMenu(menu,0,MF_BYPOSITION);
940
941     if ( (menuInfo.fType & MFT_BITMAP)           &&
942          (LOWORD(menuInfo.dwTypeData)!=0)        &&
943          (LOWORD(menuInfo.dwTypeData)!=HBITMAP_16(hBmpClose)) )
944     {
945         DeleteObject(HBITMAP_32(LOWORD(menuInfo.dwTypeData)));
946     }
947
948     /* close */
949     DeleteMenu(menu, SC_CLOSE, MF_BYCOMMAND);
950     /* restore */
951     DeleteMenu(menu, SC_RESTORE, MF_BYCOMMAND);
952     /* minimize */
953     DeleteMenu(menu, SC_MINIMIZE, MF_BYCOMMAND);
954
955     DrawMenuBar(frame);
956
957     return 1;
958 }
959
960
961 /**********************************************************************
962  *                                      MDI_UpdateFrameText
963  *
964  * used when child window is maximized/restored
965  *
966  * Note: lpTitle can be NULL
967  */
968 static void MDI_UpdateFrameText( HWND frame, HWND hClient, BOOL repaint, LPCWSTR lpTitle )
969 {
970     WCHAR   lpBuffer[MDI_MAXTITLELENGTH+1];
971     MDICLIENTINFO *ci = get_client_info( hClient );
972
973     TRACE("frameText %s\n", debugstr_w(lpTitle));
974
975     if (!ci) return;
976
977     if (!lpTitle && !ci->frameTitle)  /* first time around, get title from the frame window */
978     {
979         GetWindowTextW( frame, lpBuffer, sizeof(lpBuffer)/sizeof(WCHAR) );
980         lpTitle = lpBuffer;
981     }
982
983     /* store new "default" title if lpTitle is not NULL */
984     if (lpTitle)
985     {
986         HeapFree( GetProcessHeap(), 0, ci->frameTitle );
987         if ((ci->frameTitle = HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle)+1)*sizeof(WCHAR))))
988             strcpyW( ci->frameTitle, lpTitle );
989     }
990
991     if (ci->frameTitle)
992     {
993         if (ci->hwndChildMaximized)
994         {
995             /* combine frame title and child title if possible */
996
997             static const WCHAR lpBracket[]  = {' ','-',' ','[',0};
998             static const WCHAR lpBracket2[]  = {']',0};
999             int i_frame_text_length = strlenW(ci->frameTitle);
1000
1001             lstrcpynW( lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH);
1002
1003             if( i_frame_text_length + 6 < MDI_MAXTITLELENGTH )
1004             {
1005                 strcatW( lpBuffer, lpBracket );
1006                 if (GetWindowTextW( ci->hwndActiveChild, lpBuffer + i_frame_text_length + 4,
1007                                     MDI_MAXTITLELENGTH - i_frame_text_length - 5 ))
1008                     strcatW( lpBuffer, lpBracket2 );
1009                 else
1010                     lpBuffer[i_frame_text_length] = 0;  /* remove bracket */
1011             }
1012         }
1013         else
1014         {
1015             lstrcpynW(lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH+1 );
1016         }
1017     }
1018     else
1019         lpBuffer[0] = '\0';
1020
1021     DefWindowProcW( frame, WM_SETTEXT, 0, (LPARAM)lpBuffer );
1022
1023     if (repaint)
1024         SetWindowPos( frame, 0,0,0,0,0, SWP_FRAMECHANGED |
1025                       SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER );
1026 }
1027
1028
1029 /* ----------------------------- Interface ---------------------------- */
1030
1031
1032 /**********************************************************************
1033  *              MDIClientWndProc_common
1034  */
1035 static LRESULT MDIClientWndProc_common( HWND hwnd, UINT message,
1036                                         WPARAM wParam, LPARAM lParam, BOOL unicode )
1037 {
1038     MDICLIENTINFO *ci;
1039
1040     TRACE("%p %04x (%s) %08x %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1041
1042     if (!(ci = get_client_info( hwnd ))) return 0;
1043
1044     switch (message)
1045     {
1046       case WM_CREATE:
1047       {
1048           /* Since we are using only cs->lpCreateParams, we can safely
1049            * cast to LPCREATESTRUCTA here */
1050           LPCREATESTRUCTA cs = (LPCREATESTRUCTA)lParam;
1051           WND *wndPtr = WIN_GetPtr( hwnd );
1052
1053           wndPtr->flags |= WIN_ISMDICLIENT;
1054
1055         /* Translation layer doesn't know what's in the cs->lpCreateParams
1056          * so we have to keep track of what environment we're in. */
1057
1058         if( wndPtr->flags & WIN_ISWIN32 )
1059         {
1060             LPCLIENTCREATESTRUCT ccs = cs->lpCreateParams;
1061             ci->hWindowMenu     = ccs->hWindowMenu;
1062             ci->idFirstChild    = ccs->idFirstChild;
1063         }
1064         else
1065         {
1066             LPCLIENTCREATESTRUCT16 ccs = MapSL((SEGPTR)cs->lpCreateParams);
1067             ci->hWindowMenu     = HMENU_32(ccs->hWindowMenu);
1068             ci->idFirstChild    = ccs->idFirstChild;
1069         }
1070         WIN_ReleasePtr( wndPtr );
1071
1072         ci->hwndChildMaximized  = 0;
1073         ci->child = NULL;
1074         ci->nActiveChildren     = 0;
1075         ci->nTotalCreated       = 0;
1076         ci->frameTitle          = NULL;
1077         ci->mdiFlags            = 0;
1078         ci->hFrameMenu = GetMenu(cs->hwndParent);
1079
1080         if (!hBmpClose) hBmpClose = CreateMDIMenuBitmap();
1081
1082         TRACE("Client created: hwnd %p, Window menu %p, idFirst = %04x\n",
1083               hwnd, ci->hWindowMenu, ci->idFirstChild );
1084         return 0;
1085       }
1086
1087       case WM_DESTROY:
1088       {
1089           if( ci->hwndChildMaximized )
1090               MDI_RestoreFrameMenu(GetParent(hwnd), ci->hwndChildMaximized);
1091
1092           ci->nActiveChildren = 0;
1093           MDI_RefreshMenu(ci);
1094
1095           HeapFree( GetProcessHeap(), 0, ci->child );
1096           HeapFree( GetProcessHeap(), 0, ci->frameTitle );
1097
1098           return 0;
1099       }
1100
1101       case WM_MDIACTIVATE:
1102       {
1103         if( ci->hwndActiveChild != (HWND)wParam )
1104             SetWindowPos((HWND)wParam, 0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE);
1105         return 0;
1106       }
1107
1108       case WM_MDICASCADE:
1109         return MDICascade(hwnd, ci);
1110
1111       case WM_MDICREATE:
1112         if (lParam)
1113         {
1114             HWND child;
1115
1116             if (unicode)
1117             {
1118                 MDICREATESTRUCTW *csW = (MDICREATESTRUCTW *)lParam;
1119                 child = CreateWindowExW(WS_EX_MDICHILD, csW->szClass,
1120                                             csW->szTitle, csW->style,
1121                                             csW->x, csW->y, csW->cx, csW->cy,
1122                                             hwnd, 0, csW->hOwner,
1123                                             (LPVOID)csW->lParam);
1124             }
1125             else
1126             {
1127                 MDICREATESTRUCTA *csA = (MDICREATESTRUCTA *)lParam;
1128                 child = CreateWindowExA(WS_EX_MDICHILD, csA->szClass,
1129                                             csA->szTitle, csA->style,
1130                                             csA->x, csA->y, csA->cx, csA->cy,
1131                                             hwnd, 0, csA->hOwner,
1132                                             (LPVOID)csA->lParam);
1133             }
1134             return (LRESULT)child;
1135         }
1136         return 0;
1137
1138       case WM_MDIDESTROY:
1139           return MDIDestroyChild( hwnd, ci, WIN_GetFullHandle( (HWND)wParam ), TRUE );
1140
1141       case WM_MDIGETACTIVE:
1142           if (lParam) *(BOOL *)lParam = IsZoomed(ci->hwndActiveChild);
1143           return (LRESULT)ci->hwndActiveChild;
1144
1145       case WM_MDIICONARRANGE:
1146         ci->mdiFlags |= MDIF_NEEDUPDATE;
1147         ArrangeIconicWindows( hwnd );
1148         ci->sbRecalc = SB_BOTH+1;
1149         SendMessageW( hwnd, WM_MDICALCCHILDSCROLL, 0, 0 );
1150         return 0;
1151
1152       case WM_MDIMAXIMIZE:
1153         ShowWindow( (HWND)wParam, SW_MAXIMIZE );
1154         return 0;
1155
1156       case WM_MDINEXT: /* lParam != 0 means previous window */
1157       {
1158         HWND next = MDI_GetWindow( ci, WIN_GetFullHandle( (HWND)wParam ), !lParam, 0 );
1159         MDI_SwitchActiveChild( ci, next, TRUE );
1160         break;
1161       }
1162
1163       case WM_MDIRESTORE:
1164         ShowWindow( (HWND)wParam, SW_SHOWNORMAL );
1165         return 0;
1166
1167       case WM_MDISETMENU:
1168           return MDISetMenu( hwnd, (HMENU)wParam, (HMENU)lParam );
1169
1170       case WM_MDIREFRESHMENU:
1171           return MDI_RefreshMenu( ci );
1172
1173       case WM_MDITILE:
1174         ci->mdiFlags |= MDIF_NEEDUPDATE;
1175         ShowScrollBar( hwnd, SB_BOTH, FALSE );
1176         MDITile( hwnd, ci, wParam );
1177         ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1178         return 0;
1179
1180       case WM_VSCROLL:
1181       case WM_HSCROLL:
1182         ci->mdiFlags |= MDIF_NEEDUPDATE;
1183         ScrollChildren( hwnd, message, wParam, lParam );
1184         ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1185         return 0;
1186
1187       case WM_SETFOCUS:
1188           if (ci->hwndActiveChild && !IsIconic( ci->hwndActiveChild ))
1189               SetFocus( ci->hwndActiveChild );
1190           return 0;
1191
1192       case WM_NCACTIVATE:
1193         if( ci->hwndActiveChild )
1194             SendMessageW(ci->hwndActiveChild, message, wParam, lParam);
1195         break;
1196
1197       case WM_PARENTNOTIFY:
1198         switch (LOWORD(wParam))
1199         {
1200         case WM_CREATE:
1201             if (GetWindowLongW((HWND)lParam, GWL_EXSTYLE) & WS_EX_MDICHILD)
1202             {
1203                 ci->nTotalCreated++;
1204                 ci->nActiveChildren++;
1205
1206                 if (!ci->child)
1207                     ci->child = HeapAlloc(GetProcessHeap(), 0, sizeof(HWND));
1208                 else
1209                     ci->child = HeapReAlloc(GetProcessHeap(), 0, ci->child, sizeof(HWND) * ci->nActiveChildren);
1210
1211                 TRACE("Adding MDI child %p, # of children %d\n",
1212                       (HWND)lParam, ci->nActiveChildren);
1213
1214                 ci->child[ci->nActiveChildren - 1] = (HWND)lParam;
1215             }
1216             break;
1217
1218         case WM_LBUTTONDOWN:
1219             {
1220             HWND child;
1221             POINT pt;
1222             pt.x = (short)LOWORD(lParam);
1223             pt.y = (short)HIWORD(lParam);
1224             child = ChildWindowFromPoint(hwnd, pt);
1225
1226             TRACE("notification from %p (%i,%i)\n",child,pt.x,pt.y);
1227
1228             if( child && child != hwnd && child != ci->hwndActiveChild )
1229                 SetWindowPos(child, 0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE );
1230             break;
1231             }
1232
1233         case WM_DESTROY:
1234             return MDIDestroyChild( hwnd, ci, WIN_GetFullHandle( (HWND)lParam ), FALSE );
1235         }
1236         return 0;
1237
1238       case WM_SIZE:
1239         if( ci->hwndChildMaximized )
1240         {
1241             RECT        rect;
1242
1243             rect.left = 0;
1244             rect.top = 0;
1245             rect.right = LOWORD(lParam);
1246             rect.bottom = HIWORD(lParam);
1247
1248             AdjustWindowRectEx( &rect, GetWindowLongA(ci->hwndChildMaximized, GWL_STYLE),
1249                                0, GetWindowLongA(ci->hwndChildMaximized, GWL_EXSTYLE) );
1250             MoveWindow( ci->hwndChildMaximized, rect.left, rect.top,
1251                          rect.right - rect.left, rect.bottom - rect.top, 1);
1252         }
1253         else
1254             MDI_PostUpdate(hwnd, ci, SB_BOTH+1);
1255
1256         break;
1257
1258       case WM_MDICALCCHILDSCROLL:
1259         if( (ci->mdiFlags & MDIF_NEEDUPDATE) && ci->sbRecalc )
1260         {
1261             CalcChildScroll(hwnd, ci->sbRecalc-1);
1262             ci->sbRecalc = 0;
1263             ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1264         }
1265         return 0;
1266     }
1267     return unicode ? DefWindowProcW( hwnd, message, wParam, lParam ) :
1268                      DefWindowProcA( hwnd, message, wParam, lParam );
1269 }
1270
1271 /***********************************************************************
1272  *              MDIClientWndProcA
1273  */
1274 static LRESULT WINAPI MDIClientWndProcA( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1275 {
1276     if (!IsWindow(hwnd)) return 0;
1277     return MDIClientWndProc_common( hwnd, message, wParam, lParam, FALSE );
1278 }
1279
1280 /***********************************************************************
1281  *              MDIClientWndProcW
1282  */
1283 static LRESULT WINAPI MDIClientWndProcW( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1284 {
1285     if (!IsWindow(hwnd)) return 0;
1286     return MDIClientWndProc_common( hwnd, message, wParam, lParam, TRUE );
1287 }
1288
1289 /***********************************************************************
1290  *              DefFrameProcA (USER32.@)
1291  */
1292 LRESULT WINAPI DefFrameProcA( HWND hwnd, HWND hwndMDIClient,
1293                                 UINT message, WPARAM wParam, LPARAM lParam)
1294 {
1295     if (hwndMDIClient)
1296     {
1297         switch (message)
1298         {
1299         case WM_SETTEXT:
1300             {
1301                 DWORD len = MultiByteToWideChar( CP_ACP, 0, (LPSTR)lParam, -1, NULL, 0 );
1302                 LPWSTR text = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
1303                 MultiByteToWideChar( CP_ACP, 0, (LPSTR)lParam, -1, text, len );
1304                 MDI_UpdateFrameText( hwnd, hwndMDIClient, FALSE, text );
1305                 HeapFree( GetProcessHeap(), 0, text );
1306             }
1307             return 1; /* success. FIXME: check text length */
1308
1309         case WM_COMMAND:
1310         case WM_NCACTIVATE:
1311         case WM_NEXTMENU:
1312         case WM_SETFOCUS:
1313         case WM_SIZE:
1314             return DefFrameProcW( hwnd, hwndMDIClient, message, wParam, lParam );
1315         }
1316     }
1317     return DefWindowProcA(hwnd, message, wParam, lParam);
1318 }
1319
1320
1321 /***********************************************************************
1322  *              DefFrameProcW (USER32.@)
1323  */
1324 LRESULT WINAPI DefFrameProcW( HWND hwnd, HWND hwndMDIClient,
1325                                 UINT message, WPARAM wParam, LPARAM lParam)
1326 {
1327     MDICLIENTINFO *ci = get_client_info( hwndMDIClient );
1328
1329     TRACE("%p %p %04x (%s) %08x %08lx\n", hwnd, hwndMDIClient, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1330
1331     if (ci)
1332     {
1333         switch (message)
1334         {
1335         case WM_COMMAND:
1336             {
1337                 WORD id = LOWORD(wParam);
1338                 /* check for possible syscommands for maximized MDI child */
1339                 if (id <  ci->idFirstChild || id >= ci->idFirstChild + ci->nActiveChildren)
1340                 {
1341                     if( (id - 0xf000) & 0xf00f ) break;
1342                     if( !ci->hwndChildMaximized ) break;
1343                     switch( id )
1344                     {
1345                     case SC_CLOSE:
1346                         if (!is_close_enabled(ci->hwndActiveChild, 0)) break;
1347                     case SC_SIZE:
1348                     case SC_MOVE:
1349                     case SC_MINIMIZE:
1350                     case SC_MAXIMIZE:
1351                     case SC_NEXTWINDOW:
1352                     case SC_PREVWINDOW:
1353                     case SC_RESTORE:
1354                         return SendMessageW( ci->hwndChildMaximized, WM_SYSCOMMAND,
1355                                              wParam, lParam);
1356                     }
1357                 }
1358                 else
1359                 {
1360                     HWND childHwnd;
1361                     if (id - ci->idFirstChild == MDI_MOREWINDOWSLIMIT)
1362                         /* User chose "More Windows..." */
1363                         childHwnd = MDI_MoreWindowsDialog(hwndMDIClient);
1364                     else
1365                         /* User chose one of the windows listed in the "Windows" menu */
1366                         childHwnd = MDI_GetChildByID(hwndMDIClient, id, ci);
1367
1368                     if( childHwnd )
1369                         SendMessageW( hwndMDIClient, WM_MDIACTIVATE, (WPARAM)childHwnd, 0 );
1370                 }
1371             }
1372             break;
1373
1374         case WM_NCACTIVATE:
1375             SendMessageW(hwndMDIClient, message, wParam, lParam);
1376             break;
1377
1378         case WM_SETTEXT:
1379             MDI_UpdateFrameText( hwnd, hwndMDIClient, FALSE, (LPWSTR)lParam );
1380             return 1; /* success. FIXME: check text length */
1381
1382         case WM_SETFOCUS:
1383             SetFocus(hwndMDIClient);
1384             break;
1385
1386         case WM_SIZE:
1387             MoveWindow(hwndMDIClient, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);
1388             break;
1389
1390         case WM_NEXTMENU:
1391             {
1392                 MDINEXTMENU *next_menu = (MDINEXTMENU *)lParam;
1393
1394                 if (!IsIconic(hwnd) && ci->hwndActiveChild && !IsZoomed(ci->hwndActiveChild))
1395                 {
1396                     /* control menu is between the frame system menu and
1397                      * the first entry of menu bar */
1398                     WND *wndPtr = WIN_GetPtr(hwnd);
1399
1400                     if( (wParam == VK_LEFT && GetMenu(hwnd) == next_menu->hmenuIn) ||
1401                         (wParam == VK_RIGHT && GetSubMenu(wndPtr->hSysMenu, 0) == next_menu->hmenuIn) )
1402                     {
1403                         WIN_ReleasePtr(wndPtr);
1404                         wndPtr = WIN_GetPtr(ci->hwndActiveChild);
1405                         next_menu->hmenuNext = GetSubMenu(wndPtr->hSysMenu, 0);
1406                         next_menu->hwndNext = ci->hwndActiveChild;
1407                     }
1408                     WIN_ReleasePtr(wndPtr);
1409                 }
1410                 return 0;
1411             }
1412         }
1413     }
1414
1415     return DefWindowProcW( hwnd, message, wParam, lParam );
1416 }
1417
1418 /***********************************************************************
1419  *              DefMDIChildProcA (USER32.@)
1420  */
1421 LRESULT WINAPI DefMDIChildProcA( HWND hwnd, UINT message,
1422                                    WPARAM wParam, LPARAM lParam )
1423 {
1424     HWND client = GetParent(hwnd);
1425     MDICLIENTINFO *ci = get_client_info( client );
1426
1427     TRACE("%p %04x (%s) %08x %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1428
1429     hwnd = WIN_GetFullHandle( hwnd );
1430     if (!ci) return DefWindowProcA( hwnd, message, wParam, lParam );
1431
1432     switch (message)
1433     {
1434     case WM_SETTEXT:
1435         DefWindowProcA(hwnd, message, wParam, lParam);
1436         if( ci->hwndChildMaximized == hwnd )
1437             MDI_UpdateFrameText( GetParent(client), client, TRUE, NULL );
1438         return 1; /* success. FIXME: check text length */
1439
1440     case WM_GETMINMAXINFO:
1441     case WM_MENUCHAR:
1442     case WM_CLOSE:
1443     case WM_SETFOCUS:
1444     case WM_CHILDACTIVATE:
1445     case WM_SYSCOMMAND:
1446     case WM_SHOWWINDOW:
1447     case WM_SETVISIBLE:
1448     case WM_SIZE:
1449     case WM_NEXTMENU:
1450     case WM_SYSCHAR:
1451     case WM_DESTROY:
1452         return DefMDIChildProcW( hwnd, message, wParam, lParam );
1453     }
1454     return DefWindowProcA(hwnd, message, wParam, lParam);
1455 }
1456
1457
1458 /***********************************************************************
1459  *              DefMDIChildProcW (USER32.@)
1460  */
1461 LRESULT WINAPI DefMDIChildProcW( HWND hwnd, UINT message,
1462                                    WPARAM wParam, LPARAM lParam )
1463 {
1464     HWND client = GetParent(hwnd);
1465     MDICLIENTINFO *ci = get_client_info( client );
1466
1467     TRACE("%p %04x (%s) %08x %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1468
1469     hwnd = WIN_GetFullHandle( hwnd );
1470     if (!ci) return DefWindowProcW( hwnd, message, wParam, lParam );
1471
1472     switch (message)
1473     {
1474     case WM_SETTEXT:
1475         DefWindowProcW(hwnd, message, wParam, lParam);
1476         if( ci->hwndChildMaximized == hwnd )
1477             MDI_UpdateFrameText( GetParent(client), client, TRUE, NULL );
1478         return 1; /* success. FIXME: check text length */
1479
1480     case WM_GETMINMAXINFO:
1481         MDI_ChildGetMinMaxInfo( client, hwnd, (MINMAXINFO *)lParam );
1482         return 0;
1483
1484     case WM_MENUCHAR:
1485         return 0x00010000; /* MDI children don't have menu bars */
1486
1487     case WM_CLOSE:
1488         SendMessageW( client, WM_MDIDESTROY, (WPARAM)hwnd, 0 );
1489         return 0;
1490
1491     case WM_SETFOCUS:
1492         if (ci->hwndActiveChild != hwnd)
1493             MDI_ChildActivate( client, hwnd );
1494         break;
1495
1496     case WM_CHILDACTIVATE:
1497         MDI_ChildActivate( client, hwnd );
1498         return 0;
1499
1500     case WM_SYSCOMMAND:
1501         switch( wParam )
1502         {
1503         case SC_MOVE:
1504             if( ci->hwndChildMaximized == hwnd )
1505                 return 0;
1506             break;
1507         case SC_RESTORE:
1508         case SC_MINIMIZE:
1509             break;
1510         case SC_MAXIMIZE:
1511             if (ci->hwndChildMaximized == hwnd)
1512                 return SendMessageW( GetParent(client), message, wParam, lParam);
1513             break;
1514         case SC_NEXTWINDOW:
1515             SendMessageW( client, WM_MDINEXT, 0, 0);
1516             return 0;
1517         case SC_PREVWINDOW:
1518             SendMessageW( client, WM_MDINEXT, 0, 1);
1519             return 0;
1520         }
1521         break;
1522
1523     case WM_SHOWWINDOW:
1524     case WM_SETVISIBLE:
1525         if (ci->hwndChildMaximized) ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1526         else MDI_PostUpdate(client, ci, SB_BOTH+1);
1527         break;
1528
1529     case WM_SIZE:
1530         /* This is the only place where we switch to/from maximized state */
1531         /* do not change */
1532         TRACE("current active %p, maximized %p\n", ci->hwndActiveChild, ci->hwndChildMaximized);
1533
1534         if( ci->hwndChildMaximized == hwnd && wParam != SIZE_MAXIMIZED )
1535         {
1536             HWND frame;
1537
1538             ci->hwndChildMaximized = 0;
1539
1540             frame = GetParent(client);
1541             MDI_RestoreFrameMenu( frame, hwnd );
1542             MDI_UpdateFrameText( frame, client, TRUE, NULL );
1543         }
1544
1545         if( wParam == SIZE_MAXIMIZED )
1546         {
1547             HWND frame, hMaxChild = ci->hwndChildMaximized;
1548
1549             if( hMaxChild == hwnd ) break;
1550
1551             if( hMaxChild)
1552             {
1553                 SendMessageW( hMaxChild, WM_SETREDRAW, FALSE, 0 );
1554
1555                 MDI_RestoreFrameMenu( GetParent(client), hMaxChild );
1556                 ShowWindow( hMaxChild, SW_SHOWNOACTIVATE );
1557
1558                 SendMessageW( hMaxChild, WM_SETREDRAW, TRUE, 0 );
1559             }
1560
1561             TRACE("maximizing child %p\n", hwnd );
1562
1563             /* keep track of the maximized window. */
1564             ci->hwndChildMaximized = hwnd; /* !!! */
1565
1566             frame = GetParent(client);
1567             MDI_AugmentFrameMenu( frame, hwnd );
1568             MDI_UpdateFrameText( frame, client, TRUE, NULL );
1569         }
1570
1571         if( wParam == SIZE_MINIMIZED )
1572         {
1573             HWND switchTo = MDI_GetWindow( ci, hwnd, TRUE, WS_MINIMIZE );
1574
1575             if (!switchTo) switchTo = hwnd;
1576             SendMessageW( switchTo, WM_CHILDACTIVATE, 0, 0 );
1577         }
1578
1579         MDI_PostUpdate(client, ci, SB_BOTH+1);
1580         break;
1581
1582     case WM_NEXTMENU:
1583         {
1584             MDINEXTMENU *next_menu = (MDINEXTMENU *)lParam;
1585             HWND parent = GetParent(client);
1586
1587             if( wParam == VK_LEFT )  /* switch to frame system menu */
1588             {
1589                 WND *wndPtr = WIN_GetPtr( parent );
1590                 next_menu->hmenuNext = GetSubMenu( wndPtr->hSysMenu, 0 );
1591                 WIN_ReleasePtr( wndPtr );
1592             }
1593             if( wParam == VK_RIGHT )  /* to frame menu bar */
1594             {
1595                 next_menu->hmenuNext = GetMenu(parent);
1596             }
1597             next_menu->hwndNext = parent;
1598             return 0;
1599         }
1600
1601     case WM_SYSCHAR:
1602         if (wParam == '-')
1603         {
1604             SendMessageW( hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (DWORD)VK_SPACE);
1605             return 0;
1606         }
1607         break;
1608
1609     case WM_DESTROY:
1610         /* Remove itself from the Window menu */
1611         MDI_RefreshMenu(ci);
1612         break;
1613     }
1614     return DefWindowProcW(hwnd, message, wParam, lParam);
1615 }
1616
1617 /**********************************************************************
1618  *              CreateMDIWindowA (USER32.@) Creates a MDI child
1619  *
1620  * RETURNS
1621  *    Success: Handle to created window
1622  *    Failure: NULL
1623  */
1624 HWND WINAPI CreateMDIWindowA(
1625     LPCSTR lpClassName,    /* [in] Pointer to registered child class name */
1626     LPCSTR lpWindowName,   /* [in] Pointer to window name */
1627     DWORD dwStyle,         /* [in] Window style */
1628     INT X,               /* [in] Horizontal position of window */
1629     INT Y,               /* [in] Vertical position of window */
1630     INT nWidth,          /* [in] Width of window */
1631     INT nHeight,         /* [in] Height of window */
1632     HWND hWndParent,     /* [in] Handle to parent window */
1633     HINSTANCE hInstance, /* [in] Handle to application instance */
1634     LPARAM lParam)         /* [in] Application-defined value */
1635 {
1636     TRACE("(%s,%s,%08x,%d,%d,%d,%d,%p,%p,%08lx)\n",
1637           debugstr_a(lpClassName),debugstr_a(lpWindowName),dwStyle,X,Y,
1638           nWidth,nHeight,hWndParent,hInstance,lParam);
1639
1640     return CreateWindowExA(WS_EX_MDICHILD, lpClassName, lpWindowName,
1641                            dwStyle, X, Y, nWidth, nHeight, hWndParent,
1642                            0, hInstance, (LPVOID)lParam);
1643 }
1644
1645 /***********************************************************************
1646  *              CreateMDIWindowW (USER32.@) Creates a MDI child
1647  *
1648  * RETURNS
1649  *    Success: Handle to created window
1650  *    Failure: NULL
1651  */
1652 HWND WINAPI CreateMDIWindowW(
1653     LPCWSTR lpClassName,    /* [in] Pointer to registered child class name */
1654     LPCWSTR lpWindowName,   /* [in] Pointer to window name */
1655     DWORD dwStyle,         /* [in] Window style */
1656     INT X,               /* [in] Horizontal position of window */
1657     INT Y,               /* [in] Vertical position of window */
1658     INT nWidth,          /* [in] Width of window */
1659     INT nHeight,         /* [in] Height of window */
1660     HWND hWndParent,     /* [in] Handle to parent window */
1661     HINSTANCE hInstance, /* [in] Handle to application instance */
1662     LPARAM lParam)         /* [in] Application-defined value */
1663 {
1664     TRACE("(%s,%s,%08x,%d,%d,%d,%d,%p,%p,%08lx)\n",
1665           debugstr_w(lpClassName), debugstr_w(lpWindowName), dwStyle, X, Y,
1666           nWidth, nHeight, hWndParent, hInstance, lParam);
1667
1668     return CreateWindowExW(WS_EX_MDICHILD, lpClassName, lpWindowName,
1669                            dwStyle, X, Y, nWidth, nHeight, hWndParent,
1670                            0, hInstance, (LPVOID)lParam);
1671 }
1672
1673 /**********************************************************************
1674  *              TranslateMDISysAccel (USER32.@)
1675  */
1676 BOOL WINAPI TranslateMDISysAccel( HWND hwndClient, LPMSG msg )
1677 {
1678     if (msg->message == WM_KEYDOWN || msg->message == WM_SYSKEYDOWN)
1679     {
1680         MDICLIENTINFO *ci = get_client_info( hwndClient );
1681         WPARAM wParam = 0;
1682
1683         if (!ci || !IsWindowEnabled(ci->hwndActiveChild)) return 0;
1684
1685         /* translate if the Ctrl key is down and Alt not. */
1686
1687         if( (GetKeyState(VK_CONTROL) & 0x8000) && !(GetKeyState(VK_MENU) & 0x8000))
1688         {
1689             switch( msg->wParam )
1690             {
1691             case VK_F6:
1692             case VK_TAB:
1693                 wParam = ( GetKeyState(VK_SHIFT) & 0x8000 ) ? SC_NEXTWINDOW : SC_PREVWINDOW;
1694                 break;
1695             case VK_F4:
1696             case VK_RBUTTON:
1697                 if (is_close_enabled(ci->hwndActiveChild, 0))
1698                 {
1699                     wParam = SC_CLOSE;
1700                     break;
1701                 }
1702                 /* fall through */
1703             default:
1704                 return 0;
1705             }
1706             TRACE("wParam = %04x\n", wParam);
1707             SendMessageW(ci->hwndActiveChild, WM_SYSCOMMAND, wParam, (LPARAM)msg->wParam);
1708             return 1;
1709         }
1710     }
1711     return 0; /* failure */
1712 }
1713
1714 /***********************************************************************
1715  *              CalcChildScroll (USER32.@)
1716  */
1717 void WINAPI CalcChildScroll( HWND hwnd, INT scroll )
1718 {
1719     SCROLLINFO info;
1720     RECT childRect, clientRect;
1721     HWND *list;
1722
1723     GetClientRect( hwnd, &clientRect );
1724     SetRectEmpty( &childRect );
1725
1726     if ((list = WIN_ListChildren( hwnd )))
1727     {
1728         int i;
1729         for (i = 0; list[i]; i++)
1730         {
1731             DWORD style = GetWindowLongW( list[i], GWL_STYLE );
1732             if (style & WS_MAXIMIZE)
1733             {
1734                 HeapFree( GetProcessHeap(), 0, list );
1735                 ShowScrollBar( hwnd, SB_BOTH, FALSE );
1736                 return;
1737             }
1738             if (style & WS_VISIBLE)
1739             {
1740                 RECT rect;
1741                 GetWindowRect( list[i], &rect );
1742                 UnionRect( &childRect, &rect, &childRect );
1743             }
1744         }
1745         HeapFree( GetProcessHeap(), 0, list );
1746     }
1747     MapWindowPoints( 0, hwnd, (POINT *)&childRect, 2 );
1748     UnionRect( &childRect, &clientRect, &childRect );
1749
1750     /* set common info values */
1751     info.cbSize = sizeof(info);
1752     info.fMask = SIF_POS | SIF_RANGE;
1753
1754     /* set the specific */
1755     switch( scroll )
1756     {
1757         case SB_BOTH:
1758         case SB_HORZ:
1759                         info.nMin = childRect.left;
1760                         info.nMax = childRect.right - clientRect.right;
1761                         info.nPos = clientRect.left - childRect.left;
1762                         SetScrollInfo(hwnd, SB_HORZ, &info, TRUE);
1763                         if (scroll == SB_HORZ) break;
1764                         /* fall through */
1765         case SB_VERT:
1766                         info.nMin = childRect.top;
1767                         info.nMax = childRect.bottom - clientRect.bottom;
1768                         info.nPos = clientRect.top - childRect.top;
1769                         SetScrollInfo(hwnd, SB_VERT, &info, TRUE);
1770                         break;
1771     }
1772 }
1773
1774
1775 /***********************************************************************
1776  *              ScrollChildren (USER32.@)
1777  */
1778 void WINAPI ScrollChildren(HWND hWnd, UINT uMsg, WPARAM wParam,
1779                              LPARAM lParam)
1780 {
1781     INT newPos = -1;
1782     INT curPos, length, minPos, maxPos, shift;
1783     RECT rect;
1784
1785     GetClientRect( hWnd, &rect );
1786
1787     switch(uMsg)
1788     {
1789     case WM_HSCROLL:
1790         GetScrollRange(hWnd,SB_HORZ,&minPos,&maxPos);
1791         curPos = GetScrollPos(hWnd,SB_HORZ);
1792         length = (rect.right - rect.left) / 2;
1793         shift = GetSystemMetrics(SM_CYHSCROLL);
1794         break;
1795     case WM_VSCROLL:
1796         GetScrollRange(hWnd,SB_VERT,&minPos,&maxPos);
1797         curPos = GetScrollPos(hWnd,SB_VERT);
1798         length = (rect.bottom - rect.top) / 2;
1799         shift = GetSystemMetrics(SM_CXVSCROLL);
1800         break;
1801     default:
1802         return;
1803     }
1804
1805     switch( wParam )
1806     {
1807         case SB_LINEUP:
1808                         newPos = curPos - shift;
1809                         break;
1810         case SB_LINEDOWN:
1811                         newPos = curPos + shift;
1812                         break;
1813         case SB_PAGEUP:
1814                         newPos = curPos - length;
1815                         break;
1816         case SB_PAGEDOWN:
1817                         newPos = curPos + length;
1818                         break;
1819
1820         case SB_THUMBPOSITION:
1821                         newPos = LOWORD(lParam);
1822                         break;
1823
1824         case SB_THUMBTRACK:
1825                         return;
1826
1827         case SB_TOP:
1828                         newPos = minPos;
1829                         break;
1830         case SB_BOTTOM:
1831                         newPos = maxPos;
1832                         break;
1833         case SB_ENDSCROLL:
1834                         CalcChildScroll(hWnd,(uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ);
1835                         return;
1836     }
1837
1838     if( newPos > maxPos )
1839         newPos = maxPos;
1840     else
1841         if( newPos < minPos )
1842             newPos = minPos;
1843
1844     SetScrollPos(hWnd, (uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ , newPos, TRUE);
1845
1846     if( uMsg == WM_VSCROLL )
1847         ScrollWindowEx(hWnd ,0 ,curPos - newPos, NULL, NULL, 0, NULL,
1848                         SW_INVALIDATE | SW_ERASE | SW_SCROLLCHILDREN );
1849     else
1850         ScrollWindowEx(hWnd ,curPos - newPos, 0, NULL, NULL, 0, NULL,
1851                         SW_INVALIDATE | SW_ERASE | SW_SCROLLCHILDREN );
1852 }
1853
1854
1855 /******************************************************************************
1856  *              CascadeWindows (USER32.@) Cascades MDI child windows
1857  *
1858  * RETURNS
1859  *    Success: Number of cascaded windows.
1860  *    Failure: 0
1861  */
1862 WORD WINAPI
1863 CascadeWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect,
1864                 UINT cKids, const HWND *lpKids)
1865 {
1866     FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids);
1867     return 0;
1868 }
1869
1870
1871 /******************************************************************************
1872  *              TileWindows (USER32.@) Tiles MDI child windows
1873  *
1874  * RETURNS
1875  *    Success: Number of tiled windows.
1876  *    Failure: 0
1877  */
1878 WORD WINAPI
1879 TileWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect,
1880              UINT cKids, const HWND *lpKids)
1881 {
1882     FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids);
1883     return 0;
1884 }
1885
1886 /************************************************************************
1887  *              "More Windows..." functionality
1888  */
1889
1890 /*              MDI_MoreWindowsDlgProc
1891  *
1892  *    This function will process the messages sent to the "More Windows..."
1893  *    dialog.
1894  *    Return values:  0    = cancel pressed
1895  *                    HWND = ok pressed or double-click in the list...
1896  *
1897  */
1898
1899 static INT_PTR WINAPI MDI_MoreWindowsDlgProc (HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
1900 {
1901     switch (iMsg)
1902     {
1903        case WM_INITDIALOG:
1904        {
1905            UINT widest       = 0;
1906            UINT length;
1907            UINT i;
1908            MDICLIENTINFO *ci = get_client_info( (HWND)lParam );
1909            HWND hListBox = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1910
1911            for (i = 0; i < ci->nActiveChildren; i++)
1912            {
1913                WCHAR buffer[MDI_MAXTITLELENGTH];
1914
1915                if (!InternalGetWindowText( ci->child[i], buffer, sizeof(buffer)/sizeof(WCHAR) ))
1916                    continue;
1917                SendMessageW(hListBox, LB_ADDSTRING, 0, (LPARAM)buffer );
1918                SendMessageW(hListBox, LB_SETITEMDATA, i, (LPARAM)ci->child[i] );
1919                length = strlenW(buffer);  /* FIXME: should use GetTextExtentPoint */
1920                if (length > widest)
1921                    widest = length;
1922            }
1923            /* Make sure the horizontal scrollbar scrolls ok */
1924            SendMessageW(hListBox, LB_SETHORIZONTALEXTENT, widest * 6, 0);
1925
1926            /* Set the current selection */
1927            SendMessageW(hListBox, LB_SETCURSEL, MDI_MOREWINDOWSLIMIT, 0);
1928            return TRUE;
1929        }
1930
1931        case WM_COMMAND:
1932            switch (LOWORD(wParam))
1933            {
1934                 default:
1935                     if (HIWORD(wParam) != LBN_DBLCLK) break;
1936                     /* fall through */
1937                 case IDOK:
1938                 {
1939                     /*  windows are sorted by menu ID, so we must return the
1940                      *  window associated to the given id
1941                      */
1942                     HWND hListBox     = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1943                     UINT index        = SendMessageW(hListBox, LB_GETCURSEL, 0, 0);
1944                     LRESULT res = SendMessageW(hListBox, LB_GETITEMDATA, index, 0);
1945                     EndDialog(hDlg, res);
1946                     return TRUE;
1947                 }
1948                 case IDCANCEL:
1949                     EndDialog(hDlg, 0);
1950                     return TRUE;
1951            }
1952            break;
1953     }
1954     return FALSE;
1955 }
1956
1957 /*
1958  *
1959  *                      MDI_MoreWindowsDialog
1960  *
1961  *     Prompts the user with a listbox containing the opened
1962  *     documents. The user can then choose a windows and click
1963  *     on OK to set the current window to the one selected, or
1964  *     CANCEL to cancel. The function returns a handle to the
1965  *     selected window.
1966  */
1967
1968 static HWND MDI_MoreWindowsDialog(HWND hwnd)
1969 {
1970     LPCVOID template;
1971     HRSRC hRes;
1972     HANDLE hDlgTmpl;
1973
1974     hRes = FindResourceA(user32_module, "MDI_MOREWINDOWS", (LPSTR)RT_DIALOG);
1975
1976     if (hRes == 0)
1977         return 0;
1978
1979     hDlgTmpl = LoadResource(user32_module, hRes );
1980
1981     if (hDlgTmpl == 0)
1982         return 0;
1983
1984     template = LockResource( hDlgTmpl );
1985
1986     if (template == 0)
1987         return 0;
1988
1989     return (HWND) DialogBoxIndirectParamA(user32_module,
1990                                           (const DLGTEMPLATE*) template,
1991                                           hwnd, MDI_MoreWindowsDlgProc, (LPARAM) hwnd);
1992 }