home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / cmnctrl.pak / MLISTCTL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  67 lines

  1. // MyListCtrl.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMyListCtrl window
  16. #ifndef INC_MYLISTCTRL_H
  17. #define INC_MYLISTCTRL_H
  18.  
  19. #include <afxcview.h>
  20.  
  21. class CMyListCtrl : public CListCtrl
  22. {
  23. // Construction
  24. public:
  25.     CMyListCtrl();
  26.  
  27. // Attributes
  28. public:
  29.  
  30.     BOOL            m_bDragging;
  31.     int                m_iItemDrag;
  32.     int                m_iItemDrop;
  33.     CPoint            m_ptHotSpot;
  34.     CPoint            m_ptOrigin;
  35.     CSize            m_sizeDelta;
  36.     CImageList        *m_pimageListDrag;
  37.  
  38. // Operations
  39. public:
  40.  
  41. // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CMyListCtrl)
  44.     public:
  45.     //}}AFX_VIRTUAL
  46.  
  47. // Implementation
  48. public:
  49.     virtual ~CMyListCtrl();
  50.     void    OnButtonUp(CPoint point);
  51.  
  52.     // Generated message map functions
  53. protected:
  54.     //{{AFX_MSG(CMyListCtrl)
  55.     afx_msg void OnBeginDrag(LPNMHDR pnmhdr, LRESULT *pResult);
  56.     afx_msg void OnEndLabelEdit(LPNMHDR pnmhdr, LRESULT *pResult);
  57.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  58.     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  59.     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
  60.     //}}AFX_MSG
  61.  
  62.     DECLARE_MESSAGE_MAP()
  63. };
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66. #endif
  67.