www.pudn.com > raushon.rar > DlgGeoTran.cpp
// DlgGeoTran.cpp : implementation file
//
#include "stdafx.h"
#include "DibApiTest.h"
#include "DlgGeoTran.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgGeoTran dialog
CDlgGeoTran::CDlgGeoTran(CWnd* pParent /*=NULL*/)
: CDialog(CDlgGeoTran::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgGeoTran)
m_Xoffset = 0;
m_Yoffset = 0;
//}}AFX_DATA_INIT
}
void CDlgGeoTran::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgGeoTran)
DDX_Text(pDX, IDC_shuipingTranslation, m_Xoffset);
DDX_Text(pDX, IDC_chuizhiTranslation, m_Yoffset);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgGeoTran, CDialog)
//{{AFX_MSG_MAP(CDlgGeoTran)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgGeoTran message handlers
void CDlgGeoTran::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}