GridListCtrl.h
上传用户:zdjx198
上传日期:2007-01-02
资源大小:95k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_GRIDLISTCTRL_H__92CA5999_9434_11D1_88D5_444553540000__INCLUDED_)
  2. #define AFX_GRIDLISTCTRL_H__92CA5999_9434_11D1_88D5_444553540000__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // GridListCtrl.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CGridListCtrl window
  10. class CGridListCtrl : public CListCtrl
  11. {
  12. // Construction
  13. public:
  14. CGridListCtrl();
  15. // Attributes
  16. public:
  17. // The current subitem or column number which is order based.
  18. int m_CurSubItem;
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CGridListCtrl)
  24. public:
  25. virtual BOOL PreTranslateMessage(MSG* pMsg);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. void MakeColumnVisible(int nCol);
  30. BOOL PositionControl( CWnd * pWnd, int iItem, int iSubItem );
  31. BOOL PrepareControl(WORD wParseStyle);
  32. virtual ~CGridListCtrl();
  33. // Generated message map functions
  34. protected:
  35. //{{AFX_MSG(CGridListCtrl)
  36. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  37. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  38. afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  39. //}}AFX_MSG
  40. afx_msg void OnCustomDraw(NMHDR* pNMHDR, LRESULT* pResult);
  41. WORD m_wStyle;
  42. DECLARE_MESSAGE_MAP()
  43. private:
  44. int IndexToOrder( int iIndex );
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_GRIDLISTCTRL_H__92CA5999_9434_11D1_88D5_444553540000__INCLUDED_)