Click here to Skip to main content
15,884,176 members
Articles / Desktop Programming / MFC

Win32 AppWizard (exe)

Rate me:
Please Sign up or sign in to vote.
3.43/5 (5 votes)
18 Aug 2001 73.6K   1.5K   17  
A simple AppWizard for writing Win32 Applications
#if !defined(AFX_CHOOSER_H__BB16CE55_7E38_11D5_8E0C_0050BF0BFA34__INCLUDED_)
#define AFX_CHOOSER_H__BB16CE55_7E38_11D5_8E0C_0050BF0BFA34__INCLUDED_

// chooser.h : declaration of the CDialogChooser class
//             This class keeps track of what dialogs to pop up when.

#define LAST_DLG 3

class CDialogChooser
{
public:
	int GetCodeType();
	int GetViewType();
	int GetAppType();
	CDialogChooser();
	~CDialogChooser();

	// All calls by mfcapwz.dll to CWin32AppWiz::Next
	//  & CWin32AppWiz::Back are delegated to these member
	//  functions, which keep track of what dialog is up
	//  now, and what to pop up next.
	CAppWizStepDlg* Next(CAppWizStepDlg* pDlg);
	CAppWizStepDlg* Back(CAppWizStepDlg* pDlg);

	void SetAppType(int nAppType)
		{ m_nAppType = nAppType; }
	void SetViewType(int nViewType)
		{ m_nViewType = nViewType; }
	void SetCodeType(int nCodeType)
		{ m_nCodeType = nCodeType; }

protected:
	int m_nCodeType;
	int m_nViewType;
	int m_nAppType;
	// Current step's index into the internal array m_pDlgs
	int m_nCurrDlg;

	// Internal array of pointers to the steps
	CAppWizStepDlg* m_pDlgs[LAST_DLG + 1];
};


//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CHOOSER_H__BB16CE55_7E38_11D5_8E0C_0050BF0BFA34__INCLUDED_)

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
Korea (Republic of) Korea (Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions