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.
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//Îļþ: ScaleSelectPage.h
|
|
//Ö÷Òª¹¦ÄÜ:
|
|
//
|
|
//³ÌÐò±àд: 2006-12-07
|
|
//
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_SCALESELECTPAGE_H__2F811AB2_BE20_43B8_A9B3_E5229B911875__INCLUDED_)
|
|
#define AFX_SCALESELECTPAGE_H__2F811AB2_BE20_43B8_A9B3_E5229B911875__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// ScaleSelectPage.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CScaleSelectPage dialog
|
|
|
|
class CScaleSelectPage : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CScaleSelectPage)
|
|
|
|
// Construction
|
|
public:
|
|
CScaleSelectPage();
|
|
~CScaleSelectPage();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CScaleSelectPage)
|
|
enum { IDD = IDD_DIALOG_SCALE_PAGE };
|
|
BOOL m_bXnotY;
|
|
CString m_xscale;
|
|
CString m_yscale;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(CScaleSelectPage)
|
|
public:
|
|
virtual LRESULT OnWizardNext();
|
|
virtual LRESULT OnWizardBack();
|
|
virtual BOOL OnWizardFinish();
|
|
virtual void OnOK();
|
|
virtual BOOL OnSetActive();
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CScaleSelectPage)
|
|
afx_msg void OnSelchangeCOMBOxscale();
|
|
afx_msg void OnEditchangeCOMBOyscale();
|
|
afx_msg void OnSelchangeCOMBOyscale();
|
|
afx_msg void OnEditchangeCOMBOxscale();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnCheckXy();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_SCALESELECTPAGE_H__2F811AB2_BE20_43B8_A9B3_E5229B911875__INCLUDED_)
|