Click here to Skip to main content
15,896,453 members
Articles / Desktop Programming / MFC

Modeless Dialog Management

Rate me:
Please Sign up or sign in to vote.
4.71/5 (25 votes)
7 Jul 20035 min read 148.9K   6.1K   62  
A simple method for tracking and dealing with multiple modeless dialogs.
#pragma once

#include "ModelessDialogTracker.h"
#include "TrackDialogC.h"

class CModelessDialogTrackerDemoDlg : public CDialog
{
public:
	//////////////////////////////////////////////////////////////
	ModelessDialogTracker trackA, trackB;	// standard trackers for the dialogs
	//// use a derived class to get the closed event for dialogC
	TrackDialogC trackC;
	void OnDlgCClosed();
	///////////////////////////////////////////////////


	// generic wizard stuff follows.....

	CModelessDialogTrackerDemoDlg(CWnd* pParent = NULL);	// standard constructor
	enum { IDD = IDD_MODELESSDIALOGTRACKERDEMO_DIALOG };
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
protected:
	HICON m_hIcon;
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnPopA();
	afx_msg void OnPopB();
	afx_msg void OnPopC();
	afx_msg void OnCloseABC();
	afx_msg void OnNotifyDialogB();
	CStatic ctrlStatusDlgC;
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions