ListCtrlBase.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. #if !defined(AFX_LISTCTRLBASE_H__B29B16B3_13B1_495C_91AF_DF5AA7F52994__INCLUDED_)
  2. #define AFX_LISTCTRLBASE_H__B29B16B3_13B1_495C_91AF_DF5AA7F52994__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ListCtrlBase.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CListCtrlBase window
  10. class CListCtrlBase : public CListCtrl
  11. {
  12. // Construction
  13. public:
  14. CListCtrlBase();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CListCtrlBase)
  22. //}}AFX_VIRTUAL
  23. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  24. // Implementation
  25. public:
  26. virtual ~CListCtrlBase();
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(CListCtrlBase)
  30. // NOTE - the ClassWizard will add and remove member functions here.
  31. //}}AFX_MSG
  32. afx_msg void MeasureItem ( LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  33. afx_msg LRESULT OnSetTextColor(WPARAM wParam, LPARAM lParam);
  34. afx_msg LRESULT OnSetTextBkColor(WPARAM wParam, LPARAM lParam);
  35. afx_msg LRESULT OnSetBkColor(WPARAM wParam, LPARAM lParam);
  36. afx_msg LRESULT OnSetImageList(WPARAM wParam, LPARAM lParam);
  37. afx_msg void OnSize(UINT nType, int cx, int cy);
  38. afx_msg void OnPaint();
  39. afx_msg void OnSetFocus(CWnd* pOldWnd);
  40. afx_msg void OnKillFocus(CWnd* pNewWnd);
  41. DECLARE_MESSAGE_MAP()
  42. private:
  43. LPCTSTR MakeShortString(CDC* pDC, LPCTSTR lpszLong, int nColumnLen, int nOffset);
  44. void RepaintSelectedItems();
  45. BOOL GetFullRowSel();
  46. BOOL m_bFullRowSel;
  47. UINT m_nTabFlag;
  48. BOOL m_bClientWidthSel;
  49. int m_cxClient;
  50. int m_cxStateImageOffset;
  51. COLORREF m_clrText;
  52. COLORREF m_clrTextBk;
  53. COLORREF m_clrBkgnd;
  54. };
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_LISTCTRLBASE_H__B29B16B3_13B1_495C_91AF_DF5AA7F52994__INCLUDED_)