www.pudn.com > raushon.rar > DlgGeoZoom.cpp


// DlgGeoZoom.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "DibApiTest.h" 
#include "DlgGeoZoom.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgGeoZoom dialog 
 
 
CDlgGeoZoom::CDlgGeoZoom(CWnd* pParent /*=NULL*/) 
	: CDialog(CDlgGeoZoom::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CDlgGeoZoom) 
	m_XZoom = 0.0f; 
	m_YZoom = 0.0f; 
	//}}AFX_DATA_INIT 
} 
 
 
void CDlgGeoZoom::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CDlgGeoZoom) 
	DDX_Text(pDX, IDC_shuiping, m_XZoom); 
	DDX_Text(pDX, IDC_chuizhi, m_YZoom); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CDlgGeoZoom, CDialog) 
	//{{AFX_MSG_MAP(CDlgGeoZoom) 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CDlgGeoZoom message handlers 
 
void CDlgGeoZoom::OnOK()  
{ 
	// TODO: Add extra validation here 
 
	CDialog::OnOK(); 
}