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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // BookAdminView.cpp : implementation of the CBookAdminView class
  2. //
  3. #include "stdafx.h"
  4. #include "BookAdmin.h"
  5. #include "BookAdminDoc.h"
  6. #include "BookAdminView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CBookAdminView
  14. IMPLEMENT_DYNCREATE(CBookAdminView, CListView)
  15. BEGIN_MESSAGE_MAP(CBookAdminView, CListView)
  16. //{{AFX_MSG_MAP(CBookAdminView)
  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. // CBookAdminView construction/destruction
  27. CBookAdminView::CBookAdminView()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CBookAdminView::~CBookAdminView()
  32. {
  33. }
  34. BOOL CBookAdminView::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. // CBookAdminView drawing
  42. void CBookAdminView::OnDraw(CDC* pDC)
  43. {
  44. CBookAdminDoc* 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 CBookAdminView::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. // CBookAdminView printing
  58. BOOL CBookAdminView::OnPreparePrinting(CPrintInfo* pInfo)
  59. {
  60. // default preparation
  61. return DoPreparePrinting(pInfo);
  62. }
  63. void CBookAdminView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  64. {
  65. // TODO: add extra initialization before printing
  66. }
  67. void CBookAdminView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  68. {
  69. // TODO: add cleanup after printing
  70. }
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CBookAdminView diagnostics
  73. #ifdef _DEBUG
  74. void CBookAdminView::AssertValid() const
  75. {
  76. CListView::AssertValid();
  77. }
  78. void CBookAdminView::Dump(CDumpContext& dc) const
  79. {
  80. CListView::Dump(dc);
  81. }
  82. CBookAdminDoc* CBookAdminView::GetDocument() // non-debug version is inline
  83. {
  84. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CBookAdminDoc)));
  85. return (CBookAdminDoc*)m_pDocument;
  86. }
  87. #endif //_DEBUG
  88. /////////////////////////////////////////////////////////////////////////////
  89. // CBookAdminView message handlers
  90. void CBookAdminView::OnStyleChanged(int nStyleType, LPSTYLESTRUCT lpStyleStruct)
  91. {
  92. //TODO: add code to react to the user changing the view style of your window
  93. }