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

对话框与窗口

开发平台:

Visual C++

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