LISTVWEX.H
上传用户:surprise9
上传日期:2007-01-04
资源大小:426k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // ListVwEx.h : interface of the CListViewEx class
  2. //
  3. // This class provedes a full row selection mode for the report
  4. // mode list view control.
  5. //
  6. // This is a part of the Microsoft Foundation Classes C++ library.
  7. // Copyright (C) 1992-1996 Microsoft Corporation
  8. // All rights reserved.
  9. //
  10. // This source code is only intended as a supplement to the
  11. // Microsoft Foundation Classes Reference and related
  12. // electronic documentation provided with the library.
  13. // See these sources for detailed information regarding the
  14. // Microsoft Foundation Classes product.
  15. class DLL_WAR_CLIENT_ CListViewEx : public CListView
  16. {
  17. DECLARE_DYNCREATE(CListViewEx)
  18. // Construction
  19. public:
  20. CListViewEx();
  21. // Attributes
  22. protected:
  23. BOOL m_bFullRowSel;
  24. public:
  25. BOOL SetFullRowSel(BOOL bFillRowSel);
  26. BOOL GetFullRowSel();
  27. BOOL m_bClientWidthSel;
  28. // Overrides
  29. protected:
  30. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CListViewEx)
  33. public:
  34. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  35. protected:
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. public:
  39. virtual ~CListViewEx();
  40. #ifdef _DEBUG
  41. virtual void Dump(CDumpContext& dc) const;
  42. #endif
  43. protected:
  44. static LPCTSTR MakeShortString(CDC* pDC, LPCTSTR lpszLong, int nColumnLen, int nOffset);
  45. void RepaintSelectedItems();
  46. // Implementation - client area width
  47. int m_cxClient;
  48. // Implementation - state icon width
  49. int m_cxStateImageOffset;
  50. afx_msg LRESULT OnSetImageList(WPARAM wParam, LPARAM lParam);
  51. // Implementation - list view colors
  52. COLORREF m_clrText;
  53. COLORREF m_clrTextBk;
  54. COLORREF m_clrBkgnd;
  55. afx_msg LRESULT OnSetTextColor(WPARAM wParam, LPARAM lParam);
  56. afx_msg LRESULT OnSetTextBkColor(WPARAM wParam, LPARAM lParam);
  57. afx_msg LRESULT OnSetBkColor(WPARAM wParam, LPARAM lParam);
  58. // Generated message map functions
  59. protected:
  60. //{{AFX_MSG(CListViewEx)
  61. afx_msg void OnSize(UINT nType, int cx, int cy);
  62. afx_msg void OnPaint();
  63. afx_msg void OnSetFocus(CWnd* pOldWnd);
  64. afx_msg void OnKillFocus(CWnd* pNewWnd);
  65. //}}AFX_MSG
  66. DECLARE_MESSAGE_MAP()
  67. };
  68. /////////////////////////////////////////////////////////////////////////////