📄 ex32bdoc.cpp
字号:
// ex32bDoc.cpp : implementation of the CEx32bDoc class//#include "stdafx.h"#include "ex32b.h"#include "ex32bDoc.h"#include "CntrItem.h"#include "SrvrItem.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CEx32bDocIMPLEMENT_DYNCREATE(CEx32bDoc, COleServerDoc)BEGIN_MESSAGE_MAP(CEx32bDoc, COleServerDoc) //{{AFX_MSG_MAP(CEx32bDoc) // 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_EDIT_PASTE, COleServerDoc::OnUpdatePasteMenu) ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE_LINK, COleServerDoc::OnUpdatePasteLinkMenu) ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_CONVERT, COleServerDoc::OnUpdateObjectVerbMenu) ON_COMMAND(ID_OLE_EDIT_CONVERT, COleServerDoc::OnEditConvert) ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_LINKS, COleServerDoc::OnUpdateEditLinksMenu) ON_COMMAND(ID_OLE_EDIT_LINKS, COleServerDoc::OnEditLinks) ON_UPDATE_COMMAND_UI(ID_OLE_VERB_FIRST, COleServerDoc::OnUpdateObjectVerbMenu)END_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CEx32bDoc construction/destructionCEx32bDoc::CEx32bDoc(){ // Use OLE compound files EnableCompoundFile(); m_nPeriod = 12; // should initialize this some other way}CEx32bDoc::~CEx32bDoc(){}BOOL CEx32bDoc::OnNewDocument(){ if (!COleServerDoc::OnNewDocument()) return FALSE; // TODO: add reinitialization code here // (SDI documents will reuse this document) return TRUE;}/////////////////////////////////////////////////////////////////////////////// CEx32bDoc server implementationCOleServerItem* CEx32bDoc::OnGetEmbeddedItem(){ // OnGetEmbeddedItem is called by the framework to get the COleServerItem // that is associated with the document. It is only called when necessary. CEx32bSrvrItem* pItem = new CEx32bSrvrItem(this); ASSERT_VALID(pItem); return pItem;}CDocObjectServer* CEx32bDoc::GetDocObjectServer(LPOLEDOCUMENTSITE pSite){ return new CDocObjectServer(this, pSite);}/////////////////////////////////////////////////////////////////////////////// CEx32bDoc serializationvoid CEx32bDoc::Serialize(CArchive& ar){ if (ar.IsStoring()) { ar << m_nPeriod; } else { ar >> m_nPeriod; } // Calling the base class COleServerDoc enables serialization // of the container document's COleClientItem objects. COleServerDoc::Serialize(ar);}/////////////////////////////////////////////////////////////////////////////// CEx32bDoc diagnostics#ifdef _DEBUGvoid CEx32bDoc::AssertValid() const{ COleServerDoc::AssertValid();}void CEx32bDoc::Dump(CDumpContext& dc) const{ COleServerDoc::Dump(dc);}#endif //_DEBUG/////////////////////////////////////////////////////////////////////////////// CEx32bDoc commands
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -