SkinHorizontalScrollbar.h
上传用户:sgmlaoniu
上传日期:2022-06-15
资源大小:28k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_SKINHORIZONTALSCROLLBAR_H__77B6A7DF_1670_44D6_AA66_28424AF219DB__INCLUDED_)
  2. #define AFX_SKINHORIZONTALSCROLLBAR_H__77B6A7DF_1670_44D6_AA66_28424AF219DB__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SkinHorizontalScrollbar.h : header file
  7. //
  8. #include "memdc.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CSkinHorizontalScrollbar window
  11. class CSkinHorizontalScrollbar : public CStatic
  12. {
  13. // Construction
  14. public:
  15. CSkinHorizontalScrollbar();
  16. void ScrollLeft();
  17. void ScrollRight();
  18. bool bMouseDownArrowRight, bMouseDownArrowLeft;
  19. bool bDragging;
  20. bool bMouseDown;
  21. int nThumbLeft;
  22. double dbThumbRemainder;
  23. double dbThumbInterval;
  24. // Attributes
  25. public:
  26. // Operations
  27. public:
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CSkinHorizontalScrollbar)
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. CListCtrl* pList;
  35. void LimitThumbPosition();
  36. void Draw();
  37. void PageLeft();
  38. void PageRight();
  39. void UpdateThumbPosition();
  40. virtual ~CSkinHorizontalScrollbar();
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CSkinHorizontalScrollbar)
  44. afx_msg void OnPaint();
  45. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  46. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  47. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  48. afx_msg void OnTimer(UINT nIDEvent);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_SKINHORIZONTALSCROLLBAR_H__77B6A7DF_1670_44D6_AA66_28424AF219DB__INCLUDED_)