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
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.
94 #include "wine/unicode.h"
96 #include "nonclient.h"
100 #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 UINT nActiveChildren
;
120 HWND hwndActiveChild
;
121 HWND
*child
; /* array of tracked children */
128 UINT sbRecalc
; /* SB_xxx flags for scrollbar fixup */
131 static HBITMAP hBmpClose
= 0;
133 /* ----------------- declarations ----------------- */
134 static void MDI_UpdateFrameText( HWND
, HWND
, BOOL
, LPCWSTR
);
135 static BOOL
MDI_AugmentFrameMenu( HWND
, HWND
);
136 static BOOL
MDI_RestoreFrameMenu( HWND
, HWND
);
137 static LONG
MDI_ChildActivate( HWND
, HWND
);
138 static LRESULT
MDI_RefreshMenu(MDICLIENTINFO
*);
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 ----------
148 static HWND
MDI_GetChildByID(HWND hwnd
, UINT id
, MDICLIENTINFO
*ci
)
152 for (i
= 0; ci
->nActiveChildren
; i
++)
154 if (GetWindowLongW( ci
->child
[i
], GWL_ID
) == id
)
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 */
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
);
192 if (win
== WND_OTHER_PROCESS
)
194 ERR( "client %p belongs to other process\n", client
);
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
);
204 /**********************************************************************
207 * returns "activateable" child different from the current or zero
209 static HWND
MDI_GetWindow(MDICLIENTINFO
*clientInfo
, HWND hWnd
, BOOL bNext
,
216 dwStyleMask
|= WS_DISABLED
| WS_VISIBLE
;
217 if( !hWnd
) hWnd
= clientInfo
->hwndActiveChild
;
219 if (!(list
= WIN_ListChildren( GetParent(hWnd
) ))) return 0;
221 /* start from next after hWnd */
222 while (list
[i
] && list
[i
] != hWnd
) 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;
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;
238 if (bNext
) goto found
;
241 HeapFree( GetProcessHeap(), 0, list
);
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
)
254 INT spacing
= GetSystemMetrics(SM_CYCAPTION
) +
255 GetSystemMetrics(SM_CYFRAME
) - 1;
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 /**********************************************************************
276 static LRESULT
MDISetMenu( HWND hwnd
, HMENU hmenuFrame
,
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");
290 if (hmenuWindow
&& !IsMenu(hmenuWindow
))
292 WARN("hmenuWindow is not a menu handle\n");
296 if (!(ci
= get_client_info( hwnd
))) return 0;
298 if( IsZoomed(ci
->hwndActiveChild
) && hmenuFrame
&& hmenuFrame
!= ci
->hFrameMenu
)
299 MDI_RestoreFrameMenu( hwndFrame
, ci
->hwndActiveChild
);
301 if( hmenuWindow
&& hmenuWindow
!= ci
->hWindowMenu
)
303 /* delete menu items from ci->hWindowMenu
304 * and add them to hmenuWindow */
305 /* Agent newsreader calls this function with ci->hWindowMenu == NULL */
306 if( ci
->hWindowMenu
&& ci
->nActiveChildren
)
308 UINT nActiveChildren_old
= ci
->nActiveChildren
;
310 /* Remove all items from old Window menu */
311 ci
->nActiveChildren
= 0;
314 ci
->hWindowMenu
= hmenuWindow
;
316 /* Add items to the new Window menu */
317 ci
->nActiveChildren
= nActiveChildren_old
;
318 AppendMenuW(hmenuWindow
, MF_SEPARATOR
, 0, NULL
);
322 ci
->hWindowMenu
= hmenuWindow
;
327 SetMenu(hwndFrame
, hmenuFrame
);
328 if( hmenuFrame
!= ci
->hFrameMenu
)
330 HMENU oldFrameMenu
= ci
->hFrameMenu
;
332 ci
->hFrameMenu
= hmenuFrame
;
333 if( IsZoomed(ci
->hwndActiveChild
) )
334 MDI_AugmentFrameMenu( hwndFrame
, ci
->hwndActiveChild
);
336 return (LRESULT
)oldFrameMenu
;
341 /* SetMenu() may already have been called, meaning that this window
342 * already has its menu. But they may have done a SetMenu() on
343 * an MDI window, and called MDISetMenu() after the fact, meaning
344 * that the "if" to this "else" wouldn't catch the need to
345 * augment the frame menu.
347 if( IsZoomed(ci
->hwndActiveChild
) )
348 MDI_AugmentFrameMenu( hwndFrame
, ci
->hwndActiveChild
);
354 /**********************************************************************
357 static LRESULT
MDI_RefreshMenu(MDICLIENTINFO
*ci
)
359 UINT i
, count
, visible
, separator_pos
;
360 WCHAR buf
[MDI_MAXTITLELENGTH
];
362 TRACE("children %u, window menu %p\n", ci
->nActiveChildren
, ci
->hWindowMenu
);
364 if (!ci
->hWindowMenu
)
367 if (!IsMenu(ci
->hWindowMenu
))
369 WARN("Window menu handle %p is no more valid\n", ci
->hWindowMenu
);
373 /* Windows finds the last separator in the menu, removes all existing
374 * menu items after it, and then adds visible MDI children.
377 count
= GetMenuItemCount(ci
->hWindowMenu
);
378 for (i
= 0; i
< count
; i
++)
382 memset(&mii
, 0, sizeof(mii
));
383 mii
.cbSize
= sizeof(mii
);
384 mii
.fMask
= MIIM_TYPE
;
385 GetMenuItemInfoW(ci
->hWindowMenu
, i
, TRUE
, &mii
);
387 if (mii
.fType
& MFT_SEPARATOR
)
391 for (i
= separator_pos
+ 1; i
< count
; i
++)
392 RemoveMenu(ci
->hWindowMenu
, separator_pos
+ 1, MF_BYPOSITION
);
395 for (i
= 0; i
< ci
->nActiveChildren
; i
++)
397 UINT id
= ci
->idFirstChild
+ i
;
399 if (visible
== MDI_MOREWINDOWSLIMIT
)
401 LoadStringW(user32_module
, IDS_MDI_MOREWINDOWS
, buf
, sizeof(buf
)/sizeof(WCHAR
));
402 AppendMenuW(ci
->hWindowMenu
, MF_STRING
, id
, buf
);
406 if (GetWindowLongW(ci
->child
[i
], GWL_STYLE
) & WS_VISIBLE
)
408 if (!visible
&& !separator_pos
)
409 /* Visio expects that separator has id 0 */
410 AppendMenuW(ci
->hWindowMenu
, MF_SEPARATOR
, 0, NULL
);
414 SetWindowLongW(ci
->child
[i
], GWL_ID
, id
);
417 buf
[1] = '0' + visible
;
419 InternalGetWindowText(ci
->child
[i
], buf
+ 3, sizeof(buf
)/sizeof(WCHAR
) - 3);
420 TRACE("Adding %p, id %u %s\n", ci
->child
[i
], id
, debugstr_w(buf
));
421 AppendMenuW(ci
->hWindowMenu
, MF_STRING
, id
, buf
);
423 if (ci
->child
[i
] == ci
->hwndActiveChild
)
424 CheckMenuItem(ci
->hWindowMenu
, id
, MF_CHECKED
);
427 TRACE("MDI child %p is not visible, skipping\n", ci
->child
[i
]);
430 return (LRESULT
)ci
->hFrameMenu
;
434 /* ------------------ MDI child window functions ---------------------- */
436 /**********************************************************************
437 * MDI_ChildGetMinMaxInfo
439 * Note: The rule here is that client rect of the maximized MDI child
440 * is equal to the client rect of the MDI client window.
442 static void MDI_ChildGetMinMaxInfo( HWND client
, HWND hwnd
, MINMAXINFO
* lpMinMax
)
446 GetClientRect( client
, &rect
);
447 AdjustWindowRectEx( &rect
, GetWindowLongW( hwnd
, GWL_STYLE
),
448 0, GetWindowLongW( hwnd
, GWL_EXSTYLE
));
450 lpMinMax
->ptMaxSize
.x
= rect
.right
-= rect
.left
;
451 lpMinMax
->ptMaxSize
.y
= rect
.bottom
-= rect
.top
;
453 lpMinMax
->ptMaxPosition
.x
= rect
.left
;
454 lpMinMax
->ptMaxPosition
.y
= rect
.top
;
456 TRACE("max rect (%ld,%ld - %ld, %ld)\n",
457 rect
.left
,rect
.top
,rect
.right
,rect
.bottom
);
460 /**********************************************************************
461 * MDI_SwitchActiveChild
463 * Note: SetWindowPos sends WM_CHILDACTIVATE to the child window that is
466 static void MDI_SwitchActiveChild( HWND clientHwnd
, HWND childHwnd
,
471 MDICLIENTINFO
*ci
= get_client_info( clientHwnd
);
473 hwndTo
= MDI_GetWindow(ci
, childHwnd
, bNextWindow
, 0);
474 hwndPrev
= ci
->hwndActiveChild
;
476 TRACE("from %p, to %p\n",childHwnd
,hwndTo
);
478 if ( !hwndTo
) return; /* no window to switch to */
480 if ( hwndTo
!= hwndPrev
)
482 SetWindowPos( hwndTo
, HWND_TOP
, 0, 0, 0, 0,
483 SWP_NOMOVE
| SWP_NOSIZE
);
485 if( bNextWindow
&& hwndPrev
)
486 SetWindowPos( hwndPrev
, HWND_BOTTOM
, 0, 0, 0, 0,
487 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
492 /**********************************************************************
495 static LRESULT
MDIDestroyChild( HWND parent
, MDICLIENTINFO
*ci
,
496 HWND child
, BOOL flagDestroy
)
500 TRACE("# of managed children %u\n", ci
->nActiveChildren
);
502 if( child
== ci
->hwndActiveChild
)
504 MDI_SwitchActiveChild(parent
, child
, TRUE
);
506 if( child
== ci
->hwndActiveChild
)
508 ShowWindow( child
, SW_HIDE
);
509 if( child
== ci
->hwndActiveChild
&& IsZoomed(ci
->hwndActiveChild
) )
511 HWND frame
= GetParent(parent
);
512 MDI_RestoreFrameMenu( frame
, child
);
513 MDI_UpdateFrameText( frame
, parent
, TRUE
, NULL
);
516 MDI_ChildActivate(parent
, 0);
520 for (i
= 0; i
< ci
->nActiveChildren
; i
++)
522 if (ci
->child
[i
] == child
)
524 HWND
*new_child
= HeapAlloc(GetProcessHeap(), 0, (ci
->nActiveChildren
- 1) * sizeof(HWND
));
525 memcpy(new_child
, ci
->child
, i
* sizeof(HWND
));
526 if (i
+ 1 < ci
->nActiveChildren
)
527 memcpy(new_child
+ i
, ci
->child
+ i
+ 1, (ci
->nActiveChildren
- i
- 1) * sizeof(HWND
));
528 HeapFree(GetProcessHeap(), 0, ci
->child
);
529 ci
->child
= new_child
;
531 ci
->nActiveChildren
--;
538 MDI_PostUpdate(GetParent(child
), ci
, SB_BOTH
+1);
539 DestroyWindow(child
);
542 TRACE("child destroyed - %p\n", child
);
547 /**********************************************************************
550 * Note: hWndChild is NULL when last child is being destroyed
552 static LONG
MDI_ChildActivate( HWND client
, HWND child
)
554 MDICLIENTINFO
*clientInfo
;
556 BOOL isActiveFrameWnd
;
558 if (child
&& (!IsWindowEnabled( child
))) return 0;
560 clientInfo
= get_client_info( client
);
562 TRACE("%p\n", child
);
564 isActiveFrameWnd
= (GetActiveWindow() == GetParent(client
));
565 prevActiveWnd
= clientInfo
->hwndActiveChild
;
567 /* deactivate prev. active child */
570 SetWindowLongW( prevActiveWnd
, GWL_STYLE
,
571 GetWindowLongW( prevActiveWnd
, GWL_STYLE
) | WS_SYSMENU
);
572 SendMessageW( prevActiveWnd
, WM_NCACTIVATE
, FALSE
, 0L );
573 SendMessageW( prevActiveWnd
, WM_MDIACTIVATE
, (WPARAM
)prevActiveWnd
, (LPARAM
)child
);
577 if (IsZoomed(clientInfo
->hwndActiveChild
) && clientInfo
->hwndActiveChild
!= child
)
579 INT cmd
= SW_SHOWNORMAL
;
583 HMENU hSysMenu
= GetSystemMenu(child
, FALSE
);
586 state
= GetMenuState(hSysMenu
, SC_MAXIMIZE
, MF_BYCOMMAND
);
587 if (state
!= 0xFFFFFFFF && !(state
& (MF_DISABLED
| MF_GRAYED
)))
589 SendMessageW(clientInfo
->hwndActiveChild
, WM_SYSCOMMAND
, SC_RESTORE
, 0);
590 cmd
= SW_SHOWMAXIMIZED
;
593 clientInfo
->hwndActiveChild
= child
;
596 ShowWindow( clientInfo
->hwndActiveChild
, cmd
);
599 clientInfo
->hwndActiveChild
= child
;
601 /* check if we have any children left */
604 if( isActiveFrameWnd
)
609 MDI_RefreshMenu(clientInfo
);
611 /* bring active child to the top */
612 SetWindowPos( child
, 0,0,0,0,0, SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOACTIVATE
);
614 if( isActiveFrameWnd
)
616 SendMessageA( child
, WM_NCACTIVATE
, TRUE
, 0L);
617 if( GetFocus() == client
)
618 SendMessageA( client
, WM_SETFOCUS
, (WPARAM
)client
, 0L );
622 SendMessageA( child
, WM_MDIACTIVATE
, (WPARAM
)prevActiveWnd
, (LPARAM
)child
);
626 /* -------------------- MDI client window functions ------------------- */
628 /**********************************************************************
629 * CreateMDIMenuBitmap
631 static HBITMAP
CreateMDIMenuBitmap(void)
633 HDC hDCSrc
= CreateCompatibleDC(0);
634 HDC hDCDest
= CreateCompatibleDC(hDCSrc
);
635 HBITMAP hbClose
= LoadBitmapW(0, MAKEINTRESOURCEW(OBM_OLD_CLOSE
) );
637 HBITMAP hobjSrc
, hobjDest
;
639 hobjSrc
= SelectObject(hDCSrc
, hbClose
);
640 hbCopy
= CreateCompatibleBitmap(hDCSrc
,GetSystemMetrics(SM_CXSIZE
),GetSystemMetrics(SM_CYSIZE
));
641 hobjDest
= SelectObject(hDCDest
, hbCopy
);
643 BitBlt(hDCDest
, 0, 0, GetSystemMetrics(SM_CXSIZE
), GetSystemMetrics(SM_CYSIZE
),
644 hDCSrc
, GetSystemMetrics(SM_CXSIZE
), 0, SRCCOPY
);
646 SelectObject(hDCSrc
, hobjSrc
);
647 DeleteObject(hbClose
);
650 hobjSrc
= SelectObject( hDCDest
, GetStockObject(BLACK_PEN
) );
652 MoveToEx( hDCDest
, GetSystemMetrics(SM_CXSIZE
) - 1, 0, NULL
);
653 LineTo( hDCDest
, GetSystemMetrics(SM_CXSIZE
) - 1, GetSystemMetrics(SM_CYSIZE
) - 1);
655 SelectObject(hDCDest
, hobjSrc
);
656 SelectObject(hDCDest
, hobjDest
);
662 /**********************************************************************
665 static LONG
MDICascade( HWND client
, MDICLIENTINFO
*ci
)
668 BOOL has_icons
= FALSE
;
671 if (IsZoomed(ci
->hwndActiveChild
))
672 SendMessageA(client
, WM_MDIRESTORE
, (WPARAM
)ci
->hwndActiveChild
, 0);
674 if (ci
->nActiveChildren
== 0) return 0;
676 if (!(win_array
= WIN_ListChildren( client
))) return 0;
678 /* remove all the windows we don't want */
679 for (i
= total
= 0; win_array
[i
]; i
++)
681 if (!IsWindowVisible( win_array
[i
] )) continue;
682 if (GetWindow( win_array
[i
], GW_OWNER
)) continue; /* skip owned windows */
683 if (IsIconic( win_array
[i
] ))
688 win_array
[total
++] = win_array
[i
];
690 win_array
[total
] = 0;
694 INT delta
= 0, n
= 0, i
;
696 if (has_icons
) delta
= GetSystemMetrics(SM_CYICONSPACING
) + GetSystemMetrics(SM_CYICON
);
698 /* walk the list (backwards) and move windows */
699 for (i
= total
- 1; i
>= 0; i
--)
701 TRACE("move %p to (%ld,%ld) size [%ld,%ld]\n",
702 win_array
[i
], pos
[0].x
, pos
[0].y
, pos
[1].x
, pos
[1].y
);
704 MDI_CalcDefaultChildPos(client
, n
++, pos
, delta
);
705 SetWindowPos( win_array
[i
], 0, pos
[0].x
, pos
[0].y
, pos
[1].x
, pos
[1].y
,
706 SWP_DRAWFRAME
| SWP_NOACTIVATE
| SWP_NOZORDER
);
709 HeapFree( GetProcessHeap(), 0, win_array
);
711 if (has_icons
) ArrangeIconicWindows( client
);
715 /**********************************************************************
718 static void MDITile( HWND client
, MDICLIENTINFO
*ci
, WPARAM wParam
)
722 BOOL has_icons
= FALSE
;
724 if (IsZoomed(ci
->hwndActiveChild
))
725 SendMessageA(client
, WM_MDIRESTORE
, (WPARAM
)ci
->hwndActiveChild
, 0);
727 if (ci
->nActiveChildren
== 0) return;
729 if (!(win_array
= WIN_ListChildren( client
))) return;
731 /* remove all the windows we don't want */
732 for (i
= total
= 0; win_array
[i
]; i
++)
734 if (!IsWindowVisible( win_array
[i
] )) continue;
735 if (GetWindow( win_array
[i
], GW_OWNER
)) continue; /* skip owned windows (icon titles) */
736 if (IsIconic( win_array
[i
] ))
741 if ((wParam
& MDITILE_SKIPDISABLED
) && !IsWindowEnabled( win_array
[i
] )) continue;
742 win_array
[total
++] = win_array
[i
];
744 win_array
[total
] = 0;
746 TRACE("%u windows to tile\n", total
);
750 HWND
*pWnd
= win_array
;
752 int x
, y
, xsize
, ysize
;
753 int rows
, columns
, r
, c
, i
;
755 GetClientRect(client
,&rect
);
756 rows
= (int) sqrt((double)total
);
757 columns
= total
/ rows
;
759 if( wParam
& MDITILE_HORIZONTAL
) /* version >= 3.1 */
762 rows
= columns
; /* exchange r and c */
768 y
= rect
.bottom
- 2 * GetSystemMetrics(SM_CYICONSPACING
) - GetSystemMetrics(SM_CYICON
);
769 rect
.bottom
= ( y
- GetSystemMetrics(SM_CYICON
) < rect
.top
)? rect
.bottom
: y
;
772 ysize
= rect
.bottom
/ rows
;
773 xsize
= rect
.right
/ columns
;
775 for (x
= i
= 0, c
= 1; c
<= columns
&& *pWnd
; c
++)
780 ysize
= rect
.bottom
/ rows
;
784 for (r
= 1; r
<= rows
&& *pWnd
; r
++, i
++)
786 SetWindowPos(*pWnd
, 0, x
, y
, xsize
, ysize
,
787 SWP_DRAWFRAME
| SWP_NOACTIVATE
| SWP_NOZORDER
);
794 HeapFree( GetProcessHeap(), 0, win_array
);
795 if (has_icons
) ArrangeIconicWindows( client
);
798 /* ----------------------- Frame window ---------------------------- */
801 /**********************************************************************
802 * MDI_AugmentFrameMenu
804 static BOOL
MDI_AugmentFrameMenu( HWND frame
, HWND hChild
)
806 HMENU menu
= GetMenu( frame
);
808 HBITMAP hSysMenuBitmap
= 0;
813 TRACE("frame %p,child %p\n",frame
,hChild
);
815 if( !menu
) return 0;
817 /* if the system buttons already exist do not add them again */
818 nItems
= GetMenuItemCount(menu
) - 1;
819 iId
= GetMenuItemID(menu
,nItems
) ;
820 if (iId
== SC_RESTORE
|| iId
== SC_CLOSE
)
823 /* create a copy of sysmenu popup and insert it into frame menu bar */
824 if (!(hSysPopup
= GetSystemMenu(hChild
, FALSE
)))
827 AppendMenuA(menu
,MF_HELP
| MF_BITMAP
,
828 SC_MINIMIZE
, (LPSTR
)(DWORD
)HBMMENU_MBAR_MINIMIZE
) ;
829 AppendMenuA(menu
,MF_HELP
| MF_BITMAP
,
830 SC_RESTORE
, (LPSTR
)(DWORD
)HBMMENU_MBAR_RESTORE
);
832 AppendMenuA(menu
,MF_HELP
| MF_BITMAP
,
833 SC_CLOSE
, (LPSTR
)(DWORD
)HBMMENU_MBAR_CLOSE
);
835 /* The system menu is replaced by the child icon */
836 hIcon
= (HICON
)GetClassLongW(hChild
, GCL_HICONSM
);
838 hIcon
= (HICON
)GetClassLongW(hChild
, GCL_HICON
);
840 hIcon
= LoadImageW(0, MAKEINTRESOURCEW(IDI_WINLOGO
), IMAGE_ICON
, 0, 0, LR_DEFAULTCOLOR
);
844 HBITMAP hBitmap
, hOldBitmap
;
846 HDC hdc
= GetDC(hChild
);
851 cx
= GetSystemMetrics(SM_CXSMICON
);
852 cy
= GetSystemMetrics(SM_CYSMICON
);
853 hMemDC
= CreateCompatibleDC(hdc
);
854 hBitmap
= CreateCompatibleBitmap(hdc
, cx
, cy
);
855 hOldBitmap
= SelectObject(hMemDC
, hBitmap
);
856 SetMapMode(hMemDC
, MM_TEXT
);
857 hBrush
= CreateSolidBrush(GetSysColor(COLOR_MENU
));
858 DrawIconEx(hMemDC
, 0, 0, hIcon
, cx
, cy
, 0, hBrush
, DI_NORMAL
);
859 SelectObject (hMemDC
, hOldBitmap
);
860 DeleteObject(hBrush
);
862 ReleaseDC(hChild
, hdc
);
863 hSysMenuBitmap
= hBitmap
;
867 if( !InsertMenuA(menu
,0,MF_BYPOSITION
| MF_BITMAP
| MF_POPUP
,
868 (UINT_PTR
)hSysPopup
, (LPSTR
)hSysMenuBitmap
))
870 TRACE("not inserted\n");
871 DestroyMenu(hSysPopup
);
875 EnableMenuItem(hSysPopup
, SC_SIZE
, MF_BYCOMMAND
| MF_GRAYED
);
876 EnableMenuItem(hSysPopup
, SC_MOVE
, MF_BYCOMMAND
| MF_GRAYED
);
877 EnableMenuItem(hSysPopup
, SC_MAXIMIZE
, MF_BYCOMMAND
| MF_GRAYED
);
878 SetMenuDefaultItem(hSysPopup
, SC_CLOSE
, FALSE
);
886 /**********************************************************************
887 * MDI_RestoreFrameMenu
889 static BOOL
MDI_RestoreFrameMenu( HWND frame
, HWND hChild
)
891 MENUITEMINFOW menuInfo
;
892 HMENU menu
= GetMenu( frame
);
893 INT nItems
= GetMenuItemCount(menu
) - 1;
894 UINT iId
= GetMenuItemID(menu
,nItems
) ;
896 TRACE("frame %p,child %p,nIt=%d,iId=%d\n",frame
,hChild
,nItems
,iId
);
898 /* if there is no system buttons then nothing to do */
899 if(!(iId
== SC_RESTORE
|| iId
== SC_CLOSE
) )
903 * Remove the system menu, If that menu is the icon of the window
904 * as it is in win95, we have to delete the bitmap.
906 memset(&menuInfo
, 0, sizeof(menuInfo
));
907 menuInfo
.cbSize
= sizeof(menuInfo
);
908 menuInfo
.fMask
= MIIM_DATA
| MIIM_TYPE
;
910 GetMenuItemInfoW(menu
,
915 RemoveMenu(menu
,0,MF_BYPOSITION
);
917 if ( (menuInfo
.fType
& MFT_BITMAP
) &&
918 (LOWORD(menuInfo
.dwTypeData
)!=0) &&
919 (LOWORD(menuInfo
.dwTypeData
)!=HBITMAP_16(hBmpClose
)) )
921 DeleteObject(HBITMAP_32(LOWORD(menuInfo
.dwTypeData
)));
925 DeleteMenu(menu
,GetMenuItemCount(menu
) - 1,MF_BYPOSITION
);
927 DeleteMenu(menu
,GetMenuItemCount(menu
) - 1,MF_BYPOSITION
);
929 DeleteMenu(menu
,GetMenuItemCount(menu
) - 1,MF_BYPOSITION
);
937 /**********************************************************************
938 * MDI_UpdateFrameText
940 * used when child window is maximized/restored
942 * Note: lpTitle can be NULL
944 static void MDI_UpdateFrameText( HWND frame
, HWND hClient
,
945 BOOL repaint
, LPCWSTR lpTitle
)
947 WCHAR lpBuffer
[MDI_MAXTITLELENGTH
+1];
948 MDICLIENTINFO
*ci
= get_client_info( hClient
);
950 TRACE("repaint %i, frameText %s\n", repaint
, debugstr_w(lpTitle
));
954 if (!lpTitle
&& !ci
->frameTitle
) /* first time around, get title from the frame window */
956 GetWindowTextW( frame
, lpBuffer
, sizeof(lpBuffer
)/sizeof(WCHAR
) );
960 /* store new "default" title if lpTitle is not NULL */
963 if (ci
->frameTitle
) HeapFree( GetProcessHeap(), 0, ci
->frameTitle
);
964 if ((ci
->frameTitle
= HeapAlloc( GetProcessHeap(), 0, (strlenW(lpTitle
)+1)*sizeof(WCHAR
))))
965 strcpyW( ci
->frameTitle
, lpTitle
);
970 if (IsZoomed(ci
->hwndActiveChild
) && IsWindowVisible(ci
->hwndActiveChild
))
972 /* combine frame title and child title if possible */
974 static const WCHAR lpBracket
[] = {' ','-',' ','[',0};
975 static const WCHAR lpBracket2
[] = {']',0};
976 int i_frame_text_length
= strlenW(ci
->frameTitle
);
978 lstrcpynW( lpBuffer
, ci
->frameTitle
, MDI_MAXTITLELENGTH
);
980 if( i_frame_text_length
+ 6 < MDI_MAXTITLELENGTH
)
982 strcatW( lpBuffer
, lpBracket
);
983 if (GetWindowTextW( ci
->hwndActiveChild
, lpBuffer
+ i_frame_text_length
+ 4,
984 MDI_MAXTITLELENGTH
- i_frame_text_length
- 5 ))
985 strcatW( lpBuffer
, lpBracket2
);
987 lpBuffer
[i_frame_text_length
] = 0; /* remove bracket */
992 lstrcpynW(lpBuffer
, ci
->frameTitle
, MDI_MAXTITLELENGTH
+1 );
998 DefWindowProcW( frame
, WM_SETTEXT
, 0, (LPARAM
)lpBuffer
);
1000 SetWindowPos( frame
, 0,0,0,0,0, SWP_FRAMECHANGED
|
1001 SWP_NOSIZE
| SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
);
1005 /* ----------------------------- Interface ---------------------------- */
1008 /**********************************************************************
1009 * MDIClientWndProc_common
1011 static LRESULT
MDIClientWndProc_common( HWND hwnd
, UINT message
,
1012 WPARAM wParam
, LPARAM lParam
, BOOL unicode
)
1016 TRACE("%p %04x %08x %08lx\n", hwnd
, message
, wParam
, lParam
);
1018 if (!(ci
= get_client_info( hwnd
))) return 0;
1024 /* Since we are using only cs->lpCreateParams, we can safely
1025 * cast to LPCREATESTRUCTA here */
1026 LPCREATESTRUCTA cs
= (LPCREATESTRUCTA
)lParam
;
1027 WND
*wndPtr
= WIN_GetPtr( hwnd
);
1029 wndPtr
->flags
|= WIN_ISMDICLIENT
;
1031 /* Translation layer doesn't know what's in the cs->lpCreateParams
1032 * so we have to keep track of what environment we're in. */
1034 if( wndPtr
->flags
& WIN_ISWIN32
)
1036 LPCLIENTCREATESTRUCT ccs
= cs
->lpCreateParams
;
1037 ci
->hWindowMenu
= ccs
->hWindowMenu
;
1038 ci
->idFirstChild
= ccs
->idFirstChild
;
1042 LPCLIENTCREATESTRUCT16 ccs
= MapSL((SEGPTR
)cs
->lpCreateParams
);
1043 ci
->hWindowMenu
= HMENU_32(ccs
->hWindowMenu
);
1044 ci
->idFirstChild
= ccs
->idFirstChild
;
1046 WIN_ReleasePtr( wndPtr
);
1049 ci
->nActiveChildren
= 0;
1050 ci
->nTotalCreated
= 0;
1051 ci
->frameTitle
= NULL
;
1053 ci
->hFrameMenu
= GetMenu(cs
->hwndParent
);
1055 if (!hBmpClose
) hBmpClose
= CreateMDIMenuBitmap();
1057 TRACE("Client created - hwnd = %p, idFirst = %u\n", hwnd
, ci
->idFirstChild
);
1063 if( IsZoomed(ci
->hwndActiveChild
) )
1064 MDI_RestoreFrameMenu(GetParent(hwnd
), ci
->hwndActiveChild
);
1066 ci
->nActiveChildren
= 0;
1067 MDI_RefreshMenu(ci
);
1069 if (ci
->child
) HeapFree( GetProcessHeap(), 0, ci
->child
);
1070 if (ci
->frameTitle
) HeapFree( GetProcessHeap(), 0, ci
->frameTitle
);
1075 case WM_MDIACTIVATE
:
1079 hwndActive
= ci
->hwndActiveChild
;
1081 if( hwndActive
!= (HWND
)wParam
)
1082 SetWindowPos((HWND
)wParam
, 0,0,0,0,0, SWP_NOSIZE
| SWP_NOMOVE
);
1087 return MDICascade(hwnd
, ci
);
1094 MDICREATESTRUCTW
*csW
= (MDICREATESTRUCTW
*)lParam
;
1095 return (LRESULT
)CreateWindowExW(WS_EX_MDICHILD
, csW
->szClass
,
1096 csW
->szTitle
, csW
->style
,
1097 csW
->x
, csW
->y
, csW
->cx
, csW
->cy
,
1098 hwnd
, 0, csW
->hOwner
,
1099 (LPVOID
)csW
->lParam
);
1103 MDICREATESTRUCTA
*csA
= (MDICREATESTRUCTA
*)lParam
;
1104 return (LRESULT
)CreateWindowExA(WS_EX_MDICHILD
, csA
->szClass
,
1105 csA
->szTitle
, csA
->style
,
1106 csA
->x
, csA
->y
, csA
->cx
, csA
->cy
,
1107 hwnd
, 0, csA
->hOwner
,
1108 (LPVOID
)csA
->lParam
);
1114 return MDIDestroyChild( hwnd
, ci
, WIN_GetFullHandle( (HWND
)wParam
), TRUE
);
1116 case WM_MDIGETACTIVE
:
1117 if (lParam
) *(BOOL
*)lParam
= IsZoomed(ci
->hwndActiveChild
);
1118 return (LRESULT
)ci
->hwndActiveChild
;
1120 case WM_MDIICONARRANGE
:
1121 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
1122 ArrangeIconicWindows( hwnd
);
1123 ci
->sbRecalc
= SB_BOTH
+1;
1124 SendMessageW( hwnd
, WM_MDICALCCHILDSCROLL
, 0, 0 );
1127 case WM_MDIMAXIMIZE
:
1128 ShowWindow( (HWND
)wParam
, SW_MAXIMIZE
);
1131 case WM_MDINEXT
: /* lParam != 0 means previous window */
1132 MDI_SwitchActiveChild( hwnd
, WIN_GetFullHandle( (HWND
)wParam
), !lParam
);
1136 SendMessageW( (HWND
)wParam
, WM_SYSCOMMAND
, SC_RESTORE
, 0);
1140 return MDISetMenu( hwnd
, (HMENU
)wParam
, (HMENU
)lParam
);
1142 case WM_MDIREFRESHMENU
:
1143 return MDI_RefreshMenu( ci
);
1146 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
1147 ShowScrollBar( hwnd
, SB_BOTH
, FALSE
);
1148 MDITile( hwnd
, ci
, wParam
);
1149 ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1154 ci
->mdiFlags
|= MDIF_NEEDUPDATE
;
1155 ScrollChildren( hwnd
, message
, wParam
, lParam
);
1156 ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1160 if (ci
->hwndActiveChild
&& !IsIconic( ci
->hwndActiveChild
))
1161 SetFocus( ci
->hwndActiveChild
);
1165 if( ci
->hwndActiveChild
)
1166 SendMessageW(ci
->hwndActiveChild
, message
, wParam
, lParam
);
1169 case WM_PARENTNOTIFY
:
1170 switch (LOWORD(wParam
))
1173 if (GetWindowLongW((HWND
)lParam
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1175 ci
->nTotalCreated
++;
1176 ci
->nActiveChildren
++;
1179 ci
->child
= HeapAlloc(GetProcessHeap(), 0, sizeof(HWND
));
1181 ci
->child
= HeapReAlloc(GetProcessHeap(), 0, ci
->child
, sizeof(HWND
) * ci
->nActiveChildren
);
1183 ci
->child
[ci
->nActiveChildren
- 1] = (HWND
)lParam
;
1187 case WM_LBUTTONDOWN
:
1191 pt
.x
= (short)LOWORD(lParam
);
1192 pt
.y
= (short)HIWORD(lParam
);
1193 child
= ChildWindowFromPoint(hwnd
, pt
);
1195 TRACE("notification from %p (%li,%li)\n",child
,pt
.x
,pt
.y
);
1197 if( child
&& child
!= hwnd
&& child
!= ci
->hwndActiveChild
)
1198 SetWindowPos(child
, 0,0,0,0,0, SWP_NOSIZE
| SWP_NOMOVE
);
1205 if( IsWindow(ci
->hwndActiveChild
) && IsZoomed(ci
->hwndActiveChild
) &&
1206 IsWindowVisible(ci
->hwndActiveChild
) )
1212 rect
.right
= LOWORD(lParam
);
1213 rect
.bottom
= HIWORD(lParam
);
1215 AdjustWindowRectEx(&rect
, GetWindowLongA(ci
->hwndActiveChild
, GWL_STYLE
),
1216 0, GetWindowLongA(ci
->hwndActiveChild
, GWL_EXSTYLE
) );
1217 MoveWindow(ci
->hwndActiveChild
, rect
.left
, rect
.top
,
1218 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
, 1);
1221 MDI_PostUpdate(hwnd
, ci
, SB_BOTH
+1);
1225 case WM_MDICALCCHILDSCROLL
:
1226 if( (ci
->mdiFlags
& MDIF_NEEDUPDATE
) && ci
->sbRecalc
)
1228 CalcChildScroll(hwnd
, ci
->sbRecalc
-1);
1230 ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1234 return unicode
? DefWindowProcW( hwnd
, message
, wParam
, lParam
) :
1235 DefWindowProcA( hwnd
, message
, wParam
, lParam
);
1238 /***********************************************************************
1241 static LRESULT WINAPI
MDIClientWndProcA( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1243 if (!IsWindow(hwnd
)) return 0;
1244 return MDIClientWndProc_common( hwnd
, message
, wParam
, lParam
, FALSE
);
1247 /***********************************************************************
1250 static LRESULT WINAPI
MDIClientWndProcW( HWND hwnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1252 if (!IsWindow(hwnd
)) return 0;
1253 return MDIClientWndProc_common( hwnd
, message
, wParam
, lParam
, TRUE
);
1256 /***********************************************************************
1257 * DefFrameProcA (USER32.@)
1259 LRESULT WINAPI
DefFrameProcA( HWND hwnd
, HWND hwndMDIClient
,
1260 UINT message
, WPARAM wParam
, LPARAM lParam
)
1268 DWORD len
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, NULL
, 0 );
1269 LPWSTR text
= HeapAlloc( GetProcessHeap(), 0, len
* sizeof(WCHAR
) );
1270 MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, text
, len
);
1271 MDI_UpdateFrameText(hwnd
, hwndMDIClient
, TRUE
, text
);
1272 HeapFree( GetProcessHeap(), 0, text
);
1274 return 1; /* success. FIXME: check text length */
1281 return DefFrameProcW( hwnd
, hwndMDIClient
, message
, wParam
, lParam
);
1284 return DefWindowProcA(hwnd
, message
, wParam
, lParam
);
1288 /***********************************************************************
1289 * DefFrameProcW (USER32.@)
1291 LRESULT WINAPI
DefFrameProcW( HWND hwnd
, HWND hwndMDIClient
,
1292 UINT message
, WPARAM wParam
, LPARAM lParam
)
1294 MDICLIENTINFO
*ci
= get_client_info( hwndMDIClient
);
1296 TRACE("%p %p %04x %08x %08lx\n", hwnd
, hwndMDIClient
, message
, wParam
, lParam
);
1304 WORD id
= LOWORD(wParam
);
1305 /* check for possible syscommands for maximized MDI child */
1306 if (id
< ci
->idFirstChild
|| id
>= ci
->idFirstChild
+ ci
->nActiveChildren
)
1308 if( (id
- 0xf000) & 0xf00f ) break;
1309 if( !IsZoomed(ci
->hwndActiveChild
) ) break;
1320 return SendMessageW( ci
->hwndActiveChild
, WM_SYSCOMMAND
,
1327 if (id
- ci
->idFirstChild
== MDI_MOREWINDOWSLIMIT
)
1328 /* User chose "More Windows..." */
1329 childHwnd
= MDI_MoreWindowsDialog(hwndMDIClient
);
1331 /* User chose one of the windows listed in the "Windows" menu */
1332 childHwnd
= MDI_GetChildByID(hwndMDIClient
, id
, ci
);
1335 SendMessageW( hwndMDIClient
, WM_MDIACTIVATE
, (WPARAM
)childHwnd
, 0 );
1341 SendMessageW(hwndMDIClient
, message
, wParam
, lParam
);
1345 MDI_UpdateFrameText(hwnd
, hwndMDIClient
, TRUE
, (LPWSTR
)lParam
);
1346 return 1; /* success. FIXME: check text length */
1349 SetFocus(hwndMDIClient
);
1353 MoveWindow(hwndMDIClient
, 0, 0, LOWORD(lParam
), HIWORD(lParam
), TRUE
);
1358 MDINEXTMENU
*next_menu
= (MDINEXTMENU
*)lParam
;
1360 if (!IsIconic(hwnd
) && ci
->hwndActiveChild
&& !IsZoomed(ci
->hwndActiveChild
))
1362 /* control menu is between the frame system menu and
1363 * the first entry of menu bar */
1364 WND
*wndPtr
= WIN_GetPtr(hwnd
);
1366 if( (wParam
== VK_LEFT
&& GetMenu(hwnd
) == next_menu
->hmenuIn
) ||
1367 (wParam
== VK_RIGHT
&& GetSubMenu(wndPtr
->hSysMenu
, 0) == next_menu
->hmenuIn
) )
1369 WIN_ReleasePtr(wndPtr
);
1370 wndPtr
= WIN_GetPtr(ci
->hwndActiveChild
);
1371 next_menu
->hmenuNext
= GetSubMenu(wndPtr
->hSysMenu
, 0);
1372 next_menu
->hwndNext
= ci
->hwndActiveChild
;
1374 WIN_ReleasePtr(wndPtr
);
1381 return DefWindowProcW( hwnd
, message
, wParam
, lParam
);
1384 /***********************************************************************
1385 * DefMDIChildProcA (USER32.@)
1387 LRESULT WINAPI
DefMDIChildProcA( HWND hwnd
, UINT message
,
1388 WPARAM wParam
, LPARAM lParam
)
1390 HWND client
= GetParent(hwnd
);
1391 MDICLIENTINFO
*ci
= get_client_info( client
);
1393 TRACE("%p %04x %08x %08lx\n", hwnd
, message
, wParam
, lParam
);
1395 hwnd
= WIN_GetFullHandle( hwnd
);
1396 if (!ci
) return DefWindowProcA( hwnd
, message
, wParam
, lParam
);
1401 DefWindowProcA(hwnd
, message
, wParam
, lParam
);
1402 if( ci
->hwndActiveChild
== hwnd
&& IsZoomed(ci
->hwndActiveChild
) )
1403 MDI_UpdateFrameText( GetParent(client
), client
, TRUE
, NULL
);
1404 return 1; /* success. FIXME: check text length */
1406 case WM_GETMINMAXINFO
:
1410 case WM_CHILDACTIVATE
:
1416 return DefMDIChildProcW( hwnd
, message
, wParam
, lParam
);
1418 return DefWindowProcA(hwnd
, message
, wParam
, lParam
);
1422 /***********************************************************************
1423 * DefMDIChildProcW (USER32.@)
1425 LRESULT WINAPI
DefMDIChildProcW( HWND hwnd
, UINT message
,
1426 WPARAM wParam
, LPARAM lParam
)
1428 HWND client
= GetParent(hwnd
);
1429 MDICLIENTINFO
*ci
= get_client_info( client
);
1431 TRACE("%p %04x %08x %08lx\n", hwnd
, message
, wParam
, lParam
);
1433 hwnd
= WIN_GetFullHandle( hwnd
);
1434 if (!ci
) return DefWindowProcW( hwnd
, message
, wParam
, lParam
);
1439 DefWindowProcW(hwnd
, message
, wParam
, lParam
);
1440 if( ci
->hwndActiveChild
== hwnd
&& IsZoomed(ci
->hwndActiveChild
) )
1441 MDI_UpdateFrameText( GetParent(client
), client
, TRUE
, NULL
);
1442 return 1; /* success. FIXME: check text length */
1444 case WM_GETMINMAXINFO
:
1445 MDI_ChildGetMinMaxInfo( client
, hwnd
, (MINMAXINFO
*)lParam
);
1449 return 0x00010000; /* MDI children don't have menu bars */
1452 SendMessageW( client
, WM_MDIDESTROY
, (WPARAM
)hwnd
, 0 );
1456 if (ci
->hwndActiveChild
!= hwnd
) MDI_ChildActivate( client
, hwnd
);
1459 case WM_CHILDACTIVATE
:
1460 MDI_ChildActivate( client
, hwnd
);
1467 if( ci
->hwndActiveChild
== hwnd
&& IsZoomed(ci
->hwndActiveChild
))
1472 SetWindowLongW( hwnd
, GWL_STYLE
,
1473 GetWindowLongW( hwnd
, GWL_STYLE
) | WS_SYSMENU
);
1476 if (ci
->hwndActiveChild
== hwnd
&& IsZoomed(ci
->hwndActiveChild
))
1477 return SendMessageW( GetParent(client
), message
, wParam
, lParam
);
1478 SetWindowLongW( hwnd
, GWL_STYLE
,
1479 GetWindowLongW( hwnd
, GWL_STYLE
) & ~WS_SYSMENU
);
1482 SendMessageW( client
, WM_MDINEXT
, 0, 0);
1485 SendMessageW( client
, WM_MDINEXT
, 0, 1);
1491 if (IsZoomed(ci
->hwndActiveChild
)) ci
->mdiFlags
&= ~MDIF_NEEDUPDATE
;
1492 else MDI_PostUpdate(client
, ci
, SB_BOTH
+1);
1496 if (wParam
== SIZE_MAXIMIZED
&& !IsWindowVisible(hwnd
))
1497 wParam
= SIZE_RESTORED
;
1499 if( hwnd
== ci
->hwndActiveChild
&& wParam
!= SIZE_MAXIMIZED
)
1501 MDI_RestoreFrameMenu( GetParent(client
), hwnd
);
1502 MDI_UpdateFrameText( GetParent(client
), client
, TRUE
, NULL
);
1505 if( wParam
== SIZE_MAXIMIZED
)
1507 TRACE("maximizing child %p\n", hwnd
);
1509 MDI_AugmentFrameMenu( GetParent(client
), hwnd
);
1510 MDI_UpdateFrameText( GetParent(client
), client
, TRUE
, NULL
);
1513 if( wParam
== SIZE_MINIMIZED
)
1515 HWND switchTo
= MDI_GetWindow(ci
, hwnd
, TRUE
, WS_MINIMIZE
);
1517 if (switchTo
) SendMessageW( switchTo
, WM_CHILDACTIVATE
, 0, 0);
1519 MDI_PostUpdate(client
, ci
, SB_BOTH
+1);
1524 MDINEXTMENU
*next_menu
= (MDINEXTMENU
*)lParam
;
1525 HWND parent
= GetParent(client
);
1527 if( wParam
== VK_LEFT
) /* switch to frame system menu */
1529 WND
*wndPtr
= WIN_GetPtr( parent
);
1530 next_menu
->hmenuNext
= GetSubMenu( wndPtr
->hSysMenu
, 0 );
1531 WIN_ReleasePtr( wndPtr
);
1533 if( wParam
== VK_RIGHT
) /* to frame menu bar */
1535 next_menu
->hmenuNext
= GetMenu(parent
);
1537 next_menu
->hwndNext
= parent
;
1544 SendMessageW( hwnd
, WM_SYSCOMMAND
, (WPARAM
)SC_KEYMENU
, (DWORD
)VK_SPACE
);
1549 return DefWindowProcW(hwnd
, message
, wParam
, lParam
);
1552 /**********************************************************************
1553 * CreateMDIWindowA (USER32.@) Creates a MDI child
1556 * Success: Handle to created window
1559 HWND WINAPI
CreateMDIWindowA(
1560 LPCSTR lpClassName
, /* [in] Pointer to registered child class name */
1561 LPCSTR lpWindowName
, /* [in] Pointer to window name */
1562 DWORD dwStyle
, /* [in] Window style */
1563 INT X
, /* [in] Horizontal position of window */
1564 INT Y
, /* [in] Vertical position of window */
1565 INT nWidth
, /* [in] Width of window */
1566 INT nHeight
, /* [in] Height of window */
1567 HWND hWndParent
, /* [in] Handle to parent window */
1568 HINSTANCE hInstance
, /* [in] Handle to application instance */
1569 LPARAM lParam
) /* [in] Application-defined value */
1571 TRACE("(%s,%s,%08lx,%d,%d,%d,%d,%p,%p,%08lx)\n",
1572 debugstr_a(lpClassName
),debugstr_a(lpWindowName
),dwStyle
,X
,Y
,
1573 nWidth
,nHeight
,hWndParent
,hInstance
,lParam
);
1575 return CreateWindowExA(WS_EX_MDICHILD
, lpClassName
, lpWindowName
,
1576 dwStyle
, X
, Y
, nWidth
, nHeight
, hWndParent
,
1577 0, hInstance
, (LPVOID
)lParam
);
1580 /***********************************************************************
1581 * CreateMDIWindowW (USER32.@) Creates a MDI child
1584 * Success: Handle to created window
1587 HWND WINAPI
CreateMDIWindowW(
1588 LPCWSTR lpClassName
, /* [in] Pointer to registered child class name */
1589 LPCWSTR lpWindowName
, /* [in] Pointer to window name */
1590 DWORD dwStyle
, /* [in] Window style */
1591 INT X
, /* [in] Horizontal position of window */
1592 INT Y
, /* [in] Vertical position of window */
1593 INT nWidth
, /* [in] Width of window */
1594 INT nHeight
, /* [in] Height of window */
1595 HWND hWndParent
, /* [in] Handle to parent window */
1596 HINSTANCE hInstance
, /* [in] Handle to application instance */
1597 LPARAM lParam
) /* [in] Application-defined value */
1599 TRACE("(%s,%s,%08lx,%d,%d,%d,%d,%p,%p,%08lx)\n",
1600 debugstr_w(lpClassName
), debugstr_w(lpWindowName
), dwStyle
, X
, Y
,
1601 nWidth
, nHeight
, hWndParent
, hInstance
, lParam
);
1603 return CreateWindowExW(WS_EX_MDICHILD
, lpClassName
, lpWindowName
,
1604 dwStyle
, X
, Y
, nWidth
, nHeight
, hWndParent
,
1605 0, hInstance
, (LPVOID
)lParam
);
1608 /**********************************************************************
1609 * TranslateMDISysAccel (USER32.@)
1611 BOOL WINAPI
TranslateMDISysAccel( HWND hwndClient
, LPMSG msg
)
1613 if (msg
->message
== WM_KEYDOWN
|| msg
->message
== WM_SYSKEYDOWN
)
1615 MDICLIENTINFO
*ci
= get_client_info( hwndClient
);
1618 if (!ci
|| !IsWindowEnabled(ci
->hwndActiveChild
)) return 0;
1620 /* translate if the Ctrl key is down and Alt not. */
1622 if( (GetKeyState(VK_CONTROL
) & 0x8000) && !(GetKeyState(VK_MENU
) & 0x8000))
1624 switch( msg
->wParam
)
1628 wParam
= ( GetKeyState(VK_SHIFT
) & 0x8000 ) ? SC_NEXTWINDOW
: SC_PREVWINDOW
;
1637 TRACE("wParam = %04x\n", wParam
);
1638 SendMessageW(ci
->hwndActiveChild
, WM_SYSCOMMAND
, wParam
, (LPARAM
)msg
->wParam
);
1642 return 0; /* failure */
1645 /***********************************************************************
1646 * CalcChildScroll (USER32.@)
1648 void WINAPI
CalcChildScroll( HWND hwnd
, INT scroll
)
1651 RECT childRect
, clientRect
;
1654 GetClientRect( hwnd
, &clientRect
);
1655 SetRectEmpty( &childRect
);
1657 if ((list
= WIN_ListChildren( hwnd
)))
1660 for (i
= 0; list
[i
]; i
++)
1662 DWORD style
= GetWindowLongW( list
[i
], GWL_STYLE
);
1663 if (style
& WS_MAXIMIZE
)
1665 HeapFree( GetProcessHeap(), 0, list
);
1666 ShowScrollBar( hwnd
, SB_BOTH
, FALSE
);
1669 if (style
& WS_VISIBLE
)
1671 WND
*pWnd
= WIN_FindWndPtr( list
[i
] );
1672 UnionRect( &childRect
, &pWnd
->rectWindow
, &childRect
);
1673 WIN_ReleaseWndPtr( pWnd
);
1676 HeapFree( GetProcessHeap(), 0, list
);
1678 UnionRect( &childRect
, &clientRect
, &childRect
);
1680 /* set common info values */
1681 info
.cbSize
= sizeof(info
);
1682 info
.fMask
= SIF_POS
| SIF_RANGE
;
1684 /* set the specific */
1689 info
.nMin
= childRect
.left
;
1690 info
.nMax
= childRect
.right
- clientRect
.right
;
1691 info
.nPos
= clientRect
.left
- childRect
.left
;
1692 SetScrollInfo(hwnd
, scroll
, &info
, TRUE
);
1693 if (scroll
== SB_HORZ
) break;
1696 info
.nMin
= childRect
.top
;
1697 info
.nMax
= childRect
.bottom
- clientRect
.bottom
;
1698 info
.nPos
= clientRect
.top
- childRect
.top
;
1699 SetScrollInfo(hwnd
, scroll
, &info
, TRUE
);
1705 /***********************************************************************
1706 * ScrollChildren (USER32.@)
1708 void WINAPI
ScrollChildren(HWND hWnd
, UINT uMsg
, WPARAM wParam
,
1712 INT curPos
, length
, minPos
, maxPos
, shift
;
1715 GetClientRect( hWnd
, &rect
);
1720 GetScrollRange(hWnd
,SB_HORZ
,&minPos
,&maxPos
);
1721 curPos
= GetScrollPos(hWnd
,SB_HORZ
);
1722 length
= (rect
.right
- rect
.left
) / 2;
1723 shift
= GetSystemMetrics(SM_CYHSCROLL
);
1726 GetScrollRange(hWnd
,SB_VERT
,&minPos
,&maxPos
);
1727 curPos
= GetScrollPos(hWnd
,SB_VERT
);
1728 length
= (rect
.bottom
- rect
.top
) / 2;
1729 shift
= GetSystemMetrics(SM_CXVSCROLL
);
1738 newPos
= curPos
- shift
;
1741 newPos
= curPos
+ shift
;
1744 newPos
= curPos
- length
;
1747 newPos
= curPos
+ length
;
1750 case SB_THUMBPOSITION
:
1751 newPos
= LOWORD(lParam
);
1764 CalcChildScroll(hWnd
,(uMsg
== WM_VSCROLL
)?SB_VERT
:SB_HORZ
);
1768 if( newPos
> maxPos
)
1771 if( newPos
< minPos
)
1774 SetScrollPos(hWnd
, (uMsg
== WM_VSCROLL
)?SB_VERT
:SB_HORZ
, newPos
, TRUE
);
1776 if( uMsg
== WM_VSCROLL
)
1777 ScrollWindowEx(hWnd
,0 ,curPos
- newPos
, NULL
, NULL
, 0, NULL
,
1778 SW_INVALIDATE
| SW_ERASE
| SW_SCROLLCHILDREN
);
1780 ScrollWindowEx(hWnd
,curPos
- newPos
, 0, NULL
, NULL
, 0, NULL
,
1781 SW_INVALIDATE
| SW_ERASE
| SW_SCROLLCHILDREN
);
1785 /******************************************************************************
1786 * CascadeWindows (USER32.@) Cascades MDI child windows
1789 * Success: Number of cascaded windows.
1793 CascadeWindows (HWND hwndParent
, UINT wFlags
, const LPRECT lpRect
,
1794 UINT cKids
, const HWND
*lpKids
)
1796 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent
, wFlags
, cKids
);
1801 /******************************************************************************
1802 * TileWindows (USER32.@) Tiles MDI child windows
1805 * Success: Number of tiled windows.
1809 TileWindows (HWND hwndParent
, UINT wFlags
, const LPRECT lpRect
,
1810 UINT cKids
, const HWND
*lpKids
)
1812 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent
, wFlags
, cKids
);
1816 /************************************************************************
1817 * "More Windows..." functionality
1820 /* MDI_MoreWindowsDlgProc
1822 * This function will process the messages sent to the "More Windows..."
1824 * Return values: 0 = cancel pressed
1825 * HWND = ok pressed or double-click in the list...
1829 static INT_PTR WINAPI
MDI_MoreWindowsDlgProc (HWND hDlg
, UINT iMsg
, WPARAM wParam
, LPARAM lParam
)
1838 MDICLIENTINFO
*ci
= get_client_info( (HWND
)lParam
);
1839 HWND hListBox
= GetDlgItem(hDlg
, MDI_IDC_LISTBOX
);
1841 for (i
= 0; i
< ci
->nActiveChildren
; i
++)
1843 WCHAR buffer
[MDI_MAXTITLELENGTH
];
1845 if (!InternalGetWindowText( ci
->child
[i
], buffer
, sizeof(buffer
)/sizeof(WCHAR
) ))
1847 SendMessageW(hListBox
, LB_ADDSTRING
, 0, (LPARAM
)buffer
);
1848 SendMessageW(hListBox
, LB_SETITEMDATA
, i
, (LPARAM
)ci
->child
[i
] );
1849 length
= strlenW(buffer
); /* FIXME: should use GetTextExtentPoint */
1850 if (length
> widest
)
1853 /* Make sure the horizontal scrollbar scrolls ok */
1854 SendMessageW(hListBox
, LB_SETHORIZONTALEXTENT
, widest
* 6, 0);
1856 /* Set the current selection */
1857 SendMessageW(hListBox
, LB_SETCURSEL
, MDI_MOREWINDOWSLIMIT
, 0);
1862 switch (LOWORD(wParam
))
1865 if (HIWORD(wParam
) != LBN_DBLCLK
) break;
1869 /* windows are sorted by menu ID, so we must return the
1870 * window associated to the given id
1872 HWND hListBox
= GetDlgItem(hDlg
, MDI_IDC_LISTBOX
);
1873 UINT index
= SendMessageW(hListBox
, LB_GETCURSEL
, 0, 0);
1874 LRESULT res
= SendMessageW(hListBox
, LB_GETITEMDATA
, index
, 0);
1875 EndDialog(hDlg
, res
);
1889 * MDI_MoreWindowsDialog
1891 * Prompts the user with a listbox containing the opened
1892 * documents. The user can then choose a windows and click
1893 * on OK to set the current window to the one selected, or
1894 * CANCEL to cancel. The function returns a handle to the
1898 static HWND
MDI_MoreWindowsDialog(HWND hwnd
)
1904 hRes
= FindResourceA(user32_module
, "MDI_MOREWINDOWS", (LPSTR
)RT_DIALOG
);
1909 hDlgTmpl
= LoadResource(user32_module
, hRes
);
1914 template = LockResource( hDlgTmpl
);
1919 return (HWND
) DialogBoxIndirectParamA(user32_module
,
1920 (LPDLGTEMPLATEA
) template,
1921 hwnd
, MDI_MoreWindowsDlgProc
, (LPARAM
) hwnd
);