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

菜单

开发平台:

Visual C++

  1. // HelloDoc.h : interface of the CHelloDoc class
  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. class CHelloDoc : public CDocument
  14. {
  15. protected: // create from serialization only
  16. CHelloDoc();
  17. DECLARE_DYNCREATE(CHelloDoc)
  18. // Attributes
  19. public:
  20. // hello window color/text parameters
  21. COLORREF m_clrText;
  22. CString m_str;
  23. //state of color buttons
  24. BOOL m_bBlack;
  25. BOOL m_bRed;
  26. BOOL m_bBlue;
  27. BOOL m_bGreen;
  28. BOOL m_bWhite;
  29. BOOL m_bCustom;
  30. // Operations
  31. public:
  32. void ClearAllColors(); //resets all color states to NULL
  33. void SetStrColor(COLORREF clr);
  34. void SetCustomStrColor(COLORREF clr);
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CHelloDoc)
  38. public:
  39. virtual BOOL OnNewDocument();
  40. virtual void Serialize(CArchive& ar);
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. public:
  44. virtual ~CHelloDoc();
  45. #ifdef _DEBUG
  46. virtual void AssertValid() const;
  47. virtual void Dump(CDumpContext& dc) const;
  48. #endif
  49. protected:
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CHelloDoc)
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////