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

Windows编程

开发平台:

Visual C++

  1. // svrdoc.h : interface of the CServerDoc 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. #define MAX_LEVEL   20
  13. class CServerNode;
  14. class CServerDoc : public COleServerDoc
  15. {
  16. protected: // create from serialization only
  17. CServerDoc();
  18. DECLARE_DYNCREATE(CServerDoc)
  19. // Attributes
  20. public:
  21. LOGFONT m_logfont;          // font in use for the document
  22. COLORREF m_crText;
  23. CServerNode* m_pRoot;
  24. // private clipboard format
  25. static CLIPFORMAT NEAR m_cfPrivate;
  26. // Operations
  27. public:
  28. CFont* SelectDocFont(CDC* pDC, CFont& font);
  29. int CServerDoc::DrawTree(CDC* pDC, CPoint ptStart, CServerNode* pItemSel,
  30. CServerNode* pRoot = NULL);
  31. void CalcBounding(CDC* pDC, CServerNode* pItemStart,
  32. CPoint ptStart, CSize& sizeMax);
  33. // Implementation
  34. public:
  35. virtual COleServerItem* OnGetEmbeddedItem();
  36. virtual COleServerItem* OnGetLinkedItem(LPCTSTR lpszItemName);
  37. virtual ~CServerDoc();
  38. virtual void Serialize(CArchive& ar);   // overridden for document i/o
  39. void SerializeFontInfo(CArchive& ar);
  40. virtual void DeleteContents();
  41. virtual void OnSetItemRects(LPCRECT lpPosRect, LPCRECT lpClipRect);
  42. #ifdef _DEBUG
  43. virtual void AssertValid() const;
  44. virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46. protected:
  47. virtual BOOL    OnNewDocument();
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CServerDoc)
  51. afx_msg void OnOptionsFont();
  52. afx_msg void OnCancelInplace();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////