bncdoc.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // BounceDoc.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. // This is a part of the Microsoft Foundation Classes C++ library.
  21. // Copyright (C) 1992-1998 Microsoft Corporation
  22. // All rights reserved.
  23. //
  24. // This source code is only intended as a supplement to the
  25. // Microsoft Foundation Classes Reference and related
  26. // electronic documentation provided with the library.
  27. // See these sources for detailed information regarding the
  28. // Microsoft Foundation Classes product.
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CBounceDoc document
  31. class CBounceDoc : public CDocument
  32. {
  33. protected:
  34. CBounceDoc();           // protected constructor used by dynamic creation
  35. DECLARE_DYNCREATE(CBounceDoc)
  36. // Attributes
  37. public:
  38. // bounce window client area and bouncing ball color/size parameters
  39. COLORREF m_clrBall;
  40. BOOL m_bFastSpeed;          // current speed
  41. CPoint m_ptPixel;           // pixel size
  42. CSize m_sizeRadius;         // radius of ball
  43. CSize m_sizeMove;           // move speed
  44. CSize m_sizeTotal;          // total size for ball bitmap
  45. CPoint m_ptCenter;          // current center for the ball
  46. //state of color buttons
  47. BOOL m_bBlack;
  48. BOOL m_bWhite;
  49. BOOL m_bBlue;
  50. BOOL m_bRed;
  51. BOOL m_bGreen;
  52. BOOL m_bCustom;
  53. // for replicating bouncing ball
  54. CBitmap m_bmBall;
  55. // Operations
  56. public:
  57. void SetCustomBallColor(COLORREF clr);
  58. void SetBallRadius(CSize radius);
  59. void ClearAllColors();
  60. // Overrides
  61. // ClassWizard generated virtual function overrides
  62. //{{AFX_VIRTUAL(CBounceDoc)
  63. public:
  64. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  65. protected:
  66. virtual BOOL OnNewDocument();
  67. //}}AFX_VIRTUAL
  68. // Implementation
  69. public:
  70. virtual ~CBounceDoc();
  71. #ifdef _DEBUG
  72. virtual void AssertValid() const;
  73. virtual void Dump(CDumpContext& dc) const;
  74. #endif
  75. // Generated message map functions
  76. protected:
  77. //{{AFX_MSG(CBounceDoc)
  78. // NOTE - the ClassWizard will add and remove member functions here.
  79. //}}AFX_MSG
  80. DECLARE_MESSAGE_MAP()
  81. };