RtListView.h
上传用户:shtiemo
上传日期:2017-12-29
资源大小:163k
文件大小:1k
开发平台:

Visual C++

  1. // RtListView.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CRtListView view
  5. class CPasRTDatDoc;
  6. class CRtListView : public CListView
  7. {
  8. protected:
  9. CRtListView();           // protected constructor used by dynamic creation
  10. DECLARE_DYNCREATE(CRtListView)
  11. // Attributes
  12. public:
  13. CImageList m_ImageList;
  14. protected:
  15. // Operations
  16. public:
  17. CPasRTDatDoc *GetDoc();
  18. void FillListYC(int nStart,int nYCYXNum);
  19. void FillListYX(int nStart,int nYCYXNum);
  20. void FillListColumn(CListCtrl& listc,LV_COLUMN lv,char *ColumnName[],int num);
  21. void InitialList();
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CRtListView)
  25. public:
  26. virtual void OnInitialUpdate();
  27. protected:
  28. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. virtual ~CRtListView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CRtListView)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////