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
741 B
C++
36 lines
741 B
C++
#pragma once
|
|
#include "Resource.h"
|
|
//class CFUISheet;
|
|
|
|
// CPagePrecision dialog
|
|
|
|
class AFX_EXT_CLASS CPagePrecision : public CPropertyPage
|
|
{
|
|
DECLARE_DYNAMIC(CPagePrecision)
|
|
|
|
public:
|
|
CPagePrecision(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~CPagePrecision();
|
|
|
|
// Dialog Data
|
|
enum { IDD = IDD_PROPPAGE_PAGE_PRECISION };
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
virtual BOOL OnInitDialog();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
public:
|
|
double m_precision;
|
|
int m_LoopMax;
|
|
int m_LoopMin;
|
|
|
|
afx_msg void OnEnChangeEditPrecision();
|
|
afx_msg void OnBnClickedButtonLoopEnlarge();
|
|
afx_msg void OnBnClickedButtonLoopReduce();
|
|
|
|
///** @brief ³õʼ»¯¸÷ÊôÐÔ²ÎÊý */
|
|
int Initial(SGridParamEx& gp);
|
|
};
|