www.pudn.com > DiskInfo.tgz > OptionSheet.h


// OptionSheet.h : header file 
// 
// This class defines custom modal property sheet  
// COptionSheet. 
  
#ifndef __OPTIONSHEET_H__ 
#define __OPTIONSHEET_H__ 
 
#include "CDIPage.h" 
 
///////////////////////////////////////////////////////////////////////////// 
// COptionSheet 
 
class COptionSheet : public CPropertySheet 
{ 
	DECLARE_DYNAMIC(COptionSheet) 
 
// Construction 
public: 
	COptionSheet(CWnd* pWndParent = NULL); 
 
// Attributes 
public: 
	CDIPage1 m_Page1; 
	CDIPage2 m_Page2; 
	CDIPage3 m_Page3; 
	CDIPage4 m_Page4; 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(COptionSheet) 
	//}}AFX_VIRTUAL 
 
// Implementation 
public: 
	virtual ~COptionSheet(); 
 
// Generated message map functions 
protected: 
	//{{AFX_MSG(COptionSheet) 
		// NOTE - the ClassWizard will add and remove member functions here. 
	//}}AFX_MSG 
	void OnApplyNow(); 
	void OnOK(); 
	DECLARE_MESSAGE_MAP() 
}; 
 
///////////////////////////////////////////////////////////////////////////// 
 
#endif	// __OPTIONSHEET_H__