~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/libtomahawk/widgets/FadingPixmap.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 21:50:13 UTC
  • Revision ID: package-import@ubuntu.com-20130307215013-6gdjkdds7i9uenvs
Tags: upstream-0.6.0+dfsg
ImportĀ upstreamĀ versionĀ 0.6.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
 
2
 *
 
3
 *   Copyright 2011 - 2012, Christian Muehlhaeuser <muesli@tomahawk-player.org>
 
4
 *   Copyright 2012, 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
 
 
20
#ifndef FADINGPIXMAP_H
 
21
#define FADINGPIXMAP_H
 
22
 
 
23
#include "utils/SharedTimeLine.h"
 
24
#include "utils/TomahawkUtils.h"
 
25
 
 
26
#include <QLabel>
 
27
#include <QPaintEvent>
 
28
#include <QTimeLine>
 
29
#include <QWeakPointer>
 
30
 
 
31
#include "DllMacro.h"
 
32
 
 
33
/**
 
34
 * \class FadingPixmap
 
35
 * \brief Fades to the new image when calling setPixmap.
 
36
 */
 
37
class DLLEXPORT FadingPixmap : public QLabel
 
38
{
 
39
Q_OBJECT
 
40
 
 
41
    static QWeakPointer< TomahawkUtils::SharedTimeLine > stlInstance();
 
42
 
 
43
public:
 
44
    FadingPixmap( QWidget* parent = 0 );
 
45
    virtual ~FadingPixmap();
 
46
 
 
47
public slots:
 
48
    virtual void setPixmap( const QPixmap& pixmap, bool isDefault );
 
49
    void onAnimationStep( int frame );
 
50
 
 
51
signals:
 
52
    void clicked();
 
53
 
 
54
protected:
 
55
    virtual void paintEvent( QPaintEvent* );
 
56
    void mouseReleaseEvent( QMouseEvent* event );
 
57
 
 
58
private slots:
 
59
    void onAnimationFinished();
 
60
 
 
61
private:
 
62
    QPixmap m_pixmap;
 
63
    QPixmap m_oldPixmap;
 
64
 
 
65
    QString m_oldImageMd5;
 
66
    
 
67
    QList<QPixmap> m_pixmapQueue;
 
68
    
 
69
    int m_fadePct;
 
70
    int m_startFrame;
 
71
    bool m_isDefault;
 
72
 
 
73
    static QWeakPointer< TomahawkUtils::SharedTimeLine > s_stlInstance;
 
74
};
 
75
 
 
76
#endif