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

对话框与窗口

开发平台:

Visual C++

  1. // CustomThemesDoc.cpp : implementation 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. #include "stdafx.h"
  21. #include "CustomThemes.h"
  22. #include "CustomThemesDoc.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. IMPLEMENT_SERIAL(CCustomThemesCntrItem, CRichEditCntrItem, 0)
  29. CCustomThemesCntrItem::CCustomThemesCntrItem(REOBJECT *preo, CCustomThemesDoc* pContainer)
  30. : CRichEditCntrItem(preo, pContainer)
  31. {
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CWordPadCntrItem diagnostics
  35. #ifdef _DEBUG
  36. void CCustomThemesCntrItem::AssertValid() const
  37. {
  38. CRichEditCntrItem::AssertValid();
  39. }
  40. void CCustomThemesCntrItem::Dump(CDumpContext& dc) const
  41. {
  42. CRichEditCntrItem::Dump(dc);
  43. }
  44. #endif
  45. CRichEditCntrItem* CCustomThemesDoc::CreateClientItem(REOBJECT* preo) const
  46. {
  47. // cast away constness of this
  48. return new CCustomThemesCntrItem(preo, (CCustomThemesDoc*)this);
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CCustomThemesDoc
  52. IMPLEMENT_DYNCREATE(CCustomThemesDoc, CRichEditDoc)
  53. BEGIN_MESSAGE_MAP(CCustomThemesDoc, CRichEditDoc)
  54. //{{AFX_MSG_MAP(CCustomThemesDoc)
  55. // NOTE - the ClassWizard will add and remove mapping macros here.
  56. //    DO NOT EDIT what you see in these blocks of generated code!
  57. //}}AFX_MSG_MAP
  58. END_MESSAGE_MAP()
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CCustomThemesDoc construction/destruction
  61. CCustomThemesDoc::CCustomThemesDoc()
  62. {
  63. // TODO: add one-time construction code here
  64. }
  65. CCustomThemesDoc::~CCustomThemesDoc()
  66. {
  67. }
  68. BOOL CCustomThemesDoc::OnNewDocument()
  69. {
  70. if (!CRichEditDoc::OnNewDocument())
  71. return FALSE;
  72. // TODO: add reinitialization code here
  73. // (SDI documents will reuse this document)
  74. return TRUE;
  75. }
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CCustomThemesDoc serialization
  78. void CCustomThemesDoc::Serialize(CArchive& ar)
  79. {
  80. if (ar.IsStoring())
  81. {
  82. // TODO: add storing code here
  83. }
  84. else
  85. {
  86. // TODO: add loading code here
  87. }
  88. }
  89. /////////////////////////////////////////////////////////////////////////////
  90. // CCustomThemesDoc diagnostics
  91. #ifdef _DEBUG
  92. void CCustomThemesDoc::AssertValid() const
  93. {
  94. CRichEditDoc::AssertValid();
  95. }
  96. void CCustomThemesDoc::Dump(CDumpContext& dc) const
  97. {
  98. CRichEditDoc::Dump(dc);
  99. }
  100. #endif //_DEBUG
  101. /////////////////////////////////////////////////////////////////////////////
  102. // CCustomThemesDoc commands