dbghelp: Use local declarations of r_debug and link_map structs.
[wine.git] / dlls / user32 / mdi.c
blobada89bc0c6fbe6a1265219fe1d4234ccc26a5a61
1 /* MDI.C
3 * Copyright 1994, Bob Amstadt
4 * 1995,1996 Alex Korobka
6 * This file contains routines to support MDI (Multiple Document
7 * Interface) features .
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.
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.
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
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.
27 * Notes on how the "More Windows..." is implemented:
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, accessible 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:
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
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:
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
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.
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
83 #include <stdlib.h>
84 #include <stdarg.h>
85 #include <stdio.h>
86 #include <string.h>
87 #include <math.h>
89 #define OEMRESOURCE
91 #include "windef.h"
92 #include "winbase.h"
93 #include "wingdi.h"
94 #include "winuser.h"
95 #include "wownt32.h"
96 #include "wine/unicode.h"
97 #include "win.h"
98 #include "controls.h"
99 #include "user_private.h"
100 #include "wine/debug.h"
102 WINE_DEFAULT_DEBUG_CHANNEL(mdi);
104 #define MDI_MAXTITLELENGTH 0xa1
106 #define WM_MDICALCCHILDSCROLL 0x003f /* this is exactly what Windows uses */
108 /* "More Windows..." definitions */
109 #define MDI_MOREWINDOWSLIMIT 9 /* after this number of windows, a "More Windows..."
110 option will appear under the Windows menu */
111 #define MDI_IDC_LISTBOX 100
112 #define IDS_MDI_MOREWINDOWS 13
114 #define MDIF_NEEDUPDATE 0x0001
116 typedef struct
118 /* At some points, particularly when switching MDI children, active and
119 * maximized MDI children may be not the same window, so we need to track
120 * them separately.
121 * The only place where we switch to/from maximized state is DefMDIChildProc
122 * WM_SIZE/SIZE_MAXIMIZED handler. We get that notification only after the
123 * ShowWindow(SW_SHOWMAXIMIZED) request, therefore window is guaranteed to
124 * be visible at the time we get the notification, and it's safe to assume
125 * that hwndChildMaximized is always visible.
126 * If the app plays games with WS_VISIBLE, WS_MAXIMIZE or any other window
127 * states it must keep coherency with USER32 on its own. This is true for
128 * Windows as well.
130 LONG reserved;
131 UINT nActiveChildren;
132 HWND hwndChildMaximized;
133 HWND hwndActiveChild;
134 HWND *child; /* array of tracked children */
135 HMENU hFrameMenu;
136 HMENU hWindowMenu;
137 UINT idFirstChild;
138 LPWSTR frameTitle;
139 UINT nTotalCreated;
140 UINT mdiFlags;
141 UINT sbRecalc; /* SB_xxx flags for scrollbar fixup */
142 } MDICLIENTINFO;
144 static HBITMAP hBmpClose = 0;
146 /* ----------------- declarations ----------------- */
147 static void MDI_UpdateFrameText( HWND, HWND, BOOL, LPCWSTR);
148 static BOOL MDI_AugmentFrameMenu( HWND, HWND );
149 static BOOL MDI_RestoreFrameMenu( HWND, HWND );
150 static LONG MDI_ChildActivate( HWND, HWND );
151 static LRESULT MDI_RefreshMenu(MDICLIENTINFO *);
153 static HWND MDI_MoreWindowsDialog(HWND);
155 /* -------- Miscellaneous service functions ----------
157 * MDI_GetChildByID
159 static HWND MDI_GetChildByID(HWND hwnd, UINT id, MDICLIENTINFO *ci)
161 int i;
163 for (i = 0; ci->nActiveChildren; i++)
165 if (GetWindowLongPtrW( ci->child[i], GWLP_ID ) == id)
166 return ci->child[i];
168 return 0;
171 static void MDI_PostUpdate(HWND hwnd, MDICLIENTINFO* ci, WORD recalc)
173 if( !(ci->mdiFlags & MDIF_NEEDUPDATE) )
175 ci->mdiFlags |= MDIF_NEEDUPDATE;
176 PostMessageA( hwnd, WM_MDICALCCHILDSCROLL, 0, 0);
178 ci->sbRecalc = recalc;
182 /*********************************************************************
183 * MDIClient class descriptor
185 static const WCHAR mdiclientW[] = {'M','D','I','C','l','i','e','n','t',0};
186 const struct builtin_class_descr MDICLIENT_builtin_class =
188 mdiclientW, /* name */
189 0, /* style */
190 WINPROC_MDICLIENT, /* proc */
191 sizeof(MDICLIENTINFO), /* extra */
192 IDC_ARROW, /* cursor */
193 (HBRUSH)(COLOR_APPWORKSPACE+1) /* brush */
197 static MDICLIENTINFO *get_client_info( HWND client )
199 MDICLIENTINFO *ret = NULL;
200 WND *win = WIN_GetPtr( client );
201 if (win)
203 if (win == WND_OTHER_PROCESS || win == WND_DESKTOP)
205 if (IsWindow(client)) WARN( "client %p belongs to other process\n", client );
206 return NULL;
208 if (win->flags & WIN_ISMDICLIENT)
209 ret = (MDICLIENTINFO *)win->wExtra;
210 else
211 WARN( "%p is not an MDI client\n", client );
212 WIN_ReleasePtr( win );
214 return ret;
217 static BOOL is_close_enabled(HWND hwnd, HMENU hSysMenu)
219 if (GetClassLongW(hwnd, GCL_STYLE) & CS_NOCLOSE) return FALSE;
221 if (!hSysMenu) hSysMenu = GetSystemMenu(hwnd, FALSE);
222 if (hSysMenu)
224 UINT state = GetMenuState(hSysMenu, SC_CLOSE, MF_BYCOMMAND);
225 if (state == 0xFFFFFFFF || (state & (MF_DISABLED | MF_GRAYED)))
226 return FALSE;
228 return TRUE;
231 /**********************************************************************
232 * MDI_GetWindow
234 * returns "activatable" child different from the current or zero
236 static HWND MDI_GetWindow(MDICLIENTINFO *clientInfo, HWND hWnd, BOOL bNext,
237 DWORD dwStyleMask )
239 int i;
240 HWND *list;
241 HWND last = 0;
243 dwStyleMask |= WS_DISABLED | WS_VISIBLE;
244 if( !hWnd ) hWnd = clientInfo->hwndActiveChild;
246 if (!(list = WIN_ListChildren( GetParent(hWnd) ))) return 0;
247 i = 0;
248 /* start from next after hWnd */
249 while (list[i] && list[i] != hWnd) i++;
250 if (list[i]) i++;
252 for ( ; list[i]; i++)
254 if (GetWindow( list[i], GW_OWNER )) continue;
255 if ((GetWindowLongW( list[i], GWL_STYLE ) & dwStyleMask) != WS_VISIBLE) continue;
256 last = list[i];
257 if (bNext) goto found;
259 /* now restart from the beginning */
260 for (i = 0; list[i] && list[i] != hWnd; i++)
262 if (GetWindow( list[i], GW_OWNER )) continue;
263 if ((GetWindowLongW( list[i], GWL_STYLE ) & dwStyleMask) != WS_VISIBLE) continue;
264 last = list[i];
265 if (bNext) goto found;
267 found:
268 HeapFree( GetProcessHeap(), 0, list );
269 return last;
272 /**********************************************************************
273 * MDI_CalcDefaultChildPos
275 * It seems that the default height is about 2/3 of the client rect
277 void MDI_CalcDefaultChildPos( HWND hwndClient, INT total, LPPOINT lpPos, INT delta, UINT *id )
279 INT nstagger;
280 RECT rect;
281 INT spacing = GetSystemMetrics(SM_CYCAPTION) + GetSystemMetrics(SM_CYFRAME) - 1;
283 if (total < 0) /* we are called from CreateWindow */
285 MDICLIENTINFO *ci = get_client_info(hwndClient);
286 total = ci->nTotalCreated;
287 *id = ci->idFirstChild + ci->nActiveChildren;
288 TRACE("MDI child id %04x\n", *id);
291 GetClientRect( hwndClient, &rect );
292 if( rect.bottom - rect.top - delta >= spacing )
293 rect.bottom -= delta;
295 nstagger = (rect.bottom - rect.top)/(3 * spacing);
296 lpPos[1].x = (rect.right - rect.left - nstagger * spacing);
297 lpPos[1].y = (rect.bottom - rect.top - nstagger * spacing);
298 lpPos[0].x = lpPos[0].y = spacing * (total%(nstagger+1));
301 /**********************************************************************
302 * MDISetMenu
304 static LRESULT MDISetMenu( HWND hwnd, HMENU hmenuFrame,
305 HMENU hmenuWindow)
307 MDICLIENTINFO *ci;
308 HWND hwndFrame = GetParent(hwnd);
310 TRACE("%p, frame menu %p, window menu %p\n", hwnd, hmenuFrame, hmenuWindow);
312 if (hmenuFrame && !IsMenu(hmenuFrame))
314 WARN("hmenuFrame is not a menu handle\n");
315 return 0L;
318 if (hmenuWindow && !IsMenu(hmenuWindow))
320 WARN("hmenuWindow is not a menu handle\n");
321 return 0L;
324 if (!(ci = get_client_info( hwnd ))) return 0;
326 TRACE("old frame menu %p, old window menu %p\n", ci->hFrameMenu, ci->hWindowMenu);
328 if (hmenuFrame)
330 if (hmenuFrame == ci->hFrameMenu) return (LRESULT)hmenuFrame;
332 if (ci->hwndChildMaximized)
333 MDI_RestoreFrameMenu( hwndFrame, ci->hwndChildMaximized );
336 if( hmenuWindow && hmenuWindow != ci->hWindowMenu )
338 /* delete menu items from ci->hWindowMenu
339 * and add them to hmenuWindow */
340 /* Agent newsreader calls this function with ci->hWindowMenu == NULL */
341 if( ci->hWindowMenu && ci->nActiveChildren )
343 UINT nActiveChildren_old = ci->nActiveChildren;
345 /* Remove all items from old Window menu */
346 ci->nActiveChildren = 0;
347 MDI_RefreshMenu(ci);
349 ci->hWindowMenu = hmenuWindow;
351 /* Add items to the new Window menu */
352 ci->nActiveChildren = nActiveChildren_old;
353 MDI_RefreshMenu(ci);
355 else
356 ci->hWindowMenu = hmenuWindow;
359 if (hmenuFrame)
361 SetMenu(hwndFrame, hmenuFrame);
362 if( hmenuFrame != ci->hFrameMenu )
364 HMENU oldFrameMenu = ci->hFrameMenu;
366 ci->hFrameMenu = hmenuFrame;
367 if (ci->hwndChildMaximized)
368 MDI_AugmentFrameMenu( hwndFrame, ci->hwndChildMaximized );
370 return (LRESULT)oldFrameMenu;
374 return 0;
377 /**********************************************************************
378 * MDIRefreshMenu
380 static LRESULT MDI_RefreshMenu(MDICLIENTINFO *ci)
382 UINT i, count, visible, id;
383 WCHAR buf[MDI_MAXTITLELENGTH];
385 TRACE("children %u, window menu %p\n", ci->nActiveChildren, ci->hWindowMenu);
387 if (!ci->hWindowMenu)
388 return 0;
390 if (!IsMenu(ci->hWindowMenu))
392 WARN("Window menu handle %p is no longer valid\n", ci->hWindowMenu);
393 return 0;
396 /* Windows finds the last separator in the menu, and if after it
397 * there is a menu item with MDI magic ID removes all existing
398 * menu items after it, and then adds visible MDI children.
400 count = GetMenuItemCount(ci->hWindowMenu);
401 for (i = 0; i < count; i++)
403 MENUITEMINFOW mii;
405 memset(&mii, 0, sizeof(mii));
406 mii.cbSize = sizeof(mii);
407 mii.fMask = MIIM_TYPE;
408 if (GetMenuItemInfoW(ci->hWindowMenu, i, TRUE, &mii))
410 if (mii.fType & MF_SEPARATOR)
412 /* Windows checks only ID of the menu item */
413 memset(&mii, 0, sizeof(mii));
414 mii.cbSize = sizeof(mii);
415 mii.fMask = MIIM_ID;
416 if (GetMenuItemInfoW(ci->hWindowMenu, i + 1, TRUE, &mii))
418 if (mii.wID == ci->idFirstChild)
420 TRACE("removing %u items including separator\n", count - i);
421 while (RemoveMenu(ci->hWindowMenu, i, MF_BYPOSITION))
422 /* nothing */;
424 break;
431 visible = 0;
432 for (i = 0; i < ci->nActiveChildren; i++)
434 if (GetWindowLongW(ci->child[i], GWL_STYLE) & WS_VISIBLE)
436 id = ci->idFirstChild + visible;
438 if (visible == MDI_MOREWINDOWSLIMIT)
440 LoadStringW(user32_module, IDS_MDI_MOREWINDOWS, buf, ARRAY_SIZE(buf));
441 AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
442 break;
445 if (!visible)
446 /* Visio expects that separator has id 0 */
447 AppendMenuW(ci->hWindowMenu, MF_SEPARATOR, 0, NULL);
449 visible++;
451 SetWindowLongPtrW(ci->child[i], GWLP_ID, id);
453 buf[0] = '&';
454 buf[1] = '0' + visible;
455 buf[2] = ' ';
456 InternalGetWindowText(ci->child[i], buf + 3, ARRAY_SIZE(buf) - 3);
457 TRACE("Adding %p, id %u %s\n", ci->child[i], id, debugstr_w(buf));
458 AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
460 if (ci->child[i] == ci->hwndActiveChild)
461 CheckMenuItem(ci->hWindowMenu, id, MF_CHECKED);
463 else
464 TRACE("MDI child %p is not visible, skipping\n", ci->child[i]);
467 return (LRESULT)ci->hFrameMenu;
471 /* ------------------ MDI child window functions ---------------------- */
473 /**********************************************************************
474 * MDI_ChildGetMinMaxInfo
476 * Note: The rule here is that client rect of the maximized MDI child
477 * is equal to the client rect of the MDI client window.
479 static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax )
481 RECT rect;
483 GetClientRect( client, &rect );
484 AdjustWindowRectEx( &rect, GetWindowLongW( hwnd, GWL_STYLE ),
485 0, GetWindowLongW( hwnd, GWL_EXSTYLE ));
487 lpMinMax->ptMaxSize.x = rect.right -= rect.left;
488 lpMinMax->ptMaxSize.y = rect.bottom -= rect.top;
490 lpMinMax->ptMaxPosition.x = rect.left;
491 lpMinMax->ptMaxPosition.y = rect.top;
493 TRACE("max rect %s\n", wine_dbgstr_rect(&rect));
496 /**********************************************************************
497 * MDI_SwitchActiveChild
499 * Note: SetWindowPos sends WM_CHILDACTIVATE to the child window that is
500 * being activated
502 static void MDI_SwitchActiveChild( MDICLIENTINFO *ci, HWND hwndTo, BOOL activate )
504 HWND hwndPrev;
506 hwndPrev = ci->hwndActiveChild;
508 TRACE("from %p, to %p\n", hwndPrev, hwndTo);
510 if ( hwndTo != hwndPrev )
512 BOOL was_zoomed = IsZoomed(hwndPrev);
514 if (was_zoomed)
516 /* restore old MDI child */
517 SendMessageW( hwndPrev, WM_SETREDRAW, FALSE, 0 );
518 ShowWindow( hwndPrev, SW_RESTORE );
519 SendMessageW( hwndPrev, WM_SETREDRAW, TRUE, 0 );
521 /* activate new MDI child */
522 SetWindowPos( hwndTo, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE );
523 /* maximize new MDI child */
524 ShowWindow( hwndTo, SW_MAXIMIZE );
526 /* activate new MDI child */
527 SetWindowPos( hwndTo, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | (activate ? 0 : SWP_NOACTIVATE) );
532 /**********************************************************************
533 * MDIDestroyChild
535 static LRESULT MDIDestroyChild( HWND client, MDICLIENTINFO *ci,
536 HWND child, BOOL flagDestroy )
538 UINT i;
540 TRACE("# of managed children %u\n", ci->nActiveChildren);
542 if( child == ci->hwndActiveChild )
544 HWND next = MDI_GetWindow(ci, child, TRUE, 0);
545 /* flagDestroy == 0 means we were called from WM_PARENTNOTIFY handler */
546 if (flagDestroy && next)
547 MDI_SwitchActiveChild(ci, next, TRUE);
548 else
550 ShowWindow(child, SW_HIDE);
551 if (child == ci->hwndChildMaximized)
553 HWND frame = GetParent(client);
554 MDI_RestoreFrameMenu(frame, child);
555 ci->hwndChildMaximized = 0;
556 MDI_UpdateFrameText(frame, client, TRUE, NULL);
558 if (flagDestroy)
559 MDI_ChildActivate(client, 0);
563 for (i = 0; i < ci->nActiveChildren; i++)
565 if (ci->child[i] == child)
567 HWND *new_child = HeapAlloc(GetProcessHeap(), 0, (ci->nActiveChildren - 1) * sizeof(HWND));
568 memcpy(new_child, ci->child, i * sizeof(HWND));
569 if (i + 1 < ci->nActiveChildren)
570 memcpy(new_child + i, ci->child + i + 1, (ci->nActiveChildren - i - 1) * sizeof(HWND));
571 HeapFree(GetProcessHeap(), 0, ci->child);
572 ci->child = new_child;
574 ci->nActiveChildren--;
575 break;
579 if (flagDestroy)
581 SendMessageW(client, WM_MDIREFRESHMENU, 0, 0);
582 MDI_PostUpdate(GetParent(child), ci, SB_BOTH+1);
583 DestroyWindow(child);
586 TRACE("child destroyed - %p\n", child);
587 return 0;
591 /**********************************************************************
592 * MDI_ChildActivate
594 * Called in response to WM_CHILDACTIVATE, or when last MDI child
595 * is being deactivated.
597 static LONG MDI_ChildActivate( HWND client, HWND child )
599 MDICLIENTINFO *clientInfo;
600 HWND prevActiveWnd, frame;
601 BOOL isActiveFrameWnd;
603 clientInfo = get_client_info( client );
605 if (clientInfo->hwndActiveChild == child) return 0;
607 TRACE("%p\n", child);
609 frame = GetParent(client);
610 isActiveFrameWnd = (GetActiveWindow() == frame);
611 prevActiveWnd = clientInfo->hwndActiveChild;
613 /* deactivate prev. active child */
614 if(prevActiveWnd)
616 SendMessageW( prevActiveWnd, WM_NCACTIVATE, FALSE, 0L );
617 SendMessageW( prevActiveWnd, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child);
620 MDI_SwitchActiveChild( clientInfo, child, FALSE );
621 clientInfo->hwndActiveChild = child;
623 MDI_RefreshMenu(clientInfo);
625 if( isActiveFrameWnd )
627 SendMessageW( child, WM_NCACTIVATE, TRUE, 0L);
628 /* Let the client window manage focus for children, but if the focus
629 * is already on the client (for instance this is the 1st child) then
630 * SetFocus won't work. It appears that Windows sends WM_SETFOCUS
631 * manually in this case.
633 if (SetFocus(client) == client)
634 SendMessageW( client, WM_SETFOCUS, (WPARAM)client, 0 );
637 SendMessageW( child, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child );
638 return TRUE;
641 /* -------------------- MDI client window functions ------------------- */
643 /**********************************************************************
644 * CreateMDIMenuBitmap
646 static HBITMAP CreateMDIMenuBitmap(void)
648 HDC hDCSrc = CreateCompatibleDC(0);
649 HDC hDCDest = CreateCompatibleDC(hDCSrc);
650 HBITMAP hbClose = LoadBitmapW(0, MAKEINTRESOURCEW(OBM_OLD_CLOSE) );
651 HBITMAP hbCopy;
652 HBITMAP hobjSrc, hobjDest;
654 hobjSrc = SelectObject(hDCSrc, hbClose);
655 hbCopy = CreateCompatibleBitmap(hDCSrc,GetSystemMetrics(SM_CXSIZE),GetSystemMetrics(SM_CYSIZE));
656 hobjDest = SelectObject(hDCDest, hbCopy);
658 BitBlt(hDCDest, 0, 0, GetSystemMetrics(SM_CXSIZE), GetSystemMetrics(SM_CYSIZE),
659 hDCSrc, GetSystemMetrics(SM_CXSIZE), 0, SRCCOPY);
661 SelectObject(hDCSrc, hobjSrc);
662 DeleteObject(hbClose);
663 DeleteDC(hDCSrc);
665 hobjSrc = SelectObject( hDCDest, GetStockObject(BLACK_PEN) );
667 MoveToEx( hDCDest, GetSystemMetrics(SM_CXSIZE) - 1, 0, NULL );
668 LineTo( hDCDest, GetSystemMetrics(SM_CXSIZE) - 1, GetSystemMetrics(SM_CYSIZE) - 1);
670 SelectObject(hDCDest, hobjSrc );
671 SelectObject(hDCDest, hobjDest);
672 DeleteDC(hDCDest);
674 return hbCopy;
677 /**********************************************************************
678 * MDICascade
680 static LONG MDICascade( HWND client, MDICLIENTINFO *ci )
682 HWND *win_array;
683 BOOL has_icons = FALSE;
684 int i, total;
686 if (ci->hwndChildMaximized)
687 SendMessageW(client, WM_MDIRESTORE, (WPARAM)ci->hwndChildMaximized, 0);
689 if (ci->nActiveChildren == 0) return 0;
691 if (!(win_array = WIN_ListChildren( client ))) return 0;
693 /* remove all the windows we don't want */
694 for (i = total = 0; win_array[i]; i++)
696 if (!IsWindowVisible( win_array[i] )) continue;
697 if (GetWindow( win_array[i], GW_OWNER )) continue; /* skip owned windows */
698 if (IsIconic( win_array[i] ))
700 has_icons = TRUE;
701 continue;
703 win_array[total++] = win_array[i];
705 win_array[total] = 0;
707 if (total)
709 INT delta = 0, n = 0, i;
710 POINT pos[2];
711 if (has_icons) delta = GetSystemMetrics(SM_CYICONSPACING) + GetSystemMetrics(SM_CYICON);
713 /* walk the list (backwards) and move windows */
714 for (i = total - 1; i >= 0; i--)
716 LONG style;
717 LONG posOptions = SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER;
719 MDI_CalcDefaultChildPos(client, n++, pos, delta, NULL);
720 TRACE("move %p to (%d,%d) size [%d,%d]\n",
721 win_array[i], pos[0].x, pos[0].y, pos[1].x, pos[1].y);
722 style = GetWindowLongW(win_array[i], GWL_STYLE);
724 if (!(style & WS_SIZEBOX)) posOptions |= SWP_NOSIZE;
725 SetWindowPos( win_array[i], 0, pos[0].x, pos[0].y, pos[1].x, pos[1].y,
726 posOptions);
729 HeapFree( GetProcessHeap(), 0, win_array );
731 if (has_icons) ArrangeIconicWindows( client );
732 return 0;
735 /**********************************************************************
736 * MDITile
738 static void MDITile( HWND client, MDICLIENTINFO *ci, WPARAM wParam )
740 HWND *win_array;
741 int i, total;
742 BOOL has_icons = FALSE;
744 if (ci->hwndChildMaximized)
745 SendMessageW(client, WM_MDIRESTORE, (WPARAM)ci->hwndChildMaximized, 0);
747 if (ci->nActiveChildren == 0) return;
749 if (!(win_array = WIN_ListChildren( client ))) return;
751 /* remove all the windows we don't want */
752 for (i = total = 0; win_array[i]; i++)
754 if (!IsWindowVisible( win_array[i] )) continue;
755 if (GetWindow( win_array[i], GW_OWNER )) continue; /* skip owned windows (icon titles) */
756 if (IsIconic( win_array[i] ))
758 has_icons = TRUE;
759 continue;
761 if ((wParam & MDITILE_SKIPDISABLED) && !IsWindowEnabled( win_array[i] )) continue;
762 win_array[total++] = win_array[i];
764 win_array[total] = 0;
766 TRACE("%u windows to tile\n", total);
768 if (total)
770 HWND *pWnd = win_array;
771 RECT rect;
772 int x, y, xsize, ysize;
773 int rows, columns, r, c, i;
775 GetClientRect(client,&rect);
776 rows = (int) sqrt((double)total);
777 columns = total / rows;
779 if( wParam & MDITILE_HORIZONTAL ) /* version >= 3.1 */
781 i = rows;
782 rows = columns; /* exchange r and c */
783 columns = i;
786 if (has_icons)
788 y = rect.bottom - 2 * GetSystemMetrics(SM_CYICONSPACING) - GetSystemMetrics(SM_CYICON);
789 rect.bottom = ( y - GetSystemMetrics(SM_CYICON) < rect.top )? rect.bottom: y;
792 ysize = rect.bottom / rows;
793 xsize = rect.right / columns;
795 for (x = i = 0, c = 1; c <= columns && *pWnd; c++)
797 if (c == columns)
799 rows = total - i;
800 ysize = rect.bottom / rows;
803 y = 0;
804 for (r = 1; r <= rows && *pWnd; r++, i++)
806 LONG posOptions = SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER;
807 LONG style = GetWindowLongW(win_array[i], GWL_STYLE);
808 if (!(style & WS_SIZEBOX)) posOptions |= SWP_NOSIZE;
810 SetWindowPos(*pWnd, 0, x, y, xsize, ysize, posOptions);
811 y += ysize;
812 pWnd++;
814 x += xsize;
817 HeapFree( GetProcessHeap(), 0, win_array );
818 if (has_icons) ArrangeIconicWindows( client );
821 /* ----------------------- Frame window ---------------------------- */
824 /**********************************************************************
825 * MDI_AugmentFrameMenu
827 static BOOL MDI_AugmentFrameMenu( HWND frame, HWND hChild )
829 HMENU menu = GetMenu( frame );
830 HMENU hSysPopup;
831 HBITMAP hSysMenuBitmap = 0;
832 HICON hIcon;
834 TRACE("frame %p,child %p\n",frame,hChild);
836 if (!menu) return FALSE;
838 /* create a copy of sysmenu popup and insert it into frame menu bar */
839 if (!(hSysPopup = GetSystemMenu(hChild, FALSE)))
841 TRACE("child %p doesn't have a system menu\n", hChild);
842 return FALSE;
845 AppendMenuW(menu, MF_HELP | MF_BITMAP,
846 SC_CLOSE, is_close_enabled(hChild, hSysPopup) ?
847 (LPCWSTR)HBMMENU_MBAR_CLOSE : (LPCWSTR)HBMMENU_MBAR_CLOSE_D );
848 AppendMenuW(menu, MF_HELP | MF_BITMAP,
849 SC_RESTORE, (LPCWSTR)HBMMENU_MBAR_RESTORE );
850 AppendMenuW(menu, MF_HELP | MF_BITMAP,
851 SC_MINIMIZE, (LPCWSTR)HBMMENU_MBAR_MINIMIZE ) ;
853 /* The system menu is replaced by the child icon */
854 hIcon = (HICON)SendMessageW(hChild, WM_GETICON, ICON_SMALL, 0);
855 if (!hIcon)
856 hIcon = (HICON)GetClassLongPtrW(hChild, GCLP_HICONSM);
857 if (!hIcon)
858 hIcon = (HICON)SendMessageW(hChild, WM_GETICON, ICON_BIG, 0);
859 if (!hIcon)
860 hIcon = (HICON)GetClassLongPtrW(hChild, GCLP_HICON);
861 if (!hIcon)
862 hIcon = LoadImageW(0, (LPWSTR)IDI_WINLOGO, IMAGE_ICON, GetSystemMetrics(SM_CXSMICON),
863 GetSystemMetrics(SM_CYSMICON), LR_DEFAULTCOLOR);
864 if (hIcon)
866 HDC hMemDC;
867 HBITMAP hBitmap, hOldBitmap;
868 HDC hdc = GetDC(hChild);
870 if (hdc)
872 int cx, cy;
873 cx = GetSystemMetrics(SM_CXSMICON);
874 cy = GetSystemMetrics(SM_CYSMICON);
875 hMemDC = CreateCompatibleDC(hdc);
876 hBitmap = CreateCompatibleBitmap(hdc, cx, cy);
877 hOldBitmap = SelectObject(hMemDC, hBitmap);
878 SetMapMode(hMemDC, MM_TEXT);
879 DrawIconEx(hMemDC, 0, 0, hIcon, cx, cy, 0, GetSysColorBrush(COLOR_MENU), DI_NORMAL);
880 SelectObject (hMemDC, hOldBitmap);
881 DeleteDC(hMemDC);
882 ReleaseDC(hChild, hdc);
883 hSysMenuBitmap = hBitmap;
887 if( !InsertMenuA(menu,0,MF_BYPOSITION | MF_BITMAP | MF_POPUP,
888 (UINT_PTR)hSysPopup, (LPSTR)hSysMenuBitmap))
890 TRACE("not inserted\n");
891 DestroyMenu(hSysPopup);
892 return FALSE;
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);
900 /* redraw menu */
901 DrawMenuBar(frame);
903 return TRUE;
906 /**********************************************************************
907 * MDI_RestoreFrameMenu
909 static BOOL MDI_RestoreFrameMenu( HWND frame, HWND hChild )
911 MENUITEMINFOW menuInfo;
912 HMENU menu = GetMenu( frame );
913 INT nItems;
914 UINT iId;
916 TRACE("frame %p, child %p\n", frame, hChild);
918 if (!menu) return FALSE;
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 FALSE;
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.
930 memset(&menuInfo, 0, sizeof(menuInfo));
931 menuInfo.cbSize = sizeof(menuInfo);
932 menuInfo.fMask = MIIM_DATA | MIIM_TYPE;
934 GetMenuItemInfoW(menu,
936 TRUE,
937 &menuInfo);
939 RemoveMenu(menu,0,MF_BYPOSITION);
941 if ( (menuInfo.fType & MFT_BITMAP) &&
942 (LOWORD(menuInfo.dwTypeData)!=0) &&
943 (LOWORD(menuInfo.dwTypeData)!=HBITMAP_16(hBmpClose)) )
945 DeleteObject(HBITMAP_32(LOWORD(menuInfo.dwTypeData)));
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);
955 DrawMenuBar(frame);
957 return TRUE;
961 /**********************************************************************
962 * MDI_UpdateFrameText
964 * used when child window is maximized/restored
966 * Note: lpTitle can be NULL
968 static void MDI_UpdateFrameText( HWND frame, HWND hClient, BOOL repaint, LPCWSTR lpTitle )
970 WCHAR lpBuffer[MDI_MAXTITLELENGTH+1];
971 MDICLIENTINFO *ci = get_client_info( hClient );
973 TRACE("frameText %s\n", debugstr_w(lpTitle));
975 if (!ci) return;
977 if (!lpTitle && !ci->frameTitle) /* first time around, get title from the frame window */
979 GetWindowTextW( frame, lpBuffer, ARRAY_SIZE( lpBuffer ));
980 lpTitle = lpBuffer;
983 /* store new "default" title if lpTitle is not NULL */
984 if (lpTitle)
986 HeapFree( GetProcessHeap(), 0, ci->frameTitle );
987 if ((ci->frameTitle = HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle)+1)*sizeof(WCHAR))))
988 strcpyW( ci->frameTitle, lpTitle );
991 if (ci->frameTitle)
993 if (ci->hwndChildMaximized)
995 /* combine frame title and child title if possible */
997 static const WCHAR lpBracket[] = {' ','-',' ','[',0};
998 static const WCHAR lpBracket2[] = {']',0};
999 int i_frame_text_length = strlenW(ci->frameTitle);
1001 lstrcpynW( lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH);
1003 if( i_frame_text_length + 6 < MDI_MAXTITLELENGTH )
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 */
1013 else
1015 lstrcpynW(lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH+1 );
1018 else
1019 lpBuffer[0] = '\0';
1021 DefWindowProcW( frame, WM_SETTEXT, 0, (LPARAM)lpBuffer );
1023 if (repaint)
1024 SetWindowPos( frame, 0,0,0,0,0, SWP_FRAMECHANGED |
1025 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER );
1029 /* ----------------------------- Interface ---------------------------- */
1032 /**********************************************************************
1033 * MDIClientWndProc_common
1035 LRESULT MDIClientWndProc_common( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, BOOL unicode )
1037 MDICLIENTINFO *ci;
1039 TRACE("%p %04x (%s) %08lx %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1041 if (!(ci = get_client_info( hwnd )))
1043 if (message == WM_NCCREATE) win_set_flags( hwnd, WIN_ISMDICLIENT, 0 );
1044 return unicode ? DefWindowProcW( hwnd, message, wParam, lParam ) :
1045 DefWindowProcA( hwnd, message, wParam, lParam );
1048 switch (message)
1050 case WM_CREATE:
1052 /* Since we are using only cs->lpCreateParams, we can safely
1053 * cast to LPCREATESTRUCTA here */
1054 LPCREATESTRUCTA cs = (LPCREATESTRUCTA)lParam;
1055 LPCLIENTCREATESTRUCT ccs = cs->lpCreateParams;
1057 ci->hWindowMenu = ccs->hWindowMenu;
1058 ci->idFirstChild = ccs->idFirstChild;
1059 ci->hwndChildMaximized = 0;
1060 ci->child = NULL;
1061 ci->nActiveChildren = 0;
1062 ci->nTotalCreated = 0;
1063 ci->frameTitle = NULL;
1064 ci->mdiFlags = 0;
1065 ci->hFrameMenu = GetMenu(cs->hwndParent);
1067 if (!hBmpClose) hBmpClose = CreateMDIMenuBitmap();
1069 TRACE("Client created: hwnd %p, Window menu %p, idFirst = %04x\n",
1070 hwnd, ci->hWindowMenu, ci->idFirstChild );
1071 return 0;
1074 case WM_DESTROY:
1076 if( ci->hwndChildMaximized )
1077 MDI_RestoreFrameMenu(GetParent(hwnd), ci->hwndChildMaximized);
1079 ci->nActiveChildren = 0;
1080 MDI_RefreshMenu(ci);
1082 HeapFree( GetProcessHeap(), 0, ci->child );
1083 HeapFree( GetProcessHeap(), 0, ci->frameTitle );
1085 return 0;
1088 case WM_MDIACTIVATE:
1090 if( ci->hwndActiveChild != (HWND)wParam )
1091 SetWindowPos((HWND)wParam, 0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE);
1092 return 0;
1095 case WM_MDICASCADE:
1096 return MDICascade(hwnd, ci);
1098 case WM_MDICREATE:
1099 if (lParam)
1101 HWND child;
1103 if (unicode)
1105 MDICREATESTRUCTW *csW = (MDICREATESTRUCTW *)lParam;
1106 child = CreateWindowExW(WS_EX_MDICHILD, csW->szClass,
1107 csW->szTitle, csW->style,
1108 csW->x, csW->y, csW->cx, csW->cy,
1109 hwnd, 0, csW->hOwner,
1110 (LPVOID)csW->lParam);
1112 else
1114 MDICREATESTRUCTA *csA = (MDICREATESTRUCTA *)lParam;
1115 child = CreateWindowExA(WS_EX_MDICHILD, csA->szClass,
1116 csA->szTitle, csA->style,
1117 csA->x, csA->y, csA->cx, csA->cy,
1118 hwnd, 0, csA->hOwner,
1119 (LPVOID)csA->lParam);
1121 return (LRESULT)child;
1123 return 0;
1125 case WM_MDIDESTROY:
1126 return MDIDestroyChild( hwnd, ci, WIN_GetFullHandle( (HWND)wParam ), TRUE );
1128 case WM_MDIGETACTIVE:
1129 if (lParam) *(BOOL *)lParam = IsZoomed(ci->hwndActiveChild);
1130 return (LRESULT)ci->hwndActiveChild;
1132 case WM_MDIICONARRANGE:
1133 ci->mdiFlags |= MDIF_NEEDUPDATE;
1134 ArrangeIconicWindows( hwnd );
1135 ci->sbRecalc = SB_BOTH+1;
1136 SendMessageW( hwnd, WM_MDICALCCHILDSCROLL, 0, 0 );
1137 return 0;
1139 case WM_MDIMAXIMIZE:
1140 ShowWindow( (HWND)wParam, SW_MAXIMIZE );
1141 return 0;
1143 case WM_MDINEXT: /* lParam != 0 means previous window */
1145 HWND hwnd = wParam ? WIN_GetFullHandle((HWND)wParam) : ci->hwndActiveChild;
1146 HWND next = MDI_GetWindow( ci, hwnd, !lParam, 0 );
1147 MDI_SwitchActiveChild( ci, next, TRUE );
1148 if(!lParam)
1149 SetWindowPos(hwnd, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
1150 break;
1153 case WM_MDIRESTORE:
1154 ShowWindow( (HWND)wParam, SW_SHOWNORMAL );
1155 return 0;
1157 case WM_MDISETMENU:
1158 return MDISetMenu( hwnd, (HMENU)wParam, (HMENU)lParam );
1160 case WM_MDIREFRESHMENU:
1161 return MDI_RefreshMenu( ci );
1163 case WM_MDITILE:
1164 ci->mdiFlags |= MDIF_NEEDUPDATE;
1165 ShowScrollBar( hwnd, SB_BOTH, FALSE );
1166 MDITile( hwnd, ci, wParam );
1167 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1168 return 0;
1170 case WM_VSCROLL:
1171 case WM_HSCROLL:
1172 ci->mdiFlags |= MDIF_NEEDUPDATE;
1173 ScrollChildren( hwnd, message, wParam, lParam );
1174 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1175 return 0;
1177 case WM_SETFOCUS:
1178 if (ci->hwndActiveChild && !IsIconic( ci->hwndActiveChild ))
1179 SetFocus( ci->hwndActiveChild );
1180 return 0;
1182 case WM_NCACTIVATE:
1183 if( ci->hwndActiveChild )
1184 SendMessageW(ci->hwndActiveChild, message, wParam, lParam);
1185 break;
1187 case WM_PARENTNOTIFY:
1188 switch (LOWORD(wParam))
1190 case WM_CREATE:
1191 if (GetWindowLongW((HWND)lParam, GWL_EXSTYLE) & WS_EX_MDICHILD)
1193 ci->nTotalCreated++;
1194 ci->nActiveChildren++;
1196 if (!ci->child)
1197 ci->child = HeapAlloc(GetProcessHeap(), 0, sizeof(HWND));
1198 else
1199 ci->child = HeapReAlloc(GetProcessHeap(), 0, ci->child, sizeof(HWND) * ci->nActiveChildren);
1201 TRACE("Adding MDI child %p, # of children %d\n",
1202 (HWND)lParam, ci->nActiveChildren);
1204 ci->child[ci->nActiveChildren - 1] = (HWND)lParam;
1206 break;
1208 case WM_LBUTTONDOWN:
1210 HWND child;
1211 POINT pt;
1212 pt.x = (short)LOWORD(lParam);
1213 pt.y = (short)HIWORD(lParam);
1214 child = ChildWindowFromPoint(hwnd, pt);
1216 TRACE("notification from %p (%i,%i)\n",child,pt.x,pt.y);
1218 if( child && child != hwnd && child != ci->hwndActiveChild )
1219 SetWindowPos(child, 0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE );
1220 break;
1223 case WM_DESTROY:
1224 return MDIDestroyChild( hwnd, ci, WIN_GetFullHandle( (HWND)lParam ), FALSE );
1226 return 0;
1228 case WM_SIZE:
1229 if( ci->hwndActiveChild && IsZoomed(ci->hwndActiveChild) )
1231 RECT rect;
1233 SetRect(&rect, 0, 0, LOWORD(lParam), HIWORD(lParam));
1234 AdjustWindowRectEx(&rect, GetWindowLongA(ci->hwndActiveChild, GWL_STYLE),
1235 0, GetWindowLongA(ci->hwndActiveChild, GWL_EXSTYLE) );
1236 MoveWindow(ci->hwndActiveChild, rect.left, rect.top,
1237 rect.right - rect.left, rect.bottom - rect.top, 1);
1239 else
1240 MDI_PostUpdate(hwnd, ci, SB_BOTH+1);
1242 break;
1244 case WM_MDICALCCHILDSCROLL:
1245 if( (ci->mdiFlags & MDIF_NEEDUPDATE) && ci->sbRecalc )
1247 CalcChildScroll(hwnd, ci->sbRecalc-1);
1248 ci->sbRecalc = 0;
1249 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1251 return 0;
1253 return unicode ? DefWindowProcW( hwnd, message, wParam, lParam ) :
1254 DefWindowProcA( hwnd, message, wParam, lParam );
1257 /***********************************************************************
1258 * DefFrameProcA (USER32.@)
1260 LRESULT WINAPI DefFrameProcA( HWND hwnd, HWND hwndMDIClient,
1261 UINT message, WPARAM wParam, LPARAM lParam)
1263 if (hwndMDIClient)
1265 switch (message)
1267 case WM_SETTEXT:
1269 DWORD len = MultiByteToWideChar( CP_ACP, 0, (LPSTR)lParam, -1, NULL, 0 );
1270 LPWSTR text = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
1271 MultiByteToWideChar( CP_ACP, 0, (LPSTR)lParam, -1, text, len );
1272 MDI_UpdateFrameText( hwnd, hwndMDIClient, FALSE, text );
1273 HeapFree( GetProcessHeap(), 0, text );
1275 return 1; /* success. FIXME: check text length */
1277 case WM_COMMAND:
1278 case WM_NCACTIVATE:
1279 case WM_NEXTMENU:
1280 case WM_SETFOCUS:
1281 case WM_SIZE:
1282 return DefFrameProcW( hwnd, hwndMDIClient, message, wParam, lParam );
1285 return DefWindowProcA(hwnd, message, wParam, lParam);
1289 /***********************************************************************
1290 * DefFrameProcW (USER32.@)
1292 LRESULT WINAPI DefFrameProcW( HWND hwnd, HWND hwndMDIClient,
1293 UINT message, WPARAM wParam, LPARAM lParam)
1295 MDICLIENTINFO *ci = get_client_info( hwndMDIClient );
1297 TRACE("%p %p %04x (%s) %08lx %08lx\n", hwnd, hwndMDIClient, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1299 if (ci)
1301 switch (message)
1303 case WM_COMMAND:
1305 WORD id = LOWORD(wParam);
1306 /* check for possible syscommands for maximized MDI child */
1307 if (id < ci->idFirstChild || id >= ci->idFirstChild + ci->nActiveChildren)
1309 if( (id - 0xf000) & 0xf00f ) break;
1310 if( !ci->hwndChildMaximized ) break;
1311 switch( id )
1313 case SC_CLOSE:
1314 if (!is_close_enabled(ci->hwndActiveChild, 0)) break;
1315 case SC_SIZE:
1316 case SC_MOVE:
1317 case SC_MINIMIZE:
1318 case SC_MAXIMIZE:
1319 case SC_NEXTWINDOW:
1320 case SC_PREVWINDOW:
1321 case SC_RESTORE:
1322 return SendMessageW( ci->hwndChildMaximized, WM_SYSCOMMAND,
1323 wParam, lParam);
1326 else
1328 HWND childHwnd;
1329 if (id - ci->idFirstChild == MDI_MOREWINDOWSLIMIT)
1330 /* User chose "More Windows..." */
1331 childHwnd = MDI_MoreWindowsDialog(hwndMDIClient);
1332 else
1333 /* User chose one of the windows listed in the "Windows" menu */
1334 childHwnd = MDI_GetChildByID(hwndMDIClient, id, ci);
1336 if( childHwnd )
1337 SendMessageW( hwndMDIClient, WM_MDIACTIVATE, (WPARAM)childHwnd, 0 );
1340 break;
1342 case WM_NCACTIVATE:
1343 SendMessageW(hwndMDIClient, message, wParam, lParam);
1344 break;
1346 case WM_SETTEXT:
1347 MDI_UpdateFrameText( hwnd, hwndMDIClient, FALSE, (LPWSTR)lParam );
1348 return 1; /* success. FIXME: check text length */
1350 case WM_SETFOCUS:
1351 SetFocus(hwndMDIClient);
1352 break;
1354 case WM_SIZE:
1355 MoveWindow(hwndMDIClient, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);
1356 break;
1358 case WM_NEXTMENU:
1360 MDINEXTMENU *next_menu = (MDINEXTMENU *)lParam;
1362 if (!IsIconic(hwnd) && ci->hwndActiveChild && !IsZoomed(ci->hwndActiveChild))
1364 /* control menu is between the frame system menu and
1365 * the first entry of menu bar */
1366 WND *wndPtr = WIN_GetPtr(hwnd);
1368 if( (wParam == VK_LEFT && GetMenu(hwnd) == next_menu->hmenuIn) ||
1369 (wParam == VK_RIGHT && GetSubMenu(wndPtr->hSysMenu, 0) == next_menu->hmenuIn) )
1371 WIN_ReleasePtr(wndPtr);
1372 wndPtr = WIN_GetPtr(ci->hwndActiveChild);
1373 next_menu->hmenuNext = GetSubMenu(wndPtr->hSysMenu, 0);
1374 next_menu->hwndNext = ci->hwndActiveChild;
1376 WIN_ReleasePtr(wndPtr);
1378 return 0;
1383 return DefWindowProcW( hwnd, message, wParam, lParam );
1386 /***********************************************************************
1387 * DefMDIChildProcA (USER32.@)
1389 LRESULT WINAPI DefMDIChildProcA( HWND hwnd, UINT message,
1390 WPARAM wParam, LPARAM lParam )
1392 HWND client = GetParent(hwnd);
1393 MDICLIENTINFO *ci = get_client_info( client );
1395 TRACE("%p %04x (%s) %08lx %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1397 hwnd = WIN_GetFullHandle( hwnd );
1398 if (!ci) return DefWindowProcA( hwnd, message, wParam, lParam );
1400 switch (message)
1402 case WM_SETTEXT:
1403 DefWindowProcA(hwnd, message, wParam, lParam);
1404 if( ci->hwndChildMaximized == hwnd )
1405 MDI_UpdateFrameText( GetParent(client), client, TRUE, NULL );
1406 return 1; /* success. FIXME: check text length */
1408 case WM_GETMINMAXINFO:
1409 case WM_MENUCHAR:
1410 case WM_CLOSE:
1411 case WM_SETFOCUS:
1412 case WM_CHILDACTIVATE:
1413 case WM_SYSCOMMAND:
1414 case WM_SHOWWINDOW:
1415 case WM_SETVISIBLE:
1416 case WM_SIZE:
1417 case WM_NEXTMENU:
1418 case WM_SYSCHAR:
1419 case WM_DESTROY:
1420 return DefMDIChildProcW( hwnd, message, wParam, lParam );
1422 return DefWindowProcA(hwnd, message, wParam, lParam);
1426 /***********************************************************************
1427 * DefMDIChildProcW (USER32.@)
1429 LRESULT WINAPI DefMDIChildProcW( HWND hwnd, UINT message,
1430 WPARAM wParam, LPARAM lParam )
1432 HWND client = GetParent(hwnd);
1433 MDICLIENTINFO *ci = get_client_info( client );
1435 TRACE("%p %04x (%s) %08lx %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1437 hwnd = WIN_GetFullHandle( hwnd );
1438 if (!ci) return DefWindowProcW( hwnd, message, wParam, lParam );
1440 switch (message)
1442 case WM_SETTEXT:
1443 DefWindowProcW(hwnd, message, wParam, lParam);
1444 if( ci->hwndChildMaximized == hwnd )
1445 MDI_UpdateFrameText( GetParent(client), client, TRUE, NULL );
1446 return 1; /* success. FIXME: check text length */
1448 case WM_GETMINMAXINFO:
1449 MDI_ChildGetMinMaxInfo( client, hwnd, (MINMAXINFO *)lParam );
1450 return 0;
1452 case WM_MENUCHAR:
1453 return MAKELRESULT( 0, MNC_CLOSE ); /* MDI children don't have menu bars */
1455 case WM_CLOSE:
1456 SendMessageW( client, WM_MDIDESTROY, (WPARAM)hwnd, 0 );
1457 return 0;
1459 case WM_SETFOCUS:
1460 if (ci->hwndActiveChild != hwnd)
1461 MDI_ChildActivate( client, hwnd );
1462 break;
1464 case WM_CHILDACTIVATE:
1465 if (IsWindowEnabled( hwnd ))
1466 MDI_ChildActivate( client, hwnd );
1467 return 0;
1469 case WM_SYSCOMMAND:
1470 switch (wParam & 0xfff0)
1472 case SC_MOVE:
1473 if( ci->hwndChildMaximized == hwnd )
1474 return 0;
1475 break;
1476 case SC_RESTORE:
1477 case SC_MINIMIZE:
1478 break;
1479 case SC_MAXIMIZE:
1480 if (ci->hwndChildMaximized == hwnd)
1481 return SendMessageW( GetParent(client), message, wParam, lParam);
1482 break;
1483 case SC_NEXTWINDOW:
1484 SendMessageW( client, WM_MDINEXT, (WPARAM)ci->hwndActiveChild, 0);
1485 return 0;
1486 case SC_PREVWINDOW:
1487 SendMessageW( client, WM_MDINEXT, (WPARAM)ci->hwndActiveChild, 1);
1488 return 0;
1490 break;
1492 case WM_SHOWWINDOW:
1493 case WM_SETVISIBLE:
1494 if (ci->hwndChildMaximized) ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1495 else MDI_PostUpdate(client, ci, SB_BOTH+1);
1496 break;
1498 case WM_SIZE:
1499 /* This is the only place where we switch to/from maximized state */
1500 /* do not change */
1501 TRACE("current active %p, maximized %p\n", ci->hwndActiveChild, ci->hwndChildMaximized);
1503 if( ci->hwndChildMaximized == hwnd && wParam != SIZE_MAXIMIZED )
1505 HWND frame;
1507 ci->hwndChildMaximized = 0;
1509 frame = GetParent(client);
1510 MDI_RestoreFrameMenu( frame, hwnd );
1511 MDI_UpdateFrameText( frame, client, TRUE, NULL );
1514 if( wParam == SIZE_MAXIMIZED )
1516 HWND frame, hMaxChild = ci->hwndChildMaximized;
1518 if( hMaxChild == hwnd ) break;
1520 if( hMaxChild)
1522 SendMessageW( hMaxChild, WM_SETREDRAW, FALSE, 0 );
1524 MDI_RestoreFrameMenu( GetParent(client), hMaxChild );
1525 ShowWindow( hMaxChild, SW_SHOWNOACTIVATE );
1527 SendMessageW( hMaxChild, WM_SETREDRAW, TRUE, 0 );
1530 TRACE("maximizing child %p\n", hwnd );
1532 /* keep track of the maximized window. */
1533 ci->hwndChildMaximized = hwnd; /* !!! */
1535 frame = GetParent(client);
1536 MDI_AugmentFrameMenu( frame, hwnd );
1537 MDI_UpdateFrameText( frame, client, TRUE, NULL );
1540 if( wParam == SIZE_MINIMIZED )
1542 HWND switchTo = MDI_GetWindow( ci, hwnd, TRUE, WS_MINIMIZE );
1544 if (!switchTo) switchTo = hwnd;
1545 SendMessageW( switchTo, WM_CHILDACTIVATE, 0, 0 );
1548 MDI_PostUpdate(client, ci, SB_BOTH+1);
1549 break;
1551 case WM_NEXTMENU:
1553 MDINEXTMENU *next_menu = (MDINEXTMENU *)lParam;
1554 HWND parent = GetParent(client);
1556 if( wParam == VK_LEFT ) /* switch to frame system menu */
1558 WND *wndPtr = WIN_GetPtr( parent );
1559 next_menu->hmenuNext = GetSubMenu( wndPtr->hSysMenu, 0 );
1560 WIN_ReleasePtr( wndPtr );
1562 if( wParam == VK_RIGHT ) /* to frame menu bar */
1564 next_menu->hmenuNext = GetMenu(parent);
1566 next_menu->hwndNext = parent;
1567 return 0;
1570 case WM_SYSCHAR:
1571 if (wParam == '-')
1573 SendMessageW( hwnd, WM_SYSCOMMAND, SC_KEYMENU, VK_SPACE);
1574 return 0;
1576 break;
1578 case WM_DESTROY:
1579 /* Remove itself from the Window menu */
1580 MDI_RefreshMenu(ci);
1581 break;
1583 return DefWindowProcW(hwnd, message, wParam, lParam);
1586 /**********************************************************************
1587 * CreateMDIWindowA (USER32.@) Creates a MDI child
1589 * RETURNS
1590 * Success: Handle to created window
1591 * Failure: NULL
1593 HWND WINAPI CreateMDIWindowA(
1594 LPCSTR lpClassName, /* [in] Pointer to registered child class name */
1595 LPCSTR lpWindowName, /* [in] Pointer to window name */
1596 DWORD dwStyle, /* [in] Window style */
1597 INT X, /* [in] Horizontal position of window */
1598 INT Y, /* [in] Vertical position of window */
1599 INT nWidth, /* [in] Width of window */
1600 INT nHeight, /* [in] Height of window */
1601 HWND hWndParent, /* [in] Handle to parent window */
1602 HINSTANCE hInstance, /* [in] Handle to application instance */
1603 LPARAM lParam) /* [in] Application-defined value */
1605 TRACE("(%s,%s,%08x,%d,%d,%d,%d,%p,%p,%08lx)\n",
1606 debugstr_a(lpClassName),debugstr_a(lpWindowName),dwStyle,X,Y,
1607 nWidth,nHeight,hWndParent,hInstance,lParam);
1609 return CreateWindowExA(WS_EX_MDICHILD, lpClassName, lpWindowName,
1610 dwStyle, X, Y, nWidth, nHeight, hWndParent,
1611 0, hInstance, (LPVOID)lParam);
1614 /***********************************************************************
1615 * CreateMDIWindowW (USER32.@) Creates a MDI child
1617 * RETURNS
1618 * Success: Handle to created window
1619 * Failure: NULL
1621 HWND WINAPI CreateMDIWindowW(
1622 LPCWSTR lpClassName, /* [in] Pointer to registered child class name */
1623 LPCWSTR lpWindowName, /* [in] Pointer to window name */
1624 DWORD dwStyle, /* [in] Window style */
1625 INT X, /* [in] Horizontal position of window */
1626 INT Y, /* [in] Vertical position of window */
1627 INT nWidth, /* [in] Width of window */
1628 INT nHeight, /* [in] Height of window */
1629 HWND hWndParent, /* [in] Handle to parent window */
1630 HINSTANCE hInstance, /* [in] Handle to application instance */
1631 LPARAM lParam) /* [in] Application-defined value */
1633 TRACE("(%s,%s,%08x,%d,%d,%d,%d,%p,%p,%08lx)\n",
1634 debugstr_w(lpClassName), debugstr_w(lpWindowName), dwStyle, X, Y,
1635 nWidth, nHeight, hWndParent, hInstance, lParam);
1637 return CreateWindowExW(WS_EX_MDICHILD, lpClassName, lpWindowName,
1638 dwStyle, X, Y, nWidth, nHeight, hWndParent,
1639 0, hInstance, (LPVOID)lParam);
1642 /**********************************************************************
1643 * TranslateMDISysAccel (USER32.@)
1645 BOOL WINAPI TranslateMDISysAccel( HWND hwndClient, LPMSG msg )
1647 if (msg->message == WM_KEYDOWN || msg->message == WM_SYSKEYDOWN)
1649 MDICLIENTINFO *ci = get_client_info( hwndClient );
1650 WPARAM wParam = 0;
1652 if (!ci || !IsWindowEnabled(ci->hwndActiveChild)) return FALSE;
1654 /* translate if the Ctrl key is down and Alt not. */
1656 if( (GetKeyState(VK_CONTROL) & 0x8000) && !(GetKeyState(VK_MENU) & 0x8000))
1658 switch( msg->wParam )
1660 case VK_F6:
1661 case VK_TAB:
1662 wParam = ( GetKeyState(VK_SHIFT) & 0x8000 ) ? SC_NEXTWINDOW : SC_PREVWINDOW;
1663 break;
1664 case VK_F4:
1665 case VK_RBUTTON:
1666 if (is_close_enabled(ci->hwndActiveChild, 0))
1668 wParam = SC_CLOSE;
1669 break;
1671 /* fall through */
1672 default:
1673 return FALSE;
1675 TRACE("wParam = %04lx\n", wParam);
1676 SendMessageW(ci->hwndActiveChild, WM_SYSCOMMAND, wParam, msg->wParam);
1677 return TRUE;
1680 return FALSE; /* failure */
1683 /***********************************************************************
1684 * CalcChildScroll (USER32.@)
1686 void WINAPI CalcChildScroll( HWND hwnd, INT scroll )
1688 DPI_AWARENESS_CONTEXT context;
1689 SCROLLINFO info;
1690 RECT childRect, clientRect;
1691 HWND *list;
1692 DWORD style;
1694 context = SetThreadDpiAwarenessContext( GetWindowDpiAwarenessContext( hwnd ));
1696 GetClientRect( hwnd, &clientRect );
1697 SetRectEmpty( &childRect );
1699 if ((list = WIN_ListChildren( hwnd )))
1701 int i;
1702 for (i = 0; list[i]; i++)
1704 style = GetWindowLongW( list[i], GWL_STYLE );
1705 if (style & WS_MAXIMIZE)
1707 HeapFree( GetProcessHeap(), 0, list );
1708 ShowScrollBar( hwnd, SB_BOTH, FALSE );
1709 return;
1711 if (style & WS_VISIBLE)
1713 RECT rect;
1714 WIN_GetRectangles( list[i], COORDS_PARENT, &rect, NULL );
1715 UnionRect( &childRect, &rect, &childRect );
1718 HeapFree( GetProcessHeap(), 0, list );
1720 UnionRect( &childRect, &clientRect, &childRect );
1722 /* set common info values */
1723 info.cbSize = sizeof(info);
1724 info.fMask = SIF_POS | SIF_RANGE;
1726 /* set the specific values and apply but only if window style allows */
1727 style = GetWindowLongW( hwnd, GWL_STYLE );
1728 switch( scroll )
1730 case SB_BOTH:
1731 case SB_HORZ:
1732 if (style & (WS_HSCROLL | WS_VSCROLL))
1734 info.nMin = childRect.left;
1735 info.nMax = childRect.right - clientRect.right;
1736 info.nPos = clientRect.left - childRect.left;
1737 SetScrollInfo(hwnd, SB_HORZ, &info, TRUE);
1739 if (scroll == SB_HORZ) break;
1740 /* fall through */
1741 case SB_VERT:
1742 if (style & (WS_HSCROLL | WS_VSCROLL))
1744 info.nMin = childRect.top;
1745 info.nMax = childRect.bottom - clientRect.bottom;
1746 info.nPos = clientRect.top - childRect.top;
1747 SetScrollInfo(hwnd, SB_VERT, &info, TRUE);
1749 break;
1751 SetThreadDpiAwarenessContext( context );
1755 /***********************************************************************
1756 * ScrollChildren (USER32.@)
1758 void WINAPI ScrollChildren(HWND hWnd, UINT uMsg, WPARAM wParam,
1759 LPARAM lParam)
1761 DPI_AWARENESS_CONTEXT context;
1762 INT newPos = -1;
1763 INT curPos, length, minPos, maxPos, shift;
1764 RECT rect;
1766 context = SetThreadDpiAwarenessContext( GetWindowDpiAwarenessContext( hWnd ));
1767 GetClientRect( hWnd, &rect );
1769 switch(uMsg)
1771 case WM_HSCROLL:
1772 GetScrollRange(hWnd,SB_HORZ,&minPos,&maxPos);
1773 curPos = GetScrollPos(hWnd,SB_HORZ);
1774 length = (rect.right - rect.left) / 2;
1775 shift = GetSystemMetrics(SM_CYHSCROLL);
1776 break;
1777 case WM_VSCROLL:
1778 GetScrollRange(hWnd,SB_VERT,&minPos,&maxPos);
1779 curPos = GetScrollPos(hWnd,SB_VERT);
1780 length = (rect.bottom - rect.top) / 2;
1781 shift = GetSystemMetrics(SM_CXVSCROLL);
1782 break;
1783 default:
1784 goto done;
1787 switch( wParam )
1789 case SB_LINEUP:
1790 newPos = curPos - shift;
1791 break;
1792 case SB_LINEDOWN:
1793 newPos = curPos + shift;
1794 break;
1795 case SB_PAGEUP:
1796 newPos = curPos - length;
1797 break;
1798 case SB_PAGEDOWN:
1799 newPos = curPos + length;
1800 break;
1802 case SB_THUMBPOSITION:
1803 newPos = LOWORD(lParam);
1804 break;
1806 case SB_THUMBTRACK:
1807 goto done;
1809 case SB_TOP:
1810 newPos = minPos;
1811 break;
1812 case SB_BOTTOM:
1813 newPos = maxPos;
1814 break;
1815 case SB_ENDSCROLL:
1816 CalcChildScroll(hWnd,(uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ);
1817 goto done;
1820 if( newPos > maxPos )
1821 newPos = maxPos;
1822 else
1823 if( newPos < minPos )
1824 newPos = minPos;
1826 SetScrollPos(hWnd, (uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ , newPos, TRUE);
1828 if( uMsg == WM_VSCROLL )
1829 ScrollWindowEx(hWnd ,0 ,curPos - newPos, NULL, NULL, 0, NULL,
1830 SW_INVALIDATE | SW_ERASE | SW_SCROLLCHILDREN );
1831 else
1832 ScrollWindowEx(hWnd ,curPos - newPos, 0, NULL, NULL, 0, NULL,
1833 SW_INVALIDATE | SW_ERASE | SW_SCROLLCHILDREN );
1834 done:
1835 SetThreadDpiAwarenessContext( context );
1839 /******************************************************************************
1840 * CascadeWindows (USER32.@) Cascades MDI child windows
1842 * RETURNS
1843 * Success: Number of cascaded windows.
1844 * Failure: 0
1846 WORD WINAPI
1847 CascadeWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect,
1848 UINT cKids, const HWND *lpKids)
1850 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids);
1851 return 0;
1855 /***********************************************************************
1856 * CascadeChildWindows (USER32.@)
1858 WORD WINAPI CascadeChildWindows( HWND parent, UINT flags )
1860 return CascadeWindows( parent, flags, NULL, 0, NULL );
1864 /******************************************************************************
1865 * TileWindows (USER32.@) Tiles MDI child windows
1867 * RETURNS
1868 * Success: Number of tiled windows.
1869 * Failure: 0
1871 WORD WINAPI
1872 TileWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect,
1873 UINT cKids, const HWND *lpKids)
1875 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids);
1876 return 0;
1880 /***********************************************************************
1881 * TileChildWindows (USER32.@)
1883 WORD WINAPI TileChildWindows( HWND parent, UINT flags )
1885 return TileWindows( parent, flags, NULL, 0, NULL );
1889 /************************************************************************
1890 * "More Windows..." functionality
1893 /* MDI_MoreWindowsDlgProc
1895 * This function will process the messages sent to the "More Windows..."
1896 * dialog.
1897 * Return values: 0 = cancel pressed
1898 * HWND = ok pressed or double-click in the list...
1902 static INT_PTR WINAPI MDI_MoreWindowsDlgProc (HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
1904 switch (iMsg)
1906 case WM_INITDIALOG:
1908 UINT widest = 0;
1909 UINT length;
1910 UINT i;
1911 MDICLIENTINFO *ci = get_client_info( (HWND)lParam );
1912 HWND hListBox = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1914 for (i = 0; i < ci->nActiveChildren; i++)
1916 WCHAR buffer[MDI_MAXTITLELENGTH];
1918 if (!InternalGetWindowText(ci->child[i], buffer, ARRAY_SIZE(buffer)))
1919 continue;
1920 SendMessageW(hListBox, LB_ADDSTRING, 0, (LPARAM)buffer );
1921 SendMessageW(hListBox, LB_SETITEMDATA, i, (LPARAM)ci->child[i] );
1922 length = strlenW(buffer); /* FIXME: should use GetTextExtentPoint */
1923 if (length > widest)
1924 widest = length;
1926 /* Make sure the horizontal scrollbar scrolls ok */
1927 SendMessageW(hListBox, LB_SETHORIZONTALEXTENT, widest * 6, 0);
1929 /* Set the current selection */
1930 SendMessageW(hListBox, LB_SETCURSEL, MDI_MOREWINDOWSLIMIT, 0);
1931 return TRUE;
1934 case WM_COMMAND:
1935 switch (LOWORD(wParam))
1937 default:
1938 if (HIWORD(wParam) != LBN_DBLCLK) break;
1939 /* fall through */
1940 case IDOK:
1942 /* windows are sorted by menu ID, so we must return the
1943 * window associated to the given id
1945 HWND hListBox = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1946 UINT index = SendMessageW(hListBox, LB_GETCURSEL, 0, 0);
1947 LRESULT res = SendMessageW(hListBox, LB_GETITEMDATA, index, 0);
1948 EndDialog(hDlg, res);
1949 return TRUE;
1951 case IDCANCEL:
1952 EndDialog(hDlg, 0);
1953 return TRUE;
1955 break;
1957 return FALSE;
1962 * MDI_MoreWindowsDialog
1964 * Prompts the user with a listbox containing the opened
1965 * documents. The user can then choose a windows and click
1966 * on OK to set the current window to the one selected, or
1967 * CANCEL to cancel. The function returns a handle to the
1968 * selected window.
1971 static HWND MDI_MoreWindowsDialog(HWND hwnd)
1973 LPCVOID template;
1974 HRSRC hRes;
1975 HANDLE hDlgTmpl;
1977 hRes = FindResourceA(user32_module, "MDI_MOREWINDOWS", (LPSTR)RT_DIALOG);
1979 if (hRes == 0)
1980 return 0;
1982 hDlgTmpl = LoadResource(user32_module, hRes );
1984 if (hDlgTmpl == 0)
1985 return 0;
1987 template = LockResource( hDlgTmpl );
1989 if (template == 0)
1990 return 0;
1992 return (HWND) DialogBoxIndirectParamA(user32_module, template, hwnd,
1993 MDI_MoreWindowsDlgProc, (LPARAM) hwnd);