bncvw.h
上传用户:liudazhe
上传日期:2007-01-02
资源大小:51k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // BounceVw.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 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. /////////////////////////////////////////////////////////////////////////////
  13. // CBounceView view
  14. class CBounceView : public CView
  15. {
  16. protected:
  17. CBounceView();           // protected constructor used by dynamic creation
  18. DECLARE_DYNCREATE(CBounceView)
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. void MakeNewBall();
  24. void ChangeSpeed();
  25. CBounceDoc* GetDocument();
  26. void MixColors();
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CBounceView)
  30. public:
  31. virtual void OnInitialUpdate();
  32. protected:
  33. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  34. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. virtual ~CBounceView();
  39. #ifdef _DEBUG
  40. virtual void AssertValid() const;
  41. virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43. // Generated message map functions
  44. protected:
  45. //{{AFX_MSG(CBounceView)
  46. afx_msg void OnCustomColor();
  47. afx_msg void OnFast();
  48. afx_msg void OnSlow();
  49. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50. afx_msg void OnSize(UINT nType, int cx, int cy);
  51. afx_msg void OnTimer(UINT nIDEvent);
  52. afx_msg void OnUpdateFast(CCmdUI* pCmdUI);
  53. afx_msg void OnUpdateSlow(CCmdUI* pCmdUI);
  54. afx_msg void OnUpdateCustom(CCmdUI* pCmdUI);
  55. afx_msg void OnUpdateBlack(CCmdUI* pCmdUI);
  56. afx_msg void OnUpdateBlue(CCmdUI* pCmdUI);
  57. afx_msg void OnUpdateGreen(CCmdUI* pCmdUI);
  58. afx_msg void OnUpdateRed(CCmdUI* pCmdUI);
  59. afx_msg void OnUpdateWhite(CCmdUI* pCmdUI);
  60. afx_msg void OnColor();
  61. //}}AFX_MSG
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. #ifndef _DEBUG  // debug version in HelloVw.cpp
  65. inline CBounceDoc* CBounceView::GetDocument()
  66.    { return (CBounceDoc*)m_pDocument; }
  67. #endif
  68. /////////////////////////////////////////////////////////////////////////////