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

CA认证

开发平台:

Visual C++

  1. #if !defined(AFX_BITMAPSLIDER_H__BED36788_B60C_4C9E_AC56_FE430B93A0FD__INCLUDED_)
  2. #define AFX_BITMAPSLIDER_H__BED36788_B60C_4C9E_AC56_FE430B93A0FD__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // BitmapSlider.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. //
  10. // CBitmapSlider v1.5
  11. //
  12. // It's free for everywhere - 16/September/2003 - Joon-ho Ryu
  13. //
  14. /////////////////////////////////////////////////////////////////////////////
  15. #include "memdc.h" // "Flicker Free Drawing In MFC" by Keith Rule
  16. #define WM_BITMAPSLIDER_MOVING WM_USER + 9425
  17. #define WM_BITMAPSLIDER_MOVED WM_USER + 9426
  18. class CBitmapSlider : public CStatic
  19. {
  20. // Construction
  21. public:
  22. CBitmapSlider();
  23. // Attributes
  24. public:
  25. // Operations
  26. public:
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CBitmapSlider)
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. void GetRange( int &nMin, int &nMax ) { nMin = m_nMin; nMax = m_nMax; };
  34. int GetRangeMax() { return m_nMax; };
  35. int GetRangeMin() { return m_nMin; };
  36. int GetPos() { return m_nPos; };
  37. void SetRange( int nMin, int nMax, BOOL bRedraw=FALSE );
  38. void SetRangeMin(int nMin, BOOL bRedraw = FALSE);
  39. void SetRangeMax( int nMax, BOOL bRedraw = FALSE );
  40. void SetPos( int nPos );
  41. int SetPageSize( int nSize );
  42. BOOL SetBitmapChannel(
  43. UINT nChannelID, UINT nActiveID=NULL, BOOL bTransparent=FALSE,
  44. COLORREF clrpTransColor=0xFF000000, int iTransPixelX=0, int iTransPixelY=0 );
  45. BOOL SetBitmapThumb(
  46. UINT nThumbID, UINT nActiveID=NULL, BOOL bTransparent=FALSE,
  47. COLORREF clrpTransColor=0xFF000000, int iTransPixelX=0, int iTransPixelY=0 );
  48. void SetMargin( int nLeft, int nTop, int nRight, int nBottom );
  49. void SetMarginTop( int nMargin ) { m_nMarginTop = nMargin; };
  50. void SetMarginLeft( int nMargin ) { m_nMarginLeft = nMargin; };
  51. void SetMarginRight( int nMargin ) { m_nMarginRight = nMargin; };
  52. void SetMarginBottom( int nMargin ) { m_nMarginBottom = nMargin; };
  53. void SetVertical( BOOL bVertical=TRUE ) { m_bVertical = bVertical; };
  54. void Enable( BOOL bEnable = TRUE );
  55. void DrawFocusRect( BOOL bDraw = TRUE, BOOL bRedraw = FALSE );
  56. virtual ~CBitmapSlider();
  57. // Generated message map functions
  58. protected:
  59. void RestoreBackground(
  60. CDC *pDC, int nXDst, int nYDst, int nWidth, int nHeight, CBitmap *pBmSrc);
  61. void CopyBackground(
  62. CDC *pDC, int nXSrc, int nYSrc, int nWidth, int nHeight, CBitmap *pBmDst );
  63. void DrawBitmap(
  64. CDC* pDC, int xStart, int yStart, int wWidth, int wHeight,
  65. CDC* pTmpDC, int xSource, int ySource,
  66. CBitmap *bmMask = NULL, BOOL bTransparent = FALSE );
  67. void DrawTransparentBitmap(
  68. CDC* pDC, int xStart, int yStart, int wWidth, int wHeight,
  69. CDC* pTmpDC, int xSource, int ySource, CBitmap *bmMask );
  70. void PrepareMask(
  71. CBitmap* pBmpSource, CBitmap* pBmpMask,
  72. COLORREF clrpTransColor=0xFF000000, int iTransPixelX=0, int iTransPixelY=0 );
  73. int Pixel2Pos( int nPixel );
  74. int Pos2Pixel( int nPos );
  75. int m_nMax, m_nMin, m_nPos, m_nPage;
  76. CRect m_rect;
  77. int m_nWidth, m_nHeight;
  78. int m_nThumbWidth, m_nThumbHeight;
  79. int m_nMarginLeft, m_nMarginRight, m_nMarginTop, m_nMarginBottom;
  80. int m_nThumbBgX, m_nThumbBgY;
  81. int m_nMouseOffset;
  82. BOOL m_bVertical;
  83. BOOL m_bChannelActive, m_bThumbActive;
  84. BOOL m_bTransparentChannel, m_bTransparentThumb, m_bThumb, m_bChannel;
  85. BOOL m_bLButtonDown, m_bFocus, m_bFocusRect, m_bDrawFocusRect;
  86. BOOL m_bEnable;
  87. CBitmap m_bmChannel, m_bmChannelMask, m_bmChannelActive, m_bmChannelActiveMask;
  88. CBitmap m_bmThumb, m_bmThumbMask, m_bmThumbActive, m_bmThumbActiveMask, m_bmThumbBg;
  89. //{{AFX_MSG(CBitmapSlider)
  90. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  91. afx_msg void OnPaint();
  92. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  93. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  94. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  95. afx_msg UINT OnGetDlgCode();
  96. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  97. afx_msg void OnKillFocus(CWnd* pNewWnd);
  98. afx_msg void OnSetFocus(CWnd* pOldWnd);
  99. afx_msg void OnDestroy();
  100. //}}AFX_MSG
  101. DECLARE_MESSAGE_MAP()
  102. private:
  103. // This is CStatic method
  104. void SetBitmap( HBITMAP hBitmap ) {};
  105. };
  106. /////////////////////////////////////////////////////////////////////////////
  107. //{{AFX_INSERT_LOCATION}}
  108. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  109. #endif // !defined(AFX_BITMAPSLIDER_H__BED36788_B60C_4C9E_AC56_FE430B93A0FD__INCLUDED_)