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

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // AnimPropSheet.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 "AnimationDialog.h"
  22. /////////////////////////////////////////////////////////////////////////////
  23. // C3dObjectScalePage dialog
  24. IMPLEMENT_DYNAMIC(CAnimPropSheet, CPropertySheet)
  25. /////////////////////////////////////////////////////////////////////////////
  26. // C3dObjectScalePage dialog message map
  27. BEGIN_MESSAGE_MAP(CAnimPropSheet, CPropertySheet)
  28. //{{AFX_MSG_MAP(CAnimPropSheet)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CAnimPropSheet dialog construction
  33. CAnimPropSheet::CAnimPropSheet(LPSTR lpName, CWnd* pWndParent, C3dObject* pObject, C3dCamera* pCamera, C3dWorld* pWorld)
  34. : CPropertySheet(lpName, pWndParent)
  35. {
  36. // Let the object, camera or world add the animation pages since each can have
  37. // different associated animation procedures..
  38. if(pObject)
  39. {
  40. pObject->AddAnimationPages(pWorld, this);
  41. return;
  42. }
  43. if(pCamera)
  44. {
  45. pCamera->AddAnimationPages(pWorld, this);
  46. return;
  47. }
  48. if(pWorld)
  49. {
  50. pWorld->AddAnimationPages(pWorld, this);
  51. return;
  52. }
  53. }
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CAnimPropSheet function implimentation
  56. void CAnimPropSheet::PostNcDestroy()
  57. {
  58. CPropertySheet::PostNcDestroy();
  59. delete this;
  60. }