BookAdminView.cpp
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:3k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // BookAdminView.cpp : implementation of the CBookAdminView class
- //
- #include "stdafx.h"
- #include "BookAdmin.h"
- #include "BookAdminDoc.h"
- #include "BookAdminView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CBookAdminView
- IMPLEMENT_DYNCREATE(CBookAdminView, CListView)
- BEGIN_MESSAGE_MAP(CBookAdminView, CListView)
- //{{AFX_MSG_MAP(CBookAdminView)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- // Standard printing commands
- ON_COMMAND(ID_FILE_PRINT, CListView::OnFilePrint)
- ON_COMMAND(ID_FILE_PRINT_DIRECT, CListView::OnFilePrint)
- ON_COMMAND(ID_FILE_PRINT_PREVIEW, CListView::OnFilePrintPreview)
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CBookAdminView construction/destruction
- CBookAdminView::CBookAdminView()
- {
- // TODO: add construction code here
- }
- CBookAdminView::~CBookAdminView()
- {
- }
- BOOL CBookAdminView::PreCreateWindow(CREATESTRUCT& cs)
- {
- // TODO: Modify the Window class or styles here by modifying
- // the CREATESTRUCT cs
- return CListView::PreCreateWindow(cs);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CBookAdminView drawing
- void CBookAdminView::OnDraw(CDC* pDC)
- {
- CBookAdminDoc* pDoc = GetDocument();
- ASSERT_VALID(pDoc);
- CListCtrl& refCtrl = GetListCtrl();
- refCtrl.InsertItem(0, "Item!");
- // TODO: add draw code for native data here
- }
- void CBookAdminView::OnInitialUpdate()
- {
- CListView::OnInitialUpdate();
- // TODO: You may populate your ListView with items by directly accessing
- // its list control through a call to GetListCtrl().
- }
- /////////////////////////////////////////////////////////////////////////////
- // CBookAdminView printing
- BOOL CBookAdminView::OnPreparePrinting(CPrintInfo* pInfo)
- {
- // default preparation
- return DoPreparePrinting(pInfo);
- }
- void CBookAdminView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add extra initialization before printing
- }
- void CBookAdminView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
- {
- // TODO: add cleanup after printing
- }
- /////////////////////////////////////////////////////////////////////////////
- // CBookAdminView diagnostics
- #ifdef _DEBUG
- void CBookAdminView::AssertValid() const
- {
- CListView::AssertValid();
- }
- void CBookAdminView::Dump(CDumpContext& dc) const
- {
- CListView::Dump(dc);
- }
- CBookAdminDoc* CBookAdminView::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CBookAdminDoc)));
- return (CBookAdminDoc*)m_pDocument;
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CBookAdminView message handlers
- void CBookAdminView::OnStyleChanged(int nStyleType, LPSTYLESTRUCT lpStyleStruct)
- {
- //TODO: add code to react to the user changing the view style of your window
- }