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

ActiveX/DCOM/ATL

开发平台:

Visual C++

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