progman: Implement the cascade and tile windows menus.

This commit is contained in:
Francois Gouget 2011-03-31 12:42:20 +02:00 committed by Alexandre Julliard
parent 801e775774
commit 92e412c5cb
1 changed files with 8 additions and 0 deletions

View File

@ -296,6 +296,14 @@ static VOID MAIN_MenuCommand(HWND hWnd, WPARAM wParam, LPARAM lParam)
break;
/* Menu Windows */
case PM_OVERLAP:
SendMessageW(Globals.hMDIWnd, WM_MDICASCADE, 0, 0);
break;
case PM_SIDE_BY_SIDE:
SendMessageW(Globals.hMDIWnd, WM_MDITILE, MDITILE_VERTICAL, 0);
break;
case PM_ARRANGE:
if (hActiveGroupWnd && !IsIconic(hActiveGroupWnd))