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

对话框与窗口

开发平台:

Visual C++

  1. // GUI_OneNoteDoc.cpp : implementation of the CGUI_OneNoteDoc 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 "GUI_OneNote.h"
  22. #include "GUI_OneNoteDoc.h"
  23. #include "CntrItem.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGUI_OneNoteDoc
  31. IMPLEMENT_DYNCREATE(CGUI_OneNoteDoc, CRichEditDoc)
  32. BEGIN_MESSAGE_MAP(CGUI_OneNoteDoc, CRichEditDoc)
  33. //{{AFX_MSG_MAP(CGUI_OneNoteDoc)
  34. // NOTE - the ClassWizard will add and remove mapping macros here.
  35. //    DO NOT EDIT what you see in these blocks of generated code!
  36. //}}AFX_MSG_MAP
  37. // Enable default OLE container implementation
  38. ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_LINKS, CRichEditDoc::OnUpdateEditLinksMenu)
  39. ON_COMMAND(ID_OLE_EDIT_LINKS, CRichEditDoc::OnEditLinks)
  40. ON_UPDATE_COMMAND_UI_RANGE(ID_OLE_VERB_FIRST, ID_OLE_VERB_LAST, CRichEditDoc::OnUpdateObjectVerbMenu)
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CGUI_OneNoteDoc construction/destruction
  44. CGUI_OneNoteDoc::CGUI_OneNoteDoc()
  45. {
  46. // TODO: add one-time construction code here
  47. }
  48. CGUI_OneNoteDoc::~CGUI_OneNoteDoc()
  49. {
  50. }
  51. BOOL CGUI_OneNoteDoc::OnNewDocument()
  52. {
  53. if (!CRichEditDoc::OnNewDocument())
  54. return FALSE;
  55. // TODO: add reinitialization code here
  56. // (SDI documents will reuse this document)
  57. return TRUE;
  58. }
  59. CRichEditCntrItem* CGUI_OneNoteDoc::CreateClientItem(REOBJECT* preo) const
  60. {
  61. // cast away constness of this
  62. return new CGUI_OneNoteCntrItem(preo, (CGUI_OneNoteDoc*) this);
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CGUI_OneNoteDoc serialization
  66. void CGUI_OneNoteDoc::Serialize(CArchive& ar)
  67. {
  68. if (ar.IsStoring())
  69. {
  70. // TODO: add storing code here
  71. }
  72. else
  73. {
  74. // TODO: add loading code here
  75. }
  76. // Calling the base class CRichEditDoc enables serialization
  77. //  of the container document's COleClientItem objects.
  78. // TODO: set CRichEditDoc::m_bRTF = FALSE if you are serializing as text
  79. CRichEditDoc::Serialize(ar);
  80. }
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CGUI_OneNoteDoc diagnostics
  83. #ifdef _DEBUG
  84. void CGUI_OneNoteDoc::AssertValid() const
  85. {
  86. CRichEditDoc::AssertValid();
  87. }
  88. void CGUI_OneNoteDoc::Dump(CDumpContext& dc) const
  89. {
  90. CRichEditDoc::Dump(dc);
  91. }
  92. #endif //_DEBUG
  93. /////////////////////////////////////////////////////////////////////////////
  94. // CGUI_OneNoteDoc commands