You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
795 B
C++
36 lines
795 B
C++
#pragma once
|
|
#include "Resource.h"
|
|
|
|
// CPage1 dialog
|
|
class CFUISheet;
|
|
class CPageInput : public CPropertyPage
|
|
{
|
|
DECLARE_DYNAMIC(CPageInput)
|
|
|
|
public:
|
|
CPageInput();
|
|
virtual ~CPageInput();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_PROPPAGE_PAGE_INPUT };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CString m_strDataInput;
|
|
CString m_strFltInput;
|
|
CString m_strOutlineInput;
|
|
afx_msg void OnBnClickedButtonSeeInput();
|
|
afx_msg void OnBnClickedButtonSeeFault();
|
|
afx_msg void OnBnClickedButtonSeeOutline();
|
|
afx_msg void OnBnClickedButtonDataInput();
|
|
afx_msg void OnBnClickedButtonFltInput();
|
|
afx_msg void OnBnClickedButtonOutlineInput();
|
|
public:
|
|
/*CFUISheet* m_pPages;*/
|
|
/*CFPoints* pPoints;*/
|
|
virtual BOOL OnInitDialog();
|
|
};
|