ex91View.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex91View.cpp : implementation of the CEx91View class
  2. //
  3. #include "stdafx.h"
  4. #include "ex91.h"
  5. #include "ex91Doc.h"
  6. #include "ex91View.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CEx91View
  14. IMPLEMENT_DYNCREATE(CEx91View, CView)
  15. BEGIN_MESSAGE_MAP(CEx91View, CView)
  16. //{{AFX_MSG_MAP(CEx91View)
  17. ON_WM_LBUTTONDOWN()
  18. //}}AFX_MSG_MAP
  19. // Standard printing commands
  20. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  21. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CEx91View construction/destruction
  26. CEx91View::CEx91View()
  27. {
  28. // TODO: add construction code here
  29. }
  30. CEx91View::~CEx91View()
  31. {
  32. }
  33. BOOL CEx91View::PreCreateWindow(CREATESTRUCT& cs)
  34. {
  35. // TODO: Modify the Window class or styles here by modifying
  36. //  the CREATESTRUCT cs
  37. return CView::PreCreateWindow(cs);
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CEx91View drawing
  41. void CEx91View::OnDraw(CDC* pDC)
  42. {
  43. CEx91Doc* pDoc = GetDocument();
  44. ASSERT_VALID(pDoc);
  45. pDC->Ellipse(x-50,y-50,x+50,y+50);
  46. }
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CEx91View printing
  49. BOOL CEx91View::OnPreparePrinting(CPrintInfo* pInfo)
  50. {
  51. // default preparation
  52. return DoPreparePrinting(pInfo);
  53. }
  54. void CEx91View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  55. {
  56. // TODO: add extra initialization before printing
  57. }
  58. void CEx91View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  59. {
  60. // TODO: add cleanup after printing
  61. }
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CEx91View diagnostics
  64. #ifdef _DEBUG
  65. void CEx91View::AssertValid() const
  66. {
  67. CView::AssertValid();
  68. }
  69. void CEx91View::Dump(CDumpContext& dc) const
  70. {
  71. CView::Dump(dc);
  72. }
  73. CEx91Doc* CEx91View::GetDocument() // non-debug version is inline
  74. {
  75. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx91Doc)));
  76. return (CEx91Doc*)m_pDocument;
  77. }
  78. #endif //_DEBUG
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CEx91View message handlers
  81. void CEx91View::OnLButtonDown(UINT nFlags, CPoint point) 
  82. {
  83. x=point.x;//先修改视图类数据成员
  84. y=point.y;
  85. GetDocument()->x=x;//再把修改结果传到文档类
  86. GetDocument()->y=y;
  87. GetDocument()->SetModifiedFlag();
  88. Invalidate();
  89. /*
  90. GetDocument()->x=point.x;//修改文档数据
  91. GetDocument()->y=point.y;
  92. GetDocument()->SetModifiedFlag();//文档数据修改后,关闭文档时提示存盘
  93. Invalidate();//文档数据改变后,要及时通知视图,按修改后的数据重新绘制窗口
  94. */
  95. CView::OnLButtonDown(nFlags, point);
  96. }
  97. void CEx91View::OnInitialUpdate() 
  98. {
  99. CView::OnInitialUpdate();
  100. x=GetDocument()->x;//把文档数据传给视图
  101. y=GetDocument()->y;
  102. }