Commit 92e412c5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

progman: Implement the cascade and tile windows menus.

parent 801e7757
...@@ -296,6 +296,14 @@ static VOID MAIN_MenuCommand(HWND hWnd, WPARAM wParam, LPARAM lParam) ...@@ -296,6 +296,14 @@ static VOID MAIN_MenuCommand(HWND hWnd, WPARAM wParam, LPARAM lParam)
break; break;
/* Menu Windows */ /* 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: case PM_ARRANGE:
if (hActiveGroupWnd && !IsIconic(hActiveGroupWnd)) if (hActiveGroupWnd && !IsIconic(hActiveGroupWnd))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment