/src/libtomahawk/widgets/animatedcounterlabel.h

http://github.com/tomahawk-player/tomahawk · C Header · 58 lines · 27 code · 12 blank · 19 comment · 0 complexity · 7abb58fab5a0efb78cc77d84bef044cb 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. *
  5. * Tomahawk 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 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef ANIMATEDCOUNTERLABEL_H
  19. #define ANIMATEDCOUNTERLABEL_H
  20. #include <QLabel>
  21. #include <QTimeLine>
  22. #include <QPropertyAnimation>
  23. #include <QEasingCurve>
  24. #include <cmath>
  25. #include "DllMacro.h"
  26. class DLLEXPORT AnimatedCounterLabel : public QLabel
  27. {
  28. Q_OBJECT
  29. public:
  30. explicit AnimatedCounterLabel( QWidget* parent = 0, Qt::WindowFlags f = 0 );
  31. void setFormat( const QString& f );
  32. public slots:
  33. void setVisible( bool b );
  34. void frame( int f );
  35. void setVal( unsigned int v );
  36. void showDiff();
  37. private:
  38. QTimeLine m_timer;
  39. // what's in the label text:
  40. unsigned int m_displayed;
  41. // current value we are storing (and displaying, or animating towards displaying)
  42. unsigned int m_val, m_oldval;
  43. QString m_format;
  44. QWeakPointer<QLabel> m_diff;
  45. };
  46. #endif // ANIMATEDCOUNTERLABEL_H