3dPageLathe.cpp
资源名称:gloop.zip [点击查看]
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:3k
源码类别:
OpenGL
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // 3dPageLathe.cpp : implementation file
- //
- // glOOP (OpenGL Object Oriented Programming library)
- // Copyright (c) Craig Fahrnbach 1997, 1998
- //
- // OpenGL is a registered trademark of Silicon Graphics
- //
- //
- // This program is provided for educational and personal use only and
- // is provided without guarantee or warrantee expressed or implied.
- //
- // Commercial use is strickly prohibited without written permission
- // from ImageWare Development.
- //
- // This program is -not- in the public domain.
- //
- /////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "glOOP.h"
- #include "3dObjectDialog.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
- //////////////////////////////////////////////////////////////////
- // C3dPageLathe
- IMPLEMENT_DYNCREATE(C3dPageLathe, CPropertyPage)
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageLathe dialog construction
- C3dPageLathe::C3dPageLathe()
- : CPropertyPage(C3dPageLathe::IDD)
- {
- //{{AFX_DATA_INIT(C3dPageLathe)
- m_fSweepAngle = 0.0f;
- m_iSegments = 0;
- m_iSmooth = -1;
- m_fMaxAngle = 0.0f;
- m_szName = _T("");
- //}}AFX_DATA_INIT
- }
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageLathe Destructor
- C3dPageLathe::~C3dPageLathe()
- {
- }
- void C3dPageLathe::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(C3dPageLathe)
- DDX_Text(pDX, IDC_SWEEP_ANGLE, m_fSweepAngle);
- DDX_Text(pDX, IDC_SEGMENTS, m_iSegments);
- DDX_Radio(pDX, IDC_RADIO_SMOOTH, m_iSmooth);
- DDX_Text(pDX, IDC_MAX_ANGLE, m_fMaxAngle);
- DDX_Text(pDX, IDC_NAME, m_szName);
- DDV_MaxChars(pDX, m_szName, 40);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(C3dPageLathe, CPropertyPage)
- //{{AFX_MSG_MAP(C3dPageLathe)
- ON_BN_CLICKED(IDC_RADIO_SMOOTH, OnRadioSmooth)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageLathe message handlers
- BOOL C3dPageLathe::OnInitDialog()
- {
- // Set our local values to the Objects' values
- m_szName = m_pObject->m_szName;
- m_fSweepAngle = m_pObject->m_fSweepAngle;
- m_iSegments = m_pObject->m_iSegments;
- m_fMaxAngle = m_pObject->m_fMaxAngle;
- if(m_pObject->m_bSmooth)
- m_iSmooth = 0;
- else
- m_iSmooth = 1;
- CPropertyPage::OnInitDialog(); // let the base class do the default work
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void C3dPageLathe::OnOK()
- {
- // Dialog box is being initialized (FALSE)
- // or data is being retrieved (TRUE).
- UpdateData(TRUE);
- // Set our Objects' values to the local values
- m_pObject->m_szName = m_szName;
- m_pObject->m_fSweepAngle = m_fSweepAngle;
- m_pObject->m_iSegments = m_iSegments;
- m_pObject->m_fMaxAngle = m_fMaxAngle;
- // Force the object to rebuild its' display list
- m_pObject->m_bBuildLists = TRUE;
- CPropertyPage::OnOK();
- }
- void C3dPageLathe::OnRadioSmooth()
- {
- // Toggle the radio selection
- if(m_pObject->m_bSmooth) {
- m_pObject->m_bSmooth = FALSE;
- m_iSmooth = 1;
- }
- else {
- m_pObject->m_bSmooth = TRUE;
- m_iSmooth = 0;
- }
- // Initialize the Dialog Data (forces DoDataExchange)
- UpdateData(FALSE);
- }