Authors: Mike McCormack <mike@codeweavers.com>, Aric Stewart <aric@codeweavers.com...
[wine/multimedia.git] / windows / mdi.c
blobbf5aefc653aa34f4741e1ed353cf689f749e802a
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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, 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:
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 #include "windef.h"
90 #include "winbase.h"
91 #include "wingdi.h"
92 #include "winuser.h"
93 #include "wownt32.h"
94 #include "wine/winuser16.h"
95 #include "wine/unicode.h"
96 #include "win.h"
97 #include "controls.h"
98 #include "message.h"
99 #include "user_private.h"
100 #include "wine/debug.h"
101 #include "dlgs.h"
103 WINE_DEFAULT_DEBUG_CHANNEL(mdi);
105 #define MDI_MAXTITLELENGTH 0xa1
107 #define WM_MDICALCCHILDSCROLL 0x10ac /* this is exactly what Windows uses */
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
115 #define MDIF_NEEDUPDATE 0x0001
117 typedef struct
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;
131 static HBITMAP hBmpClose = 0;
133 /* ----------------- declarations ----------------- */
134 static void MDI_UpdateFrameText( HWND, HWND, 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 *);
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 );
144 /* -------- Miscellaneous service functions ----------
146 * MDI_GetChildByID
148 static HWND MDI_GetChildByID(HWND hwnd, UINT id, MDICLIENTINFO *ci)
150 int i;
152 for (i = 0; ci->nActiveChildren; i++)
154 if (GetWindowLongPtrW( ci->child[i], GWLP_ID ) == id)
155 return ci->child[i];
157 return 0;
160 static void MDI_PostUpdate(HWND hwnd, MDICLIENTINFO* ci, WORD recalc)
162 if( !(ci->mdiFlags & MDIF_NEEDUPDATE) )
164 ci->mdiFlags |= MDIF_NEEDUPDATE;
165 PostMessageA( hwnd, WM_MDICALCCHILDSCROLL, 0, 0);
167 ci->sbRecalc = recalc;
171 /*********************************************************************
172 * MDIClient class descriptor
174 const struct builtin_class_descr MDICLIENT_builtin_class =
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 */
186 static MDICLIENTINFO *get_client_info( HWND client )
188 MDICLIENTINFO *ret = NULL;
189 WND *win = WIN_GetPtr( client );
190 if (win)
192 if (win == WND_OTHER_PROCESS)
194 ERR( "client %p belongs to other process\n", client );
195 return NULL;
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 );
201 return ret;
204 /**********************************************************************
205 * MDI_GetWindow
207 * returns "activateable" child different from the current or zero
209 static HWND MDI_GetWindow(MDICLIENTINFO *clientInfo, HWND hWnd, BOOL bNext,
210 DWORD dwStyleMask )
212 int i;
213 HWND *list;
214 HWND last = 0;
216 dwStyleMask |= WS_DISABLED | WS_VISIBLE;
217 if( !hWnd ) hWnd = clientInfo->hwndActiveChild;
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++;
225 for ( ; list[i]; i++)
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;
232 /* now restart from the beginning */
233 for (i = 0; list[i] && list[i] != hWnd; i++)
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;
240 found:
241 HeapFree( GetProcessHeap(), 0, list );
242 return last;
245 /**********************************************************************
246 * MDI_CalcDefaultChildPos
248 * It seems that the default height is about 2/3 of the client rect
250 void MDI_CalcDefaultChildPos( HWND hwndClient, INT total, LPPOINT lpPos, INT delta )
252 INT nstagger;
253 RECT rect;
254 INT spacing = GetSystemMetrics(SM_CYCAPTION) +
255 GetSystemMetrics(SM_CYFRAME) - 1;
257 if (total < 0)
259 MDICLIENTINFO *ci = get_client_info(hwndClient);
260 total = ci ? ci->nTotalCreated : 0;
263 GetClientRect( hwndClient, &rect );
264 if( rect.bottom - rect.top - delta >= spacing )
265 rect.bottom -= delta;
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));
273 /**********************************************************************
274 * MDISetMenu
276 static LRESULT MDISetMenu( HWND hwnd, HMENU hmenuFrame,
277 HMENU hmenuWindow)
279 MDICLIENTINFO *ci;
280 HWND hwndFrame = GetParent(hwnd);
282 TRACE("%p %p %p\n", hwnd, hmenuFrame, hmenuWindow);
284 if (hmenuFrame && !IsMenu(hmenuFrame))
286 WARN("hmenuFrame is not a menu handle\n");
287 return 0L;
290 if (hmenuWindow && !IsMenu(hmenuWindow))
292 WARN("hmenuWindow is not a menu handle\n");
293 return 0L;
296 if (!(ci = get_client_info( hwnd ))) return 0;
298 if (hmenuFrame)
300 if (hmenuFrame == ci->hFrameMenu) return (LRESULT)hmenuFrame;
302 if (IsZoomed(ci->hwndActiveChild))
303 MDI_RestoreFrameMenu( hwndFrame, ci->hwndActiveChild );
306 if( hmenuWindow && hmenuWindow != ci->hWindowMenu )
308 /* delete menu items from ci->hWindowMenu
309 * and add them to hmenuWindow */
310 /* Agent newsreader calls this function with ci->hWindowMenu == NULL */
311 if( ci->hWindowMenu && ci->nActiveChildren )
313 UINT nActiveChildren_old = ci->nActiveChildren;
315 /* Remove all items from old Window menu */
316 ci->nActiveChildren = 0;
317 MDI_RefreshMenu(ci);
319 ci->hWindowMenu = hmenuWindow;
321 /* Add items to the new Window menu */
322 ci->nActiveChildren = nActiveChildren_old;
323 MDI_RefreshMenu(ci);
325 else
326 ci->hWindowMenu = hmenuWindow;
329 if (hmenuFrame)
331 SetMenu(hwndFrame, hmenuFrame);
332 if( hmenuFrame != ci->hFrameMenu )
334 HMENU oldFrameMenu = ci->hFrameMenu;
336 ci->hFrameMenu = hmenuFrame;
337 if (IsZoomed(ci->hwndActiveChild) && (GetWindowLongW(ci->hwndActiveChild, GWL_STYLE) & WS_VISIBLE))
338 MDI_AugmentFrameMenu( hwndFrame, ci->hwndActiveChild );
340 return (LRESULT)oldFrameMenu;
343 else
345 /* SetMenu() may already have been called, meaning that this window
346 * already has its menu. But they may have done a SetMenu() on
347 * an MDI window, and called MDISetMenu() after the fact, meaning
348 * that the "if" to this "else" wouldn't catch the need to
349 * augment the frame menu.
351 if( IsZoomed(ci->hwndActiveChild) )
352 MDI_AugmentFrameMenu( hwndFrame, ci->hwndActiveChild );
355 return 0;
358 /**********************************************************************
359 * MDIRefreshMenu
361 static LRESULT MDI_RefreshMenu(MDICLIENTINFO *ci)
363 UINT i, count, visible, id;
364 WCHAR buf[MDI_MAXTITLELENGTH];
366 TRACE("children %u, window menu %p\n", ci->nActiveChildren, ci->hWindowMenu);
368 if (!ci->hWindowMenu)
369 return 0;
371 if (!IsMenu(ci->hWindowMenu))
373 WARN("Window menu handle %p is no more valid\n", ci->hWindowMenu);
374 return 0;
377 /* Windows finds the last separator in the menu, and if after it
378 * there is a menu item with MDI magic ID removes all existing
379 * menu items after it, and then adds visible MDI children.
381 count = GetMenuItemCount(ci->hWindowMenu);
382 for (i = 0; i < count; i++)
384 MENUITEMINFOW mii;
386 memset(&mii, 0, sizeof(mii));
387 mii.cbSize = sizeof(mii);
388 mii.fMask = MIIM_TYPE;
389 if (GetMenuItemInfoW(ci->hWindowMenu, i, TRUE, &mii))
391 if (mii.fType & MF_SEPARATOR)
393 /* Windows checks only ID of the menu item */
394 memset(&mii, 0, sizeof(mii));
395 mii.cbSize = sizeof(mii);
396 mii.fMask = MIIM_ID;
397 if (GetMenuItemInfoW(ci->hWindowMenu, i + 1, TRUE, &mii))
399 if (mii.wID == ci->idFirstChild)
401 TRACE("removing %u items including separator\n", count - i);
402 while (RemoveMenu(ci->hWindowMenu, i, MF_BYPOSITION))
403 /* nothing */;
405 break;
412 visible = 0;
413 for (i = 0; i < ci->nActiveChildren; i++)
415 if (GetWindowLongW(ci->child[i], GWL_STYLE) & WS_VISIBLE)
417 id = ci->idFirstChild + visible;
419 if (visible == MDI_MOREWINDOWSLIMIT)
421 LoadStringW(user32_module, IDS_MDI_MOREWINDOWS, buf, sizeof(buf)/sizeof(WCHAR));
422 AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
423 break;
426 if (!visible)
427 /* Visio expects that separator has id 0 */
428 AppendMenuW(ci->hWindowMenu, MF_SEPARATOR, 0, NULL);
430 visible++;
432 SetWindowLongPtrW(ci->child[i], GWLP_ID, id);
434 buf[0] = '&';
435 buf[1] = '0' + visible;
436 buf[2] = ' ';
437 InternalGetWindowText(ci->child[i], buf + 3, sizeof(buf)/sizeof(WCHAR) - 3);
438 TRACE("Adding %p, id %u %s\n", ci->child[i], id, debugstr_w(buf));
439 AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
441 if (ci->child[i] == ci->hwndActiveChild)
442 CheckMenuItem(ci->hWindowMenu, id, MF_CHECKED);
444 else
445 TRACE("MDI child %p is not visible, skipping\n", ci->child[i]);
448 return (LRESULT)ci->hFrameMenu;
452 /* ------------------ MDI child window functions ---------------------- */
454 /**********************************************************************
455 * MDI_ChildGetMinMaxInfo
457 * Note: The rule here is that client rect of the maximized MDI child
458 * is equal to the client rect of the MDI client window.
460 static void MDI_ChildGetMinMaxInfo( HWND client, HWND hwnd, MINMAXINFO* lpMinMax )
462 RECT rect;
464 GetClientRect( client, &rect );
465 AdjustWindowRectEx( &rect, GetWindowLongW( hwnd, GWL_STYLE ),
466 0, GetWindowLongW( hwnd, GWL_EXSTYLE ));
468 lpMinMax->ptMaxSize.x = rect.right -= rect.left;
469 lpMinMax->ptMaxSize.y = rect.bottom -= rect.top;
471 lpMinMax->ptMaxPosition.x = rect.left;
472 lpMinMax->ptMaxPosition.y = rect.top;
474 TRACE("max rect (%ld,%ld - %ld, %ld)\n",
475 rect.left,rect.top,rect.right,rect.bottom);
478 /**********************************************************************
479 * MDI_SwitchActiveChild
481 * Note: SetWindowPos sends WM_CHILDACTIVATE to the child window that is
482 * being activated
484 static void MDI_SwitchActiveChild( MDICLIENTINFO *ci, HWND hwndTo )
486 HWND hwndPrev;
488 hwndPrev = ci->hwndActiveChild;
490 TRACE("from %p, to %p\n", hwndPrev, hwndTo);
492 if ( hwndTo != hwndPrev )
494 BOOL was_zoomed = IsZoomed(hwndPrev);
496 if (was_zoomed)
498 /* restore old MDI child */
499 SendMessageW( hwndPrev, WM_SETREDRAW, FALSE, 0 );
500 ShowWindow( hwndPrev, SW_RESTORE );
501 SendMessageW( hwndPrev, WM_SETREDRAW, TRUE, 0 );
503 /* activate new MDI child */
504 SetWindowPos( hwndTo, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE );
505 /* maximize new MDI child */
506 ShowWindow( hwndTo, SW_MAXIMIZE );
508 /* activate new MDI child */
509 SetWindowPos( hwndTo, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE );
514 /**********************************************************************
515 * MDIDestroyChild
517 static LRESULT MDIDestroyChild( HWND client, MDICLIENTINFO *ci,
518 HWND child, BOOL flagDestroy )
520 UINT i;
522 TRACE("# of managed children %u\n", ci->nActiveChildren);
524 if( child == ci->hwndActiveChild )
526 HWND next = MDI_GetWindow(ci, child, TRUE, 0);
527 if (next)
528 MDI_SwitchActiveChild(ci, next);
529 else
531 ShowWindow(child, SW_HIDE);
532 if (IsZoomed(child))
534 MDI_RestoreFrameMenu(GetParent(client), child);
535 MDI_UpdateFrameText(GetParent(client), client, NULL);
537 MDI_ChildActivate(client, 0);
541 for (i = 0; i < ci->nActiveChildren; i++)
543 if (ci->child[i] == child)
545 HWND *new_child = HeapAlloc(GetProcessHeap(), 0, (ci->nActiveChildren - 1) * sizeof(HWND));
546 memcpy(new_child, ci->child, i * sizeof(HWND));
547 if (i + 1 < ci->nActiveChildren)
548 memcpy(new_child + i, ci->child + i + 1, (ci->nActiveChildren - i - 1) * sizeof(HWND));
549 HeapFree(GetProcessHeap(), 0, ci->child);
550 ci->child = new_child;
552 ci->nActiveChildren--;
553 break;
557 SendMessageW(client, WM_MDIREFRESHMENU, 0, 0);
559 if (flagDestroy)
561 MDI_PostUpdate(GetParent(child), ci, SB_BOTH+1);
562 DestroyWindow(child);
565 TRACE("child destroyed - %p\n", child);
566 return 0;
570 /**********************************************************************
571 * MDI_ChildActivate
573 * Called in response to WM_CHILDACTIVATE, or when last MDI child
574 * is being deactivated.
576 static LONG MDI_ChildActivate( HWND client, HWND child )
578 MDICLIENTINFO *clientInfo;
579 HWND prevActiveWnd, frame;
580 BOOL isActiveFrameWnd;
582 clientInfo = get_client_info( client );
584 if (clientInfo->hwndActiveChild == child) return 0;
586 TRACE("%p\n", child);
588 frame = GetParent(client);
589 isActiveFrameWnd = (GetActiveWindow() == frame);
590 prevActiveWnd = clientInfo->hwndActiveChild;
592 /* deactivate prev. active child */
593 if(prevActiveWnd)
595 SendMessageW( prevActiveWnd, WM_NCACTIVATE, FALSE, 0L );
596 SendMessageW( prevActiveWnd, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child);
599 clientInfo->hwndActiveChild = child;
601 MDI_RefreshMenu(clientInfo);
603 if( isActiveFrameWnd )
605 SendMessageW( child, WM_NCACTIVATE, TRUE, 0L);
606 SetFocus(child);
609 SendMessageW( child, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child );
610 return TRUE;
613 /* -------------------- MDI client window functions ------------------- */
615 /**********************************************************************
616 * CreateMDIMenuBitmap
618 static HBITMAP CreateMDIMenuBitmap(void)
620 HDC hDCSrc = CreateCompatibleDC(0);
621 HDC hDCDest = CreateCompatibleDC(hDCSrc);
622 HBITMAP hbClose = LoadBitmapW(0, MAKEINTRESOURCEW(OBM_OLD_CLOSE) );
623 HBITMAP hbCopy;
624 HBITMAP hobjSrc, hobjDest;
626 hobjSrc = SelectObject(hDCSrc, hbClose);
627 hbCopy = CreateCompatibleBitmap(hDCSrc,GetSystemMetrics(SM_CXSIZE),GetSystemMetrics(SM_CYSIZE));
628 hobjDest = SelectObject(hDCDest, hbCopy);
630 BitBlt(hDCDest, 0, 0, GetSystemMetrics(SM_CXSIZE), GetSystemMetrics(SM_CYSIZE),
631 hDCSrc, GetSystemMetrics(SM_CXSIZE), 0, SRCCOPY);
633 SelectObject(hDCSrc, hobjSrc);
634 DeleteObject(hbClose);
635 DeleteDC(hDCSrc);
637 hobjSrc = SelectObject( hDCDest, GetStockObject(BLACK_PEN) );
639 MoveToEx( hDCDest, GetSystemMetrics(SM_CXSIZE) - 1, 0, NULL );
640 LineTo( hDCDest, GetSystemMetrics(SM_CXSIZE) - 1, GetSystemMetrics(SM_CYSIZE) - 1);
642 SelectObject(hDCDest, hobjSrc );
643 SelectObject(hDCDest, hobjDest);
644 DeleteDC(hDCDest);
646 return hbCopy;
649 /**********************************************************************
650 * MDICascade
652 static LONG MDICascade( HWND client, MDICLIENTINFO *ci )
654 HWND *win_array;
655 BOOL has_icons = FALSE;
656 int i, total;
658 if (IsZoomed(ci->hwndActiveChild))
659 SendMessageA(client, WM_MDIRESTORE, (WPARAM)ci->hwndActiveChild, 0);
661 if (ci->nActiveChildren == 0) return 0;
663 if (!(win_array = WIN_ListChildren( client ))) return 0;
665 /* remove all the windows we don't want */
666 for (i = total = 0; win_array[i]; i++)
668 if (!IsWindowVisible( win_array[i] )) continue;
669 if (GetWindow( win_array[i], GW_OWNER )) continue; /* skip owned windows */
670 if (IsIconic( win_array[i] ))
672 has_icons = TRUE;
673 continue;
675 win_array[total++] = win_array[i];
677 win_array[total] = 0;
679 if (total)
681 INT delta = 0, n = 0, i;
682 POINT pos[2];
683 if (has_icons) delta = GetSystemMetrics(SM_CYICONSPACING) + GetSystemMetrics(SM_CYICON);
685 /* walk the list (backwards) and move windows */
686 for (i = total - 1; i >= 0; i--)
688 TRACE("move %p to (%ld,%ld) size [%ld,%ld]\n",
689 win_array[i], pos[0].x, pos[0].y, pos[1].x, pos[1].y);
691 MDI_CalcDefaultChildPos(client, n++, pos, delta);
692 SetWindowPos( win_array[i], 0, pos[0].x, pos[0].y, pos[1].x, pos[1].y,
693 SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER);
696 HeapFree( GetProcessHeap(), 0, win_array );
698 if (has_icons) ArrangeIconicWindows( client );
699 return 0;
702 /**********************************************************************
703 * MDITile
705 static void MDITile( HWND client, MDICLIENTINFO *ci, WPARAM wParam )
707 HWND *win_array;
708 int i, total;
709 BOOL has_icons = FALSE;
711 if (IsZoomed(ci->hwndActiveChild))
712 SendMessageA(client, WM_MDIRESTORE, (WPARAM)ci->hwndActiveChild, 0);
714 if (ci->nActiveChildren == 0) return;
716 if (!(win_array = WIN_ListChildren( client ))) return;
718 /* remove all the windows we don't want */
719 for (i = total = 0; win_array[i]; i++)
721 if (!IsWindowVisible( win_array[i] )) continue;
722 if (GetWindow( win_array[i], GW_OWNER )) continue; /* skip owned windows (icon titles) */
723 if (IsIconic( win_array[i] ))
725 has_icons = TRUE;
726 continue;
728 if ((wParam & MDITILE_SKIPDISABLED) && !IsWindowEnabled( win_array[i] )) continue;
729 win_array[total++] = win_array[i];
731 win_array[total] = 0;
733 TRACE("%u windows to tile\n", total);
735 if (total)
737 HWND *pWnd = win_array;
738 RECT rect;
739 int x, y, xsize, ysize;
740 int rows, columns, r, c, i;
742 GetClientRect(client,&rect);
743 rows = (int) sqrt((double)total);
744 columns = total / rows;
746 if( wParam & MDITILE_HORIZONTAL ) /* version >= 3.1 */
748 i = rows;
749 rows = columns; /* exchange r and c */
750 columns = i;
753 if (has_icons)
755 y = rect.bottom - 2 * GetSystemMetrics(SM_CYICONSPACING) - GetSystemMetrics(SM_CYICON);
756 rect.bottom = ( y - GetSystemMetrics(SM_CYICON) < rect.top )? rect.bottom: y;
759 ysize = rect.bottom / rows;
760 xsize = rect.right / columns;
762 for (x = i = 0, c = 1; c <= columns && *pWnd; c++)
764 if (c == columns)
766 rows = total - i;
767 ysize = rect.bottom / rows;
770 y = 0;
771 for (r = 1; r <= rows && *pWnd; r++, i++)
773 SetWindowPos(*pWnd, 0, x, y, xsize, ysize,
774 SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER);
775 y += ysize;
776 pWnd++;
778 x += xsize;
781 HeapFree( GetProcessHeap(), 0, win_array );
782 if (has_icons) ArrangeIconicWindows( client );
785 /* ----------------------- Frame window ---------------------------- */
788 /**********************************************************************
789 * MDI_AugmentFrameMenu
791 static BOOL MDI_AugmentFrameMenu( HWND frame, HWND hChild )
793 HMENU menu = GetMenu( frame );
794 HMENU hSysPopup = 0;
795 HBITMAP hSysMenuBitmap = 0;
796 INT nItems;
797 UINT iId;
798 HICON hIcon;
800 TRACE("frame %p,child %p\n",frame,hChild);
802 if( !menu ) return 0;
804 /* if the system buttons already exist do not add them again */
805 nItems = GetMenuItemCount(menu) - 1;
806 iId = GetMenuItemID(menu,nItems) ;
807 if (iId == SC_RESTORE || iId == SC_CLOSE)
808 return 0;
810 /* create a copy of sysmenu popup and insert it into frame menu bar */
811 if (!(hSysPopup = GetSystemMenu(hChild, FALSE)))
812 return 0;
814 AppendMenuA(menu,MF_HELP | MF_BITMAP,
815 SC_MINIMIZE, (LPSTR)(DWORD)HBMMENU_MBAR_MINIMIZE ) ;
816 AppendMenuA(menu,MF_HELP | MF_BITMAP,
817 SC_RESTORE, (LPSTR)(DWORD)HBMMENU_MBAR_RESTORE );
819 AppendMenuA(menu,MF_HELP | MF_BITMAP,
820 SC_CLOSE, (LPSTR)(DWORD)HBMMENU_MBAR_CLOSE );
822 /* The system menu is replaced by the child icon */
823 hIcon = (HICON)GetClassLongW(hChild, GCL_HICONSM);
824 if (!hIcon)
825 hIcon = (HICON)GetClassLongW(hChild, GCL_HICON);
826 if (!hIcon)
827 hIcon = LoadImageW(0, MAKEINTRESOURCEW(IDI_WINLOGO), IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR);
828 if (hIcon)
830 HDC hMemDC;
831 HBITMAP hBitmap, hOldBitmap;
832 HBRUSH hBrush;
833 HDC hdc = GetDC(hChild);
835 if (hdc)
837 int cx, cy;
838 cx = GetSystemMetrics(SM_CXSMICON);
839 cy = GetSystemMetrics(SM_CYSMICON);
840 hMemDC = CreateCompatibleDC(hdc);
841 hBitmap = CreateCompatibleBitmap(hdc, cx, cy);
842 hOldBitmap = SelectObject(hMemDC, hBitmap);
843 SetMapMode(hMemDC, MM_TEXT);
844 hBrush = CreateSolidBrush(GetSysColor(COLOR_MENU));
845 DrawIconEx(hMemDC, 0, 0, hIcon, cx, cy, 0, hBrush, DI_NORMAL);
846 SelectObject (hMemDC, hOldBitmap);
847 DeleteObject(hBrush);
848 DeleteDC(hMemDC);
849 ReleaseDC(hChild, hdc);
850 hSysMenuBitmap = hBitmap;
854 if( !InsertMenuA(menu,0,MF_BYPOSITION | MF_BITMAP | MF_POPUP,
855 (UINT_PTR)hSysPopup, (LPSTR)hSysMenuBitmap))
857 TRACE("not inserted\n");
858 DestroyMenu(hSysPopup);
859 return 0;
862 EnableMenuItem(hSysPopup, SC_SIZE, MF_BYCOMMAND | MF_GRAYED);
863 EnableMenuItem(hSysPopup, SC_MOVE, MF_BYCOMMAND | MF_GRAYED);
864 EnableMenuItem(hSysPopup, SC_MAXIMIZE, MF_BYCOMMAND | MF_GRAYED);
865 SetMenuDefaultItem(hSysPopup, SC_CLOSE, FALSE);
867 /* redraw menu */
868 DrawMenuBar(frame);
870 return 1;
873 /**********************************************************************
874 * MDI_RestoreFrameMenu
876 static BOOL MDI_RestoreFrameMenu( HWND frame, HWND hChild )
878 MENUITEMINFOW menuInfo;
879 HMENU menu = GetMenu( frame );
880 INT nItems = GetMenuItemCount(menu) - 1;
881 UINT iId = GetMenuItemID(menu,nItems) ;
883 TRACE("frame %p,child %p,nIt=%d,iId=%d\n",frame,hChild,nItems,iId);
885 if( !menu ) return 0;
887 /* if there is no system buttons then nothing to do */
888 if(!(iId == SC_RESTORE || iId == SC_CLOSE) )
889 return 0;
892 * Remove the system menu, If that menu is the icon of the window
893 * as it is in win95, we have to delete the bitmap.
895 memset(&menuInfo, 0, sizeof(menuInfo));
896 menuInfo.cbSize = sizeof(menuInfo);
897 menuInfo.fMask = MIIM_DATA | MIIM_TYPE;
899 GetMenuItemInfoW(menu,
901 TRUE,
902 &menuInfo);
904 RemoveMenu(menu,0,MF_BYPOSITION);
906 if ( (menuInfo.fType & MFT_BITMAP) &&
907 (LOWORD(menuInfo.dwTypeData)!=0) &&
908 (LOWORD(menuInfo.dwTypeData)!=HBITMAP_16(hBmpClose)) )
910 DeleteObject(HBITMAP_32(LOWORD(menuInfo.dwTypeData)));
913 /* close */
914 DeleteMenu(menu, SC_CLOSE, MF_BYCOMMAND);
915 /* restore */
916 DeleteMenu(menu, SC_RESTORE, MF_BYCOMMAND);
917 /* minimize */
918 DeleteMenu(menu, SC_MINIMIZE, MF_BYCOMMAND);
920 DrawMenuBar(frame);
922 return 1;
926 /**********************************************************************
927 * MDI_UpdateFrameText
929 * used when child window is maximized/restored
931 * Note: lpTitle can be NULL
933 static void MDI_UpdateFrameText( HWND frame, HWND hClient, LPCWSTR lpTitle )
935 WCHAR lpBuffer[MDI_MAXTITLELENGTH+1];
936 MDICLIENTINFO *ci = get_client_info( hClient );
938 TRACE("frameText %s\n", debugstr_w(lpTitle));
940 if (!ci) return;
942 if (!lpTitle && !ci->frameTitle) /* first time around, get title from the frame window */
944 GetWindowTextW( frame, lpBuffer, sizeof(lpBuffer)/sizeof(WCHAR) );
945 lpTitle = lpBuffer;
948 /* store new "default" title if lpTitle is not NULL */
949 if (lpTitle)
951 HeapFree( GetProcessHeap(), 0, ci->frameTitle );
952 if ((ci->frameTitle = HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle)+1)*sizeof(WCHAR))))
953 strcpyW( ci->frameTitle, lpTitle );
956 if (ci->frameTitle)
958 if (IsZoomed(ci->hwndActiveChild) && IsWindowVisible(ci->hwndActiveChild))
960 /* combine frame title and child title if possible */
962 static const WCHAR lpBracket[] = {' ','-',' ','[',0};
963 static const WCHAR lpBracket2[] = {']',0};
964 int i_frame_text_length = strlenW(ci->frameTitle);
966 lstrcpynW( lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH);
968 if( i_frame_text_length + 6 < MDI_MAXTITLELENGTH )
970 strcatW( lpBuffer, lpBracket );
971 if (GetWindowTextW( ci->hwndActiveChild, lpBuffer + i_frame_text_length + 4,
972 MDI_MAXTITLELENGTH - i_frame_text_length - 5 ))
973 strcatW( lpBuffer, lpBracket2 );
974 else
975 lpBuffer[i_frame_text_length] = 0; /* remove bracket */
978 else
980 lstrcpynW(lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH+1 );
983 else
984 lpBuffer[0] = '\0';
986 DefWindowProcW( frame, WM_SETTEXT, 0, (LPARAM)lpBuffer );
990 /* ----------------------------- Interface ---------------------------- */
993 /**********************************************************************
994 * MDIClientWndProc_common
996 static LRESULT MDIClientWndProc_common( HWND hwnd, UINT message,
997 WPARAM wParam, LPARAM lParam, BOOL unicode )
999 MDICLIENTINFO *ci;
1001 TRACE("%p %04x (%s) %08x %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1003 if (!(ci = get_client_info( hwnd ))) return 0;
1005 switch (message)
1007 case WM_CREATE:
1009 /* Since we are using only cs->lpCreateParams, we can safely
1010 * cast to LPCREATESTRUCTA here */
1011 LPCREATESTRUCTA cs = (LPCREATESTRUCTA)lParam;
1012 WND *wndPtr = WIN_GetPtr( hwnd );
1014 wndPtr->flags |= WIN_ISMDICLIENT;
1016 /* Translation layer doesn't know what's in the cs->lpCreateParams
1017 * so we have to keep track of what environment we're in. */
1019 if( wndPtr->flags & WIN_ISWIN32 )
1021 LPCLIENTCREATESTRUCT ccs = cs->lpCreateParams;
1022 ci->hWindowMenu = ccs->hWindowMenu;
1023 ci->idFirstChild = ccs->idFirstChild;
1025 else
1027 LPCLIENTCREATESTRUCT16 ccs = MapSL((SEGPTR)cs->lpCreateParams);
1028 ci->hWindowMenu = HMENU_32(ccs->hWindowMenu);
1029 ci->idFirstChild = ccs->idFirstChild;
1031 WIN_ReleasePtr( wndPtr );
1033 ci->child = NULL;
1034 ci->nActiveChildren = 0;
1035 ci->nTotalCreated = 0;
1036 ci->frameTitle = NULL;
1037 ci->mdiFlags = 0;
1038 ci->hFrameMenu = GetMenu(cs->hwndParent);
1040 if (!hBmpClose) hBmpClose = CreateMDIMenuBitmap();
1042 TRACE("Client created: hwnd %p, Window menu %p, idFirst = %u\n",
1043 hwnd, ci->hWindowMenu, ci->idFirstChild );
1044 return 0;
1047 case WM_DESTROY:
1049 if( IsZoomed(ci->hwndActiveChild) )
1050 MDI_RestoreFrameMenu(GetParent(hwnd), ci->hwndActiveChild);
1052 ci->nActiveChildren = 0;
1053 MDI_RefreshMenu(ci);
1055 HeapFree( GetProcessHeap(), 0, ci->child );
1056 HeapFree( GetProcessHeap(), 0, ci->frameTitle );
1058 return 0;
1061 case WM_MDIACTIVATE:
1063 MDI_SwitchActiveChild( ci, (HWND)wParam );
1064 return 0;
1067 case WM_MDICASCADE:
1068 return MDICascade(hwnd, ci);
1070 case WM_MDICREATE:
1071 if (lParam)
1073 HWND child;
1075 if (unicode)
1077 MDICREATESTRUCTW *csW = (MDICREATESTRUCTW *)lParam;
1078 child = CreateWindowExW(WS_EX_MDICHILD, csW->szClass,
1079 csW->szTitle, csW->style,
1080 csW->x, csW->y, csW->cx, csW->cy,
1081 hwnd, 0, csW->hOwner,
1082 (LPVOID)csW->lParam);
1084 else
1086 MDICREATESTRUCTA *csA = (MDICREATESTRUCTA *)lParam;
1087 child = CreateWindowExA(WS_EX_MDICHILD, csA->szClass,
1088 csA->szTitle, csA->style,
1089 csA->x, csA->y, csA->cx, csA->cy,
1090 hwnd, 0, csA->hOwner,
1091 (LPVOID)csA->lParam);
1094 if (IsZoomed(ci->hwndActiveChild))
1096 MDI_AugmentFrameMenu(GetParent(hwnd), child);
1097 MDI_UpdateFrameText(GetParent(hwnd), hwnd, NULL);
1099 return (LRESULT)child;
1101 return 0;
1103 case WM_MDIDESTROY:
1104 return MDIDestroyChild( hwnd, ci, WIN_GetFullHandle( (HWND)wParam ), TRUE );
1106 case WM_MDIGETACTIVE:
1107 if (lParam) *(BOOL *)lParam = IsZoomed(ci->hwndActiveChild);
1108 return (LRESULT)ci->hwndActiveChild;
1110 case WM_MDIICONARRANGE:
1111 ci->mdiFlags |= MDIF_NEEDUPDATE;
1112 ArrangeIconicWindows( hwnd );
1113 ci->sbRecalc = SB_BOTH+1;
1114 SendMessageW( hwnd, WM_MDICALCCHILDSCROLL, 0, 0 );
1115 return 0;
1117 case WM_MDIMAXIMIZE:
1118 ShowWindow( (HWND)wParam, SW_MAXIMIZE );
1119 return 0;
1121 case WM_MDINEXT: /* lParam != 0 means previous window */
1123 HWND next = MDI_GetWindow( ci, WIN_GetFullHandle( (HWND)wParam ), !lParam, 0 );
1124 MDI_SwitchActiveChild( ci, next );
1125 break;
1128 case WM_MDIRESTORE:
1129 SendMessageW( (HWND)wParam, WM_SYSCOMMAND, SC_RESTORE, 0);
1130 return 0;
1132 case WM_MDISETMENU:
1133 return MDISetMenu( hwnd, (HMENU)wParam, (HMENU)lParam );
1135 case WM_MDIREFRESHMENU:
1136 return MDI_RefreshMenu( ci );
1138 case WM_MDITILE:
1139 ci->mdiFlags |= MDIF_NEEDUPDATE;
1140 ShowScrollBar( hwnd, SB_BOTH, FALSE );
1141 MDITile( hwnd, ci, wParam );
1142 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1143 return 0;
1145 case WM_VSCROLL:
1146 case WM_HSCROLL:
1147 ci->mdiFlags |= MDIF_NEEDUPDATE;
1148 ScrollChildren( hwnd, message, wParam, lParam );
1149 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1150 return 0;
1152 case WM_SETFOCUS:
1153 if (ci->hwndActiveChild && !IsIconic( ci->hwndActiveChild ))
1154 SetFocus( ci->hwndActiveChild );
1155 return 0;
1157 case WM_NCACTIVATE:
1158 if( ci->hwndActiveChild )
1159 SendMessageW(ci->hwndActiveChild, message, wParam, lParam);
1160 break;
1162 case WM_PARENTNOTIFY:
1163 switch (LOWORD(wParam))
1165 case WM_CREATE:
1166 if (GetWindowLongW((HWND)lParam, GWL_EXSTYLE) & WS_EX_MDICHILD)
1168 ci->nTotalCreated++;
1169 ci->nActiveChildren++;
1171 if (!ci->child)
1172 ci->child = HeapAlloc(GetProcessHeap(), 0, sizeof(HWND));
1173 else
1174 ci->child = HeapReAlloc(GetProcessHeap(), 0, ci->child, sizeof(HWND) * ci->nActiveChildren);
1176 TRACE("Adding MDI child %p, # of children %d\n",
1177 (HWND)lParam, ci->nActiveChildren);
1179 ci->child[ci->nActiveChildren - 1] = (HWND)lParam;
1181 break;
1183 case WM_LBUTTONDOWN:
1185 HWND child;
1186 POINT pt;
1187 pt.x = (short)LOWORD(lParam);
1188 pt.y = (short)HIWORD(lParam);
1189 child = ChildWindowFromPoint(hwnd, pt);
1191 TRACE("notification from %p (%li,%li)\n",child,pt.x,pt.y);
1193 if( child && child != hwnd && child != ci->hwndActiveChild )
1194 SetWindowPos(child, 0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE );
1195 break;
1198 return 0;
1200 case WM_SIZE:
1201 if( IsWindow(ci->hwndActiveChild) && IsZoomed(ci->hwndActiveChild) &&
1202 IsWindowVisible(ci->hwndActiveChild) )
1204 RECT rect;
1206 rect.left = 0;
1207 rect.top = 0;
1208 rect.right = LOWORD(lParam);
1209 rect.bottom = HIWORD(lParam);
1211 AdjustWindowRectEx(&rect, GetWindowLongA(ci->hwndActiveChild, GWL_STYLE),
1212 0, GetWindowLongA(ci->hwndActiveChild, GWL_EXSTYLE) );
1213 MoveWindow(ci->hwndActiveChild, rect.left, rect.top,
1214 rect.right - rect.left, rect.bottom - rect.top, 1);
1216 else
1217 MDI_PostUpdate(hwnd, ci, SB_BOTH+1);
1219 break;
1221 case WM_MDICALCCHILDSCROLL:
1222 if( (ci->mdiFlags & MDIF_NEEDUPDATE) && ci->sbRecalc )
1224 CalcChildScroll(hwnd, ci->sbRecalc-1);
1225 ci->sbRecalc = 0;
1226 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1228 return 0;
1230 return unicode ? DefWindowProcW( hwnd, message, wParam, lParam ) :
1231 DefWindowProcA( hwnd, message, wParam, lParam );
1234 /***********************************************************************
1235 * MDIClientWndProcA
1237 static LRESULT WINAPI MDIClientWndProcA( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1239 if (!IsWindow(hwnd)) return 0;
1240 return MDIClientWndProc_common( hwnd, message, wParam, lParam, FALSE );
1243 /***********************************************************************
1244 * MDIClientWndProcW
1246 static LRESULT WINAPI MDIClientWndProcW( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
1248 if (!IsWindow(hwnd)) return 0;
1249 return MDIClientWndProc_common( hwnd, message, wParam, lParam, TRUE );
1252 /***********************************************************************
1253 * DefFrameProcA (USER32.@)
1255 LRESULT WINAPI DefFrameProcA( HWND hwnd, HWND hwndMDIClient,
1256 UINT message, WPARAM wParam, LPARAM lParam)
1258 if (hwndMDIClient)
1260 switch (message)
1262 case WM_SETTEXT:
1264 DWORD len = MultiByteToWideChar( CP_ACP, 0, (LPSTR)lParam, -1, NULL, 0 );
1265 LPWSTR text = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
1266 MultiByteToWideChar( CP_ACP, 0, (LPSTR)lParam, -1, text, len );
1267 MDI_UpdateFrameText( hwnd, hwndMDIClient, text );
1268 HeapFree( GetProcessHeap(), 0, text );
1270 return 1; /* success. FIXME: check text length */
1272 case WM_COMMAND:
1273 case WM_NCACTIVATE:
1274 case WM_NEXTMENU:
1275 case WM_SETFOCUS:
1276 case WM_SIZE:
1277 return DefFrameProcW( hwnd, hwndMDIClient, message, wParam, lParam );
1280 return DefWindowProcA(hwnd, message, wParam, lParam);
1284 /***********************************************************************
1285 * DefFrameProcW (USER32.@)
1287 LRESULT WINAPI DefFrameProcW( HWND hwnd, HWND hwndMDIClient,
1288 UINT message, WPARAM wParam, LPARAM lParam)
1290 MDICLIENTINFO *ci = get_client_info( hwndMDIClient );
1292 TRACE("%p %p %04x (%s) %08x %08lx\n", hwnd, hwndMDIClient, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1294 if (ci)
1296 switch (message)
1298 case WM_COMMAND:
1300 WORD id = LOWORD(wParam);
1301 /* check for possible syscommands for maximized MDI child */
1302 if (id < ci->idFirstChild || id >= ci->idFirstChild + ci->nActiveChildren)
1304 if( (id - 0xf000) & 0xf00f ) break;
1305 if( !IsZoomed(ci->hwndActiveChild) ) break;
1306 switch( id )
1308 case SC_SIZE:
1309 case SC_MOVE:
1310 case SC_MINIMIZE:
1311 case SC_MAXIMIZE:
1312 case SC_NEXTWINDOW:
1313 case SC_PREVWINDOW:
1314 case SC_CLOSE:
1315 case SC_RESTORE:
1316 return SendMessageW( ci->hwndActiveChild, WM_SYSCOMMAND,
1317 wParam, lParam);
1320 else
1322 HWND childHwnd;
1323 if (id - ci->idFirstChild == MDI_MOREWINDOWSLIMIT)
1324 /* User chose "More Windows..." */
1325 childHwnd = MDI_MoreWindowsDialog(hwndMDIClient);
1326 else
1327 /* User chose one of the windows listed in the "Windows" menu */
1328 childHwnd = MDI_GetChildByID(hwndMDIClient, id, ci);
1330 if( childHwnd )
1331 SendMessageW( hwndMDIClient, WM_MDIACTIVATE, (WPARAM)childHwnd, 0 );
1334 break;
1336 case WM_NCACTIVATE:
1337 SendMessageW(hwndMDIClient, message, wParam, lParam);
1338 break;
1340 case WM_SETTEXT:
1341 MDI_UpdateFrameText( hwnd, hwndMDIClient, (LPWSTR)lParam );
1342 return 1; /* success. FIXME: check text length */
1344 case WM_SETFOCUS:
1345 SetFocus(hwndMDIClient);
1346 break;
1348 case WM_SIZE:
1349 MoveWindow(hwndMDIClient, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);
1350 break;
1352 case WM_NEXTMENU:
1354 MDINEXTMENU *next_menu = (MDINEXTMENU *)lParam;
1356 if (!IsIconic(hwnd) && ci->hwndActiveChild && !IsZoomed(ci->hwndActiveChild))
1358 /* control menu is between the frame system menu and
1359 * the first entry of menu bar */
1360 WND *wndPtr = WIN_GetPtr(hwnd);
1362 if( (wParam == VK_LEFT && GetMenu(hwnd) == next_menu->hmenuIn) ||
1363 (wParam == VK_RIGHT && GetSubMenu(wndPtr->hSysMenu, 0) == next_menu->hmenuIn) )
1365 WIN_ReleasePtr(wndPtr);
1366 wndPtr = WIN_GetPtr(ci->hwndActiveChild);
1367 next_menu->hmenuNext = GetSubMenu(wndPtr->hSysMenu, 0);
1368 next_menu->hwndNext = ci->hwndActiveChild;
1370 WIN_ReleasePtr(wndPtr);
1372 return 0;
1377 return DefWindowProcW( hwnd, message, wParam, lParam );
1380 /***********************************************************************
1381 * DefMDIChildProcA (USER32.@)
1383 LRESULT WINAPI DefMDIChildProcA( HWND hwnd, UINT message,
1384 WPARAM wParam, LPARAM lParam )
1386 HWND client = GetParent(hwnd);
1387 MDICLIENTINFO *ci = get_client_info( client );
1389 TRACE("%p %04x (%s) %08x %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1391 hwnd = WIN_GetFullHandle( hwnd );
1392 if (!ci) return DefWindowProcA( hwnd, message, wParam, lParam );
1394 switch (message)
1396 case WM_SETTEXT:
1397 DefWindowProcA(hwnd, message, wParam, lParam);
1398 if( ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild) )
1399 MDI_UpdateFrameText( GetParent(client), client, NULL );
1400 return 1; /* success. FIXME: check text length */
1402 case WM_GETMINMAXINFO:
1403 case WM_MENUCHAR:
1404 case WM_CLOSE:
1405 case WM_SETFOCUS:
1406 case WM_CHILDACTIVATE:
1407 case WM_SYSCOMMAND:
1408 case WM_SHOWWINDOW:
1409 case WM_SETVISIBLE:
1410 case WM_SIZE:
1411 case WM_NEXTMENU:
1412 case WM_SYSCHAR:
1413 case WM_DESTROY:
1414 return DefMDIChildProcW( hwnd, message, wParam, lParam );
1416 return DefWindowProcA(hwnd, message, wParam, lParam);
1420 /***********************************************************************
1421 * DefMDIChildProcW (USER32.@)
1423 LRESULT WINAPI DefMDIChildProcW( HWND hwnd, UINT message,
1424 WPARAM wParam, LPARAM lParam )
1426 HWND client = GetParent(hwnd);
1427 MDICLIENTINFO *ci = get_client_info( client );
1429 TRACE("%p %04x (%s) %08x %08lx\n", hwnd, message, SPY_GetMsgName(message, hwnd), wParam, lParam);
1431 hwnd = WIN_GetFullHandle( hwnd );
1432 if (!ci) return DefWindowProcW( hwnd, message, wParam, lParam );
1434 switch (message)
1436 case WM_SETTEXT:
1437 DefWindowProcW(hwnd, message, wParam, lParam);
1438 if( ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild) )
1439 MDI_UpdateFrameText( GetParent(client), client, NULL );
1440 return 1; /* success. FIXME: check text length */
1442 case WM_GETMINMAXINFO:
1443 MDI_ChildGetMinMaxInfo( client, hwnd, (MINMAXINFO *)lParam );
1444 return 0;
1446 case WM_MENUCHAR:
1447 return 0x00010000; /* MDI children don't have menu bars */
1449 case WM_CLOSE:
1450 SendMessageW( client, WM_MDIDESTROY, (WPARAM)hwnd, 0 );
1451 return 0;
1453 case WM_CHILDACTIVATE:
1454 MDI_ChildActivate( client, hwnd );
1455 return 0;
1457 case WM_SYSCOMMAND:
1458 switch( wParam )
1460 case SC_MOVE:
1461 if( ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild))
1462 return 0;
1463 break;
1464 case SC_RESTORE:
1465 case SC_MINIMIZE:
1466 break;
1467 case SC_MAXIMIZE:
1468 if (ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild))
1469 return SendMessageW( GetParent(client), message, wParam, lParam);
1470 break;
1471 case SC_NEXTWINDOW:
1472 SendMessageW( client, WM_MDINEXT, 0, 0);
1473 return 0;
1474 case SC_PREVWINDOW:
1475 SendMessageW( client, WM_MDINEXT, 0, 1);
1476 return 0;
1478 break;
1480 case WM_SHOWWINDOW:
1481 case WM_SETVISIBLE:
1482 if (IsZoomed(ci->hwndActiveChild)) ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1483 else MDI_PostUpdate(client, ci, SB_BOTH+1);
1484 break;
1486 case WM_SIZE:
1487 if( hwnd == ci->hwndActiveChild )
1489 if( wParam == SIZE_MAXIMIZED )
1491 TRACE("maximizing child %p\n", hwnd );
1493 MDI_AugmentFrameMenu( GetParent(client), hwnd );
1495 else
1496 MDI_RestoreFrameMenu( GetParent(client), hwnd );
1499 MDI_UpdateFrameText( GetParent(client), client, NULL );
1500 MDI_RefreshMenu(ci);
1501 MDI_PostUpdate(client, ci, SB_BOTH+1);
1502 break;
1504 case WM_NEXTMENU:
1506 MDINEXTMENU *next_menu = (MDINEXTMENU *)lParam;
1507 HWND parent = GetParent(client);
1509 if( wParam == VK_LEFT ) /* switch to frame system menu */
1511 WND *wndPtr = WIN_GetPtr( parent );
1512 next_menu->hmenuNext = GetSubMenu( wndPtr->hSysMenu, 0 );
1513 WIN_ReleasePtr( wndPtr );
1515 if( wParam == VK_RIGHT ) /* to frame menu bar */
1517 next_menu->hmenuNext = GetMenu(parent);
1519 next_menu->hwndNext = parent;
1520 return 0;
1523 case WM_SYSCHAR:
1524 if (wParam == '-')
1526 SendMessageW( hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (DWORD)VK_SPACE);
1527 return 0;
1529 break;
1531 case WM_DESTROY:
1532 /* Remove itself from the Window menu */
1533 MDI_RefreshMenu(ci);
1534 break;
1536 return DefWindowProcW(hwnd, message, wParam, lParam);
1539 /**********************************************************************
1540 * CreateMDIWindowA (USER32.@) Creates a MDI child
1542 * RETURNS
1543 * Success: Handle to created window
1544 * Failure: NULL
1546 HWND WINAPI CreateMDIWindowA(
1547 LPCSTR lpClassName, /* [in] Pointer to registered child class name */
1548 LPCSTR lpWindowName, /* [in] Pointer to window name */
1549 DWORD dwStyle, /* [in] Window style */
1550 INT X, /* [in] Horizontal position of window */
1551 INT Y, /* [in] Vertical position of window */
1552 INT nWidth, /* [in] Width of window */
1553 INT nHeight, /* [in] Height of window */
1554 HWND hWndParent, /* [in] Handle to parent window */
1555 HINSTANCE hInstance, /* [in] Handle to application instance */
1556 LPARAM lParam) /* [in] Application-defined value */
1558 TRACE("(%s,%s,%08lx,%d,%d,%d,%d,%p,%p,%08lx)\n",
1559 debugstr_a(lpClassName),debugstr_a(lpWindowName),dwStyle,X,Y,
1560 nWidth,nHeight,hWndParent,hInstance,lParam);
1562 return CreateWindowExA(WS_EX_MDICHILD, lpClassName, lpWindowName,
1563 dwStyle, X, Y, nWidth, nHeight, hWndParent,
1564 0, hInstance, (LPVOID)lParam);
1567 /***********************************************************************
1568 * CreateMDIWindowW (USER32.@) Creates a MDI child
1570 * RETURNS
1571 * Success: Handle to created window
1572 * Failure: NULL
1574 HWND WINAPI CreateMDIWindowW(
1575 LPCWSTR lpClassName, /* [in] Pointer to registered child class name */
1576 LPCWSTR lpWindowName, /* [in] Pointer to window name */
1577 DWORD dwStyle, /* [in] Window style */
1578 INT X, /* [in] Horizontal position of window */
1579 INT Y, /* [in] Vertical position of window */
1580 INT nWidth, /* [in] Width of window */
1581 INT nHeight, /* [in] Height of window */
1582 HWND hWndParent, /* [in] Handle to parent window */
1583 HINSTANCE hInstance, /* [in] Handle to application instance */
1584 LPARAM lParam) /* [in] Application-defined value */
1586 TRACE("(%s,%s,%08lx,%d,%d,%d,%d,%p,%p,%08lx)\n",
1587 debugstr_w(lpClassName), debugstr_w(lpWindowName), dwStyle, X, Y,
1588 nWidth, nHeight, hWndParent, hInstance, lParam);
1590 return CreateWindowExW(WS_EX_MDICHILD, lpClassName, lpWindowName,
1591 dwStyle, X, Y, nWidth, nHeight, hWndParent,
1592 0, hInstance, (LPVOID)lParam);
1595 /**********************************************************************
1596 * TranslateMDISysAccel (USER32.@)
1598 BOOL WINAPI TranslateMDISysAccel( HWND hwndClient, LPMSG msg )
1600 if (msg->message == WM_KEYDOWN || msg->message == WM_SYSKEYDOWN)
1602 MDICLIENTINFO *ci = get_client_info( hwndClient );
1603 WPARAM wParam = 0;
1605 if (!ci || !IsWindowEnabled(ci->hwndActiveChild)) return 0;
1607 /* translate if the Ctrl key is down and Alt not. */
1609 if( (GetKeyState(VK_CONTROL) & 0x8000) && !(GetKeyState(VK_MENU) & 0x8000))
1611 switch( msg->wParam )
1613 case VK_F6:
1614 case VK_TAB:
1615 wParam = ( GetKeyState(VK_SHIFT) & 0x8000 ) ? SC_NEXTWINDOW : SC_PREVWINDOW;
1616 break;
1617 case VK_F4:
1618 case VK_RBUTTON:
1619 wParam = SC_CLOSE;
1620 break;
1621 default:
1622 return 0;
1624 TRACE("wParam = %04x\n", wParam);
1625 SendMessageW(ci->hwndActiveChild, WM_SYSCOMMAND, wParam, (LPARAM)msg->wParam);
1626 return 1;
1629 return 0; /* failure */
1632 /***********************************************************************
1633 * CalcChildScroll (USER32.@)
1635 void WINAPI CalcChildScroll( HWND hwnd, INT scroll )
1637 SCROLLINFO info;
1638 RECT childRect, clientRect;
1639 HWND *list;
1641 GetClientRect( hwnd, &clientRect );
1642 SetRectEmpty( &childRect );
1644 if ((list = WIN_ListChildren( hwnd )))
1646 int i;
1647 for (i = 0; list[i]; i++)
1649 DWORD style = GetWindowLongW( list[i], GWL_STYLE );
1650 if (style & WS_MAXIMIZE)
1652 HeapFree( GetProcessHeap(), 0, list );
1653 ShowScrollBar( hwnd, SB_BOTH, FALSE );
1654 return;
1656 if (style & WS_VISIBLE)
1658 WND *pWnd = WIN_FindWndPtr( list[i] );
1659 UnionRect( &childRect, &pWnd->rectWindow, &childRect );
1660 WIN_ReleaseWndPtr( pWnd );
1663 HeapFree( GetProcessHeap(), 0, list );
1665 UnionRect( &childRect, &clientRect, &childRect );
1667 /* set common info values */
1668 info.cbSize = sizeof(info);
1669 info.fMask = SIF_POS | SIF_RANGE;
1671 /* set the specific */
1672 switch( scroll )
1674 case SB_BOTH:
1675 case SB_HORZ:
1676 info.nMin = childRect.left;
1677 info.nMax = childRect.right - clientRect.right;
1678 info.nPos = clientRect.left - childRect.left;
1679 SetScrollInfo(hwnd, SB_HORZ, &info, TRUE);
1680 if (scroll == SB_HORZ) break;
1681 /* fall through */
1682 case SB_VERT:
1683 info.nMin = childRect.top;
1684 info.nMax = childRect.bottom - clientRect.bottom;
1685 info.nPos = clientRect.top - childRect.top;
1686 SetScrollInfo(hwnd, SB_VERT, &info, TRUE);
1687 break;
1692 /***********************************************************************
1693 * ScrollChildren (USER32.@)
1695 void WINAPI ScrollChildren(HWND hWnd, UINT uMsg, WPARAM wParam,
1696 LPARAM lParam)
1698 INT newPos = -1;
1699 INT curPos, length, minPos, maxPos, shift;
1700 RECT rect;
1702 GetClientRect( hWnd, &rect );
1704 switch(uMsg)
1706 case WM_HSCROLL:
1707 GetScrollRange(hWnd,SB_HORZ,&minPos,&maxPos);
1708 curPos = GetScrollPos(hWnd,SB_HORZ);
1709 length = (rect.right - rect.left) / 2;
1710 shift = GetSystemMetrics(SM_CYHSCROLL);
1711 break;
1712 case WM_VSCROLL:
1713 GetScrollRange(hWnd,SB_VERT,&minPos,&maxPos);
1714 curPos = GetScrollPos(hWnd,SB_VERT);
1715 length = (rect.bottom - rect.top) / 2;
1716 shift = GetSystemMetrics(SM_CXVSCROLL);
1717 break;
1718 default:
1719 return;
1722 switch( wParam )
1724 case SB_LINEUP:
1725 newPos = curPos - shift;
1726 break;
1727 case SB_LINEDOWN:
1728 newPos = curPos + shift;
1729 break;
1730 case SB_PAGEUP:
1731 newPos = curPos - length;
1732 break;
1733 case SB_PAGEDOWN:
1734 newPos = curPos + length;
1735 break;
1737 case SB_THUMBPOSITION:
1738 newPos = LOWORD(lParam);
1739 break;
1741 case SB_THUMBTRACK:
1742 return;
1744 case SB_TOP:
1745 newPos = minPos;
1746 break;
1747 case SB_BOTTOM:
1748 newPos = maxPos;
1749 break;
1750 case SB_ENDSCROLL:
1751 CalcChildScroll(hWnd,(uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ);
1752 return;
1755 if( newPos > maxPos )
1756 newPos = maxPos;
1757 else
1758 if( newPos < minPos )
1759 newPos = minPos;
1761 SetScrollPos(hWnd, (uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ , newPos, TRUE);
1763 if( uMsg == WM_VSCROLL )
1764 ScrollWindowEx(hWnd ,0 ,curPos - newPos, NULL, NULL, 0, NULL,
1765 SW_INVALIDATE | SW_ERASE | SW_SCROLLCHILDREN );
1766 else
1767 ScrollWindowEx(hWnd ,curPos - newPos, 0, NULL, NULL, 0, NULL,
1768 SW_INVALIDATE | SW_ERASE | SW_SCROLLCHILDREN );
1772 /******************************************************************************
1773 * CascadeWindows (USER32.@) Cascades MDI child windows
1775 * RETURNS
1776 * Success: Number of cascaded windows.
1777 * Failure: 0
1779 WORD WINAPI
1780 CascadeWindows (HWND hwndParent, UINT wFlags, const LPRECT lpRect,
1781 UINT cKids, const HWND *lpKids)
1783 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids);
1784 return 0;
1788 /******************************************************************************
1789 * TileWindows (USER32.@) Tiles MDI child windows
1791 * RETURNS
1792 * Success: Number of tiled windows.
1793 * Failure: 0
1795 WORD WINAPI
1796 TileWindows (HWND hwndParent, UINT wFlags, const LPRECT lpRect,
1797 UINT cKids, const HWND *lpKids)
1799 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids);
1800 return 0;
1803 /************************************************************************
1804 * "More Windows..." functionality
1807 /* MDI_MoreWindowsDlgProc
1809 * This function will process the messages sent to the "More Windows..."
1810 * dialog.
1811 * Return values: 0 = cancel pressed
1812 * HWND = ok pressed or double-click in the list...
1816 static INT_PTR WINAPI MDI_MoreWindowsDlgProc (HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
1818 switch (iMsg)
1820 case WM_INITDIALOG:
1822 UINT widest = 0;
1823 UINT length;
1824 UINT i;
1825 MDICLIENTINFO *ci = get_client_info( (HWND)lParam );
1826 HWND hListBox = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1828 for (i = 0; i < ci->nActiveChildren; i++)
1830 WCHAR buffer[MDI_MAXTITLELENGTH];
1832 if (!InternalGetWindowText( ci->child[i], buffer, sizeof(buffer)/sizeof(WCHAR) ))
1833 continue;
1834 SendMessageW(hListBox, LB_ADDSTRING, 0, (LPARAM)buffer );
1835 SendMessageW(hListBox, LB_SETITEMDATA, i, (LPARAM)ci->child[i] );
1836 length = strlenW(buffer); /* FIXME: should use GetTextExtentPoint */
1837 if (length > widest)
1838 widest = length;
1840 /* Make sure the horizontal scrollbar scrolls ok */
1841 SendMessageW(hListBox, LB_SETHORIZONTALEXTENT, widest * 6, 0);
1843 /* Set the current selection */
1844 SendMessageW(hListBox, LB_SETCURSEL, MDI_MOREWINDOWSLIMIT, 0);
1845 return TRUE;
1848 case WM_COMMAND:
1849 switch (LOWORD(wParam))
1851 default:
1852 if (HIWORD(wParam) != LBN_DBLCLK) break;
1853 /* fall through */
1854 case IDOK:
1856 /* windows are sorted by menu ID, so we must return the
1857 * window associated to the given id
1859 HWND hListBox = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1860 UINT index = SendMessageW(hListBox, LB_GETCURSEL, 0, 0);
1861 LRESULT res = SendMessageW(hListBox, LB_GETITEMDATA, index, 0);
1862 EndDialog(hDlg, res);
1863 return TRUE;
1865 case IDCANCEL:
1866 EndDialog(hDlg, 0);
1867 return TRUE;
1869 break;
1871 return FALSE;
1876 * MDI_MoreWindowsDialog
1878 * Prompts the user with a listbox containing the opened
1879 * documents. The user can then choose a windows and click
1880 * on OK to set the current window to the one selected, or
1881 * CANCEL to cancel. The function returns a handle to the
1882 * selected window.
1885 static HWND MDI_MoreWindowsDialog(HWND hwnd)
1887 LPCVOID template;
1888 HRSRC hRes;
1889 HANDLE hDlgTmpl;
1891 hRes = FindResourceA(user32_module, "MDI_MOREWINDOWS", (LPSTR)RT_DIALOG);
1893 if (hRes == 0)
1894 return 0;
1896 hDlgTmpl = LoadResource(user32_module, hRes );
1898 if (hDlgTmpl == 0)
1899 return 0;
1901 template = LockResource( hDlgTmpl );
1903 if (template == 0)
1904 return 0;
1906 return (HWND) DialogBoxIndirectParamA(user32_module,
1907 (const DLGTEMPLATE*) template,
1908 hwnd, MDI_MoreWindowsDlgProc, (LPARAM) hwnd);