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

  1. // RotationDlg.cpp : implementation file
  2. //
  3.  
  4. #include "precompile.h"
  5. #include "modeledit.h"
  6. #include "rotationdlg.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. // RotationDlg dialog
  16.  
  17.  
  18. RotationDlg::RotationDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(RotationDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(RotationDlg)
  22.     m_sRotX = _T("");
  23.     m_sRotY = _T("");
  24.     m_sRotZ = _T("");
  25.     //}}AFX_DATA_INIT
  26. }
  27.  
  28.  
  29. void RotationDlg::DoDataExchange(CDataExchange* pDX)
  30. {
  31.     CDialog::DoDataExchange(pDX);
  32.     //{{AFX_DATA_MAP(RotationDlg)
  33.     DDX_Text(pDX, IDC_ROTX, m_sRotX);
  34.     DDX_Text(pDX, IDC_ROTY, m_sRotY);
  35.     DDX_Text(pDX, IDC_ROTZ, m_sRotZ);
  36.     //}}AFX_DATA_MAP
  37. }
  38.  
  39.  
  40. BEGIN_MESSAGE_MAP(RotationDlg, CDialog)
  41.     //{{AFX_MSG_MAP(RotationDlg)
  42.         // NOTE: the ClassWizard will add message map macros here
  43.     //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // RotationDlg message handlers
  48.  
  49.