TPS_DemoView.cpp
上传用户:qifu0001
上传日期:2007-01-02
资源大小:52k
文件大小:3k
源码类别:

TreeView控件

开发平台:

Visual C++

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