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

对话框与窗口

开发平台:

Visual C++

  1. // HelloVw.h : interface of the CHelloView class
  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. class CHelloView : public CView
  30. {
  31. protected: // create from serialization only
  32. CHelloView();
  33. DECLARE_DYNCREATE(CHelloView)
  34. // Attributes
  35. public:
  36. CHelloDoc* GetDocument();
  37. // Operations
  38. public:
  39. void MixColors();
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CHelloView)
  43. public:
  44. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  45. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  46. protected:
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. virtual ~CHelloView();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CHelloView)
  59. afx_msg void OnUpdateBlue(CCmdUI* pCmdUI);
  60. afx_msg void OnUpdateGreen(CCmdUI* pCmdUI);
  61. afx_msg void OnUpdateRed(CCmdUI* pCmdUI);
  62. afx_msg void OnUpdateWhite(CCmdUI* pCmdUI);
  63. afx_msg void OnUpdateBlack(CCmdUI* pCmdUI);
  64. afx_msg void OnCustom();
  65. afx_msg void OnUpdateCustom(CCmdUI* pCmdUI);
  66. afx_msg void OnColor();
  67. //}}AFX_MSG
  68. DECLARE_MESSAGE_MAP()
  69. };
  70. #ifndef _DEBUG  // debug version in HelloVw.cpp
  71. inline CHelloDoc* CHelloView::GetDocument()
  72. { return (CHelloDoc*)m_pDocument; }
  73. #endif
  74. /////////////////////////////////////////////////////////////////////////////