ListCtrlEx.h
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // ListVwEx.h : interface of the CListCtrlEx 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. #pragma once
  16. class CListCtrlEx : public CListCtrl
  17. {
  18. DECLARE_DYNCREATE(CListCtrlEx)
  19. // Construction
  20. public:
  21. CListCtrlEx();
  22. // Attributes
  23. protected:
  24. BOOL m_bFullRowSel;
  25. public:
  26. BOOL SetFullRowSel(BOOL bFillRowSel);
  27. BOOL GetFullRowSel();
  28. BOOL m_bClientWidthSel;
  29. // Overrides
  30. protected:
  31. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CListCtrlEx)
  34. public:
  35. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  36. protected:
  37. virtual void PreSubclassWindow();
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CListCtrlEx();
  42. #ifdef _DEBUG
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46. static LPCTSTR MakeShortString(CDC* pDC, LPCTSTR lpszLong, int nColumnLen, int nOffset);
  47. BOOL OnToolTipText(UINT /*uID*/, NMHDR* pNMHDR, LRESULT* pResult);
  48. virtual int OnToolHitTest(CPoint point, TOOLINFO* pTI) const;
  49. int CellRectFromPoint(CPoint& point, CRect* pRectCell, int* pCol) const;
  50. void RepaintSelectedItems();
  51. // Implementation - client area width
  52. int m_cxClient;
  53. // Implementation - state icon width
  54. int m_cxStateImageOffset;
  55. afx_msg LRESULT OnSetImageList(WPARAM wParam, LPARAM lParam);
  56. // Implementation - list view colors
  57. COLORREF m_clrText;
  58. COLORREF m_clrTextBk;
  59. COLORREF m_clrBkgnd;
  60. afx_msg LRESULT OnSetTextColor(WPARAM wParam, LPARAM lParam);
  61. afx_msg LRESULT OnSetTextBkColor(WPARAM wParam, LPARAM lParam);
  62. afx_msg LRESULT OnSetBkColor(WPARAM wParam, LPARAM lParam);
  63. // Generated message map functions
  64. protected:
  65. //{{AFX_MSG(CListCtrlEx)
  66. afx_msg void OnSize(UINT nType, int cx, int cy);
  67. afx_msg void OnPaint();
  68. afx_msg void OnSetFocus(CWnd* pOldWnd);
  69. afx_msg void OnKillFocus(CWnd* pNewWnd);
  70. //}}AFX_MSG
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. /////////////////////////////////////////////////////////////////////////////