LG_wARC.cpp
上传用户:shangwu01
上传日期:2013-04-22
资源大小:707k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // LG_wARC.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "cad.h"
  5. #include "LG_wARC.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CLG_wARC dialog
  13. CLG_wARC::CLG_wARC(CWnd* pParent /*=NULL*/)
  14. : CDialog(CLG_wARC::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CLG_wARC)
  17. m_Xcertre = 0;
  18. m_Ycertre = 0;
  19. m_R = 0;
  20. m_ARC1 = 0;
  21. m_ARC2 = 0;
  22. //}}AFX_DATA_INIT
  23. }
  24. void CLG_wARC::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CLG_wARC)
  28. DDX_Text(pDX, IDC_EDIT1, m_Xcertre);
  29. DDX_Text(pDX, IDC_EDIT2, m_Ycertre);
  30. DDX_Text(pDX, IDC_EDIT3, m_R);
  31. DDX_Text(pDX, IDC_EDIT4, m_ARC1);
  32. DDV_MinMaxLong(pDX, m_ARC1, 0, 360);
  33. DDX_Text(pDX, IDC_EDIT5, m_ARC2);
  34. DDV_MinMaxLong(pDX, m_ARC2, 0, 360);
  35. //}}AFX_DATA_MAP
  36. }
  37. BEGIN_MESSAGE_MAP(CLG_wARC, CDialog)
  38. //{{AFX_MSG_MAP(CLG_wARC)
  39. // NOTE: the ClassWizard will add message map macros here
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CLG_wARC message handlers