statuspage.h

来自「故障诊断工作涉及的领域相当广泛」· C头文件 代码 · 共 138 行

H
138
字号
// StatusPage.h : header file
//

#ifndef __STATUSPAGE_H__
#define __STATUSPAGE_H__

/////////////////////////////////////////////////////////////////////////////
// COrdinatePage dialog

class COrdinatePage : public CPropertyPage
{
	DECLARE_DYNCREATE(COrdinatePage)

// Construction
public:
	COrdinatePage();
	~COrdinatePage();

// Dialog Data
	//{{AFX_DATA(COrdinatePage)
	enum { IDD = IDD_ORDINATEPAGE };
	double	m_dStoW;
	double	m_dWtoS;
	double	m_dOriginX;
	double	m_dOriginY;
	double	m_dOriginZ;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(COrdinatePage)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(COrdinatePage)
	afx_msg void OnDeltaposSpinX(NMHDR* pNMHDR, LRESULT* pResult);
	virtual BOOL OnInitDialog();
	afx_msg void OnDeltaposSpinY(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnDeltaposSpinZ(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnKillfocusEditStow();
	afx_msg void OnKillfocusEditWtos();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};


/////////////////////////////////////////////////////////////////////////////
// CSetPage dialog

class CSetPage : public CPropertyPage
{
	DECLARE_DYNCREATE(CSetPage)

// Construction
public:
	CSetPage();
	~CSetPage();

// Dialog Data
	//{{AFX_DATA(CSetPage)
	enum { IDD = IDD_SETPAGE };
	double	m_dGrid;
	double	m_dSnap;
	int		m_nGrid;
	int		m_nOrtho;
	int		m_nSnap;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CSetPage)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CSetPage)
		// NOTE: the ClassWizard will add member functions here
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};


/////////////////////////////////////////////////////////////////////////////
// COSnapPage dialog

class COSnapPage : public CPropertyPage
{
	DECLARE_DYNCREATE(COSnapPage)

// Construction
public:
	int m_nOSnapSize;
	COSnapPage();
	~COSnapPage();

// Dialog Data
	//{{AFX_DATA(COSnapPage)
	enum { IDD = IDD_OSNAPPAGE };
	BOOL	m_bCenter;
	BOOL	m_bEndpoint;
	BOOL	m_bMidpoint;
	BOOL	m_bQuardant;
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(COSnapPage)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(COSnapPage)
	afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};



#endif // __STATUSPAGE_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?