/src/libtomahawk/widgets/SeekSlider.h

http://github.com/tomahawk-player/tomahawk · C Header · 56 lines · 26 code · 12 blank · 18 comment · 0 complexity · 90d195e9a202a3788667ace352b7dc8c MD5 · raw file

  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
  4. * Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
  5. *
  6. * Tomahawk is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Tomahawk is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef SEEKSLIDER_H
  20. #define SEEKSLIDER_H
  21. #include "DllMacro.h"
  22. #include "utils/DpiScaler.h"
  23. #include <QSlider>
  24. class QTimeLine;
  25. class DLLEXPORT SeekSlider : public QSlider, private TomahawkUtils::DpiScaler
  26. {
  27. Q_OBJECT
  28. public:
  29. SeekSlider( QWidget* parent = 0 );
  30. ~SeekSlider();
  31. void setTimeLine( QTimeLine* timeline ) { m_timeLine = timeline; }
  32. void setAcceptWheelEvents( bool b ) { m_acceptWheelEvents = b; }
  33. public slots:
  34. void setValue( int value );
  35. protected:
  36. void mousePressEvent( QMouseEvent* event );
  37. void mouseMoveEvent( QMouseEvent* event );
  38. void wheelEvent( QWheelEvent* event );
  39. private:
  40. QTimeLine* m_timeLine;
  41. bool m_acceptWheelEvents;
  42. bool m_isScrubbing;
  43. };
  44. #endif // SEEKSLIDER_H