CUBEVIEW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // cubeview.h : interface of the CCubeView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CCubeView : public CView
  13. {
  14. protected: // create from serialization only
  15. CCubeView();
  16. DECLARE_DYNCREATE(CCubeView)
  17. // Attributes
  18. public:
  19. CCubeDoc* GetDocument();
  20. CPalette    m_cPalette;
  21. CPalette    *m_pOldPalette;
  22. CRect       m_oldRect;
  23. float       m_fRadius;
  24. CClientDC   *m_pDC;
  25. // Operations
  26. public:
  27. void Init();
  28. void CreateRGBPalette(void);
  29. BOOL bSetupPixelFormat(void);
  30. unsigned char ComponentFromIndex(int i, UINT nbits, UINT shift);
  31. void DrawScene(void);
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CCubeView)
  35. public:
  36. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. public:
  40. virtual ~CCubeView();
  41. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  42. #ifdef _DEBUG
  43. virtual void AssertValid() const;
  44. virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46. protected:
  47. BOOL    m_play;
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CCubeView)
  51. afx_msg void OnFilePlay();
  52. afx_msg void OnUpdateFilePlay(CCmdUI* pCmdUI);
  53. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  54. afx_msg void OnDestroy();
  55. afx_msg void OnSize(UINT nType, int cx, int cy);
  56. afx_msg void OnTimer(UINT nIDEvent);
  57. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. #ifndef _DEBUG  // debug version in cubeview.cpp
  62. inline CCubeDoc* CCubeView::GetDocument()
  63.    { return (CCubeDoc*)m_pDocument; }
  64. #endif
  65. /////////////////////////////////////////////////////////////////////////////