home *** CD-ROM | disk | FTP | other *** search
- // contdoc.cpp : implementation of the CContDoc class
- //
-
- #include "stdafx.h"
- #include "cont.h"
-
- #include "contdoc.h"
- #include "cntritem.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CContDoc
-
- IMPLEMENT_DYNCREATE(CContDoc, COleDocument)
-
- BEGIN_MESSAGE_MAP(CContDoc, COleDocument)
- //{{AFX_MSG_MAP(CContDoc)
- // 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, COleDocument::OnUpdatePasteMenu)
- ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE_LINK, COleDocument::OnUpdatePasteLinkMenu)
- ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_LINKS, COleDocument::OnUpdateEditLinksMenu)
- ON_COMMAND(ID_OLE_EDIT_LINKS, COleDocument::OnEditLinks)
- ON_UPDATE_COMMAND_UI(ID_OLE_VERB_FIRST, COleDocument::OnUpdateObjectVerbMenu)
- ON_UPDATE_COMMAND_UI(ID_OLE_EDIT_CONVERT, COleDocument::OnUpdateObjectVerbMenu)
- ON_COMMAND(ID_OLE_EDIT_CONVERT, COleDocument::OnEditConvert)
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CContDoc construction/destruction
-
- CContDoc::CContDoc()
- {
- // For most containers, using compound files is a good idea.
- EnableCompoundFile();
-
- // TODO: add one-time construction code here
-
- }
-
- CContDoc::~CContDoc()
- {
- }
-
- BOOL CContDoc::OnNewDocument()
- {
- if (!COleDocument::OnNewDocument())
- return FALSE;
-
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
-
- return TRUE;
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CContDoc serialization
-
- void CContDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
-
- // Calling the base class COleDocument enables serialization
- // of the container document's COleClientItem objects.
- COleDocument::Serialize(ar);
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CContDoc diagnostics
-
- #ifdef _DEBUG
- void CContDoc::AssertValid() const
- {
- COleDocument::AssertValid();
- }
-
- void CContDoc::Dump(CDumpContext& dc) const
- {
- COleDocument::Dump(dc);
- }
- #endif //_DEBUG
-
- /////////////////////////////////////////////////////////////////////////////
- // CContDoc commands
-