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

书籍源码

开发平台:

Visual C++

  1. // ex53View.cpp : implementation of the CEx53View class
  2. //
  3. #include "stdafx.h"
  4. #include "ex53.h"
  5. #include "ex53Doc.h"
  6. #include "ex53View.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CEx53View
  14. IMPLEMENT_DYNCREATE(CEx53View, CView)
  15. BEGIN_MESSAGE_MAP(CEx53View, CView)
  16. //{{AFX_MSG_MAP(CEx53View)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CEx53View construction/destruction
  27. CEx53View::CEx53View()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CEx53View::~CEx53View()
  32. {
  33. }
  34. BOOL CEx53View::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. //  the CREATESTRUCT cs
  38. return CView::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CEx53View drawing
  42. void CEx53View::OnDraw(CDC* pDC)
  43. {
  44. CEx53Doc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. // TODO: add draw code for native data here
  47. CPen NewPen;
  48.     NewPen.CreatePen(PS_SOLID,3,RGB(255,0,0));//创建新画笔
  49.     CPen*  pOldPen;
  50.     pOldPen=pDC->SelectObject(&NewPen); //将新画笔选入设备环境 
  51. pDC->MoveTo(100,100);
  52. pDC->LineTo(200,200);  //用新画笔画一条直线
  53.     pDC->SelectObject(pOldPen); // 恢复设备环境中原来的画笔
  54.     NewPen.DeleteObject();
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CEx53View printing
  58. BOOL CEx53View::OnPreparePrinting(CPrintInfo* pInfo)
  59. {
  60. // default preparation
  61. return DoPreparePrinting(pInfo);
  62. }
  63. void CEx53View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  64. {
  65. // TODO: add extra initialization before printing
  66. }
  67. void CEx53View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  68. {
  69. // TODO: add cleanup after printing
  70. }
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CEx53View diagnostics
  73. #ifdef _DEBUG
  74. void CEx53View::AssertValid() const
  75. {
  76. CView::AssertValid();
  77. }
  78. void CEx53View::Dump(CDumpContext& dc) const
  79. {
  80. CView::Dump(dc);
  81. }
  82. CEx53Doc* CEx53View::GetDocument() // non-debug version is inline
  83. {
  84. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx53Doc)));
  85. return (CEx53Doc*)m_pDocument;
  86. }
  87. #endif //_DEBUG
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CEx53View message handlers