home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / scrib1.pak / SCRIBDOC.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  4KB  |  170 lines

  1. // ScribDoc.cpp : implementation of the CScribbleDoc class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 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. #include "stdafx.h"
  14. #include "Scribble.h"
  15.  
  16. #include "ScribDoc.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CScribbleDoc
  26.  
  27. IMPLEMENT_DYNCREATE(CScribbleDoc, CDocument)
  28.  
  29. BEGIN_MESSAGE_MAP(CScribbleDoc, CDocument)
  30.     //{{AFX_MSG_MAP(CScribbleDoc)
  31.         // NOTE - the ClassWizard will add and remove mapping macros here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code!
  33.     //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CScribbleDoc construction/destruction
  38.  
  39. CScribbleDoc::CScribbleDoc()
  40. {
  41.     // TODO: add one-time construction code here
  42.  
  43. }
  44.  
  45. CScribbleDoc::~CScribbleDoc()
  46. {
  47. }
  48.  
  49. BOOL CScribbleDoc::OnNewDocument()
  50. {
  51.     if (!CDocument::OnNewDocument())
  52.         return FALSE;
  53.     InitDocument();
  54.     return TRUE;
  55. }
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CScribbleDoc serialization
  59.  
  60. void CScribbleDoc::Serialize(CArchive& ar)
  61. {
  62.     if (ar.IsStoring())
  63.     {
  64.     }
  65.     else
  66.     {
  67.     }
  68.     m_strokeList.Serialize(ar);
  69. }
  70.  
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CScribbleDoc diagnostics
  73.  
  74. #ifdef _DEBUG
  75. void CScribbleDoc::AssertValid() const
  76. {
  77.     CDocument::AssertValid();
  78. }
  79.  
  80. void CScribbleDoc::Dump(CDumpContext& dc) const
  81. {
  82.     CDocument::Dump(dc);
  83. }
  84. #endif //_DEBUG
  85.  
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CScribbleDoc commands
  88.  
  89. BOOL CScribbleDoc::OnOpenDocument(LPCTSTR lpszPathName) 
  90. {
  91.     if (!CDocument::OnOpenDocument(lpszPathName))
  92.         return FALSE;
  93.     InitDocument(); 
  94.     return TRUE;
  95. }
  96.  
  97. void CScribbleDoc::DeleteContents() 
  98. {
  99.     while (!m_strokeList.IsEmpty())
  100.     {
  101.         delete m_strokeList.RemoveHead();
  102.     }
  103.     CDocument::DeleteContents();
  104. }
  105.  
  106. void CScribbleDoc::InitDocument()
  107. {
  108.     m_nPenWidth = 2; // default 2 pixel pen width
  109.     // solid, black pen
  110.     m_penCur.CreatePen(PS_SOLID, m_nPenWidth, RGB(0,0,0));
  111. }
  112.  
  113. CStroke* CScribbleDoc::NewStroke()
  114. {
  115.     CStroke* pStrokeItem = new CStroke(m_nPenWidth);
  116.     m_strokeList.AddTail(pStrokeItem);
  117.     SetModifiedFlag();  // Mark the document as having been modified, for
  118.                         // purposes of confirming File Close.
  119.     return pStrokeItem;
  120. }
  121.  
  122.  
  123.  
  124.  
  125. /////////////////////////////////////////////////////////////////////////////
  126. // CStroke
  127.  
  128. IMPLEMENT_SERIAL(CStroke, CObject, 1)
  129. CStroke::CStroke()
  130. {
  131.     // This empty constructor should be used by serialization only
  132. }
  133.  
  134. CStroke::CStroke(UINT nPenWidth)
  135. {
  136.     m_nPenWidth = nPenWidth;
  137. }
  138.  
  139. void CStroke::Serialize(CArchive& ar)
  140. {
  141.     if (ar.IsStoring())
  142.     {
  143.         ar << (WORD)m_nPenWidth;
  144.         m_pointArray.Serialize(ar);
  145.     }
  146.     else
  147.     {
  148.         WORD w;
  149.         ar >> w;
  150.         m_nPenWidth = w;
  151.         m_pointArray.Serialize(ar);
  152.     }
  153. }
  154.  
  155. BOOL CStroke::DrawStroke(CDC* pDC)
  156. {
  157.     CPen penStroke;
  158.     if (!penStroke.CreatePen(PS_SOLID, m_nPenWidth, RGB(0,0,0)))
  159.         return FALSE;
  160.     CPen* pOldPen = pDC->SelectObject(&penStroke);
  161.     pDC->MoveTo(m_pointArray[0]);
  162.     for (int i=1; i < m_pointArray.GetSize(); i++)
  163.     {
  164.         pDC->LineTo(m_pointArray[i]);
  165.     }
  166.  
  167.     pDC->SelectObject(pOldPen);
  168.     return TRUE;
  169. }
  170.