outputdialog.h
来自「《数字图象工程案例》原码」· C头文件 代码 · 共 65 行
H
65 行
// OutputDialog.h : header file
//
#ifndef __OUTPUTDIALOG_H__
#define __OUTPUTDIALOG_H__
/////////////////////////////////////////////////////////////////////////////
// COutputDialog dialog
class COutputDialog : public CDialog
{
DECLARE_DYNCREATE(COutputDialog)
// Construction
public:
double xyratio;
COutputDialog(CWnd* pParent=NULL);
~COutputDialog();
// Dialog Data
//{{AFX_DATA(COutputDialog)
enum { IDD = IDD_OUTPUTDLG };
BOOL m_checkoverlap;
double m_depth;
int m_dist;
int m_overlap;
double m_pointR;
int m_color;
int m_dire;
int m_xstep;
double m_realx;
double m_realy;
BOOL m_checkdetail;
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(COutputDialog)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(COutputDialog)
afx_msg void OnCheckOverlap();
virtual BOOL OnInitDialog();
afx_msg void OnRadioDist();
afx_msg void OnRadioXstep();
afx_msg void OnChangeRealX();
afx_msg void OnChangePointradius();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // __OUTPUTPROPERTYPAGE1_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?