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

书籍源码

开发平台:

Visual C++

  1. // ex510View.cpp : implementation of the CEx510View class
  2. //
  3. #include "stdafx.h"
  4. #include "ex510.h"
  5. #include "ex510Doc.h"
  6. #include "ex510View.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CEx510View
  14. IMPLEMENT_DYNCREATE(CEx510View, CView)
  15. BEGIN_MESSAGE_MAP(CEx510View, CView)
  16. //{{AFX_MSG_MAP(CEx510View)
  17. //}}AFX_MSG_MAP
  18. // Standard printing commands
  19. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  20. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  21. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CEx510View construction/destruction
  25. CEx510View::CEx510View()
  26. {
  27. // TODO: add construction code here
  28. }
  29. CEx510View::~CEx510View()
  30. {
  31. }
  32. BOOL CEx510View::PreCreateWindow(CREATESTRUCT& cs)
  33. {
  34. // TODO: Modify the Window class or styles here by modifying
  35. //  the CREATESTRUCT cs
  36. return CView::PreCreateWindow(cs);
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CEx510View drawing
  40. void CEx510View::OnDraw(CDC* pDC)
  41. {
  42. CEx510Doc* pDoc = GetDocument();
  43. ASSERT_VALID(pDoc);
  44. // TODO: add draw code for native data here
  45. }
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CEx510View printing
  48. BOOL CEx510View::OnPreparePrinting(CPrintInfo* pInfo)
  49. {
  50. // default preparation
  51. return DoPreparePrinting(pInfo);
  52. }
  53. void CEx510View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  54. {
  55. // TODO: add extra initialization before printing
  56. }
  57. void CEx510View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  58. {
  59. // TODO: add cleanup after printing
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CEx510View diagnostics
  63. #ifdef _DEBUG
  64. void CEx510View::AssertValid() const
  65. {
  66. CView::AssertValid();
  67. }
  68. void CEx510View::Dump(CDumpContext& dc) const
  69. {
  70. CView::Dump(dc);
  71. }
  72. CEx510Doc* CEx510View::GetDocument() // non-debug version is inline
  73. {
  74. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx510Doc)));
  75. return (CEx510Doc*)m_pDocument;
  76. }
  77. #endif //_DEBUG
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CEx510View message handlers