WORDPDOC.H
资源名称:word.rar [点击查看]
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:2k
源码类别:
界面编程
开发平台:
Visual C++
- // wordpdoc.h : interface of the CWordPadDoc class
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1997 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- class CFormatBar;
- class CWordPadSrvrItem;
- class CWordPadView;
- class CWordPadDoc : public CRichEditDoc
- {
- protected: // create from serialization only
- CWordPadDoc();
- DECLARE_DYNCREATE(CWordPadDoc)
- // Attributes
- public:
- int m_nDocType;
- int m_nNewDocType;
- void SetDocType(int nDocType, BOOL bNoOptionChange = FALSE);
- CWordPadView* GetView();
- CLSID GetClassID();
- LPCTSTR GetSection();
- // Operations
- public:
- void SaveState(int nType);
- void RestoreState(int nType);
- virtual CFile* GetFile(LPCTSTR pszPathName, UINT nOpenFlags,
- CFileException* pException);
- virtual BOOL DoSave(LPCTSTR pszPathName, BOOL bReplace = TRUE);
- int MapType(int nType);
- void ForceDelayed(CFrameWnd* pFrameWnd);
- // Overrides
- virtual CRichEditCntrItem* CreateClientItem(REOBJECT* preo) const;
- virtual void OnDeactivateUI(BOOL bUndoable);
- virtual void Serialize(CArchive& ar);
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CWordPadDoc)
- public:
- virtual BOOL OnNewDocument();
- virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
- virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
- virtual void OnCloseDocument();
- virtual void ReportSaveLoadException(LPCTSTR lpszPathName, CException* e, BOOL bSaving, UINT nIDPDefault);
- protected:
- virtual COleServerItem* OnGetEmbeddedItem();
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual void PreCloseFrame(CFrameWnd* pFrameArg);
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- // Generated message map functions
- protected:
- //{{AFX_MSG(CWordPadDoc)
- afx_msg void OnViewOptions();
- afx_msg void OnUpdateOleVerbPopup(CCmdUI* pCmdUI);
- afx_msg void OnFileSendMail();
- afx_msg void OnUpdateIfEmbedded(CCmdUI* pCmdUI);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////