BASEPAGE.H

///////////////////////////////////////////////////////////////////////////// 
//
//Copyright (c) 1997 <company name>
//
//Module Name:
//BasePage.h
//
//Abstract:
//Definition of the CBasePropertyPage class. This class provides base
//functionality for extension DLL property pages.
//
//Implementation File:
//BasePage.cpp
//
//Author:
//<name> (<e-mail name>) Mmmm DD, 1997
//
//Revision History:
//
//Notes:
//
/////////////////////////////////////////////////////////////////////////////

#ifndef _BASEPAGE_H_
#define _BASEPAGE_H_

/////////////////////////////////////////////////////////////////////////////
// Include Files
/////////////////////////////////////////////////////////////////////////////

#ifndef _cluadmex_h__
#include <CluAdmEx.h>
#endif

#ifndef _EXTOBJ_H_
#include "ExtObj.h"// for CExtObject
#endif

#ifndef _PROPLIST_H_
#include "PropList.h"// for CClusPropList, CObjectProperty
#endif

/////////////////////////////////////////////////////////////////////////////
// Forward Class Declarations
/////////////////////////////////////////////////////////////////////////////

class CBasePropertyPage;

/////////////////////////////////////////////////////////////////////////////
// External Class Declarations
/////////////////////////////////////////////////////////////////////////////

class CExtObject;
interface IWCWizardCallback;

/////////////////////////////////////////////////////////////////////////////
// CBasePropertyPage dialog
/////////////////////////////////////////////////////////////////////////////

class CBasePropertyPage : public CPropertyPage
{
DECLARE_DYNCREATE(CBasePropertyPage)

// Construction
public:
CBasePropertyPage(void);
CBasePropertyPage(IN UINT nIDTemplate, IN UINT nIDCaption = 0);
virtual ~CBasePropertyPage(void) { }

// Second phase construction.
virtual BOOLBInit(IN OUT CExtObject * peo);
BOOLBCreateParamsKey(void);

protected:
voidCommonConstruct(void);

// Attributes
protected:
CExtObject *m_peo;
HPROPSHEETPAGEm_hpage;

IDDm_iddPropertyPage;
IDDm_iddWizardPage;
IDSm_idsCaption;

HPROPSHEETPAGEHpage(void) const{ return m_hpage; }

IDDIddPropertyPage(void) const{ return m_iddPropertyPage; }
IDDIddWizardPage(void) const{ return m_iddWizardPage; }
IDSIdsCaption(void) const{ return m_idsCaption; }

public:
CExtObject *Peo(void) const{ return m_peo; }
voidSetHpage(IN OUT HPROPSHEETPAGE hpage) { m_hpage = hpage; }
CLUADMEX_OBJECT_TYPECot(void) const;

// Dialog Data
//{{AFX_DATA(CBasePropertyPage)
enum { IDD = 0 };
//}}AFX_DATA
CStaticm_staticIcon;
CStaticm_staticTitle;
CStringm_strTitle;

// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CBasePropertyPage)
public:
virtual BOOL OnSetActive();
virtual BOOL OnApply();
virtual LRESULT OnWizardBack();
virtual LRESULT OnWizardNext();
virtual BOOL OnWizardFinish();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL

virtual DWORDDwParseUnknownProperty(
IN LPCWSTRpwszName,
IN const CLUSPROP_BUFFER_HELPER &rvalue,
IN DWORDcbBuf
){ return ERROR_SUCCESS; }
virtual BOOLBApplyChanges(void);
virtual voidBuildPropList(IN OUT CClusPropList & rcpl);

virtual const CObjectProperty *Pprops(void) const{ return NULL; }
virtual DWORDCprops(void) const{ return 0; }

// Implementation
protected:
BOOLm_bBackPressed;

BOOLBBackPressed(void) const{ return m_bBackPressed; }
IWCWizardCallback *PiWizardCallback(void) const;
BOOLBWizard(void) const;
HCLUSTERHcluster(void) const;
voidEnableNext(IN BOOL bEnable = TRUE);

DWORDDwParseProperties(IN const CClusPropList & rcpl);
BOOLBSetPrivateProps(IN BOOL bValidateOnly = FALSE);

// Generated message map functions
//{{AFX_MSG(CBasePropertyPage)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnDestroy();
virtual BOOL OnInitDialog();
//}}AFX_MSG
afx_msg void OnChangeCtrl();
DECLARE_MESSAGE_MAP()

}; //*** class CBasePropertyPage

/////////////////////////////////////////////////////////////////////////////
// CPageList
/////////////////////////////////////////////////////////////////////////////

typedef CList<CBasePropertyPage *, CBasePropertyPage *> CPageList;

/////////////////////////////////////////////////////////////////////////////

#endif // _BASEPAGE_H_