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