CB32 1.2 sources
This commit is contained in:
parent
cf25bc7627
commit
fd87f89a19
100 changed files with 14543 additions and 0 deletions
55
OrdPage.h
Normal file
55
OrdPage.h
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
#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_)
|
||||
Reference in a new issue