scribdoc.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:4k
源码类别:

DNA

开发平台:

Visual C++

  1. // ScribDoc.h : interface of the CScribbleDoc 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. /////////////////////////////////////////////////////////////////////////////
  13. // Forward declaration of data structure class
  14. class CScribbleItem;
  15. /////////////////////////////////////////////////////////////////////////////
  16. // class CStroke
  17. //
  18. // A stroke is a series of connected points in the scribble drawing.
  19. // A scribble document may have multiple strokes.
  20. class CStroke : public CObject
  21. {
  22. public:
  23. CStroke(UINT nPenWidth);
  24. protected:
  25. CStroke();
  26. DECLARE_SERIAL(CStroke)
  27. // Attributes
  28. protected:
  29. UINT                   m_nPenWidth;    // one pen width applies to entire stroke
  30. public:
  31. CArray<CPoint,CPoint>  m_pointArray;   // series of connected points
  32. CRect               m_rectBounding; // smallest rect that surrounds all
  33. // of the points in the stroke
  34. // measured in MM_LOENGLISH units
  35. // (0.01 inches, with Y-axis inverted)
  36. public:
  37. CRect& GetBoundingRect() { return m_rectBounding; }
  38. // Operations
  39. public:
  40. BOOL DrawStroke(CDC* pDC);
  41. void FinishStroke();
  42. public:
  43. virtual void Serialize(CArchive& ar);
  44. };
  45. class CScribbleDoc : public COleServerDoc
  46. {
  47. protected: // create from serialization only
  48. CScribbleDoc();
  49. DECLARE_DYNCREATE(CScribbleDoc)
  50. // Attributes
  51. protected:
  52. // The document keeps track of the current pen width on
  53. // behalf of all views. We'd like the user interface of
  54. // Scribble to be such that if the user chooses the Draw
  55. // Thick Line command, it will apply to all views, not just
  56. // the view that currently has the focus.
  57. UINT            m_nPenWidth;        // current user-selected pen width
  58. BOOL            m_bThickPen;        // TRUE if current pen is thick
  59. UINT            m_nThinWidth;
  60. UINT            m_nThickWidth;
  61. CPen            m_penCur;           // pen created according to
  62. // user-selected pen style (width)
  63. public:
  64. CTypedPtrList<CObList,CStroke*>     m_strokeList;
  65. CPen*           GetCurrentPen() { return &m_penCur; }
  66. protected:
  67. CSize           m_sizeDoc;
  68. public:
  69. CSize GetDocSize() { return m_sizeDoc; }
  70. CScribbleItem* GetEmbeddedItem()
  71. { return (CScribbleItem*)COleServerDoc::GetEmbeddedItem(); }
  72. // Operations
  73. public:
  74. CStroke* NewStroke();
  75. // Overrides
  76. // ClassWizard generated virtual function overrides
  77. //{{AFX_VIRTUAL(CScribbleDoc)
  78. protected:
  79. virtual COleServerItem* OnGetEmbeddedItem();
  80. public:
  81. virtual BOOL OnNewDocument();
  82. virtual void Serialize(CArchive& ar);
  83. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  84. virtual void DeleteContents();
  85. //}}AFX_VIRTUAL
  86. // Implementation
  87. protected:
  88. void ReplacePen();
  89. void OnSetItemRects(LPCRECT lpPosRect, LPCRECT lpClipRect);
  90. public:
  91. virtual ~CScribbleDoc();
  92. #ifdef _DEBUG
  93. virtual void AssertValid() const;
  94. virtual void Dump(CDumpContext& dc) const;
  95. #endif
  96. protected:
  97. void            InitDocument();
  98. // Generated message map functions
  99. protected:
  100. //{{AFX_MSG(CScribbleDoc)
  101. afx_msg void OnEditClearAll();
  102. afx_msg void OnPenThickOrThin();
  103. afx_msg void OnUpdateEditClearAll(CCmdUI* pCmdUI);
  104. afx_msg void OnUpdatePenThickOrThin(CCmdUI* pCmdUI);
  105. afx_msg void OnPenWidths();
  106. afx_msg void OnEditCopy();
  107. //}}AFX_MSG
  108. DECLARE_MESSAGE_MAP()
  109. };