propDoc.cpp
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:3k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // propDoc.cpp : implementation of the CPropDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "prop.h"
  5. #include "propDoc.h"
  6. #include "CntrItem.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CPropDoc
  14. IMPLEMENT_DYNCREATE(CPropDoc, CRichEditDoc)
  15. BEGIN_MESSAGE_MAP(CPropDoc, CRichEditDoc)
  16. //{{AFX_MSG_MAP(CPropDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Enable default OLE container implementation
  21. ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_LINKS, CRichEditDoc::OnUpdateEditLinksMenu)
  22. ON_COMMAND(ID_OLE_EDIT_LINKS, CRichEditDoc::OnEditLinks)
  23. ON_UPDATE_COMMAND_UI_RANGE(ID_OLE_VERB_FIRST, ID_OLE_VERB_LAST, CRichEditDoc::OnUpdateObjectVerbMenu)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPropDoc construction/destruction
  27. CPropDoc::CPropDoc()
  28. {
  29. // TODO: add one-time construction code here
  30. }
  31. CPropDoc::~CPropDoc()
  32. {
  33. }
  34. BOOL CPropDoc::OnNewDocument()
  35. {
  36. if (!CRichEditDoc::OnNewDocument())
  37. return FALSE;
  38. // TODO: add reinitialization code here
  39. // (SDI documents will reuse this document)
  40. return TRUE;
  41. }
  42. CRichEditCntrItem* CPropDoc::CreateClientItem(REOBJECT* preo) const
  43. {
  44. // cast away constness of this
  45. return new CPropCntrItem(preo, (CPropDoc*) this);
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CPropDoc serialization
  49. void CPropDoc::Serialize(CArchive& ar)
  50. {
  51. if (ar.IsStoring())
  52. {
  53. // TODO: add storing code here
  54. }
  55. else
  56. {
  57. // TODO: add loading code here
  58. }
  59. // Calling the base class CRichEditDoc enables serialization
  60. //  of the container document's COleClientItem objects.
  61. // TODO: set CRichEditDoc::m_bRTF = FALSE if you are serializing as text
  62. CRichEditDoc::Serialize(ar);
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CPropDoc diagnostics
  66. #ifdef _DEBUG
  67. void CPropDoc::AssertValid() const
  68. {
  69. CRichEditDoc::AssertValid();
  70. }
  71. void CPropDoc::Dump(CDumpContext& dc) const
  72. {
  73. CRichEditDoc::Dump(dc);
  74. }
  75. #endif //_DEBUG
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CPropDoc commands
  78. void CPropDoc::SetTitle(LPCTSTR lpszTitle) 
  79. {
  80. // TODO: Add your specialized code here and/or call the base class
  81. CString title="OutputWindow";
  82. CDocument::SetTitle(LPCTSTR(title));
  83. CRichEditDoc::SetTitle(title);
  84. }
  85. BOOL CPropDoc::SaveModified( )
  86. {
  87. return TRUE;
  88. }