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, 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
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
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.
96 #include "wine/winuser16.h"
97 #include "wine/unicode.h"
100 #include "user_private.h"
101 #include "wine/debug.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
119 /* At some points, particularly when switching MDI children, active and
120 * maximized MDI children may be not the same window, so we need to track
122 * The only place where we switch to/from maximized state is DefMDIChildProc
123 * WM_SIZE/SIZE_MAXIMIZED handler. We get that notification only after the
124 * ShowWindow(SW_SHOWMAXIMIZED) request, therefore window is guaranteed to
125 * be visible at the time we get the notification, and it's safe to assume
126 * that hwndChildMaximized is always visible.
127 * If the app plays games with WS_VISIBLE, WS_MAXIMIZE or any other window
128 * states it must keep coherency with USER32 on its own. This is true for
131 UINT nActiveChildren
;
132 HWND hwndChildMaximized
;
133 HWND hwndActiveChild
;
134 HWND
*child
; /* array of tracked children */
141 UINT sbRecalc
; /* SB_xxx flags for scrollbar fixup */
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
);
154 static LRESULT WINAPI
MDIClientWndProcA( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
);
155 static LRESULT WINAPI
MDIClientWndProcW( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
);
157 /* -------- Miscellaneous service functions ----------
161 static HWND
MDI_GetChildByID(HWND hwnd
, UINT id
, MDICLIENTINFO
*ci
)
165 for (i
= 0; ci
->nActiveChildren
; i
++)
167 if (GetWindowLongPtrW( ci
->child
[i
], GWLP_ID
) == id
)
173 static void MDI_PostUpdate(HWND hwnd
, MDICLIENTINFO
* ci
, WORD recalc
)
175 if( !(ci
->mdiFlags
& MDIF_NEEDUPDATE
) )
177 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
178 PostMessageA( hwnd
, WM_MDICALCCHILDSCROLL
, 0, 0);
180 ci
->sbRecalc
= recalc
;
184 /*********************************************************************
185 * MDIClient class descriptor
187 const struct builtin_class_descr MDICLIENT_builtin_class
=
189 "MDIClient", /* name */
191 MDIClientWndProcA
, /* procA */
192 MDIClientWndProcW
, /* procW */
193 sizeof(MDICLIENTINFO
), /* extra */
194 IDC_ARROW
, /* cursor */
195 (HBRUSH
)(COLOR_APPWORKSPACE
+1) /* brush */
199 static MDICLIENTINFO
*get_client_info( HWND client
)
201 MDICLIENTINFO
*ret
= NULL
;
202 WND
*win
= WIN_GetPtr( client
);
205 if (win
== WND_OTHER_PROCESS
)
207 if (IsWindow(client
)) ERR( "client %p belongs to other process\n", client
);
210 if (win
->cbWndExtra
< sizeof(MDICLIENTINFO
)) WARN( "%p is not an MDI client\n", client
);
211 else ret
= (MDICLIENTINFO
*)win
->wExtra
;
212 WIN_ReleasePtr( win
);
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
);
224 UINT state
= GetMenuState(hSysMenu
, SC_CLOSE
, MF_BYCOMMAND
);
225 if (state
== 0xFFFFFFFF || (state
& (MF_DISABLED
| MF_GRAYED
)))
231 /**********************************************************************
234 * returns "activatable" child different from the current or zero
236 static HWND
MDI_GetWindow(MDICLIENTINFO
*clientInfo
, HWND hWnd
, BOOL bNext
,
243 dwStyleMask
|= WS_DISABLED
| WS_VISIBLE
;
244 if( !hWnd
) hWnd
= clientInfo
->hwndActiveChild
;
246 if (!(list
= WIN_ListChildren( GetParent(hWnd
) ))) return 0;
248 /* start from next after hWnd */
249 while (list
[i
] && list
[i
] != hWnd
) 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;
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;
265 if (bNext
) goto found
;
268 HeapFree( GetProcessHeap(), 0, list
);
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
)
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
? ci
->nTotalCreated
: 0;
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 /**********************************************************************
304 static LRESULT
MDISetMenu( HWND hwnd
, HMENU hmenuFrame
,
308 HWND hwndFrame
= GetParent(hwnd
);
310 TRACE("%p %p %p\n", hwnd
, hmenuFrame
, hmenuWindow
);
312 if (hmenuFrame
&& !IsMenu(hmenuFrame
))
314 WARN("hmenuFrame is not a menu handle\n");
318 if (hmenuWindow
&& !IsMenu(hmenuWindow
))
320 WARN("hmenuWindow is not a menu handle\n");
324 if (!(ci
= get_client_info( hwnd
))) return 0;
328 if (hmenuFrame
== ci
->hFrameMenu
) return (LRESULT
)hmenuFrame
;
330 if (ci
->hwndChildMaximized
)
331 MDI_RestoreFrameMenu( hwndFrame
, ci
->hwndChildMaximized
);
334 if( hmenuWindow
&& hmenuWindow
!= ci
->hWindowMenu
)
336 /* delete menu items from ci->hWindowMenu
337 * and add them to hmenuWindow */
338 /* Agent newsreader calls this function with ci->hWindowMenu == NULL */
339 if( ci
->hWindowMenu
&& ci
->nActiveChildren
)
341 UINT nActiveChildren_old
= ci
->nActiveChildren
;
343 /* Remove all items from old Window menu */
344 ci
->nActiveChildren
= 0;
347 ci
->hWindowMenu
= hmenuWindow
;
349 /* Add items to the new Window menu */
350 ci
->nActiveChildren
= nActiveChildren_old
;
354 ci
->hWindowMenu
= hmenuWindow
;
359 SetMenu(hwndFrame
, hmenuFrame
);
360 if( hmenuFrame
!= ci
->hFrameMenu
)
362 HMENU oldFrameMenu
= ci
->hFrameMenu
;
364 ci
->hFrameMenu
= hmenuFrame
;
365 if (ci
->hwndChildMaximized
)
366 MDI_AugmentFrameMenu( hwndFrame
, ci
->hwndChildMaximized
);
368 return (LRESULT
)oldFrameMenu
;
373 /* SetMenu() may already have been called, meaning that this window
374 * already has its menu. But they may have done a SetMenu() on
375 * an MDI window, and called MDISetMenu() after the fact, meaning
376 * that the "if" to this "else" wouldn't catch the need to
377 * augment the frame menu.
379 if( ci
->hwndChildMaximized
)
380 MDI_AugmentFrameMenu( hwndFrame
, ci
->hwndChildMaximized
);
386 /**********************************************************************
389 static LRESULT
MDI_RefreshMenu(MDICLIENTINFO
*ci
)
391 UINT i
, count
, visible
, id
;
392 WCHAR buf
[MDI_MAXTITLELENGTH
];
394 TRACE("children %u, window menu %p\n", ci
->nActiveChildren
, ci
->hWindowMenu
);
396 if (!ci
->hWindowMenu
)
399 if (!IsMenu(ci
->hWindowMenu
))
401 WARN("Window menu handle %p is no more valid\n", ci
->hWindowMenu
);
405 /* Windows finds the last separator in the menu, and if after it
406 * there is a menu item with MDI magic ID removes all existing
407 * menu items after it, and then adds visible MDI children.
409 count
= GetMenuItemCount(ci
->hWindowMenu
);
410 for (i
= 0; i
< count
; i
++)
414 memset(&mii
, 0, sizeof(mii
));
415 mii
.cbSize
= sizeof(mii
);
416 mii
.fMask
= MIIM_TYPE
;
417 if (GetMenuItemInfoW(ci
->hWindowMenu
, i
, TRUE
, &mii
))
419 if (mii
.fType
& MF_SEPARATOR
)
421 /* Windows checks only ID of the menu item */
422 memset(&mii
, 0, sizeof(mii
));
423 mii
.cbSize
= sizeof(mii
);
425 if (GetMenuItemInfoW(ci
->hWindowMenu
, i
+ 1, TRUE
, &mii
))
427 if (mii
.wID
== ci
->idFirstChild
)
429 TRACE("removing %u items including separator\n", count
- i
);
430 while (RemoveMenu(ci
->hWindowMenu
, i
, MF_BYPOSITION
))
441 for (i
= 0; i
< ci
->nActiveChildren
; i
++)
443 if (GetWindowLongW(ci
->child
[i
], GWL_STYLE
) & WS_VISIBLE
)
445 id
= ci
->idFirstChild
+ visible
;
447 if (visible
== MDI_MOREWINDOWSLIMIT
)
449 LoadStringW(user32_module
, IDS_MDI_MOREWINDOWS
, buf
, sizeof(buf
)/sizeof(WCHAR
));
450 AppendMenuW(ci
->hWindowMenu
, MF_STRING
, id
, buf
);
455 /* Visio expects that separator has id 0 */
456 AppendMenuW(ci
->hWindowMenu
, MF_SEPARATOR
, 0, NULL
);
460 SetWindowLongPtrW(ci
->child
[i
], GWLP_ID
, id
);
463 buf
[1] = '0' + visible
;
465 InternalGetWindowText(ci
->child
[i
], buf
+ 3, sizeof(buf
)/sizeof(WCHAR
) - 3);
466 TRACE("Adding %p, id %u %s\n", ci
->child
[i
], id
, debugstr_w(buf
));
467 AppendMenuW(ci
->hWindowMenu
, MF_STRING
, id
, buf
);
469 if (ci
->child
[i
] == ci
->hwndActiveChild
)
470 CheckMenuItem(ci
->hWindowMenu
, id
, MF_CHECKED
);
473 TRACE("MDI child %p is not visible, skipping\n", ci
->child
[i
]);
476 return (LRESULT
)ci
->hFrameMenu
;
480 /* ------------------ MDI child window functions ---------------------- */
482 /**********************************************************************
483 * MDI_ChildGetMinMaxInfo
485 * Note: The rule here is that client rect of the maximized MDI child
486 * is equal to the client rect of the MDI client window.
488 static void MDI_ChildGetMinMaxInfo( HWND client
, HWND hwnd
, MINMAXINFO
* lpMinMax
)
492 GetClientRect( client
, &rect
);
493 AdjustWindowRectEx( &rect
, GetWindowLongW( hwnd
, GWL_STYLE
),
494 0, GetWindowLongW( hwnd
, GWL_EXSTYLE
));
496 lpMinMax
->ptMaxSize
.x
= rect
.right
-= rect
.left
;
497 lpMinMax
->ptMaxSize
.y
= rect
.bottom
-= rect
.top
;
499 lpMinMax
->ptMaxPosition
.x
= rect
.left
;
500 lpMinMax
->ptMaxPosition
.y
= rect
.top
;
502 TRACE("max rect (%d,%d - %d, %d)\n",
503 rect
.left
,rect
.top
,rect
.right
,rect
.bottom
);
506 /**********************************************************************
507 * MDI_SwitchActiveChild
509 * Note: SetWindowPos sends WM_CHILDACTIVATE to the child window that is
512 static void MDI_SwitchActiveChild( MDICLIENTINFO
*ci
, HWND hwndTo
, BOOL activate
)
516 hwndPrev
= ci
->hwndActiveChild
;
518 TRACE("from %p, to %p\n", hwndPrev
, hwndTo
);
520 if ( hwndTo
!= hwndPrev
)
522 BOOL was_zoomed
= IsZoomed(hwndPrev
);
526 /* restore old MDI child */
527 SendMessageW( hwndPrev
, WM_SETREDRAW
, FALSE
, 0 );
528 ShowWindow( hwndPrev
, SW_RESTORE
);
529 SendMessageW( hwndPrev
, WM_SETREDRAW
, TRUE
, 0 );
531 /* activate new MDI child */
532 SetWindowPos( hwndTo
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE
);
533 /* maximize new MDI child */
534 ShowWindow( hwndTo
, SW_MAXIMIZE
);
536 /* activate new MDI child */
537 SetWindowPos( hwndTo
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE
| (activate
? 0 : SWP_NOACTIVATE
) );
542 /**********************************************************************
545 static LRESULT
MDIDestroyChild( HWND client
, MDICLIENTINFO
*ci
,
546 HWND child
, BOOL flagDestroy
)
550 TRACE("# of managed children %u\n", ci
->nActiveChildren
);
552 if( child
== ci
->hwndActiveChild
)
554 HWND next
= MDI_GetWindow(ci
, child
, TRUE
, 0);
555 /* flagDestroy == 0 means we were called from WM_PARENTNOTIFY handler */
556 if (flagDestroy
&& next
)
557 MDI_SwitchActiveChild(ci
, next
, TRUE
);
560 ShowWindow(child
, SW_HIDE
);
561 if (child
== ci
->hwndChildMaximized
)
563 HWND frame
= GetParent(client
);
564 MDI_RestoreFrameMenu(frame
, child
);
565 ci
->hwndChildMaximized
= 0;
566 MDI_UpdateFrameText(frame
, client
, TRUE
, NULL
);
568 if (flagDestroy
) ci
->hwndActiveChild
= 0;
572 for (i
= 0; i
< ci
->nActiveChildren
; i
++)
574 if (ci
->child
[i
] == child
)
576 HWND
*new_child
= HeapAlloc(GetProcessHeap(), 0, (ci
->nActiveChildren
- 1) * sizeof(HWND
));
577 memcpy(new_child
, ci
->child
, i
* sizeof(HWND
));
578 if (i
+ 1 < ci
->nActiveChildren
)
579 memcpy(new_child
+ i
, ci
->child
+ i
+ 1, (ci
->nActiveChildren
- i
- 1) * sizeof(HWND
));
580 HeapFree(GetProcessHeap(), 0, ci
->child
);
581 ci
->child
= new_child
;
583 ci
->nActiveChildren
--;
590 SendMessageW(client
, WM_MDIREFRESHMENU
, 0, 0);
591 MDI_PostUpdate(GetParent(child
), ci
, SB_BOTH
+1);
592 DestroyWindow(child
);
595 TRACE("child destroyed - %p\n", child
);
600 /**********************************************************************
603 * Called in response to WM_CHILDACTIVATE, or when last MDI child
604 * is being deactivated.
606 static LONG
MDI_ChildActivate( HWND client
, HWND child
)
608 MDICLIENTINFO
*clientInfo
;
609 HWND prevActiveWnd
, frame
;
610 BOOL isActiveFrameWnd
;
612 clientInfo
= get_client_info( client
);
614 if (clientInfo
->hwndActiveChild
== child
) return 0;
616 TRACE("%p\n", child
);
618 frame
= GetParent(client
);
619 isActiveFrameWnd
= (GetActiveWindow() == frame
);
620 prevActiveWnd
= clientInfo
->hwndActiveChild
;
622 /* deactivate prev. active child */
625 SendMessageW( prevActiveWnd
, WM_NCACTIVATE
, FALSE
, 0L );
626 SendMessageW( prevActiveWnd
, WM_MDIACTIVATE
, (WPARAM
)prevActiveWnd
, (LPARAM
)child
);
629 MDI_SwitchActiveChild( clientInfo
, child
, FALSE
);
630 clientInfo
->hwndActiveChild
= child
;
632 MDI_RefreshMenu(clientInfo
);
634 if( isActiveFrameWnd
)
636 SendMessageW( child
, WM_NCACTIVATE
, TRUE
, 0L);
637 /* Let the client window manage focus for children, but if the focus
638 * is already on the client (for instance this is the 1st child) then
639 * SetFocus won't work. It appears that Windows sends WM_SETFOCUS
640 * manually in this case.
642 if (SetFocus(client
) == client
)
643 SendMessageW( client
, WM_SETFOCUS
, (WPARAM
)client
, 0 );
646 SendMessageW( child
, WM_MDIACTIVATE
, (WPARAM
)prevActiveWnd
, (LPARAM
)child
);
650 /* -------------------- MDI client window functions ------------------- */
652 /**********************************************************************
653 * CreateMDIMenuBitmap
655 static HBITMAP
CreateMDIMenuBitmap(void)
657 HDC hDCSrc
= CreateCompatibleDC(0);
658 HDC hDCDest
= CreateCompatibleDC(hDCSrc
);
659 HBITMAP hbClose
= LoadBitmapW(0, MAKEINTRESOURCEW(OBM_OLD_CLOSE
) );
661 HBITMAP hobjSrc
, hobjDest
;
663 hobjSrc
= SelectObject(hDCSrc
, hbClose
);
664 hbCopy
= CreateCompatibleBitmap(hDCSrc
,GetSystemMetrics(SM_CXSIZE
),GetSystemMetrics(SM_CYSIZE
));
665 hobjDest
= SelectObject(hDCDest
, hbCopy
);
667 BitBlt(hDCDest
, 0, 0, GetSystemMetrics(SM_CXSIZE
), GetSystemMetrics(SM_CYSIZE
),
668 hDCSrc
, GetSystemMetrics(SM_CXSIZE
), 0, SRCCOPY
);
670 SelectObject(hDCSrc
, hobjSrc
);
671 DeleteObject(hbClose
);
674 hobjSrc
= SelectObject( hDCDest
, GetStockObject(BLACK_PEN
) );
676 MoveToEx( hDCDest
, GetSystemMetrics(SM_CXSIZE
) - 1, 0, NULL
);
677 LineTo( hDCDest
, GetSystemMetrics(SM_CXSIZE
) - 1, GetSystemMetrics(SM_CYSIZE
) - 1);
679 SelectObject(hDCDest
, hobjSrc
);
680 SelectObject(hDCDest
, hobjDest
);
686 /**********************************************************************
689 static LONG
MDICascade( HWND client
, MDICLIENTINFO
*ci
)
692 BOOL has_icons
= FALSE
;
695 if (ci
->hwndChildMaximized
)
696 SendMessageW(client
, WM_MDIRESTORE
, (WPARAM
)ci
->hwndChildMaximized
, 0);
698 if (ci
->nActiveChildren
== 0) return 0;
700 if (!(win_array
= WIN_ListChildren( client
))) return 0;
702 /* remove all the windows we don't want */
703 for (i
= total
= 0; win_array
[i
]; i
++)
705 if (!IsWindowVisible( win_array
[i
] )) continue;
706 if (GetWindow( win_array
[i
], GW_OWNER
)) continue; /* skip owned windows */
707 if (IsIconic( win_array
[i
] ))
712 win_array
[total
++] = win_array
[i
];
714 win_array
[total
] = 0;
718 INT delta
= 0, n
= 0, i
;
720 if (has_icons
) delta
= GetSystemMetrics(SM_CYICONSPACING
) + GetSystemMetrics(SM_CYICON
);
722 /* walk the list (backwards) and move windows */
723 for (i
= total
- 1; i
>= 0; i
--)
725 TRACE("move %p to (%d,%d) size [%d,%d]\n",
726 win_array
[i
], pos
[0].x
, pos
[0].y
, pos
[1].x
, pos
[1].y
);
728 MDI_CalcDefaultChildPos(client
, n
++, pos
, delta
, NULL
);
729 SetWindowPos( win_array
[i
], 0, pos
[0].x
, pos
[0].y
, pos
[1].x
, pos
[1].y
,
730 SWP_DRAWFRAME
| SWP_NOACTIVATE
| SWP_NOZORDER
);
733 HeapFree( GetProcessHeap(), 0, win_array
);
735 if (has_icons
) ArrangeIconicWindows( client
);
739 /**********************************************************************
742 static void MDITile( HWND client
, MDICLIENTINFO
*ci
, WPARAM wParam
)
746 BOOL has_icons
= FALSE
;
748 if (ci
->hwndChildMaximized
)
749 SendMessageW(client
, WM_MDIRESTORE
, (WPARAM
)ci
->hwndChildMaximized
, 0);
751 if (ci
->nActiveChildren
== 0) return;
753 if (!(win_array
= WIN_ListChildren( client
))) return;
755 /* remove all the windows we don't want */
756 for (i
= total
= 0; win_array
[i
]; i
++)
758 if (!IsWindowVisible( win_array
[i
] )) continue;
759 if (GetWindow( win_array
[i
], GW_OWNER
)) continue; /* skip owned windows (icon titles) */
760 if (IsIconic( win_array
[i
] ))
765 if ((wParam
& MDITILE_SKIPDISABLED
) && !IsWindowEnabled( win_array
[i
] )) continue;
766 win_array
[total
++] = win_array
[i
];
768 win_array
[total
] = 0;
770 TRACE("%u windows to tile\n", total
);
774 HWND
*pWnd
= win_array
;
776 int x
, y
, xsize
, ysize
;
777 int rows
, columns
, r
, c
, i
;
779 GetClientRect(client
,&rect
);
780 rows
= (int) sqrt((double)total
);
781 columns
= total
/ rows
;
783 if( wParam
& MDITILE_HORIZONTAL
) /* version >= 3.1 */
786 rows
= columns
; /* exchange r and c */
792 y
= rect
.bottom
- 2 * GetSystemMetrics(SM_CYICONSPACING
) - GetSystemMetrics(SM_CYICON
);
793 rect
.bottom
= ( y
- GetSystemMetrics(SM_CYICON
) < rect
.top
)? rect
.bottom
: y
;
796 ysize
= rect
.bottom
/ rows
;
797 xsize
= rect
.right
/ columns
;
799 for (x
= i
= 0, c
= 1; c
<= columns
&& *pWnd
; c
++)
804 ysize
= rect
.bottom
/ rows
;
808 for (r
= 1; r
<= rows
&& *pWnd
; r
++, i
++)
810 SetWindowPos(*pWnd
, 0, x
, y
, xsize
, ysize
,
811 SWP_DRAWFRAME
| SWP_NOACTIVATE
| SWP_NOZORDER
);
818 HeapFree( GetProcessHeap(), 0, win_array
);
819 if (has_icons
) ArrangeIconicWindows( client
);
822 /* ----------------------- Frame window ---------------------------- */
825 /**********************************************************************
826 * MDI_AugmentFrameMenu
828 static BOOL
MDI_AugmentFrameMenu( HWND frame
, HWND hChild
)
830 HMENU menu
= GetMenu( frame
);
832 HBITMAP hSysMenuBitmap
= 0;
835 TRACE("frame %p,child %p\n",frame
,hChild
);
837 if( !menu
) return 0;
839 /* create a copy of sysmenu popup and insert it into frame menu bar */
840 if (!(hSysPopup
= GetSystemMenu(hChild
, FALSE
)))
842 TRACE("child %p doesn't have a system menu\n", hChild
);
846 AppendMenuW(menu
, MF_HELP
| MF_BITMAP
,
847 SC_MINIMIZE
, (LPCWSTR
)HBMMENU_MBAR_MINIMIZE
) ;
848 AppendMenuW(menu
, MF_HELP
| MF_BITMAP
,
849 SC_RESTORE
, (LPCWSTR
)HBMMENU_MBAR_RESTORE
);
850 AppendMenuW(menu
, MF_HELP
| MF_BITMAP
,
851 SC_CLOSE
, is_close_enabled(hChild
, hSysPopup
) ?
852 (LPCWSTR
)HBMMENU_MBAR_CLOSE
: (LPCWSTR
)HBMMENU_MBAR_CLOSE_D
);
854 /* The system menu is replaced by the child icon */
855 hIcon
= (HICON
)SendMessageW(hChild
, WM_GETICON
, ICON_SMALL
, 0);
857 hIcon
= (HICON
)SendMessageW(hChild
, WM_GETICON
, ICON_BIG
, 0);
859 hIcon
= LoadImageW(0, MAKEINTRESOURCEW(IDI_WINLOGO
), IMAGE_ICON
, 0, 0, LR_DEFAULTCOLOR
);
863 HBITMAP hBitmap
, hOldBitmap
;
865 HDC hdc
= GetDC(hChild
);
870 cx
= GetSystemMetrics(SM_CXSMICON
);
871 cy
= GetSystemMetrics(SM_CYSMICON
);
872 hMemDC
= CreateCompatibleDC(hdc
);
873 hBitmap
= CreateCompatibleBitmap(hdc
, cx
, cy
);
874 hOldBitmap
= SelectObject(hMemDC
, hBitmap
);
875 SetMapMode(hMemDC
, MM_TEXT
);
876 hBrush
= CreateSolidBrush(GetSysColor(COLOR_MENU
));
877 DrawIconEx(hMemDC
, 0, 0, hIcon
, cx
, cy
, 0, hBrush
, DI_NORMAL
);
878 SelectObject (hMemDC
, hOldBitmap
);
879 DeleteObject(hBrush
);
881 ReleaseDC(hChild
, hdc
);
882 hSysMenuBitmap
= hBitmap
;
886 if( !InsertMenuA(menu
,0,MF_BYPOSITION
| MF_BITMAP
| MF_POPUP
,
887 (UINT_PTR
)hSysPopup
, (LPSTR
)hSysMenuBitmap
))
889 TRACE("not inserted\n");
890 DestroyMenu(hSysPopup
);
894 EnableMenuItem(hSysPopup
, SC_SIZE
, MF_BYCOMMAND
| MF_GRAYED
);
895 EnableMenuItem(hSysPopup
, SC_MOVE
, MF_BYCOMMAND
| MF_GRAYED
);
896 EnableMenuItem(hSysPopup
, SC_MAXIMIZE
, MF_BYCOMMAND
| MF_GRAYED
);
897 SetMenuDefaultItem(hSysPopup
, SC_CLOSE
, FALSE
);
905 /**********************************************************************
906 * MDI_RestoreFrameMenu
908 static BOOL
MDI_RestoreFrameMenu( HWND frame
, HWND hChild
)
910 MENUITEMINFOW menuInfo
;
911 HMENU menu
= GetMenu( frame
);
915 TRACE("frame %p, child %p\n", frame
, hChild
);
917 if( !menu
) return 0;
919 /* if there is no system buttons then nothing to do */
920 nItems
= GetMenuItemCount(menu
) - 1;
921 iId
= GetMenuItemID(menu
, nItems
);
922 if ( !(iId
== SC_RESTORE
|| iId
== SC_CLOSE
) )
926 * Remove the system menu, If that menu is the icon of the window
927 * as it is in win95, we have to delete the bitmap.
929 memset(&menuInfo
, 0, sizeof(menuInfo
));
930 menuInfo
.cbSize
= sizeof(menuInfo
);
931 menuInfo
.fMask
= MIIM_DATA
| MIIM_TYPE
;
933 GetMenuItemInfoW(menu
,
938 RemoveMenu(menu
,0,MF_BYPOSITION
);
940 if ( (menuInfo
.fType
& MFT_BITMAP
) &&
941 (LOWORD(menuInfo
.dwTypeData
)!=0) &&
942 (LOWORD(menuInfo
.dwTypeData
)!=HBITMAP_16(hBmpClose
)) )
944 DeleteObject(HBITMAP_32(LOWORD(menuInfo
.dwTypeData
)));
948 DeleteMenu(menu
, SC_CLOSE
, MF_BYCOMMAND
);
950 DeleteMenu(menu
, SC_RESTORE
, MF_BYCOMMAND
);
952 DeleteMenu(menu
, SC_MINIMIZE
, MF_BYCOMMAND
);
960 /**********************************************************************
961 * MDI_UpdateFrameText
963 * used when child window is maximized/restored
965 * Note: lpTitle can be NULL
967 static void MDI_UpdateFrameText( HWND frame
, HWND hClient
, BOOL repaint
, LPCWSTR lpTitle
)
969 WCHAR lpBuffer
[MDI_MAXTITLELENGTH
+1];
970 MDICLIENTINFO
*ci
= get_client_info( hClient
);
972 TRACE("frameText %s\n", debugstr_w(lpTitle
));
976 if (!lpTitle
&& !ci
->frameTitle
) /* first time around, get title from the frame window */
978 GetWindowTextW( frame
, lpBuffer
, sizeof(lpBuffer
)/sizeof(WCHAR
) );
982 /* store new "default" title if lpTitle is not NULL */
985 HeapFree( GetProcessHeap(), 0, ci
->frameTitle
);
986 if ((ci
->frameTitle
= HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle
)+1)*sizeof(WCHAR
))))
987 strcpyW( ci
->frameTitle
, lpTitle
);
992 if (ci
->hwndChildMaximized
)
994 /* combine frame title and child title if possible */
996 static const WCHAR lpBracket
[] = {' ','-',' ','[',0};
997 static const WCHAR lpBracket2
[] = {']',0};
998 int i_frame_text_length
= strlenW(ci
->frameTitle
);
1000 lstrcpynW( lpBuffer
, ci
->frameTitle
, MDI_MAXTITLELENGTH
);
1002 if( i_frame_text_length
+ 6 < MDI_MAXTITLELENGTH
)
1004 strcatW( lpBuffer
, lpBracket
);
1005 if (GetWindowTextW( ci
->hwndActiveChild
, lpBuffer
+ i_frame_text_length
+ 4,
1006 MDI_MAXTITLELENGTH
- i_frame_text_length
- 5 ))
1007 strcatW( lpBuffer
, lpBracket2
);
1009 lpBuffer
[i_frame_text_length
] = 0; /* remove bracket */
1014 lstrcpynW(lpBuffer
, ci
->frameTitle
, MDI_MAXTITLELENGTH
+1 );
1020 DefWindowProcW( frame
, WM_SETTEXT
, 0, (LPARAM
)lpBuffer
);
1023 SetWindowPos( frame
, 0,0,0,0,0, SWP_FRAMECHANGED
|
1024 SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
);
1028 /* ----------------------------- Interface ---------------------------- */
1031 /**********************************************************************
1032 * MDIClientWndProc_common
1034 static LRESULT
MDIClientWndProc_common( HWND hwnd
, UINT message
,
1035 WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
1039 TRACE("%p %04x (%s) %08lx %08lx\n", hwnd
, message
, SPY_GetMsgName(message
, hwnd
), wParam
, lParam
);
1041 if (!(ci
= get_client_info( hwnd
))) return 0;
1047 /* Since we are using only cs->lpCreateParams, we can safely
1048 * cast to LPCREATESTRUCTA here */
1049 LPCREATESTRUCTA cs
= (LPCREATESTRUCTA
)lParam
;
1050 WND
*wndPtr
= WIN_GetPtr( hwnd
);
1052 wndPtr
->flags
|= WIN_ISMDICLIENT
;
1054 /* Translation layer doesn't know what's in the cs->lpCreateParams
1055 * so we have to keep track of what environment we're in. */
1057 if( wndPtr
->flags
& WIN_ISWIN32
)
1059 LPCLIENTCREATESTRUCT ccs
= cs
->lpCreateParams
;
1060 ci
->hWindowMenu
= ccs
->hWindowMenu
;
1061 ci
->idFirstChild
= ccs
->idFirstChild
;
1065 LPCLIENTCREATESTRUCT16 ccs
= MapSL(PtrToUlong(cs
->lpCreateParams
));
1066 ci
->hWindowMenu
= HMENU_32(ccs
->hWindowMenu
);
1067 ci
->idFirstChild
= ccs
->idFirstChild
;
1069 WIN_ReleasePtr( wndPtr
);
1071 ci
->hwndChildMaximized
= 0;
1073 ci
->nActiveChildren
= 0;
1074 ci
->nTotalCreated
= 0;
1075 ci
->frameTitle
= NULL
;
1077 ci
->hFrameMenu
= GetMenu(cs
->hwndParent
);
1079 if (!hBmpClose
) hBmpClose
= CreateMDIMenuBitmap();
1081 TRACE("Client created: hwnd %p, Window menu %p, idFirst = %04x\n",
1082 hwnd
, ci
->hWindowMenu
, ci
->idFirstChild
);
1088 if( ci
->hwndChildMaximized
)
1089 MDI_RestoreFrameMenu(GetParent(hwnd
), ci
->hwndChildMaximized
);
1091 ci
->nActiveChildren
= 0;
1092 MDI_RefreshMenu(ci
);
1094 HeapFree( GetProcessHeap(), 0, ci
->child
);
1095 HeapFree( GetProcessHeap(), 0, ci
->frameTitle
);
1100 case WM_MDIACTIVATE
:
1102 if( ci
->hwndActiveChild
!= (HWND
)wParam
)
1103 SetWindowPos((HWND
)wParam
, 0,0,0,0,0, SWP_NOSIZE
| SWP_NOMOVE
);
1108 return MDICascade(hwnd
, ci
);
1117 MDICREATESTRUCTW
*csW
= (MDICREATESTRUCTW
*)lParam
;
1118 child
= CreateWindowExW(WS_EX_MDICHILD
, csW
->szClass
,
1119 csW
->szTitle
, csW
->style
,
1120 csW
->x
, csW
->y
, csW
->cx
, csW
->cy
,
1121 hwnd
, 0, csW
->hOwner
,
1122 (LPVOID
)csW
->lParam
);
1126 MDICREATESTRUCTA
*csA
= (MDICREATESTRUCTA
*)lParam
;
1127 child
= CreateWindowExA(WS_EX_MDICHILD
, csA
->szClass
,
1128 csA
->szTitle
, csA
->style
,
1129 csA
->x
, csA
->y
, csA
->cx
, csA
->cy
,
1130 hwnd
, 0, csA
->hOwner
,
1131 (LPVOID
)csA
->lParam
);
1133 return (LRESULT
)child
;
1138 return MDIDestroyChild( hwnd
, ci
, WIN_GetFullHandle( (HWND
)wParam
), TRUE
);
1140 case WM_MDIGETACTIVE
:
1141 if (lParam
) *(BOOL
*)lParam
= IsZoomed(ci
->hwndActiveChild
);
1142 return (LRESULT
)ci
->hwndActiveChild
;
1144 case WM_MDIICONARRANGE
:
1145 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
1146 ArrangeIconicWindows( hwnd
);
1147 ci
->sbRecalc
= SB_BOTH
+1;
1148 SendMessageW( hwnd
, WM_MDICALCCHILDSCROLL
, 0, 0 );
1151 case WM_MDIMAXIMIZE
:
1152 ShowWindow( (HWND
)wParam
, SW_MAXIMIZE
);
1155 case WM_MDINEXT
: /* lParam != 0 means previous window */
1157 HWND next
= MDI_GetWindow( ci
, WIN_GetFullHandle( (HWND
)wParam
), !lParam
, 0 );
1158 MDI_SwitchActiveChild( ci
, next
, TRUE
);
1163 ShowWindow( (HWND
)wParam
, SW_SHOWNORMAL
);
1167 return MDISetMenu( hwnd
, (HMENU
)wParam
, (HMENU
)lParam
);
1169 case WM_MDIREFRESHMENU
:
1170 return MDI_RefreshMenu( ci
);
1173 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
1174 ShowScrollBar( hwnd
, SB_BOTH
, FALSE
);
1175 MDITile( hwnd
, ci
, wParam
);
1176 ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1181 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
1182 ScrollChildren( hwnd
, message
, wParam
, lParam
);
1183 ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1187 if (ci
->hwndActiveChild
&& !IsIconic( ci
->hwndActiveChild
))
1188 SetFocus( ci
->hwndActiveChild
);
1192 if( ci
->hwndActiveChild
)
1193 SendMessageW(ci
->hwndActiveChild
, message
, wParam
, lParam
);
1196 case WM_PARENTNOTIFY
:
1197 switch (LOWORD(wParam
))
1200 if (GetWindowLongW((HWND
)lParam
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1202 ci
->nTotalCreated
++;
1203 ci
->nActiveChildren
++;
1206 ci
->child
= HeapAlloc(GetProcessHeap(), 0, sizeof(HWND
));
1208 ci
->child
= HeapReAlloc(GetProcessHeap(), 0, ci
->child
, sizeof(HWND
) * ci
->nActiveChildren
);
1210 TRACE("Adding MDI child %p, # of children %d\n",
1211 (HWND
)lParam
, ci
->nActiveChildren
);
1213 ci
->child
[ci
->nActiveChildren
- 1] = (HWND
)lParam
;
1217 case WM_LBUTTONDOWN
:
1221 pt
.x
= (short)LOWORD(lParam
);
1222 pt
.y
= (short)HIWORD(lParam
);
1223 child
= ChildWindowFromPoint(hwnd
, pt
);
1225 TRACE("notification from %p (%i,%i)\n",child
,pt
.x
,pt
.y
);
1227 if( child
&& child
!= hwnd
&& child
!= ci
->hwndActiveChild
)
1228 SetWindowPos(child
, 0,0,0,0,0, SWP_NOSIZE
| SWP_NOMOVE
);
1233 return MDIDestroyChild( hwnd
, ci
, WIN_GetFullHandle( (HWND
)lParam
), FALSE
);
1238 if( ci
->hwndChildMaximized
)
1244 rect
.right
= LOWORD(lParam
);
1245 rect
.bottom
= HIWORD(lParam
);
1247 AdjustWindowRectEx( &rect
, GetWindowLongA(ci
->hwndChildMaximized
, GWL_STYLE
),
1248 0, GetWindowLongA(ci
->hwndChildMaximized
, GWL_EXSTYLE
) );
1249 MoveWindow( ci
->hwndChildMaximized
, rect
.left
, rect
.top
,
1250 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
, 1);
1253 MDI_PostUpdate(hwnd
, ci
, SB_BOTH
+1);
1257 case WM_MDICALCCHILDSCROLL
:
1258 if( (ci
->mdiFlags
& MDIF_NEEDUPDATE
) && ci
->sbRecalc
)
1260 CalcChildScroll(hwnd
, ci
->sbRecalc
-1);
1262 ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1266 return unicode
? DefWindowProcW( hwnd
, message
, wParam
, lParam
) :
1267 DefWindowProcA( hwnd
, message
, wParam
, lParam
);
1270 /***********************************************************************
1273 static LRESULT WINAPI
MDIClientWndProcA( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1275 if (!IsWindow(hwnd
)) return 0;
1276 return MDIClientWndProc_common( hwnd
, message
, wParam
, lParam
, FALSE
);
1279 /***********************************************************************
1282 static LRESULT WINAPI
MDIClientWndProcW( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1284 if (!IsWindow(hwnd
)) return 0;
1285 return MDIClientWndProc_common( hwnd
, message
, wParam
, lParam
, TRUE
);
1288 /***********************************************************************
1289 * DefFrameProcA (USER32.@)
1291 LRESULT WINAPI
DefFrameProcA( HWND hwnd
, HWND hwndMDIClient
,
1292 UINT message
, WPARAM wParam
, LPARAM lParam
)
1300 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, NULL
, 0 );
1301 LPWSTR text
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
1302 MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, text
, len
);
1303 MDI_UpdateFrameText( hwnd
, hwndMDIClient
, FALSE
, text
);
1304 HeapFree( GetProcessHeap(), 0, text
);
1306 return 1; /* success. FIXME: check text length */
1313 return DefFrameProcW( hwnd
, hwndMDIClient
, message
, wParam
, lParam
);
1316 return DefWindowProcA(hwnd
, message
, wParam
, lParam
);
1320 /***********************************************************************
1321 * DefFrameProcW (USER32.@)
1323 LRESULT WINAPI
DefFrameProcW( HWND hwnd
, HWND hwndMDIClient
,
1324 UINT message
, WPARAM wParam
, LPARAM lParam
)
1326 MDICLIENTINFO
*ci
= get_client_info( hwndMDIClient
);
1328 TRACE("%p %p %04x (%s) %08lx %08lx\n", hwnd
, hwndMDIClient
, message
, SPY_GetMsgName(message
, hwnd
), wParam
, lParam
);
1336 WORD id
= LOWORD(wParam
);
1337 /* check for possible syscommands for maximized MDI child */
1338 if (id
< ci
->idFirstChild
|| id
>= ci
->idFirstChild
+ ci
->nActiveChildren
)
1340 if( (id
- 0xf000) & 0xf00f ) break;
1341 if( !ci
->hwndChildMaximized
) break;
1345 if (!is_close_enabled(ci
->hwndActiveChild
, 0)) break;
1353 return SendMessageW( ci
->hwndChildMaximized
, WM_SYSCOMMAND
,
1360 if (id
- ci
->idFirstChild
== MDI_MOREWINDOWSLIMIT
)
1361 /* User chose "More Windows..." */
1362 childHwnd
= MDI_MoreWindowsDialog(hwndMDIClient
);
1364 /* User chose one of the windows listed in the "Windows" menu */
1365 childHwnd
= MDI_GetChildByID(hwndMDIClient
, id
, ci
);
1368 SendMessageW( hwndMDIClient
, WM_MDIACTIVATE
, (WPARAM
)childHwnd
, 0 );
1374 SendMessageW(hwndMDIClient
, message
, wParam
, lParam
);
1378 MDI_UpdateFrameText( hwnd
, hwndMDIClient
, FALSE
, (LPWSTR
)lParam
);
1379 return 1; /* success. FIXME: check text length */
1382 SetFocus(hwndMDIClient
);
1386 MoveWindow(hwndMDIClient
, 0, 0, LOWORD(lParam
), HIWORD(lParam
), TRUE
);
1391 MDINEXTMENU
*next_menu
= (MDINEXTMENU
*)lParam
;
1393 if (!IsIconic(hwnd
) && ci
->hwndActiveChild
&& !IsZoomed(ci
->hwndActiveChild
))
1395 /* control menu is between the frame system menu and
1396 * the first entry of menu bar */
1397 WND
*wndPtr
= WIN_GetPtr(hwnd
);
1399 if( (wParam
== VK_LEFT
&& GetMenu(hwnd
) == next_menu
->hmenuIn
) ||
1400 (wParam
== VK_RIGHT
&& GetSubMenu(wndPtr
->hSysMenu
, 0) == next_menu
->hmenuIn
) )
1402 WIN_ReleasePtr(wndPtr
);
1403 wndPtr
= WIN_GetPtr(ci
->hwndActiveChild
);
1404 next_menu
->hmenuNext
= GetSubMenu(wndPtr
->hSysMenu
, 0);
1405 next_menu
->hwndNext
= ci
->hwndActiveChild
;
1407 WIN_ReleasePtr(wndPtr
);
1414 return DefWindowProcW( hwnd
, message
, wParam
, lParam
);
1417 /***********************************************************************
1418 * DefMDIChildProcA (USER32.@)
1420 LRESULT WINAPI
DefMDIChildProcA( HWND hwnd
, UINT message
,
1421 WPARAM wParam
, LPARAM lParam
)
1423 HWND client
= GetParent(hwnd
);
1424 MDICLIENTINFO
*ci
= get_client_info( client
);
1426 TRACE("%p %04x (%s) %08lx %08lx\n", hwnd
, message
, SPY_GetMsgName(message
, hwnd
), wParam
, lParam
);
1428 hwnd
= WIN_GetFullHandle( hwnd
);
1429 if (!ci
) return DefWindowProcA( hwnd
, message
, wParam
, lParam
);
1434 DefWindowProcA(hwnd
, message
, wParam
, lParam
);
1435 if( ci
->hwndChildMaximized
== hwnd
)
1436 MDI_UpdateFrameText( GetParent(client
), client
, TRUE
, NULL
);
1437 return 1; /* success. FIXME: check text length */
1439 case WM_GETMINMAXINFO
:
1443 case WM_CHILDACTIVATE
:
1451 return DefMDIChildProcW( hwnd
, message
, wParam
, lParam
);
1453 return DefWindowProcA(hwnd
, message
, wParam
, lParam
);
1457 /***********************************************************************
1458 * DefMDIChildProcW (USER32.@)
1460 LRESULT WINAPI
DefMDIChildProcW( HWND hwnd
, UINT message
,
1461 WPARAM wParam
, LPARAM lParam
)
1463 HWND client
= GetParent(hwnd
);
1464 MDICLIENTINFO
*ci
= get_client_info( client
);
1466 TRACE("%p %04x (%s) %08lx %08lx\n", hwnd
, message
, SPY_GetMsgName(message
, hwnd
), wParam
, lParam
);
1468 hwnd
= WIN_GetFullHandle( hwnd
);
1469 if (!ci
) return DefWindowProcW( hwnd
, message
, wParam
, lParam
);
1474 DefWindowProcW(hwnd
, message
, wParam
, lParam
);
1475 if( ci
->hwndChildMaximized
== hwnd
)
1476 MDI_UpdateFrameText( GetParent(client
), client
, TRUE
, NULL
);
1477 return 1; /* success. FIXME: check text length */
1479 case WM_GETMINMAXINFO
:
1480 MDI_ChildGetMinMaxInfo( client
, hwnd
, (MINMAXINFO
*)lParam
);
1484 return 0x00010000; /* MDI children don't have menu bars */
1487 SendMessageW( client
, WM_MDIDESTROY
, (WPARAM
)hwnd
, 0 );
1491 if (ci
->hwndActiveChild
!= hwnd
)
1492 MDI_ChildActivate( client
, hwnd
);
1495 case WM_CHILDACTIVATE
:
1496 MDI_ChildActivate( client
, hwnd
);
1500 switch (wParam
& 0xfff0)
1503 if( ci
->hwndChildMaximized
== hwnd
)
1510 if (ci
->hwndChildMaximized
== hwnd
)
1511 return SendMessageW( GetParent(client
), message
, wParam
, lParam
);
1514 SendMessageW( client
, WM_MDINEXT
, 0, 0);
1517 SendMessageW( client
, WM_MDINEXT
, 0, 1);
1524 if (ci
->hwndChildMaximized
) ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1525 else MDI_PostUpdate(client
, ci
, SB_BOTH
+1);
1529 /* This is the only place where we switch to/from maximized state */
1531 TRACE("current active %p, maximized %p\n", ci
->hwndActiveChild
, ci
->hwndChildMaximized
);
1533 if( ci
->hwndChildMaximized
== hwnd
&& wParam
!= SIZE_MAXIMIZED
)
1537 ci
->hwndChildMaximized
= 0;
1539 frame
= GetParent(client
);
1540 MDI_RestoreFrameMenu( frame
, hwnd
);
1541 MDI_UpdateFrameText( frame
, client
, TRUE
, NULL
);
1544 if( wParam
== SIZE_MAXIMIZED
)
1546 HWND frame
, hMaxChild
= ci
->hwndChildMaximized
;
1548 if( hMaxChild
== hwnd
) break;
1552 SendMessageW( hMaxChild
, WM_SETREDRAW
, FALSE
, 0 );
1554 MDI_RestoreFrameMenu( GetParent(client
), hMaxChild
);
1555 ShowWindow( hMaxChild
, SW_SHOWNOACTIVATE
);
1557 SendMessageW( hMaxChild
, WM_SETREDRAW
, TRUE
, 0 );
1560 TRACE("maximizing child %p\n", hwnd
);
1562 /* keep track of the maximized window. */
1563 ci
->hwndChildMaximized
= hwnd
; /* !!! */
1565 frame
= GetParent(client
);
1566 MDI_AugmentFrameMenu( frame
, hwnd
);
1567 MDI_UpdateFrameText( frame
, client
, TRUE
, NULL
);
1570 if( wParam
== SIZE_MINIMIZED
)
1572 HWND switchTo
= MDI_GetWindow( ci
, hwnd
, TRUE
, WS_MINIMIZE
);
1574 if (!switchTo
) switchTo
= hwnd
;
1575 SendMessageW( switchTo
, WM_CHILDACTIVATE
, 0, 0 );
1578 MDI_PostUpdate(client
, ci
, SB_BOTH
+1);
1583 MDINEXTMENU
*next_menu
= (MDINEXTMENU
*)lParam
;
1584 HWND parent
= GetParent(client
);
1586 if( wParam
== VK_LEFT
) /* switch to frame system menu */
1588 WND
*wndPtr
= WIN_GetPtr( parent
);
1589 next_menu
->hmenuNext
= GetSubMenu( wndPtr
->hSysMenu
, 0 );
1590 WIN_ReleasePtr( wndPtr
);
1592 if( wParam
== VK_RIGHT
) /* to frame menu bar */
1594 next_menu
->hmenuNext
= GetMenu(parent
);
1596 next_menu
->hwndNext
= parent
;
1603 SendMessageW( hwnd
, WM_SYSCOMMAND
, (WPARAM
)SC_KEYMENU
, (DWORD
)VK_SPACE
);
1609 /* Remove itself from the Window menu */
1610 MDI_RefreshMenu(ci
);
1613 return DefWindowProcW(hwnd
, message
, wParam
, lParam
);
1616 /**********************************************************************
1617 * CreateMDIWindowA (USER32.@) Creates a MDI child
1620 * Success: Handle to created window
1623 HWND WINAPI
CreateMDIWindowA(
1624 LPCSTR lpClassName
, /* [in] Pointer to registered child class name */
1625 LPCSTR lpWindowName
, /* [in] Pointer to window name */
1626 DWORD dwStyle
, /* [in] Window style */
1627 INT X
, /* [in] Horizontal position of window */
1628 INT Y
, /* [in] Vertical position of window */
1629 INT nWidth
, /* [in] Width of window */
1630 INT nHeight
, /* [in] Height of window */
1631 HWND hWndParent
, /* [in] Handle to parent window */
1632 HINSTANCE hInstance
, /* [in] Handle to application instance */
1633 LPARAM lParam
) /* [in] Application-defined value */
1635 TRACE("(%s,%s,%08x,%d,%d,%d,%d,%p,%p,%08lx)\n",
1636 debugstr_a(lpClassName
),debugstr_a(lpWindowName
),dwStyle
,X
,Y
,
1637 nWidth
,nHeight
,hWndParent
,hInstance
,lParam
);
1639 return CreateWindowExA(WS_EX_MDICHILD
, lpClassName
, lpWindowName
,
1640 dwStyle
, X
, Y
, nWidth
, nHeight
, hWndParent
,
1641 0, hInstance
, (LPVOID
)lParam
);
1644 /***********************************************************************
1645 * CreateMDIWindowW (USER32.@) Creates a MDI child
1648 * Success: Handle to created window
1651 HWND WINAPI
CreateMDIWindowW(
1652 LPCWSTR lpClassName
, /* [in] Pointer to registered child class name */
1653 LPCWSTR lpWindowName
, /* [in] Pointer to window name */
1654 DWORD dwStyle
, /* [in] Window style */
1655 INT X
, /* [in] Horizontal position of window */
1656 INT Y
, /* [in] Vertical position of window */
1657 INT nWidth
, /* [in] Width of window */
1658 INT nHeight
, /* [in] Height of window */
1659 HWND hWndParent
, /* [in] Handle to parent window */
1660 HINSTANCE hInstance
, /* [in] Handle to application instance */
1661 LPARAM lParam
) /* [in] Application-defined value */
1663 TRACE("(%s,%s,%08x,%d,%d,%d,%d,%p,%p,%08lx)\n",
1664 debugstr_w(lpClassName
), debugstr_w(lpWindowName
), dwStyle
, X
, Y
,
1665 nWidth
, nHeight
, hWndParent
, hInstance
, lParam
);
1667 return CreateWindowExW(WS_EX_MDICHILD
, lpClassName
, lpWindowName
,
1668 dwStyle
, X
, Y
, nWidth
, nHeight
, hWndParent
,
1669 0, hInstance
, (LPVOID
)lParam
);
1672 /**********************************************************************
1673 * TranslateMDISysAccel (USER32.@)
1675 BOOL WINAPI
TranslateMDISysAccel( HWND hwndClient
, LPMSG msg
)
1677 if (msg
->message
== WM_KEYDOWN
|| msg
->message
== WM_SYSKEYDOWN
)
1679 MDICLIENTINFO
*ci
= get_client_info( hwndClient
);
1682 if (!ci
|| !IsWindowEnabled(ci
->hwndActiveChild
)) return 0;
1684 /* translate if the Ctrl key is down and Alt not. */
1686 if( (GetKeyState(VK_CONTROL
) & 0x8000) && !(GetKeyState(VK_MENU
) & 0x8000))
1688 switch( msg
->wParam
)
1692 wParam
= ( GetKeyState(VK_SHIFT
) & 0x8000 ) ? SC_NEXTWINDOW
: SC_PREVWINDOW
;
1696 if (is_close_enabled(ci
->hwndActiveChild
, 0))
1705 TRACE("wParam = %04lx\n", wParam
);
1706 SendMessageW(ci
->hwndActiveChild
, WM_SYSCOMMAND
, wParam
, (LPARAM
)msg
->wParam
);
1710 return 0; /* failure */
1713 /***********************************************************************
1714 * CalcChildScroll (USER32.@)
1716 void WINAPI
CalcChildScroll( HWND hwnd
, INT scroll
)
1719 RECT childRect
, clientRect
;
1722 GetClientRect( hwnd
, &clientRect
);
1723 SetRectEmpty( &childRect
);
1725 if ((list
= WIN_ListChildren( hwnd
)))
1728 for (i
= 0; list
[i
]; i
++)
1730 DWORD style
= GetWindowLongW( list
[i
], GWL_STYLE
);
1731 if (style
& WS_MAXIMIZE
)
1733 HeapFree( GetProcessHeap(), 0, list
);
1734 ShowScrollBar( hwnd
, SB_BOTH
, FALSE
);
1737 if (style
& WS_VISIBLE
)
1740 GetWindowRect( list
[i
], &rect
);
1741 UnionRect( &childRect
, &rect
, &childRect
);
1744 HeapFree( GetProcessHeap(), 0, list
);
1746 MapWindowPoints( 0, hwnd
, (POINT
*)&childRect
, 2 );
1747 UnionRect( &childRect
, &clientRect
, &childRect
);
1749 /* set common info values */
1750 info
.cbSize
= sizeof(info
);
1751 info
.fMask
= SIF_POS
| SIF_RANGE
;
1753 /* set the specific */
1758 info
.nMin
= childRect
.left
;
1759 info
.nMax
= childRect
.right
- clientRect
.right
;
1760 info
.nPos
= clientRect
.left
- childRect
.left
;
1761 SetScrollInfo(hwnd
, SB_HORZ
, &info
, TRUE
);
1762 if (scroll
== SB_HORZ
) break;
1765 info
.nMin
= childRect
.top
;
1766 info
.nMax
= childRect
.bottom
- clientRect
.bottom
;
1767 info
.nPos
= clientRect
.top
- childRect
.top
;
1768 SetScrollInfo(hwnd
, SB_VERT
, &info
, TRUE
);
1774 /***********************************************************************
1775 * ScrollChildren (USER32.@)
1777 void WINAPI
ScrollChildren(HWND hWnd
, UINT uMsg
, WPARAM wParam
,
1781 INT curPos
, length
, minPos
, maxPos
, shift
;
1784 GetClientRect( hWnd
, &rect
);
1789 GetScrollRange(hWnd
,SB_HORZ
,&minPos
,&maxPos
);
1790 curPos
= GetScrollPos(hWnd
,SB_HORZ
);
1791 length
= (rect
.right
- rect
.left
) / 2;
1792 shift
= GetSystemMetrics(SM_CYHSCROLL
);
1795 GetScrollRange(hWnd
,SB_VERT
,&minPos
,&maxPos
);
1796 curPos
= GetScrollPos(hWnd
,SB_VERT
);
1797 length
= (rect
.bottom
- rect
.top
) / 2;
1798 shift
= GetSystemMetrics(SM_CXVSCROLL
);
1807 newPos
= curPos
- shift
;
1810 newPos
= curPos
+ shift
;
1813 newPos
= curPos
- length
;
1816 newPos
= curPos
+ length
;
1819 case SB_THUMBPOSITION
:
1820 newPos
= LOWORD(lParam
);
1833 CalcChildScroll(hWnd
,(uMsg
== WM_VSCROLL
)?SB_VERT
:SB_HORZ
);
1837 if( newPos
> maxPos
)
1840 if( newPos
< minPos
)
1843 SetScrollPos(hWnd
, (uMsg
== WM_VSCROLL
)?SB_VERT
:SB_HORZ
, newPos
, TRUE
);
1845 if( uMsg
== WM_VSCROLL
)
1846 ScrollWindowEx(hWnd
,0 ,curPos
- newPos
, NULL
, NULL
, 0, NULL
,
1847 SW_INVALIDATE
| SW_ERASE
| SW_SCROLLCHILDREN
);
1849 ScrollWindowEx(hWnd
,curPos
- newPos
, 0, NULL
, NULL
, 0, NULL
,
1850 SW_INVALIDATE
| SW_ERASE
| SW_SCROLLCHILDREN
);
1854 /******************************************************************************
1855 * CascadeWindows (USER32.@) Cascades MDI child windows
1858 * Success: Number of cascaded windows.
1862 CascadeWindows (HWND hwndParent
, UINT wFlags
, const RECT
*lpRect
,
1863 UINT cKids
, const HWND
*lpKids
)
1865 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent
, wFlags
, cKids
);
1870 /******************************************************************************
1871 * TileWindows (USER32.@) Tiles MDI child windows
1874 * Success: Number of tiled windows.
1878 TileWindows (HWND hwndParent
, UINT wFlags
, const RECT
*lpRect
,
1879 UINT cKids
, const HWND
*lpKids
)
1881 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent
, wFlags
, cKids
);
1885 /************************************************************************
1886 * "More Windows..." functionality
1889 /* MDI_MoreWindowsDlgProc
1891 * This function will process the messages sent to the "More Windows..."
1893 * Return values: 0 = cancel pressed
1894 * HWND = ok pressed or double-click in the list...
1898 static INT_PTR WINAPI
MDI_MoreWindowsDlgProc (HWND hDlg
, UINT iMsg
, WPARAM wParam
, LPARAM lParam
)
1907 MDICLIENTINFO
*ci
= get_client_info( (HWND
)lParam
);
1908 HWND hListBox
= GetDlgItem(hDlg
, MDI_IDC_LISTBOX
);
1910 for (i
= 0; i
< ci
->nActiveChildren
; i
++)
1912 WCHAR buffer
[MDI_MAXTITLELENGTH
];
1914 if (!InternalGetWindowText( ci
->child
[i
], buffer
, sizeof(buffer
)/sizeof(WCHAR
) ))
1916 SendMessageW(hListBox
, LB_ADDSTRING
, 0, (LPARAM
)buffer
);
1917 SendMessageW(hListBox
, LB_SETITEMDATA
, i
, (LPARAM
)ci
->child
[i
] );
1918 length
= strlenW(buffer
); /* FIXME: should use GetTextExtentPoint */
1919 if (length
> widest
)
1922 /* Make sure the horizontal scrollbar scrolls ok */
1923 SendMessageW(hListBox
, LB_SETHORIZONTALEXTENT
, widest
* 6, 0);
1925 /* Set the current selection */
1926 SendMessageW(hListBox
, LB_SETCURSEL
, MDI_MOREWINDOWSLIMIT
, 0);
1931 switch (LOWORD(wParam
))
1934 if (HIWORD(wParam
) != LBN_DBLCLK
) break;
1938 /* windows are sorted by menu ID, so we must return the
1939 * window associated to the given id
1941 HWND hListBox
= GetDlgItem(hDlg
, MDI_IDC_LISTBOX
);
1942 UINT index
= SendMessageW(hListBox
, LB_GETCURSEL
, 0, 0);
1943 LRESULT res
= SendMessageW(hListBox
, LB_GETITEMDATA
, index
, 0);
1944 EndDialog(hDlg
, res
);
1958 * MDI_MoreWindowsDialog
1960 * Prompts the user with a listbox containing the opened
1961 * documents. The user can then choose a windows and click
1962 * on OK to set the current window to the one selected, or
1963 * CANCEL to cancel. The function returns a handle to the
1967 static HWND
MDI_MoreWindowsDialog(HWND hwnd
)
1973 hRes
= FindResourceA(user32_module
, "MDI_MOREWINDOWS", (LPSTR
)RT_DIALOG
);
1978 hDlgTmpl
= LoadResource(user32_module
, hRes
);
1983 template = LockResource( hDlgTmpl
);
1988 return (HWND
) DialogBoxIndirectParamA(user32_module
,
1989 (const DLGTEMPLATE
*) template,
1990 hwnd
, MDI_MoreWindowsDlgProc
, (LPARAM
) hwnd
);