📄 ellipsefilterdialog.cpp
字号:
// EllipseFilterDialog.cpp : implementation file
//
#include "stdafx.h"
#include "Raster.h"
#include "EllipseFilterDialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CEllipseFilterDialog dialog
CEllipseFilterDialog::CEllipseFilterDialog(CWnd* pParent /*=NULL*/)
: CDialog(CEllipseFilterDialog::IDD, pParent)
{
//{{AFX_DATA_INIT(CEllipseFilterDialog)
m_nDstX = 0;
m_nDstY = 0;
m_nSrcHeight = 0;
m_nSrcWidth = 0;
m_nSrcX = 0;
m_nSrcY = 0;
//}}AFX_DATA_INIT
}
void CEllipseFilterDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CEllipseFilterDialog)
DDX_Text(pDX, IDC_EDIT_DST_X, m_nDstX);
DDX_Text(pDX, IDC_EDIT_DST_Y, m_nDstY);
DDX_Text(pDX, IDC_EDIT_SRC_HEIGHT, m_nSrcHeight);
DDX_Text(pDX, IDC_EDIT_SRC_WIDTH, m_nSrcWidth);
DDX_Text(pDX, IDC_EDIT_SRC_X, m_nSrcX);
DDX_Text(pDX, IDC_EDIT_SRC_Y, m_nSrcY);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CEllipseFilterDialog, CDialog)
//{{AFX_MSG_MAP(CEllipseFilterDialog)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CEllipseFilterDialog message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -