home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / ScaleDialog.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.0 KB  |  48 lines

  1. // ScaleDialog.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Radiant.h"
  6. #include "ScaleDialog.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. // CScaleDialog dialog
  16.  
  17.  
  18. CScaleDialog::CScaleDialog(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CScaleDialog::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CScaleDialog)
  22.     m_fZ = 1.0f;
  23.     m_fX = 1.0f;
  24.     m_fY = 1.0f;
  25.     //}}AFX_DATA_INIT
  26. }
  27.  
  28.  
  29. void CScaleDialog::DoDataExchange(CDataExchange* pDX)
  30. {
  31.     CDialog::DoDataExchange(pDX);
  32.     //{{AFX_DATA_MAP(CScaleDialog)
  33.     DDX_Text(pDX, IDC_EDIT_Z, m_fZ);
  34.     DDX_Text(pDX, IDC_EDIT_X, m_fX);
  35.     DDX_Text(pDX, IDC_EDIT_Y, m_fY);
  36.     //}}AFX_DATA_MAP
  37. }
  38.  
  39.  
  40. BEGIN_MESSAGE_MAP(CScaleDialog, CDialog)
  41.     //{{AFX_MSG_MAP(CScaleDialog)
  42.         // NOTE: the ClassWizard will add message map macros here
  43.     //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CScaleDialog message handlers
  48.