MyCoordPageRotation.h
上传用户:cding2008
上传日期:2007-01-03
资源大小:1812k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // MyCoordPageRotation.h : header file; interface of the CMyCoordPropSheet class
  3. //
  4. // ModelMagic 3D and 'glOOP' (OpenGL Object Oriented Programming library)
  5. // Copyright (c) Craig Fahrnbach 1997, 1999
  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. /////////////////////////////////////////////////////////////////////////////
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CMyCoordPageRotation dialog
  19. class CMyCoordPageRotation : public CPropertyPage
  20. {
  21. DECLARE_DYNCREATE(CMyCoordPageRotation)
  22. // Construction
  23. public:
  24. CMyCoordPageRotation();
  25. ~CMyCoordPageRotation();
  26. void GetDialogData();
  27. void UpdateDialogData();
  28. void ResetDialogData();
  29. // Dialog Data
  30. //{{AFX_DATA(CMyCoordPageRotation)
  31. enum { IDD = IDD_PAGE_ROTATION };
  32. float m_fRotateX;
  33. float m_fRotateY;
  34. float m_fRotateZ;
  35. //}}AFX_DATA
  36. // Overrides
  37. // ClassWizard generate virtual function overrides
  38. //{{AFX_VIRTUAL(CMyCoordPageRotation)
  39. protected:
  40. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. protected:
  44. // Generated message map functions
  45. //{{AFX_MSG(CMyCoordPageRotation)
  46. virtual BOOL OnInitDialog();
  47. afx_msg void OnChangeX();
  48. afx_msg void OnChangeY();
  49. afx_msg void OnChangeZ();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };