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

对话框与窗口

开发平台:

Visual C++

  1. // CustomThemesDoc.h : interface of the CCustomThemesDoc 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. #if !defined(AFX_CUSTOMTHEMESDOC_H__D9A2E054_B337_43AB_8201_F1CDA7C9DC93__INCLUDED_)
  21. #define AFX_CUSTOMTHEMESDOC_H__D9A2E054_B337_43AB_8201_F1CDA7C9DC93__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CCustomThemesDoc;
  26. class CCustomThemesView;
  27. class CCustomThemesCntrItem : public CRichEditCntrItem
  28. {
  29. DECLARE_SERIAL(CCustomThemesCntrItem)
  30. // Constructors
  31. public:
  32. CCustomThemesCntrItem(REOBJECT* preo = NULL, CCustomThemesDoc* pContainer = NULL);
  33. // Note: pContainer is allowed to be NULL to enable IMPLEMENT_SERIALIZE.
  34. //  IMPLEMENT_SERIALIZE requires the class have a constructor with
  35. //  zero arguments.  Normally, OLE items are constructed with a
  36. //  non-NULL document pointer.
  37. // Attributes
  38. public:
  39. CCustomThemesDoc* GetDocument()
  40. { return (CCustomThemesDoc*)COleClientItem::GetDocument(); }
  41. CCustomThemesView* GetActiveView()
  42. { return (CCustomThemesView*)COleClientItem::GetActiveView(); }
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CWordPadCntrItem)
  45. public:
  46. protected:
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. };
  55. class CCustomThemesDoc : public CRichEditDoc
  56. {
  57. protected: // create from serialization only
  58. CCustomThemesDoc();
  59. DECLARE_DYNCREATE(CCustomThemesDoc)
  60. // Attributes
  61. public:
  62. // Operations
  63. public:
  64. virtual CRichEditCntrItem* CreateClientItem(REOBJECT* preo) const;
  65. // Overrides
  66. // ClassWizard generated virtual function overrides
  67. //{{AFX_VIRTUAL(CCustomThemesDoc)
  68. public:
  69. virtual BOOL OnNewDocument();
  70. virtual void Serialize(CArchive& ar);
  71. //}}AFX_VIRTUAL
  72. // Implementation
  73. public:
  74. virtual ~CCustomThemesDoc();
  75. #ifdef _DEBUG
  76. virtual void AssertValid() const;
  77. virtual void Dump(CDumpContext& dc) const;
  78. #endif
  79. protected:
  80. // Generated message map functions
  81. protected:
  82. //{{AFX_MSG(CCustomThemesDoc)
  83. // NOTE - the ClassWizard will add and remove member functions here.
  84. //    DO NOT EDIT what you see in these blocks of generated code !
  85. //}}AFX_MSG
  86. DECLARE_MESSAGE_MAP()
  87. };
  88. /////////////////////////////////////////////////////////////////////////////
  89. //{{AFX_INSERT_LOCATION}}
  90. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  91. #endif // !defined(AFX_CUSTOMTHEMESDOC_H__D9A2E054_B337_43AB_8201_F1CDA7C9DC93__INCLUDED_)