⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ellipsefilterdialog.cpp

📁 visual c++数字图像与图形处理中的光盘内容
💻 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 + -