LeftView.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:3k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // LeftView.cpp : implementation of the CLeftView class
  2. //
  3. #include "stdafx.h"
  4. #include "ex.h"
  5. #include "exDoc.h"
  6. #include "LeftView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CLeftView
  14. IMPLEMENT_DYNCREATE(CLeftView, CTreeView)
  15. BEGIN_MESSAGE_MAP(CLeftView, CTreeView)
  16. //{{AFX_MSG_MAP(CLeftView)
  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, CTreeView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CTreeView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CTreeView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CLeftView construction/destruction
  27. CLeftView::CLeftView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CLeftView::~CLeftView()
  32. {
  33. }
  34. BOOL CLeftView::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. //  the CREATESTRUCT cs
  38. return CTreeView::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CLeftView drawing
  42. void CLeftView::OnDraw(CDC* pDC)
  43. {
  44. CExDoc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. // TODO: add draw code for native data here
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CLeftView printing
  50. BOOL CLeftView::OnPreparePrinting(CPrintInfo* pInfo)
  51. {
  52. // default preparation
  53. return DoPreparePrinting(pInfo);
  54. }
  55. void CLeftView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  56. {
  57. // TODO: add extra initialization before printing
  58. }
  59. void CLeftView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  60. {
  61. // TODO: add cleanup after printing
  62. }
  63. void CLeftView::OnInitialUpdate()
  64. {
  65. CTreeView::OnInitialUpdate();
  66. // TODO: You may populate your TreeView with items by directly accessing
  67. //  its tree control through a call to GetTreeCtrl().
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CLeftView diagnostics
  71. #ifdef _DEBUG
  72. void CLeftView::AssertValid() const
  73. {
  74. CTreeView::AssertValid();
  75. }
  76. void CLeftView::Dump(CDumpContext& dc) const
  77. {
  78. CTreeView::Dump(dc);
  79. }
  80. CExDoc* CLeftView::GetDocument() // non-debug version is inline
  81. {
  82. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CExDoc)));
  83. return (CExDoc*)m_pDocument;
  84. }
  85. #endif //_DEBUG
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CLeftView message handlers