PlayerSeekBar.h
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #pragma once
  22. // CPlayerSeekBar
  23. class CPlayerSeekBar : public CDialogBar
  24. {
  25. DECLARE_DYNAMIC(CPlayerSeekBar)
  26. private:
  27. __int64 m_start, m_stop, m_pos, m_posreal;
  28. bool m_fEnabled;
  29. void MoveThumb(CPoint point);
  30. void SetPosInternal(__int64 pos);
  31. CRect GetChannelRect();
  32. CRect GetThumbRect();
  33. CRect GetInnerThumbRect();
  34. public:
  35. CPlayerSeekBar();
  36. virtual ~CPlayerSeekBar();
  37. void Enable(bool fEnable);
  38. void GetRange(__int64& start, __int64& stop);
  39. void SetRange(__int64 start, __int64 stop);
  40. __int64 GetPos(), GetPosReal();
  41. void SetPos(__int64 pos);
  42. // Overrides
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CPlayerSeekBar)
  45. virtual BOOL Create(CWnd* pParentWnd);
  46. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  47. //}}AFX_VIRTUAL
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CPlayerSeekBar)
  51. afx_msg void OnPaint();
  52. afx_msg void OnSize(UINT nType, int cx, int cy);
  53. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  54. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  55. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  56. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. public:
  60. afx_msg BOOL OnPlayStop(UINT nID);
  61. };