485c3026f2574682ee46fc0c95c841a7e7d2f856
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickanimatedimage_p.h
1 // Commit: 80d0fe9cbd92288a08d5ced8767f1edb651dae37
2 /****************************************************************************
3 **
4 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
5 ** All rights reserved.
6 ** Contact: http://www.qt-project.org/
7 **
8 ** This file is part of the QtDeclarative module of the Qt Toolkit.
9 **
10 ** $QT_BEGIN_LICENSE:LGPL$
11 ** GNU Lesser General Public License Usage
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this
15 ** file. Please review the following information to ensure the GNU Lesser
16 ** General Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** GNU General Public License Usage
24 ** Alternatively, this file may be used under the terms of the GNU General
25 ** Public License version 3.0 as published by the Free Software Foundation
26 ** and appearing in the file LICENSE.GPL included in the packaging of this
27 ** file. Please review the following information to ensure the GNU General
28 ** Public License version 3.0 requirements will be met:
29 ** http://www.gnu.org/copyleft/gpl.html.
30 **
31 ** Other Usage
32 ** Alternatively, this file may be used in accordance with the terms and
33 ** conditions contained in a signed written agreement between you and Nokia.
34 **
35 **
36 **
37 **
38 **
39 ** $QT_END_LICENSE$
40 **
41 ****************************************************************************/
42
43 #ifndef QQUICKANIMATEDIMAGE_P_H
44 #define QQUICKANIMATEDIMAGE_P_H
45
46 #include "qquickimage_p.h"
47
48 #ifndef QT_NO_MOVIE
49
50 QT_BEGIN_HEADER
51
52 QT_BEGIN_NAMESPACE
53
54 class QMovie;
55 class QQuickAnimatedImagePrivate;
56
57 class Q_AUTOTEST_EXPORT QQuickAnimatedImage : public QQuickImage
58 {
59     Q_OBJECT
60
61     Q_PROPERTY(bool playing READ isPlaying WRITE setPlaying NOTIFY playingChanged)
62     Q_PROPERTY(bool paused READ isPaused WRITE setPaused NOTIFY pausedChanged)
63     Q_PROPERTY(int currentFrame READ currentFrame WRITE setCurrentFrame NOTIFY frameChanged)
64     Q_PROPERTY(int frameCount READ frameCount)
65
66     // read-only for AnimatedImage
67     Q_PROPERTY(QSize sourceSize READ sourceSize NOTIFY sourceSizeChanged)
68
69 public:
70     QQuickAnimatedImage(QQuickItem *parent=0);
71     ~QQuickAnimatedImage();
72
73     bool isPlaying() const;
74     void setPlaying(bool play);
75
76     bool isPaused() const;
77     void setPaused(bool pause);
78
79     int currentFrame() const;
80     void setCurrentFrame(int frame);
81
82     int frameCount() const;
83
84     // Extends QQuickImage's src property*/
85     virtual void setSource(const QUrl&);
86
87 Q_SIGNALS:
88     void playingChanged();
89     void pausedChanged();
90     void frameChanged();
91     void sourceSizeChanged();
92
93 private Q_SLOTS:
94     void movieUpdate();
95     void movieRequestFinished();
96     void playingStatusChanged();
97
98 protected:
99     virtual void load();
100     void componentComplete();
101
102 private:
103     Q_DISABLE_COPY(QQuickAnimatedImage)
104     Q_DECLARE_PRIVATE(QQuickAnimatedImage)
105 };
106
107 QT_END_NAMESPACE
108
109 QML_DECLARE_TYPE(QQuickAnimatedImage)
110
111 QT_END_HEADER
112
113 #endif // QT_NO_MOVIE
114
115 #endif // QQUICKANIMATEDIMAGE_P_H