📄 postagdoc.cpp
字号:
// PosTagDoc.cpp : implementation of the CPosTagDoc class
//
#include "stdafx.h"
#include "PosTag.h"
#include "PosTagDoc.h"
#include "CntrItem.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPosTagDoc
IMPLEMENT_DYNCREATE(CPosTagDoc, CRichEditDoc)
BEGIN_MESSAGE_MAP(CPosTagDoc, CRichEditDoc)
//{{AFX_MSG_MAP(CPosTagDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Enable default OLE container implementation
ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_LINKS, CRichEditDoc::OnUpdateEditLinksMenu)
ON_COMMAND(ID_OLE_EDIT_LINKS, CRichEditDoc::OnEditLinks)
ON_UPDATE_COMMAND_UI(ID_OLE_VERB_FIRST, CRichEditDoc::OnUpdateObjectVerbMenu)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPosTagDoc construction/destruction
CPosTagDoc::CPosTagDoc()
{
// TODO: add one-time construction code here
}
CPosTagDoc::~CPosTagDoc()
{
}
BOOL CPosTagDoc::OnNewDocument()
{
if (!CRichEditDoc::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
CRichEditCntrItem* CPosTagDoc::CreateClientItem(REOBJECT* preo) const
{
// cast away constness of this
return new CPosTagCntrItem(preo, (CPosTagDoc*) this);
}
/////////////////////////////////////////////////////////////////////////////
// CPosTagDoc serialization
void CPosTagDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
// Calling the base class CRichEditDoc enables serialization
// of the container document's COleClientItem objects.
CRichEditDoc::Serialize(ar);
}
/////////////////////////////////////////////////////////////////////////////
// CPosTagDoc diagnostics
#ifdef _DEBUG
void CPosTagDoc::AssertValid() const
{
CRichEditDoc::AssertValid();
}
void CPosTagDoc::Dump(CDumpContext& dc) const
{
CRichEditDoc::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CPosTagDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -