// ArcPage.cpp : implementation file // #include "stdafx.h" #include "IDE.h" #include "ArcPage.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CArcPage property page IMPLEMENT_DYNCREATE(CArcPage, CPropertyPage) CArcPage::CArcPage() : CPropertyPage(CArcPage::IDD) { //{{AFX_DATA_INIT(CArcPage) m_nStartAngle = 0; m_nSweepAngle = 0; //}}AFX_DATA_INIT } CArcPage::~CArcPage() { } void CArcPage::DoDataExchange(CDataExchange* pDX) { CPropertyPage::DoDataExchange(pDX); //{{AFX_DATA_MAP(CArcPage) DDX_Text(pDX, IDC_STARTANG, m_nStartAngle); DDX_Text(pDX, IDC_STOPANG, m_nSweepAngle); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CArcPage, CPropertyPage) //{{AFX_MSG_MAP(CArcPage) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CArcPage message handlers