Add better NULL checks to lstrcmp[i](A/W) functions.
[wine/multimedia.git] / windows / mdi.c
blob76e5dd63ba32f9e9f394c3e4bbec30059677343e
1 /* MDI.C
3 * Copyright 1994, Bob Amstadt
4 * 1995,1996 Alex Korobka
6 * This file contains routines to support MDI (Multiple Document
7 * Interface) features .
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 * Notes: Fairly complete implementation.
24 * Also, Excel and WinWord do _not_ use MDI so if you're trying
25 * to fix them look elsewhere.
27 * Notes on how the "More Windows..." is implemented:
29 * When we have more than 9 opened windows, a "More Windows..."
30 * option appears in the "Windows" menu. Each child window has
31 * a WND* associated with it, accesible via the children list of
32 * the parent window. This WND* has a wIDmenu member, which reflects
33 * the position of the child in the window list. For example, with
34 * 9 child windows, we could have the following pattern:
38 * Name of the child window pWndChild->wIDmenu
39 * Doc1 5000
40 * Doc2 5001
41 * Doc3 5002
42 * Doc4 5003
43 * Doc5 5004
44 * Doc6 5005
45 * Doc7 5006
46 * Doc8 5007
47 * Doc9 5008
50 * The "Windows" menu, as the "More windows..." dialog, are constructed
51 * in this order. If we add a child, we would have the following list:
54 * Name of the child window pWndChild->wIDmenu
55 * Doc1 5000
56 * Doc2 5001
57 * Doc3 5002
58 * Doc4 5003
59 * Doc5 5004
60 * Doc6 5005
61 * Doc7 5006
62 * Doc8 5007
63 * Doc9 5008
64 * Doc10 5009
66 * But only 5000 to 5008 would be displayed in the "Windows" menu. We want
67 * the last created child to be in the menu, so we swap the last child with
68 * the 9th... Doc9 will be accessible via the "More Windows..." option.
70 * Doc1 5000
71 * Doc2 5001
72 * Doc3 5002
73 * Doc4 5003
74 * Doc5 5004
75 * Doc6 5005
76 * Doc7 5006
77 * Doc8 5007
78 * Doc9 5009
79 * Doc10 5008
83 #include <stdlib.h>
84 #include <stdarg.h>
85 #include <stdio.h>
86 #include <string.h>
87 #include <math.h>
89 #include "windef.h"
90 #include "winbase.h"
91 #include "wingdi.h"
92 #include "winuser.h"
93 #include "wownt32.h"
94 #include "wine/unicode.h"
95 #include "win.h"
96 #include "nonclient.h"
97 #include "controls.h"
98 #include "user.h"
99 #include "struct32.h"
100 #include "wine/debug.h"
101 #include "dlgs.h"
103 WINE_DEFAULT_DEBUG_CHANNEL(mdi);
105 #define MDI_MAXTITLELENGTH 0xa1
107 #define WM_MDICALCCHILDSCROLL 0x10ac /* this is exactly what Windows uses */
109 /* "More Windows..." definitions */
110 #define MDI_MOREWINDOWSLIMIT 9 /* after this number of windows, a "More Windows..."
111 option will appear under the Windows menu */
112 #define MDI_IDC_LISTBOX 100
113 #define IDS_MDI_MOREWINDOWS 13
115 #define MDIF_NEEDUPDATE 0x0001
117 typedef struct
119 UINT nActiveChildren;
120 HWND hwndActiveChild;
121 HWND *child; /* array of tracked children */
122 HMENU hFrameMenu;
123 HMENU hWindowMenu;
124 UINT idFirstChild;
125 LPWSTR frameTitle;
126 UINT nTotalCreated;
127 UINT mdiFlags;
128 UINT sbRecalc; /* SB_xxx flags for scrollbar fixup */
129 } MDICLIENTINFO;
131 static HBITMAP hBmpClose = 0;
133 /* ----------------- declarations ----------------- */
134 static void MDI_UpdateFrameText( HWND, HWND, 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 ----------
146 * MDI_GetChildByID
148 static HWND MDI_GetChildByID(HWND hwnd, UINT id, MDICLIENTINFO *ci)
150 int i;
152 for (i = 0; ci->nActiveChildren; i++)
154 if (GetWindowLongW( ci->child[i], GWL_ID ) == id)
155 return ci->child[i];
157 return 0;
160 static void MDI_PostUpdate(HWND hwnd, MDICLIENTINFO* ci, WORD recalc)
162 if( !(ci->mdiFlags & MDIF_NEEDUPDATE) )
164 ci->mdiFlags |= MDIF_NEEDUPDATE;
165 PostMessageA( hwnd, WM_MDICALCCHILDSCROLL, 0, 0);
167 ci->sbRecalc = recalc;
171 /*********************************************************************
172 * MDIClient class descriptor
174 const struct builtin_class_descr MDICLIENT_builtin_class =
176 "MDIClient", /* name */
177 0, /* style */
178 MDIClientWndProcA, /* procA */
179 MDIClientWndProcW, /* procW */
180 sizeof(MDICLIENTINFO), /* extra */
181 IDC_ARROW, /* cursor */
182 (HBRUSH)(COLOR_APPWORKSPACE+1) /* brush */
186 static MDICLIENTINFO *get_client_info( HWND client )
188 MDICLIENTINFO *ret = NULL;
189 WND *win = WIN_GetPtr( client );
190 if (win)
192 if (win == WND_OTHER_PROCESS)
194 ERR( "client %p belongs to other process\n", client );
195 return NULL;
197 if (win->cbWndExtra < sizeof(MDICLIENTINFO)) WARN( "%p is not an MDI client\n", client );
198 else ret = (MDICLIENTINFO *)win->wExtra;
199 WIN_ReleasePtr( win );
201 return ret;
204 /**********************************************************************
205 * MDI_GetWindow
207 * returns "activateable" child different from the current or zero
209 static HWND MDI_GetWindow(MDICLIENTINFO *clientInfo, HWND hWnd, BOOL bNext,
210 DWORD dwStyleMask )
212 int i;
213 HWND *list;
214 HWND last = 0;
216 dwStyleMask |= WS_DISABLED | WS_VISIBLE;
217 if( !hWnd ) hWnd = clientInfo->hwndActiveChild;
219 if (!(list = WIN_ListChildren( GetParent(hWnd) ))) return 0;
220 i = 0;
221 /* start from next after hWnd */
222 while (list[i] && list[i] != hWnd) i++;
223 if (list[i]) i++;
225 for ( ; list[i]; i++)
227 if (GetWindow( list[i], GW_OWNER )) continue;
228 if ((GetWindowLongW( list[i], GWL_STYLE ) & dwStyleMask) != WS_VISIBLE) continue;
229 last = list[i];
230 if (bNext) goto found;
232 /* now restart from the beginning */
233 for (i = 0; list[i] && list[i] != hWnd; i++)
235 if (GetWindow( list[i], GW_OWNER )) continue;
236 if ((GetWindowLongW( list[i], GWL_STYLE ) & dwStyleMask) != WS_VISIBLE) continue;
237 last = list[i];
238 if (bNext) goto found;
240 found:
241 HeapFree( GetProcessHeap(), 0, list );
242 return last;
245 /**********************************************************************
246 * MDI_CalcDefaultChildPos
248 * It seems that the default height is about 2/3 of the client rect
250 void MDI_CalcDefaultChildPos( HWND hwndClient, INT total, LPPOINT lpPos, INT delta )
252 INT nstagger;
253 RECT rect;
254 INT spacing = GetSystemMetrics(SM_CYCAPTION) +
255 GetSystemMetrics(SM_CYFRAME) - 1;
257 if (total < 0)
259 MDICLIENTINFO *ci = get_client_info(hwndClient);
260 total = ci ? ci->nTotalCreated : 0;
263 GetClientRect( hwndClient, &rect );
264 if( rect.bottom - rect.top - delta >= spacing )
265 rect.bottom -= delta;
267 nstagger = (rect.bottom - rect.top)/(3 * spacing);
268 lpPos[1].x = (rect.right - rect.left - nstagger * spacing);
269 lpPos[1].y = (rect.bottom - rect.top - nstagger * spacing);
270 lpPos[0].x = lpPos[0].y = spacing * (total%(nstagger+1));
273 /**********************************************************************
274 * MDISetMenu
276 static LRESULT MDISetMenu( HWND hwnd, HMENU hmenuFrame,
277 HMENU hmenuWindow)
279 MDICLIENTINFO *ci;
280 HWND hwndFrame = GetParent(hwnd);
282 TRACE("%p %p %p\n", hwnd, hmenuFrame, hmenuWindow);
284 if (hmenuFrame && !IsMenu(hmenuFrame))
286 WARN("hmenuFrame is not a menu handle\n");
287 return 0L;
290 if (hmenuWindow && !IsMenu(hmenuWindow))
292 WARN("hmenuWindow is not a menu handle\n");
293 return 0L;
296 if (!(ci = get_client_info( hwnd ))) return 0;
298 if( 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;
312 MDI_RefreshMenu(ci);
314 ci->hWindowMenu = hmenuWindow;
316 /* Add items to the new Window menu */
317 ci->nActiveChildren = nActiveChildren_old;
318 AppendMenuW(hmenuWindow, MF_SEPARATOR, 0, NULL);
319 MDI_RefreshMenu(ci);
321 else
322 ci->hWindowMenu = hmenuWindow;
325 if (hmenuFrame)
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;
339 else
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 );
351 return 0;
354 /**********************************************************************
355 * MDIRefreshMenu
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)
365 return 0;
367 if (!IsMenu(ci->hWindowMenu))
369 WARN("Window menu handle %p is no more valid\n", ci->hWindowMenu);
370 return 0;
373 /* Windows finds the last separator in the menu, removes all existing
374 * menu items after it, and then adds visible MDI children.
376 separator_pos = 0;
377 count = GetMenuItemCount(ci->hWindowMenu);
378 for (i = 0; i < count; i++)
380 MENUITEMINFOW mii;
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)
388 separator_pos = i;
391 for (i = separator_pos + 1; i < count; i++)
392 RemoveMenu(ci->hWindowMenu, separator_pos + 1, MF_BYPOSITION);
394 visible = 0;
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);
403 break;
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);
412 visible++;
414 SetWindowLongW(ci->child[i], GWL_ID, id);
416 buf[0] = '&';
417 buf[1] = '0' + visible;
418 buf[2] = ' ';
419 InternalGetWindowText(ci->child[i], buf + 3, sizeof(buf)/sizeof(WCHAR) - 3);
420 TRACE("Adding %p, id %u %s\n", ci->child[i], id, debugstr_w(buf));
421 AppendMenuW(ci->hWindowMenu, MF_STRING, id, buf);
423 if (ci->child[i] == ci->hwndActiveChild)
424 CheckMenuItem(ci->hWindowMenu, id, MF_CHECKED);
426 else
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 )
444 RECT rect;
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
464 * being activated
466 static void MDI_SwitchActiveChild( HWND clientHwnd, HWND childHwnd,
467 BOOL bNextWindow )
469 HWND hwndTo = 0;
470 HWND hwndPrev = 0;
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 /**********************************************************************
493 * MDIDestroyChild
495 static LRESULT MDIDestroyChild( HWND parent, MDICLIENTINFO *ci,
496 HWND child, BOOL flagDestroy )
498 UINT i;
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--;
532 break;
536 if (flagDestroy)
538 MDI_PostUpdate(GetParent(child), ci, SB_BOTH+1);
539 DestroyWindow(child);
542 TRACE("child destroyed - %p\n", child);
543 return 0;
547 /**********************************************************************
548 * MDI_ChildActivate
550 * Note: hWndChild is NULL when last child is being destroyed
552 static LONG MDI_ChildActivate( HWND client, HWND child )
554 MDICLIENTINFO *clientInfo;
555 HWND prevActiveWnd;
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 */
568 if(prevActiveWnd)
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);
576 /* set appearance */
577 if (IsZoomed(clientInfo->hwndActiveChild) && clientInfo->hwndActiveChild != child)
579 INT cmd = SW_SHOWNORMAL;
581 if( child )
583 HMENU hSysMenu = GetSystemMenu(child, FALSE);
584 UINT state = 0;
585 if (hSysMenu)
586 state = GetMenuState(hSysMenu, SC_MAXIMIZE, MF_BYCOMMAND);
587 if (state != 0xFFFFFFFF && !(state & (MF_DISABLED | MF_GRAYED)))
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 */
602 if( !child )
604 if( isActiveFrameWnd )
605 SetFocus( client );
606 return 0;
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 );
619 else
620 SetFocus( client );
622 SendMessageA( child, WM_MDIACTIVATE, (WPARAM)prevActiveWnd, (LPARAM)child );
623 return TRUE;
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) );
636 HBITMAP hbCopy;
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);
648 DeleteDC(hDCSrc);
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);
657 DeleteDC(hDCDest);
659 return hbCopy;
662 /**********************************************************************
663 * MDICascade
665 static LONG MDICascade( HWND client, MDICLIENTINFO *ci )
667 HWND *win_array;
668 BOOL has_icons = FALSE;
669 int i, total;
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] ))
685 has_icons = TRUE;
686 continue;
688 win_array[total++] = win_array[i];
690 win_array[total] = 0;
692 if (total)
694 INT delta = 0, n = 0, i;
695 POINT pos[2];
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 );
712 return 0;
715 /**********************************************************************
716 * MDITile
718 static void MDITile( HWND client, MDICLIENTINFO *ci, WPARAM wParam )
720 HWND *win_array;
721 int i, total;
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] ))
738 has_icons = TRUE;
739 continue;
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);
748 if (total)
750 HWND *pWnd = win_array;
751 RECT rect;
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 */
761 i = rows;
762 rows = columns; /* exchange r and c */
763 columns = i;
766 if (has_icons)
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++)
777 if (c == columns)
779 rows = total - i;
780 ysize = rect.bottom / rows;
783 y = 0;
784 for (r = 1; r <= rows && *pWnd; r++, i++)
786 SetWindowPos(*pWnd, 0, x, y, xsize, ysize,
787 SWP_DRAWFRAME | SWP_NOACTIVATE | SWP_NOZORDER);
788 y += ysize;
789 pWnd++;
791 x += xsize;
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 );
807 HMENU hSysPopup = 0;
808 HBITMAP hSysMenuBitmap = 0;
809 INT nItems;
810 UINT iId;
811 HICON hIcon;
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)
821 return 0;
823 /* create a copy of sysmenu popup and insert it into frame menu bar */
824 if (!(hSysPopup = GetSystemMenu(hChild, FALSE)))
825 return 0;
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);
837 if (!hIcon)
838 hIcon = (HICON)GetClassLongW(hChild, GCL_HICON);
839 if (!hIcon)
840 hIcon = LoadImageW(0, MAKEINTRESOURCEW(IDI_WINLOGO), IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR);
841 if (hIcon)
843 HDC hMemDC;
844 HBITMAP hBitmap, hOldBitmap;
845 HBRUSH hBrush;
846 HDC hdc = GetDC(hChild);
848 if (hdc)
850 int cx, cy;
851 cx = GetSystemMetrics(SM_CXSMICON);
852 cy = GetSystemMetrics(SM_CYSMICON);
853 hMemDC = CreateCompatibleDC(hdc);
854 hBitmap = CreateCompatibleBitmap(hdc, cx, cy);
855 hOldBitmap = SelectObject(hMemDC, hBitmap);
856 SetMapMode(hMemDC, MM_TEXT);
857 hBrush = CreateSolidBrush(GetSysColor(COLOR_MENU));
858 DrawIconEx(hMemDC, 0, 0, hIcon, cx, cy, 0, hBrush, DI_NORMAL);
859 SelectObject (hMemDC, hOldBitmap);
860 DeleteObject(hBrush);
861 DeleteDC(hMemDC);
862 ReleaseDC(hChild, hdc);
863 hSysMenuBitmap = hBitmap;
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);
872 return 0;
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);
880 /* redraw menu */
881 DrawMenuBar(frame);
883 return 1;
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) )
900 return 0;
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,
912 TRUE,
913 &menuInfo);
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)));
924 /* close */
925 DeleteMenu(menu,GetMenuItemCount(menu) - 1,MF_BYPOSITION);
926 /* restore */
927 DeleteMenu(menu,GetMenuItemCount(menu) - 1,MF_BYPOSITION);
928 /* minimize */
929 DeleteMenu(menu,GetMenuItemCount(menu) - 1,MF_BYPOSITION);
931 DrawMenuBar(frame);
933 return 1;
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));
952 if (!ci) return;
954 if (!lpTitle && !ci->frameTitle) /* first time around, get title from the frame window */
956 GetWindowTextW( frame, lpBuffer, sizeof(lpBuffer)/sizeof(WCHAR) );
957 lpTitle = lpBuffer;
960 /* store new "default" title if lpTitle is not NULL */
961 if (lpTitle)
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 );
968 if (ci->frameTitle)
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 );
986 else
987 lpBuffer[i_frame_text_length] = 0; /* remove bracket */
990 else
992 lstrcpynW(lpBuffer, ci->frameTitle, MDI_MAXTITLELENGTH+1 );
995 else
996 lpBuffer[0] = '\0';
998 DefWindowProcW( frame, WM_SETTEXT, 0, (LPARAM)lpBuffer );
999 if( repaint )
1000 SetWindowPos( frame, 0,0,0,0,0, SWP_FRAMECHANGED |
1001 SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE | SWP_NOZORDER );
1005 /* ----------------------------- Interface ---------------------------- */
1008 /**********************************************************************
1009 * MDIClientWndProc_common
1011 static LRESULT MDIClientWndProc_common( HWND hwnd, UINT message,
1012 WPARAM wParam, LPARAM lParam, BOOL unicode )
1014 MDICLIENTINFO *ci;
1016 TRACE("%p %04x %08x %08lx\n", hwnd, message, wParam, lParam);
1018 if (!(ci = get_client_info( hwnd ))) return 0;
1020 switch (message)
1022 case WM_CREATE:
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;
1040 else
1042 LPCLIENTCREATESTRUCT16 ccs = MapSL((SEGPTR)cs->lpCreateParams);
1043 ci->hWindowMenu = HMENU_32(ccs->hWindowMenu);
1044 ci->idFirstChild = ccs->idFirstChild;
1046 WIN_ReleasePtr( wndPtr );
1048 ci->child = NULL;
1049 ci->nActiveChildren = 0;
1050 ci->nTotalCreated = 0;
1051 ci->frameTitle = NULL;
1052 ci->mdiFlags = 0;
1053 ci->hFrameMenu = GetMenu(cs->hwndParent);
1055 if (!hBmpClose) hBmpClose = CreateMDIMenuBitmap();
1057 TRACE("Client created - hwnd = %p, idFirst = %u\n", hwnd, ci->idFirstChild );
1058 return 0;
1061 case WM_DESTROY:
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 );
1072 return 0;
1075 case WM_MDIACTIVATE:
1077 HWND hwndActive;
1079 hwndActive = ci->hwndActiveChild;
1081 if( hwndActive != (HWND)wParam )
1082 SetWindowPos((HWND)wParam, 0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE);
1083 return 0;
1086 case WM_MDICASCADE:
1087 return MDICascade(hwnd, ci);
1089 case WM_MDICREATE:
1090 if (lParam)
1092 if (unicode)
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);
1101 else
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);
1111 return 0;
1113 case WM_MDIDESTROY:
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 );
1125 return 0;
1127 case WM_MDIMAXIMIZE:
1128 ShowWindow( (HWND)wParam, SW_MAXIMIZE );
1129 return 0;
1131 case WM_MDINEXT: /* lParam != 0 means previous window */
1132 MDI_SwitchActiveChild( hwnd, WIN_GetFullHandle( (HWND)wParam ), !lParam );
1133 break;
1135 case WM_MDIRESTORE:
1136 SendMessageW( (HWND)wParam, WM_SYSCOMMAND, SC_RESTORE, 0);
1137 return 0;
1139 case WM_MDISETMENU:
1140 return MDISetMenu( hwnd, (HMENU)wParam, (HMENU)lParam );
1142 case WM_MDIREFRESHMENU:
1143 return MDI_RefreshMenu( ci );
1145 case WM_MDITILE:
1146 ci->mdiFlags |= MDIF_NEEDUPDATE;
1147 ShowScrollBar( hwnd, SB_BOTH, FALSE );
1148 MDITile( hwnd, ci, wParam );
1149 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1150 return 0;
1152 case WM_VSCROLL:
1153 case WM_HSCROLL:
1154 ci->mdiFlags |= MDIF_NEEDUPDATE;
1155 ScrollChildren( hwnd, message, wParam, lParam );
1156 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1157 return 0;
1159 case WM_SETFOCUS:
1160 if (ci->hwndActiveChild && !IsIconic( ci->hwndActiveChild ))
1161 SetFocus( ci->hwndActiveChild );
1162 return 0;
1164 case WM_NCACTIVATE:
1165 if( ci->hwndActiveChild )
1166 SendMessageW(ci->hwndActiveChild, message, wParam, lParam);
1167 break;
1169 case WM_PARENTNOTIFY:
1170 switch (LOWORD(wParam))
1172 case WM_CREATE:
1173 if (GetWindowLongW((HWND)lParam, GWL_EXSTYLE) & WS_EX_MDICHILD)
1175 ci->nTotalCreated++;
1176 ci->nActiveChildren++;
1178 if (!ci->child)
1179 ci->child = HeapAlloc(GetProcessHeap(), 0, sizeof(HWND));
1180 else
1181 ci->child = HeapReAlloc(GetProcessHeap(), 0, ci->child, sizeof(HWND) * ci->nActiveChildren);
1183 ci->child[ci->nActiveChildren - 1] = (HWND)lParam;
1185 break;
1187 case WM_LBUTTONDOWN:
1189 HWND child;
1190 POINT pt;
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 );
1199 break;
1202 return 0;
1204 case WM_SIZE:
1205 if( IsWindow(ci->hwndActiveChild) && IsZoomed(ci->hwndActiveChild) &&
1206 IsWindowVisible(ci->hwndActiveChild) )
1208 RECT rect;
1210 rect.left = 0;
1211 rect.top = 0;
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);
1220 else
1221 MDI_PostUpdate(hwnd, ci, SB_BOTH+1);
1223 break;
1225 case WM_MDICALCCHILDSCROLL:
1226 if( (ci->mdiFlags & MDIF_NEEDUPDATE) && ci->sbRecalc )
1228 CalcChildScroll(hwnd, ci->sbRecalc-1);
1229 ci->sbRecalc = 0;
1230 ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1232 return 0;
1234 return unicode ? DefWindowProcW( hwnd, message, wParam, lParam ) :
1235 DefWindowProcA( hwnd, message, wParam, lParam );
1238 /***********************************************************************
1239 * MDIClientWndProcA
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 /***********************************************************************
1248 * MDIClientWndProcW
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)
1262 if (hwndMDIClient)
1264 switch (message)
1266 case WM_SETTEXT:
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 */
1276 case WM_COMMAND:
1277 case WM_NCACTIVATE:
1278 case WM_NEXTMENU:
1279 case WM_SETFOCUS:
1280 case WM_SIZE:
1281 return DefFrameProcW( hwnd, hwndMDIClient, message, wParam, lParam );
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);
1298 if (ci)
1300 switch (message)
1302 case WM_COMMAND:
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;
1310 switch( id )
1312 case SC_SIZE:
1313 case SC_MOVE:
1314 case SC_MINIMIZE:
1315 case SC_MAXIMIZE:
1316 case SC_NEXTWINDOW:
1317 case SC_PREVWINDOW:
1318 case SC_CLOSE:
1319 case SC_RESTORE:
1320 return SendMessageW( ci->hwndActiveChild, WM_SYSCOMMAND,
1321 wParam, lParam);
1324 else
1326 HWND childHwnd;
1327 if (id - ci->idFirstChild == MDI_MOREWINDOWSLIMIT)
1328 /* User chose "More Windows..." */
1329 childHwnd = MDI_MoreWindowsDialog(hwndMDIClient);
1330 else
1331 /* User chose one of the windows listed in the "Windows" menu */
1332 childHwnd = MDI_GetChildByID(hwndMDIClient, id, ci);
1334 if( childHwnd )
1335 SendMessageW( hwndMDIClient, WM_MDIACTIVATE, (WPARAM)childHwnd, 0 );
1338 break;
1340 case WM_NCACTIVATE:
1341 SendMessageW(hwndMDIClient, message, wParam, lParam);
1342 break;
1344 case WM_SETTEXT:
1345 MDI_UpdateFrameText(hwnd, hwndMDIClient, TRUE, (LPWSTR)lParam );
1346 return 1; /* success. FIXME: check text length */
1348 case WM_SETFOCUS:
1349 SetFocus(hwndMDIClient);
1350 break;
1352 case WM_SIZE:
1353 MoveWindow(hwndMDIClient, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);
1354 break;
1356 case WM_NEXTMENU:
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);
1376 return 0;
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 );
1398 switch (message)
1400 case WM_SETTEXT:
1401 DefWindowProcA(hwnd, message, wParam, lParam);
1402 if( ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild) )
1403 MDI_UpdateFrameText( GetParent(client), client, TRUE, NULL );
1404 return 1; /* success. FIXME: check text length */
1406 case WM_GETMINMAXINFO:
1407 case WM_MENUCHAR:
1408 case WM_CLOSE:
1409 case WM_SETFOCUS:
1410 case WM_CHILDACTIVATE:
1411 case WM_SYSCOMMAND:
1412 case WM_SETVISIBLE:
1413 case WM_SIZE:
1414 case WM_NEXTMENU:
1415 case WM_SYSCHAR:
1416 return DefMDIChildProcW( hwnd, message, wParam, lParam );
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 );
1436 switch (message)
1438 case WM_SETTEXT:
1439 DefWindowProcW(hwnd, message, wParam, lParam);
1440 if( ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild) )
1441 MDI_UpdateFrameText( GetParent(client), client, TRUE, NULL );
1442 return 1; /* success. FIXME: check text length */
1444 case WM_GETMINMAXINFO:
1445 MDI_ChildGetMinMaxInfo( client, hwnd, (MINMAXINFO *)lParam );
1446 return 0;
1448 case WM_MENUCHAR:
1449 return 0x00010000; /* MDI children don't have menu bars */
1451 case WM_CLOSE:
1452 SendMessageW( client, WM_MDIDESTROY, (WPARAM)hwnd, 0 );
1453 return 0;
1455 case WM_SETFOCUS:
1456 if (ci->hwndActiveChild != hwnd) MDI_ChildActivate( client, hwnd );
1457 break;
1459 case WM_CHILDACTIVATE:
1460 MDI_ChildActivate( client, hwnd );
1461 return 0;
1463 case WM_SYSCOMMAND:
1464 switch( wParam )
1466 case SC_MOVE:
1467 if( ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild))
1468 return 0;
1469 break;
1470 case SC_RESTORE:
1471 case SC_MINIMIZE:
1472 SetWindowLongW( hwnd, GWL_STYLE,
1473 GetWindowLongW( hwnd, GWL_STYLE ) | WS_SYSMENU );
1474 break;
1475 case SC_MAXIMIZE:
1476 if (ci->hwndActiveChild == hwnd && IsZoomed(ci->hwndActiveChild))
1477 return SendMessageW( GetParent(client), message, wParam, lParam);
1478 SetWindowLongW( hwnd, GWL_STYLE,
1479 GetWindowLongW( hwnd, GWL_STYLE ) & ~WS_SYSMENU );
1480 break;
1481 case SC_NEXTWINDOW:
1482 SendMessageW( client, WM_MDINEXT, 0, 0);
1483 return 0;
1484 case SC_PREVWINDOW:
1485 SendMessageW( client, WM_MDINEXT, 0, 1);
1486 return 0;
1488 break;
1490 case WM_SETVISIBLE:
1491 if (IsZoomed(ci->hwndActiveChild)) ci->mdiFlags &= ~MDIF_NEEDUPDATE;
1492 else MDI_PostUpdate(client, ci, SB_BOTH+1);
1493 break;
1495 case WM_SIZE:
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);
1520 break;
1522 case WM_NEXTMENU:
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;
1538 return 0;
1541 case WM_SYSCHAR:
1542 if (wParam == '-')
1544 SendMessageW( hwnd, WM_SYSCOMMAND, (WPARAM)SC_KEYMENU, (DWORD)VK_SPACE);
1545 return 0;
1547 break;
1549 return DefWindowProcW(hwnd, message, wParam, lParam);
1552 /**********************************************************************
1553 * CreateMDIWindowA (USER32.@) Creates a MDI child
1555 * RETURNS
1556 * Success: Handle to created window
1557 * Failure: NULL
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
1583 * RETURNS
1584 * Success: Handle to created window
1585 * Failure: NULL
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 );
1616 WPARAM wParam = 0;
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 )
1626 case VK_F6:
1627 case VK_TAB:
1628 wParam = ( GetKeyState(VK_SHIFT) & 0x8000 ) ? SC_NEXTWINDOW : SC_PREVWINDOW;
1629 break;
1630 case VK_F4:
1631 case VK_RBUTTON:
1632 wParam = SC_CLOSE;
1633 break;
1634 default:
1635 return 0;
1637 TRACE("wParam = %04x\n", wParam);
1638 SendMessageW(ci->hwndActiveChild, WM_SYSCOMMAND, wParam, (LPARAM)msg->wParam);
1639 return 1;
1642 return 0; /* failure */
1645 /***********************************************************************
1646 * CalcChildScroll (USER32.@)
1648 void WINAPI CalcChildScroll( HWND hwnd, INT scroll )
1650 SCROLLINFO info;
1651 RECT childRect, clientRect;
1652 HWND *list;
1654 GetClientRect( hwnd, &clientRect );
1655 SetRectEmpty( &childRect );
1657 if ((list = WIN_ListChildren( hwnd )))
1659 int i;
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 );
1667 return;
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 */
1685 switch( scroll )
1687 case SB_BOTH:
1688 case SB_HORZ:
1689 info.nMin = childRect.left;
1690 info.nMax = childRect.right - clientRect.right;
1691 info.nPos = clientRect.left - childRect.left;
1692 SetScrollInfo(hwnd, scroll, &info, TRUE);
1693 if (scroll == SB_HORZ) break;
1694 /* fall through */
1695 case SB_VERT:
1696 info.nMin = childRect.top;
1697 info.nMax = childRect.bottom - clientRect.bottom;
1698 info.nPos = clientRect.top - childRect.top;
1699 SetScrollInfo(hwnd, scroll, &info, TRUE);
1700 break;
1705 /***********************************************************************
1706 * ScrollChildren (USER32.@)
1708 void WINAPI ScrollChildren(HWND hWnd, UINT uMsg, WPARAM wParam,
1709 LPARAM lParam)
1711 INT newPos = -1;
1712 INT curPos, length, minPos, maxPos, shift;
1713 RECT rect;
1715 GetClientRect( hWnd, &rect );
1717 switch(uMsg)
1719 case WM_HSCROLL:
1720 GetScrollRange(hWnd,SB_HORZ,&minPos,&maxPos);
1721 curPos = GetScrollPos(hWnd,SB_HORZ);
1722 length = (rect.right - rect.left) / 2;
1723 shift = GetSystemMetrics(SM_CYHSCROLL);
1724 break;
1725 case WM_VSCROLL:
1726 GetScrollRange(hWnd,SB_VERT,&minPos,&maxPos);
1727 curPos = GetScrollPos(hWnd,SB_VERT);
1728 length = (rect.bottom - rect.top) / 2;
1729 shift = GetSystemMetrics(SM_CXVSCROLL);
1730 break;
1731 default:
1732 return;
1735 switch( wParam )
1737 case SB_LINEUP:
1738 newPos = curPos - shift;
1739 break;
1740 case SB_LINEDOWN:
1741 newPos = curPos + shift;
1742 break;
1743 case SB_PAGEUP:
1744 newPos = curPos - length;
1745 break;
1746 case SB_PAGEDOWN:
1747 newPos = curPos + length;
1748 break;
1750 case SB_THUMBPOSITION:
1751 newPos = LOWORD(lParam);
1752 break;
1754 case SB_THUMBTRACK:
1755 return;
1757 case SB_TOP:
1758 newPos = minPos;
1759 break;
1760 case SB_BOTTOM:
1761 newPos = maxPos;
1762 break;
1763 case SB_ENDSCROLL:
1764 CalcChildScroll(hWnd,(uMsg == WM_VSCROLL)?SB_VERT:SB_HORZ);
1765 return;
1768 if( newPos > maxPos )
1769 newPos = maxPos;
1770 else
1771 if( newPos < minPos )
1772 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 );
1779 else
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
1788 * RETURNS
1789 * Success: Number of cascaded windows.
1790 * Failure: 0
1792 WORD WINAPI
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);
1797 return 0;
1801 /******************************************************************************
1802 * TileWindows (USER32.@) Tiles MDI child windows
1804 * RETURNS
1805 * Success: Number of tiled windows.
1806 * Failure: 0
1808 WORD WINAPI
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);
1813 return 0;
1816 /************************************************************************
1817 * "More Windows..." functionality
1820 /* MDI_MoreWindowsDlgProc
1822 * This function will process the messages sent to the "More Windows..."
1823 * dialog.
1824 * Return values: 0 = cancel pressed
1825 * HWND = ok pressed or double-click in the list...
1829 static INT_PTR WINAPI MDI_MoreWindowsDlgProc (HWND hDlg, UINT iMsg, WPARAM wParam, LPARAM lParam)
1831 switch (iMsg)
1833 case WM_INITDIALOG:
1835 UINT widest = 0;
1836 UINT length;
1837 UINT i;
1838 MDICLIENTINFO *ci = get_client_info( (HWND)lParam );
1839 HWND hListBox = GetDlgItem(hDlg, MDI_IDC_LISTBOX);
1841 for (i = 0; i < ci->nActiveChildren; i++)
1843 WCHAR buffer[MDI_MAXTITLELENGTH];
1845 if (!InternalGetWindowText( ci->child[i], buffer, sizeof(buffer)/sizeof(WCHAR) ))
1846 continue;
1847 SendMessageW(hListBox, LB_ADDSTRING, 0, (LPARAM)buffer );
1848 SendMessageW(hListBox, LB_SETITEMDATA, i, (LPARAM)ci->child[i] );
1849 length = strlenW(buffer); /* FIXME: should use GetTextExtentPoint */
1850 if (length > widest)
1851 widest = length;
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);
1858 return TRUE;
1861 case WM_COMMAND:
1862 switch (LOWORD(wParam))
1864 default:
1865 if (HIWORD(wParam) != LBN_DBLCLK) break;
1866 /* fall through */
1867 case IDOK:
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);
1876 return TRUE;
1878 case IDCANCEL:
1879 EndDialog(hDlg, 0);
1880 return TRUE;
1882 break;
1884 return FALSE;
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
1895 * selected window.
1898 static HWND MDI_MoreWindowsDialog(HWND hwnd)
1900 LPCVOID template;
1901 HRSRC hRes;
1902 HANDLE hDlgTmpl;
1904 hRes = FindResourceA(user32_module, "MDI_MOREWINDOWS", (LPSTR)RT_DIALOG);
1906 if (hRes == 0)
1907 return 0;
1909 hDlgTmpl = LoadResource(user32_module, hRes );
1911 if (hDlgTmpl == 0)
1912 return 0;
1914 template = LockResource( hDlgTmpl );
1916 if (template == 0)
1917 return 0;
1919 return (HWND) DialogBoxIndirectParamA(user32_module,
1920 (LPDLGTEMPLATEA) template,
1921 hwnd, MDI_MoreWindowsDlgProc, (LPARAM) hwnd);