PADDOC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // paddoc.h : interface of the CPadDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __PADDOC_H__
  13. #define __PADDOC_H__
  14. class CEmbeddedItem;
  15. class CPadDoc : public COleServerDoc
  16. {
  17. DECLARE_DYNCREATE(CPadDoc)
  18. // Constructors
  19. public:
  20. CPadDoc();
  21. //Operations
  22. public:
  23. void SetSelection(int nBeg, int nEnd);
  24. // Implementation
  25. public:
  26. virtual COleServerItem* OnGetEmbeddedItem();
  27. virtual COleServerItem* OnGetLinkedItem(LPCTSTR lpszItemName);
  28. protected:
  29. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  30. virtual void DeleteContents();
  31. virtual ~CPadDoc();
  32. //{{AFX_MSG(CPadDoc)
  33. afx_msg void OnViewUpdatenow();
  34. afx_msg void OnCancelInplace();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. friend class CEmbeddedItem;
  38. };
  39. #endif  // __PADDOC_H__
  40. /////////////////////////////////////////////////////////////////////////////