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

DNA

开发平台:

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