LG_wARC.cpp
上传用户:shangwu01
上传日期:2013-04-22
资源大小:707k
文件大小:1k
- // LG_wARC.cpp : implementation file
- //
- #include "stdafx.h"
- #include "cad.h"
- #include "LG_wARC.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CLG_wARC dialog
- CLG_wARC::CLG_wARC(CWnd* pParent /*=NULL*/)
- : CDialog(CLG_wARC::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CLG_wARC)
- m_Xcertre = 0;
- m_Ycertre = 0;
- m_R = 0;
- m_ARC1 = 0;
- m_ARC2 = 0;
- //}}AFX_DATA_INIT
- }
- void CLG_wARC::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CLG_wARC)
- DDX_Text(pDX, IDC_EDIT1, m_Xcertre);
- DDX_Text(pDX, IDC_EDIT2, m_Ycertre);
- DDX_Text(pDX, IDC_EDIT3, m_R);
- DDX_Text(pDX, IDC_EDIT4, m_ARC1);
- DDV_MinMaxLong(pDX, m_ARC1, 0, 360);
- DDX_Text(pDX, IDC_EDIT5, m_ARC2);
- DDV_MinMaxLong(pDX, m_ARC2, 0, 360);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CLG_wARC, CDialog)
- //{{AFX_MSG_MAP(CLG_wARC)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CLG_wARC message handlers