home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 8090 / ModelEdit.7z / TranslationDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2006-03-08  |  1.1 KB  |  49 lines

  1. // TranslationDlg.cpp : implementation file
  2. //
  3.  
  4. #include "precompile.h"
  5. #include "modeledit.h"
  6. #include "translationdlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // TranslationDlg dialog
  16.  
  17.  
  18. TranslationDlg::TranslationDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(TranslationDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(TranslationDlg)
  22.     m_xTrans = _T("");
  23.     m_yTrans = _T("");
  24.     m_zTrans = _T("");
  25.     //}}AFX_DATA_INIT
  26. }
  27.  
  28.  
  29. void TranslationDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31.     CDialog::DoDataExchange(pDX);
  32.     //{{AFX_DATA_MAP(TranslationDlg)
  33.     DDX_Text(pDX, IDC_XTRANS, m_xTrans);
  34.     DDX_Text(pDX, IDC_YTRANS, m_yTrans);
  35.     DDX_Text(pDX, IDC_ZTRANS, m_zTrans);
  36.     //}}AFX_DATA_MAP
  37. }
  38.  
  39.  
  40. BEGIN_MESSAGE_MAP(TranslationDlg, CDialog)
  41.     //{{AFX_MSG_MAP(TranslationDlg)
  42.         // NOTE: the ClassWizard will add message map macros here
  43.     //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // TranslationDlg message handlers
  48.  
  49.