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

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // 3dBackgroundPropSheet.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. #include "3dBackgroundDialog.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // 3dBackgroundPropSheet dialog
  30. IMPLEMENT_DYNAMIC(C3dBackgroundPropSheet, CPropertySheet)
  31. /////////////////////////////////////////////////////////////////////////////
  32. // 3dBackgroundPropSheet dialog message map
  33. BEGIN_MESSAGE_MAP(C3dBackgroundPropSheet, CPropertySheet)
  34. //{{AFX_MSG_MAP(C3dBackgroundPropSheet)
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // C3dBackgroundPropSheet dialog construction
  39. C3dBackgroundPropSheet::C3dBackgroundPropSheet(LPSTR lpName, CWnd* pWndParent, C3dWorld* pWorld)
  40. : CPropertySheet(lpName, pWndParent)
  41. {
  42. AddPage(&m_BackgroundPage);
  43. m_BackgroundPage.m_pWorld = pWorld;
  44. AddPage(&m_BackgroundFogPage);
  45. m_BackgroundFogPage.m_pWorld = pWorld;
  46. AddPage(&m_AnimationPage);
  47. m_AnimationPage.m_pWorld = pWorld;
  48. }
  49. /////////////////////////////////////////////////////////////////////////////
  50. // 3dBackgroundPropSheet Implimentation
  51. void C3dBackgroundPropSheet::PostNcDestroy()
  52. {
  53. CPropertySheet::PostNcDestroy();
  54. delete this;
  55. }