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

Windows编程

开发平台:

Visual C++

  1. // ScribVw.cpp : implementation of the CScribbleView 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. #include "stdafx.h"
  13. #include "Scribble.h"
  14. #include "ScribDoc.h"
  15. #include "ScribVw.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CScribbleView
  23. IMPLEMENT_DYNCREATE(CScribbleView, CScrollView)
  24. BEGIN_MESSAGE_MAP(CScribbleView, CScrollView)
  25. //{{AFX_MSG_MAP(CScribbleView)
  26. ON_WM_LBUTTONDOWN()
  27. ON_WM_LBUTTONUP()
  28. ON_WM_MOUSEMOVE()
  29. //}}AFX_MSG_MAP
  30. // Standard printing commands
  31. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  32. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  33. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CScribbleView construction/destruction
  37. CScribbleView::CScribbleView()
  38. {
  39. // TODO: add construction code here
  40. }
  41. CScribbleView::~CScribbleView()
  42. {
  43. }
  44. BOOL CScribbleView::PreCreateWindow(CREATESTRUCT& cs)
  45. {
  46. // TODO: Modify the Window class or styles here by modifying
  47. //  the CREATESTRUCT cs
  48. return CView::PreCreateWindow(cs);
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CScribbleView drawing
  52. void CScribbleView::OnDraw(CDC* pDC)
  53. {
  54. CScribbleDoc* pDoc = GetDocument();
  55. ASSERT_VALID(pDoc);
  56. // Get the invalidated rectangle of the view, or in the case
  57. // of printing, the clipping region of the printer dc.
  58. CRect rectClip;
  59. CRect rectStroke;
  60. pDC->GetClipBox(&rectClip);
  61. pDC->LPtoDP(&rectClip);
  62. rectClip.InflateRect(1, 1); // avoid rounding to nothing
  63. // Note: CScrollView::OnPaint() will have already adjusted the
  64. // viewport origin before calling OnDraw(), to reflect the
  65. // currently scrolled position.
  66. // The view delegates the drawing of individual strokes to
  67. // CStroke::DrawStroke().
  68. CTypedPtrList<CObList,CStroke*>& strokeList = pDoc->m_strokeList;
  69. POSITION pos = strokeList.GetHeadPosition();
  70. while (pos != NULL)
  71. {
  72. CStroke* pStroke = strokeList.GetNext(pos);
  73. rectStroke = pStroke->GetBoundingRect();
  74. pDC->LPtoDP(&rectStroke);
  75. rectStroke.InflateRect(1, 1); // avoid rounding to nothing
  76. if (!rectStroke.IntersectRect(&rectStroke, &rectClip))
  77. continue;
  78. pStroke->DrawStroke(pDC);
  79. }
  80. }
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CScribbleView printing
  83. BOOL CScribbleView::OnPreparePrinting(CPrintInfo* pInfo)
  84. {
  85. pInfo->SetMaxPage(2);   // the document is two pages long:
  86. // the first page is the title page
  87. // the second is the drawing
  88. BOOL bRet = DoPreparePrinting(pInfo);   // default preparation
  89. pInfo->m_nNumPreviewPages = 2;  // Preview 2 pages at a time
  90. // Set this value after calling DoPreparePrinting to override
  91. // value read from .INI file
  92. return bRet;
  93. }
  94. void CScribbleView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  95. {
  96. // TODO: add extra initialization before printing
  97. }
  98. void CScribbleView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  99. {
  100. // TODO: add cleanup after printing
  101. }
  102. /////////////////////////////////////////////////////////////////////////////
  103. // CScribbleView diagnostics
  104. #ifdef _DEBUG
  105. void CScribbleView::AssertValid() const
  106. {
  107. CScrollView::AssertValid();
  108. }
  109. void CScribbleView::Dump(CDumpContext& dc) const
  110. {
  111. CScrollView::Dump(dc);
  112. }
  113. CScribbleDoc* CScribbleView::GetDocument() // non-debug version is inline
  114. {
  115. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CScribbleDoc)));
  116. return (CScribbleDoc*)m_pDocument;
  117. }
  118. #endif //_DEBUG
  119. /////////////////////////////////////////////////////////////////////////////
  120. // CScribbleView message handlers
  121. void CScribbleView::OnLButtonDown(UINT, CPoint point)
  122. {
  123. // Pressing the mouse button in the view window starts a new stroke
  124. // CScrollView changes the viewport origin and mapping mode.
  125. // It's necessary to convert the point from device coordinates
  126. // to logical coordinates, such as are stored in the document.
  127. CClientDC dc(this);
  128. OnPrepareDC(&dc);
  129. dc.DPtoLP(&point);
  130. m_pStrokeCur = GetDocument()->NewStroke();
  131. // Add first point to the new stroke
  132. m_pStrokeCur->m_pointArray.Add(point);
  133. SetCapture();       // Capture the mouse until button up.
  134. m_ptPrev = point;   // Serves as the MoveTo() anchor point for the
  135. // LineTo() the next point, as the user drags the
  136. // mouse.
  137. return;
  138. }
  139. void CScribbleView::OnLButtonUp(UINT, CPoint point)
  140. {
  141. // Mouse button up is interesting in the Scribble application
  142. // only if the user is currently drawing a new stroke by dragging
  143. // the captured mouse.
  144. if (GetCapture() != this)
  145. return; // If this window (view) didn't capture the mouse,
  146. // then the user isn't drawing in this window.
  147. CScribbleDoc* pDoc = GetDocument();
  148. CClientDC dc(this);
  149. // CScrollView changes the viewport origin and mapping mode.
  150. // It's necessary to convert the point from device coordinates
  151. // to logical coordinates, such as are stored in the document.
  152. OnPrepareDC(&dc);  // set up mapping mode and viewport origin
  153. dc.DPtoLP(&point);
  154. CPen* pOldPen = dc.SelectObject(pDoc->GetCurrentPen());
  155. dc.MoveTo(m_ptPrev);
  156. dc.LineTo(point);
  157. dc.SelectObject(pOldPen);
  158. m_pStrokeCur->m_pointArray.Add(point);
  159. // Tell the stroke item that we're done adding points to it.
  160. // This is so it can finish computing its bounding rectangle.
  161. m_pStrokeCur->FinishStroke();
  162. // Tell the other views that this stroke has been added
  163. // so that they can invalidate this stroke's area in their
  164. // client area.
  165. pDoc->UpdateAllViews(this, 0L, m_pStrokeCur);
  166. ReleaseCapture();   // Release the mouse capture established at
  167. // the beginning of the mouse drag.
  168. return;
  169. }
  170. void CScribbleView::OnMouseMove(UINT, CPoint point)
  171. {
  172. // Mouse movement is interesting in the Scribble application
  173. // only if the user is currently drawing a new stroke by dragging
  174. // the captured mouse.
  175. if (GetCapture() != this)
  176. return; // If this window (view) didn't capture the mouse,
  177. // then the user isn't drawing in this window.
  178. CClientDC dc(this);
  179. // CScrollView changes the viewport origin and mapping mode.
  180. // It's necessary to convert the point from device coordinates
  181. // to logical coordinates, such as are stored in the document.
  182. OnPrepareDC(&dc);
  183. dc.DPtoLP(&point);
  184. m_pStrokeCur->m_pointArray.Add(point);
  185. // Draw a line from the previous detected point in the mouse
  186. // drag to the current point.
  187. CPen* pOldPen = dc.SelectObject(GetDocument()->GetCurrentPen());
  188. dc.MoveTo(m_ptPrev);
  189. dc.LineTo(point);
  190. dc.SelectObject(pOldPen);
  191. m_ptPrev = point;
  192. return;
  193. }
  194. void CScribbleView::OnUpdate(CView* /* pSender */, LPARAM /* lHint */,
  195. CObject* pHint)
  196. {
  197. // The document has informed this view that some data has changed.
  198. if (pHint != NULL)
  199. {
  200. if (pHint->IsKindOf(RUNTIME_CLASS(CStroke)))
  201. {
  202. // The hint is that a stroke as been added (or changed).
  203. // So, invalidate its rectangle.
  204. CStroke* pStroke = (CStroke*)pHint;
  205. CClientDC dc(this);
  206. OnPrepareDC(&dc);
  207. CRect rectInvalid = pStroke->GetBoundingRect();
  208. dc.LPtoDP(&rectInvalid);
  209. InvalidateRect(&rectInvalid);
  210. return;
  211. }
  212. }
  213. // We can't interpret the hint, so assume that anything might
  214. // have been updated.
  215. Invalidate(TRUE);
  216. return;
  217. }
  218. void CScribbleView::OnInitialUpdate()
  219. {
  220. SetScrollSizes(MM_LOENGLISH, GetDocument()->GetDocSize());
  221. CScrollView::OnInitialUpdate();
  222. }
  223. void CScribbleView::OnPrint(CDC* pDC, CPrintInfo* pInfo)
  224. {
  225. if (pInfo->m_nCurPage == 1)  // page no. 1 is the title page
  226. {
  227. PrintTitlePage(pDC, pInfo);
  228. return; // nothing else to print on page 1 but the page title
  229. }
  230. CString strHeader = GetDocument()->GetTitle();
  231. PrintPageHeader(pDC, pInfo, strHeader);
  232. // PrintPageHeader() subtracts out from the pInfo->m_rectDraw the
  233. // amount of the page used for the header.
  234. pDC->SetWindowOrg(pInfo->m_rectDraw.left,-pInfo->m_rectDraw.top);
  235. // Now print the rest of the page
  236. OnDraw(pDC);
  237. }
  238. void CScribbleView::PrintTitlePage(CDC* pDC, CPrintInfo* pInfo)
  239. {
  240. // Prepare a font size for displaying the file name
  241. LOGFONT logFont;
  242. memset(&logFont, 0, sizeof(LOGFONT));
  243. logFont.lfHeight = 75;  //  3/4th inch high in MM_LOENGLISH
  244. // (1/100th inch)
  245. CFont font;
  246. CFont* pOldFont = NULL;
  247. if (font.CreateFontIndirect(&logFont))
  248. pOldFont = pDC->SelectObject(&font);
  249. // Get the file name, to be displayed on title page
  250. CString strPageTitle = GetDocument()->GetTitle();
  251. // Display the file name 1 inch below top of the page,
  252. // centered horizontally
  253. pDC->SetTextAlign(TA_CENTER);
  254. pDC->TextOut(pInfo->m_rectDraw.right/2, -100, strPageTitle);
  255. if (pOldFont != NULL)
  256. pDC->SelectObject(pOldFont);
  257. }
  258. void CScribbleView::PrintPageHeader(CDC* pDC, CPrintInfo* pInfo,
  259. CString& strHeader)
  260. {
  261. // Print a page header consisting of the name of
  262. // the document and a horizontal line
  263. pDC->SetTextAlign(TA_LEFT);
  264. pDC->TextOut(0,-25, strHeader);  // 1/4 inch down
  265. // Draw a line across the page, below the header
  266. TEXTMETRIC textMetric;
  267. pDC->GetTextMetrics(&textMetric);
  268. int y = -35 - textMetric.tmHeight;          // line 1/10th inch below text
  269. pDC->MoveTo(0, y);                          // from left margin
  270. pDC->LineTo(pInfo->m_rectDraw.right, y);    // to right margin
  271. // Subtract out from the drawing rectange the space used by the header.
  272. y -= 25;    // space 1/4 inch below (top of) line
  273. pInfo->m_rectDraw.top += y;
  274. }