55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#if !defined(AFX_ORDPAGE_H__EC09DB72_6EAA_11D1_AFAE_000000000000__INCLUDED_)
|
|
#define AFX_ORDPAGE_H__EC09DB72_6EAA_11D1_AFAE_000000000000__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
// OrdPage.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// COrdPage dialog
|
|
|
|
class COrdPage : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(COrdPage)
|
|
|
|
// Construction
|
|
public:
|
|
COrdPage();
|
|
~COrdPage();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(COrdPage)
|
|
enum { IDD = IDD_ORDPAGE };
|
|
CButton m_colup;
|
|
CButton m_coldown;
|
|
CListBox m_colbox;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(COrdPage)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(COrdPage)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnColup();
|
|
afx_msg void OnColdown();
|
|
afx_msg void OnDestroy();
|
|
afx_msg void OnResetcol();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_ORDPAGE_H__EC09DB72_6EAA_11D1_AFAE_000000000000__INCLUDED_)
|