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

📄 dlgchaos.cpp

📁 用Visual c++实现数字图像迭代混沌加密
💻 CPP
字号:
// DlgChaos.cpp : implementation file
//

#include "stdafx.h"
#include "ch1_1.h"
#include "DlgChaos.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDlgChaos dialog


CDlgChaos::CDlgChaos(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgChaos::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgChaos)
	m_ChaoA = 0.0;
	m_ChaosXStart = 0.0;
	//}}AFX_DATA_INIT
}


void CDlgChaos::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgChaos)
	DDX_Text(pDX, IDC_Chaos_A, m_ChaoA);
	DDV_MinMaxDouble(pDX, m_ChaoA, 3.6, 4.);
	DDX_Text(pDX, IDC_Chaos_XStart, m_ChaosXStart);
	DDV_MinMaxDouble(pDX, m_ChaosXStart, -1., 1.);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDlgChaos message handlers

⌨️ 快捷键说明

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