MDI Windows Manager dialog
Posted
by Ivan Zhakov
on December 29th, 1999
What's this?
This article describes how to implement Windows Manager dialog. It manages currently open windows (Activate, Save, Close, Tile, Cascade, Minimize)
How to use it?
1. Add to your CMainFrame class member variable of type CMDIClient A good practice is to keep the variables protected (or private).
2. Then within OnCreate() handler add a following code.
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
// Subclass the MDI client window
VERIFY(m_MDIClient.SubclassWindow(m_hWndMDIClient));
return 0;
}
3. Copy to your project IDD_WINDOW_MANAGE dialog (from WindowManager.rct).
4. Add folowing resource strings:
| ID | Caption | Description |
|---|---|---|
| IDS_WINDOW_WINDOWS | "&Windows..." | Menu text |
| ID_WINDOW_MANAGE | "Manages the currently open windows.\nWindow List" | Message prompt |
5. Add handler to command ID_WINDOW_MANAGE and add a following code.
void CMainFrame::OnWindowManage()
{
m_MDIClient.ManageWindows(this);
}
6. Build and run your application.
7. Go to Window menu and click Windows...
Unicode?
Not tested, but should work.
Downloads
Download demo project - 41,3 KBDownload source - 4,6 KB

Comments
This code makes modal dialog modeless !!
Posted by Legacy on 12/20/1999 12:00amOriginally posted by: Kaizen
If invoked by a modal dialog's menu, the Windows Manager makes the dialog modeless !!
While interesting, this behavior is not desirable. Any fix?
ReplyDownload Links Fixed by Codeguru
Posted by Legacy on 07/17/1999 12:00amOriginally posted by: Brian Hart
Codeguru has now fixed the 'Download Demo Project' and 'Download Source Code' links on the main page of this article.
Brian
Replyhttp://www.wndbsoft.com/dev/
Show appreciation for good codes...
Posted by Legacy on 05/17/1999 12:00amOriginally posted by: Paul Selormey
Hello Happy-Dog,
The codes shown here may not illustrate any new
feature but the implementation is solid and teaches some
cool stuff. Please read the codes carefully, you might learn
something.
Bye,
ReplyPaul.
no special useful information
Posted by Legacy on 05/04/1999 12:00amOriginally posted by: Happy--Dog
hope get more useful info
ReplyNo Links even on comments
Posted by Legacy on 05/03/1999 12:00amOriginally posted by: C Urquhart
The links are broken
ReplyHere's the file locations
Posted by Legacy on 05/02/1999 12:00amOriginally posted by: Richard A. Nichols
This is getting old!
Here are the url's, the 's' was left out of the names
/doc_view/WindowsManager_demo.zip
/doc_view/WindowsManager_src.zip
Reply