home *** CD-ROM | disk | FTP | other *** search
- // ContainDoc.cpp : implementation of the CContainDoc class
- //
-
- #include "stdafx.h"
- #include "OContain.h"
-
- #include "ContainDoc.h"
- #include "CntrItem.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CContainDoc
-
- IMPLEMENT_DYNCREATE(CContainDoc, COleDocument)
-
- BEGIN_MESSAGE_MAP(CContainDoc, COleDocument)
- //{{AFX_MSG_MAP(CContainDoc)
- // 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_CONVERT, COleDocument::OnUpdateObjectVerbMenu)
- ON_COMMAND(ID_OLE_EDIT_CONVERT, COleDocument::OnEditConvert)
- 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)
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CContainDoc construction/destruction
-
- CContainDoc::CContainDoc()
- {
- // Use OLE compound files
- EnableCompoundFile();
-
- // TODO: add one-time construction code here
-
- }
-
- CContainDoc::~CContainDoc()
- {
- }
-
- BOOL CContainDoc::OnNewDocument()
- {
- if (!COleDocument::OnNewDocument())
- return FALSE;
-
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
-
- return TRUE;
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CContainDoc serialization
-
- void CContainDoc::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);
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CContainDoc diagnostics
-
- #ifdef _DEBUG
- void CContainDoc::AssertValid() const
- {
- COleDocument::AssertValid();
- }
-
- void CContainDoc::Dump(CDumpContext& dc) const
- {
- COleDocument::Dump(dc);
- }
- #endif //_DEBUG
-
- /////////////////////////////////////////////////////////////////////////////
- // CContainDoc commands
-