www.pudn.com > chaos.rar > DlgChaos.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