ListCtrl.h
上传用户:dengkfang
上传日期:2008-12-30
资源大小:5233k
文件大小:1k
源码类别:

CA认证

开发平台:

Visual C++

  1. #if !defined(AFX_LISTCTRL_H__2EB671B4_0711_11D3_90AB_00E029355177__INCLUDED_)
  2. #define AFX_LISTCTRL_H__2EB671B4_0711_11D3_90AB_00E029355177__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ListCtrl.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // gxListCtrl window
  10. class gxListCtrl : public CListCtrl
  11. {
  12. public:
  13. gxListCtrl (CString Text = "Some Text");
  14.     virtual ~gxListCtrl();
  15.     CString DefaultText;
  16.     CEdit*  EditSubItem (int Item, int Column);
  17.     int     HitTestEx (CPoint& Point, int* Column);
  18.     int     InsertItemEx (int Item);
  19.     void    Resize (int cx, int cy);
  20.     //{{AFX_VIRTUAL(gxListCtrl)
  21.     //}}AFX_VIRTUAL
  22. protected:
  23.     //{{AFX_MSG(gxListCtrl)
  24.     afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  25.     afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  26.     afx_msg void OnEndLabelEdit(NMHDR* pNMHDR, LRESULT* pResult);
  27.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  28. afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
  29. //}}AFX_MSG
  30.     DECLARE_MESSAGE_MAP()
  31. };
  32. /////////////////////////////////////////////////////////////////////////////
  33. //{{AFX_INSERT_LOCATION}}
  34. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  35. #endif // !defined(AFX_LISTCTRL_H__2EB671B4_0711_11D3_90AB_00E029355177__INCLUDED_)