s045508View.h
上传用户:bjzhifu888
上传日期:2013-01-22
资源大小:136k
文件大小:3k
源码类别:

STL

开发平台:

Visual C++

  1. // s045508View.h : interface of the CS045508View class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_S045508VIEW_H__4B83D27F_02D1_4C75_B65E_F95BDFD08362__INCLUDED_)
  5. #define AFX_S045508VIEW_H__4B83D27F_02D1_4C75_B65E_F95BDFD08362__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "glgl.h"
  10. #include "glglu.h"
  11. #include "glglaux.h"
  12. class CS045508View : public CView
  13. {
  14. protected: // create from serialization only
  15. CS045508View();
  16. DECLARE_DYNCREATE(CS045508View)
  17. // Attributes
  18. public:
  19. CS045508Doc* GetDocument();
  20.     HGLRC m_hRC;
  21. CDC* m_pDC;
  22. BOOL SetupViewingFrustum(double aspect);
  23.     BOOL SetupViewingTransform();
  24.     BOOL Lighting();
  25.     BOOL Material();
  26.     BOOL RenderScene();
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CS045508View)
  32. public:
  33. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  34. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  35. virtual void OnInitialUpdate();
  36. protected:
  37. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  38. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  39. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. public:
  43. CPoint m_LeftDownPos;
  44. int mouse;
  45. int ShadeOrWire;
  46. float zpan;
  47. float ypan;
  48. float xpan;
  49. float zRot;
  50. float yRot;
  51. float xRot;
  52. BOOL SetupPixelFormat();
  53. BOOL InitializeOpenGL();
  54. virtual ~CS045508View();
  55. #ifdef _DEBUG
  56. virtual void AssertValid() const;
  57. virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59. protected:
  60. // Generated message map functions
  61. protected:
  62. //{{AFX_MSG(CS045508View)
  63. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  64. afx_msg void OnDestroy();
  65. afx_msg void OnSize(UINT nType, int cx, int cy);
  66. afx_msg void OnTOOLBARxRotCCW();
  67. afx_msg void OnTOOLBARxRotCW();
  68. afx_msg void OnTOOLBARyRotCCW();
  69. afx_msg void OnTOOLBARyRotCW();
  70. afx_msg void OnTOOLBARzRotCCW();
  71. afx_msg void OnTOOLBARzRotCW();
  72. afx_msg void OnToolbarXpanL();
  73. afx_msg void OnToolbarXpanR();
  74. afx_msg void OnToolbarYpanD();
  75. afx_msg void OnToolbarYpanU();
  76. afx_msg void OnZoomIn();
  77. afx_msg void OnZoomOut();
  78. afx_msg void OnShade();
  79. afx_msg void OnWireframe();
  80. afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
  81. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  82. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  83. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  84. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  85. //}}AFX_MSG
  86. DECLARE_MESSAGE_MAP()
  87. };
  88. #ifndef _DEBUG  // debug version in s045508View.cpp
  89. inline CS045508Doc* CS045508View::GetDocument()
  90.    { return (CS045508Doc*)m_pDocument; }
  91. #endif
  92. /////////////////////////////////////////////////////////////////////////////
  93. //{{AFX_INSERT_LOCATION}}
  94. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  95. #endif // !defined(AFX_S045508VIEW_H__4B83D27F_02D1_4C75_B65E_F95BDFD08362__INCLUDED_)