bilateralparameter.cpp

来自「很珍贵得视频编辑器原码及CODEC。需要安装下列CODEC.可播放多种格式的视频」· C++ 代码 · 共 78 行

CPP
78
字号
// UNSHARP.cpp : implementation file
//

#include "stdafx.h"
#include "ImageTool.h"
#include "BilateralParameter.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// UNSHARP dialog


BilateralParameter::BilateralParameter(CWnd* pParent /*=NULL*/)
	: CDialog(BilateralParameter::IDD, pParent)
{
	//{{AFX_DATA_INIT(BilateralParameter)
	m_GeoParameter = 10;
	m_PhotoParameter = 10;
	m_TotalMasksize = 5;
	//}}AFX_DATA_INIT
}


void BilateralParameter::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(BilateralParameter)
	DDX_Text(pDX, IDC_EDIT2, m_GeoParameter);
	DDX_Text(pDX, IDC_EDIT3, m_PhotoParameter);
	DDX_Text(pDX, IDC_EDIT1, m_TotalMasksize);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(BilateralParameter, CDialog)
	//{{AFX_MSG_MAP(BilateralParameter)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// BilateralParameter message handlers
/////////////////////////////////////////////////////////////////////////////
// CBilateralParameter dialog


CBilateralParameter::CBilateralParameter(CWnd* pParent /*=NULL*/)
	: CDialog(CBilateralParameter::IDD, pParent)
{
	//{{AFX_DATA_INIT(CBilateralParameter)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CBilateralParameter::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CBilateralParameter)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CBilateralParameter, CDialog)
	//{{AFX_MSG_MAP(CBilateralParameter)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CBilateralParameter message handlers

⌨️ 快捷键说明

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