47 lines
1 KiB
C++
47 lines
1 KiB
C++
#pragma once
|
|
|
|
|
|
#include "EventEditWizardCommon.h"
|
|
#include "ColorListCtrl.h"
|
|
|
|
// CEventEdit_SelectControl form view
|
|
|
|
class CEventEdit_SelectControl : public CFormView, public CEventEditWizardCommon
|
|
{
|
|
DECLARE_DYNCREATE(CEventEdit_SelectControl)
|
|
|
|
protected:
|
|
CEventEdit_SelectControl(); // protected constructor used by dynamic creation
|
|
virtual ~CEventEdit_SelectControl();
|
|
|
|
public:
|
|
enum { IDD = IDD_EVENTEDIT_SELECTEVENT };
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
#ifndef _WIN32_WCE
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
#endif
|
|
|
|
bool m_bActivate;
|
|
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
virtual VIEW_TYPE GetNextView();
|
|
|
|
virtual bool IsVisivleNextButton() { return true; }
|
|
virtual bool IsVisivlePrevButton() { return true; }
|
|
virtual bool IsVisivleFinishButton() { return true; }
|
|
virtual bool IsFinishOrCancel() { return false; }
|
|
virtual void PreProcess();
|
|
virtual bool PostProcess();
|
|
|
|
virtual void OnInitialUpdate();
|
|
CColorListCtrl m_ListCtrl;
|
|
};
|
|
|
|
|