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

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // 3dCameraPropSheet.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 "3dCameraDialog.h"
  23. /////////////////////////////////////////////////////////////////////////////
  24. // C3dCameraPropSheet dialog
  25. IMPLEMENT_DYNAMIC(C3dCameraPropSheet, CPropertySheet)
  26. /////////////////////////////////////////////////////////////////////////////
  27. // C3dCameraPropSheet dialog message map
  28. BEGIN_MESSAGE_MAP(C3dCameraPropSheet, CPropertySheet)
  29. //{{AFX_MSG_MAP(C3dCameraPropSheet)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // C3dCameraPropSheet dialog construction
  34. C3dCameraPropSheet::C3dCameraPropSheet(LPSTR lpName, CWnd* pWndParent, C3dCamera* pCamera, C3dWorld* pWorld)
  35. : CPropertySheet(lpName, pWndParent)
  36. {
  37. // Add the applicable pages to the property sheet
  38. AddPage(&m_3dCameraPage);
  39. m_3dCameraPage.m_pCamera = pCamera;
  40. AddPage(&m_OriginPage);
  41. m_OriginPage.m_pCamera = pCamera;
  42. AddPage(&m_RotatePage);
  43. m_RotatePage.m_pCamera = pCamera;
  44. AddPage(&m_AnimationPage);
  45. m_AnimationPage.m_pCamera = pCamera;
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // C3dCameraPropSheet function implimentation
  49. void C3dCameraPropSheet::PostNcDestroy()
  50. {
  51. CPropertySheet::PostNcDestroy();
  52. delete this;
  53. }