home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************/
- /* */
- /* TurboCAD for Windows */
- /* Copyright (c) 1993 - 2001 */
- /* International Microcomputer Software, Inc. */
- /* (IMSI) */
- /* All rights reserved. */
- /* */
- /******************************************************************/
-
- // RectPage.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "RRect.h"
- #include "RectPage.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CRectPage dialog
-
-
- CRectPage::CRectPage(CWnd* pParent /*=NULL*/)
- : CDialog(CRectPage::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CRectPage)
- m_roundness = 0.0;
- //}}AFX_DATA_INIT
- }
-
-
- void CRectPage::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CRectPage)
- DDX_Text(pDX, IDC_ROUNDNESS, m_roundness);
- // set limin for value of Roundess property
- DDV_MinMaxDouble(pDX, m_roundness, 0., 100.);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CRectPage, CDialog)
- //{{AFX_MSG_MAP(CRectPage)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CRectPage message handlers
-