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

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // 3dPageCSG.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. #define new DEBUG_NEW
  24. #undef THIS_FILE
  25. static char THIS_FILE[] = __FILE__;
  26. #endif
  27. //////////////////////////////////////////////////////////////////
  28. // C3dPageCSG
  29. IMPLEMENT_DYNCREATE(C3dPageCSG, CPropertyPage)
  30. /////////////////////////////////////////////////////////////////////////////
  31. // C3dPageCSG dialog
  32. C3dPageCSG::C3dPageCSG()
  33. :CPropertyPage(C3dPageCSG::IDD)
  34. {
  35. //{{AFX_DATA_INIT(C3dPageCSG)
  36. m_szName = _T("");
  37. m_iCSGType = -1;
  38. //}}AFX_DATA_INIT
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // C3dPageCSG Destructor
  42. C3dPageCSG::~C3dPageCSG()
  43. {
  44. }
  45. void C3dPageCSG::DoDataExchange(CDataExchange* pDX)
  46. {
  47. CDialog::DoDataExchange(pDX);
  48. //{{AFX_DATA_MAP(C3dPageCSG)
  49. DDX_Text(pDX, IDC_NAME, m_szName);
  50. DDX_Radio(pDX, IDC_RADIO_OR, m_iCSGType);
  51. //}}AFX_DATA_MAP
  52. }
  53. BEGIN_MESSAGE_MAP(C3dPageCSG, CDialog)
  54. //{{AFX_MSG_MAP(C3dPageCSG)
  55. ON_BN_CLICKED(IDC_RADIO_OR, OnRadioOR)
  56. ON_BN_CLICKED(IDC_RADIO_AND, OnRadioAND)
  57. ON_BN_CLICKED(IDC_RADIO_SUB_AB, OnRadioSubAb)
  58. ON_BN_CLICKED(IDC_RADIO_SUB_BA, OnRadioSubBa)
  59. //}}AFX_MSG_MAP
  60. END_MESSAGE_MAP()
  61. /////////////////////////////////////////////////////////////////////////////
  62. // C3dPageCSG message handlers
  63. BOOL C3dPageCSG::OnInitDialog() 
  64. {
  65. // let the base class do the default work
  66. CPropertyPage::OnInitDialog();
  67. // Set our local values to the Objects' values
  68. m_szName  = m_pObject->m_szName;
  69. if(m_pObject->m_iCSGType == CSG_TYPE_OR)
  70. m_iCSGType = 0;
  71. if(m_pObject->m_iCSGType == CSG_TYPE_SUB_AB)
  72. m_iCSGType = 1;
  73. if(m_pObject->m_iCSGType == CSG_TYPE_SUB_BA)
  74. m_iCSGType = 2;
  75. if(m_pObject->m_iCSGType == CSG_TYPE_AND)
  76. m_iCSGType = 3;
  77. // Dialog box is being initialized (FALSE)
  78. // or data is being retrieved (TRUE).
  79. UpdateData(FALSE);
  80. return TRUE;  // return TRUE unless you set the focus to a control
  81.               // EXCEPTION: OCX Property Pages should return FALSE
  82. }
  83. void C3dPageCSG::OnSize(UINT nType, int cx, int cy) 
  84. {
  85. CPropertyPage::OnSize(nType, cx, cy);
  86. // Get the handle of the CTreeCtrl window and set
  87. // its size
  88. // HWND hTree = m_treeCtrl.GetSafeHwnd();
  89. // if(hTree) {
  90. // m_treeCtrl.SetWindowPos(NULL, 0, 0,
  91. // cx, cy, SWP_NOZORDER | SWP_NOACTIVATE);
  92. // }
  93. }
  94. void C3dPageCSG::OnOK() 
  95. {
  96. // Dialog box is being initialized (FALSE)
  97. // or data is being retrieved (TRUE).
  98. UpdateData(TRUE); // Get the dialog data
  99. // Set the Object data..
  100. m_pObject->m_szName  = m_szName; 
  101. if(m_iCSGType == 0)
  102. m_pObject->m_iCSGType = CSG_TYPE_OR;
  103. if(m_iCSGType == 1)
  104. m_pObject->m_iCSGType = CSG_TYPE_SUB_AB;
  105. if(m_iCSGType == 2)
  106. m_pObject->m_iCSGType = CSG_TYPE_SUB_BA;
  107. if(m_iCSGType == 3)
  108. m_pObject->m_iCSGType = CSG_TYPE_AND;
  109. // Force the object to rebuild its' display list
  110. m_pObject->m_bBuildLists = TRUE;
  111. CPropertyPage::OnOK();
  112. }
  113. void C3dPageCSG::OnRadioOR() 
  114. {
  115. m_iCSGType =  0;
  116. }
  117. void C3dPageCSG::OnRadioAND()
  118. m_iCSGType =  1;
  119. }
  120. void C3dPageCSG::OnRadioSubAb() 
  121. {
  122. m_iCSGType =  2;
  123. }
  124. void C3dPageCSG::OnRadioSubBa() 
  125. {
  126. m_iCSGType =  3;
  127. }