WZDLISTV.H
上传用户:leishk
上传日期:2022-03-16
资源大小:3649k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // WzdListView.h : interface of the CWzdListView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined WZDLISTVIEW_H
  5. #define WZDLISTVIEW_H
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include <afxcview.h>
  10. class CWzdListView : public CListView
  11. {
  12. protected: // create from serialization only
  13. CWzdListView();
  14. DECLARE_DYNCREATE(CWzdListView)
  15. // Attributes
  16. public:
  17. CWzdDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CWzdListView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. virtual void OnInitialUpdate();
  27. protected:
  28. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  29. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CWzdListView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CWzdListView)
  44. afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. private:
  48. CImageList m_ImageList;
  49. CImageList m_ImageSmallList;
  50. void AddLine(CWzdInfo *pInfo);
  51. };
  52. #ifndef _DEBUG  // debug version in WzdListView.cpp
  53. inline CWzdDoc* CWzdListView::GetDocument()
  54.    { return (CWzdDoc*)m_pDocument; }
  55. #endif
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_WzdListView_H__CA9038F0_B0DF_11D1_A18C_DCB3C85EBD34__INCLUDED_)