SDIDemoView.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // SDIDemoView.cpp : implementation of the CSDIDemoView class
  2. //
  3. #include "stdafx.h"
  4. #include "SDIDemo.h"
  5. #include "SDIDemoDoc.h"
  6. #include "SDIDemoView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSDIDemoView
  14. IMPLEMENT_DYNCREATE(CSDIDemoView, CView)
  15. BEGIN_MESSAGE_MAP(CSDIDemoView, CView)
  16. //{{AFX_MSG_MAP(CSDIDemoView)
  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. // CSDIDemoView construction/destruction
  27. CSDIDemoView::CSDIDemoView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CSDIDemoView::~CSDIDemoView()
  32. {
  33. }
  34. BOOL CSDIDemoView::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. // CSDIDemoView drawing
  42. void CSDIDemoView::OnDraw(CDC* pDC)
  43. {
  44. CSDIDemoDoc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. // TODO: add draw code for native data here
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CSDIDemoView printing
  50. BOOL CSDIDemoView::OnPreparePrinting(CPrintInfo* pInfo)
  51. {
  52. // default preparation
  53. return DoPreparePrinting(pInfo);
  54. }
  55. void CSDIDemoView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  56. {
  57. // TODO: add extra initialization before printing
  58. }
  59. void CSDIDemoView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  60. {
  61. // TODO: add cleanup after printing
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CSDIDemoView diagnostics
  65. #ifdef _DEBUG
  66. void CSDIDemoView::AssertValid() const
  67. {
  68. CView::AssertValid();
  69. }
  70. void CSDIDemoView::Dump(CDumpContext& dc) const
  71. {
  72. CView::Dump(dc);
  73. }
  74. CSDIDemoDoc* CSDIDemoView::GetDocument() // non-debug version is inline
  75. {
  76. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CSDIDemoDoc)));
  77. return (CSDIDemoDoc*)m_pDocument;
  78. }
  79. #endif //_DEBUG
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CSDIDemoView message handlers