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

Windows编程

开发平台:

Visual C++

  1. // bounce.h : Declares the class interfaces for the Bounce child window.
  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. //
  13. #ifndef __BOUNCE_H__
  14. #define __BOUNCE_H__
  15. /////////////////////////////////////////////////////////////////////////////
  16. class CBounceWnd : public CMDIChildWnd
  17. {
  18. public:
  19. CBounceWnd();
  20. BOOL Create(LPCTSTR szTitle, LONG style = 0,
  21. const RECT& rect = rectDefault,
  22. CMDIFrameWnd* pParent = NULL);
  23. // Implementation
  24. protected:
  25. static CMenu NEAR menu;     // menu for all BOUNCE windows
  26. // bounce window client area and bouncing ball color/size parameters
  27. UINT m_nIDColor;
  28. COLORREF m_clrBall;
  29. BOOL m_bFastSpeed;          // current speed
  30. CPoint m_ptPixel;           // pixel size
  31. CSize m_sizeRadius;         // radius of ball
  32. CSize m_sizeMove;           // move speed
  33. CSize m_sizeTotal;          // total size for ball bitmap
  34. CPoint m_ptCenter;          // current center for the ball
  35. // for replicating bouncing ball
  36. CBitmap m_bmBall;
  37. void MakeNewBall();
  38. void ChangeSpeed();
  39. // message handlers
  40. //{{AFX_MSG(CBounceWnd)
  41. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42. afx_msg void OnSize(UINT nType, int cx, int cy);
  43. afx_msg void OnTimer(UINT nIDEvent);
  44. afx_msg void OnUpdateColor(CCmdUI* pCmdUI);
  45. afx_msg void OnColor();
  46. afx_msg void OnCustomColor();
  47. afx_msg void OnUpdateSlow(CCmdUI* pCmdUI);
  48. afx_msg void OnSlow();
  49. afx_msg void OnUpdateFast(CCmdUI* pCmdUI);
  50. afx_msg void OnFast();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. #endif // __BOUNCE_H__