3dPageTorus.cpp
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:3k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // 3dPageTorus.cpp : implementation file
  3. //
  4. // glOOP (OpenGL Object Oriented Programming library)
  5. // Copyright (c) Craig Fahrnbach 1997, 1998
  6. //
  7. // OpenGL is a registered trademark of Silicon Graphics
  8. //
  9. //
  10. // This program is provided for educational and personal use only and
  11. // is provided without guarantee or warrantee expressed or implied.
  12. //
  13. // Commercial use is strickly prohibited without written permission
  14. // from ImageWare Development.
  15. //
  16. // This program is -not- in the public domain.
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #include "stdafx.h"
  20. #include "glOOP.h"
  21. #include "3dObjectDialog.h"
  22. #ifdef _DEBUG
  23. #undef THIS_FILE
  24. static char BASED_CODE THIS_FILE[] = __FILE__;
  25. #endif
  26. //////////////////////////////////////////////////////////////////
  27. // C3dObjectTorus
  28. IMPLEMENT_DYNCREATE(C3dPageTorus, CPropertyPage)
  29. /////////////////////////////////////////////////////////////////////////////
  30. // C3dPageTorus dialog construction
  31. C3dPageTorus::C3dPageTorus()
  32. : CPropertyPage(C3dPageTorus::IDD)
  33. {
  34. //{{AFX_DATA_INIT(C3dPageTorus)
  35. m_fMajorRadius = 0.0f;
  36. m_fMinorRadius = 0.0f;
  37. m_iMinorSeg = 0;
  38. m_iMajorSeg = 0;
  39. m_szName = _T("");
  40. //}}AFX_DATA_INIT
  41. }
  42. /////////////////////////////////////////////////////////////////////////////
  43. // C3dPageTorus Destructor
  44. C3dPageTorus::~C3dPageTorus()
  45. {
  46. }
  47. void C3dPageTorus::DoDataExchange(CDataExchange* pDX)
  48. {
  49. CPropertyPage::DoDataExchange(pDX);
  50. //{{AFX_DATA_MAP(C3dPageTorus)
  51. DDX_Text(pDX, IDC_MAJOR_RADIUS, m_fMajorRadius);
  52. DDX_Text(pDX, IDC_MINOR_RADIUS, m_fMinorRadius);
  53. DDX_Text(pDX, IDC_MINOR_SEGMENTS, m_iMinorSeg);
  54. DDX_Text(pDX, IDC_MAJOR_SEGMENTS, m_iMajorSeg);
  55. DDX_Text(pDX, IDC_NAME, m_szName);
  56. DDV_MaxChars(pDX, m_szName, 40);
  57. //}}AFX_DATA_MAP
  58. }
  59. BEGIN_MESSAGE_MAP(C3dPageTorus, CPropertyPage)
  60. //{{AFX_MSG_MAP(C3dPageTorus)
  61. //}}AFX_MSG_MAP
  62. END_MESSAGE_MAP()
  63. /////////////////////////////////////////////////////////////////////////////
  64. // C3dPageTorus message handlers
  65. BOOL C3dPageTorus::OnInitDialog() 
  66. {
  67. // Set our local values to the Objects' values
  68. m_szName = m_pObject->m_szName;
  69. m_fMajorRadius = m_pObject->m_fMajorRadius;
  70. m_fMinorRadius = m_pObject->m_fMinorRadius;
  71. m_iMajorSeg = m_pObject->m_iNumMajor;
  72. m_iMinorSeg = m_pObject->m_iNumMinor;
  73. CPropertyPage::OnInitDialog();  // let the base class do the default work
  74. return TRUE;  // return TRUE unless you set the focus to a control
  75.               // EXCEPTION: OCX Property Pages should return FALSE
  76. }
  77. void C3dPageTorus::OnOK() 
  78. {
  79. // Dialog box is being initialized (FALSE)
  80. // or data is being retrieved (TRUE).
  81. UpdateData(TRUE);
  82. // Set our Objects' values to the local values
  83. m_pObject->m_szName = m_szName; 
  84. m_pObject->m_fMajorRadius = m_fMajorRadius;
  85. m_pObject->m_fMinorRadius = m_fMinorRadius;
  86. m_pObject->m_iNumMajor = m_iMajorSeg;
  87. m_pObject->m_iNumMinor = m_iMinorSeg;
  88. // Force the object to rebuild its' display list
  89. m_pObject->m_bBuildLists = TRUE;
  90. CPropertyPage::OnOK();
  91. }