QQuickCanvas renames
[profile/ivi/qtdeclarative.git] / src / quick / util / qquickpixmapcache_p.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtQml module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef QQUICKPIXMAPCACHE_H
43 #define QQUICKPIXMAPCACHE_H
44
45 #include <QtCore/qcoreapplication.h>
46 #include <QtCore/qstring.h>
47 #include <QtGui/qpixmap.h>
48 #include <QtCore/qurl.h>
49 #include <private/qtquickglobal_p.h>
50 #include <QtQuick/qquickimageprovider.h>
51
52 #include <private/qintrusivelist_p.h>
53
54 QT_BEGIN_HEADER
55
56 QT_BEGIN_NAMESPACE
57
58 class QQmlEngine;
59 class QQuickPixmapData;
60 class QQuickTextureFactory;
61
62 class QQuickDefaultTextureFactory : public QQuickTextureFactory
63 {
64     Q_OBJECT
65 public:
66     QQuickDefaultTextureFactory(const QImage &i)
67         : im(i)
68     {
69     }
70
71     QSGTexture *createTexture(QQuickWindow *window) const;
72     QSize textureSize() const { return im.size(); }
73     int textureByteCount() const { return im.byteCount(); }
74     QImage image() const { return im; }
75
76 private:
77     QImage im;
78 };
79
80 class Q_QUICK_PRIVATE_EXPORT QQuickPixmap
81 {
82     Q_DECLARE_TR_FUNCTIONS(QQuickPixmap)
83 public:
84     QQuickPixmap();
85     QQuickPixmap(QQmlEngine *, const QUrl &);
86     QQuickPixmap(QQmlEngine *, const QUrl &, const QSize &);
87     ~QQuickPixmap();
88
89     enum Status { Null, Ready, Error, Loading };
90
91     enum Option {
92         Asynchronous = 0x00000001,
93         Cache        = 0x00000002
94     };
95     Q_DECLARE_FLAGS(Options, Option)
96
97     bool isNull() const;
98     bool isReady() const;
99     bool isError() const;
100     bool isLoading() const;
101
102     Status status() const;
103     QString error() const;
104     const QUrl &url() const;
105     const QSize &implicitSize() const;
106     const QSize &requestSize() const;
107     QImage image() const;
108     void setImage(const QImage &);
109
110     QQuickTextureFactory *textureFactory() const;
111
112     QRect rect() const;
113     int width() const;
114     int height() const;
115
116     void load(QQmlEngine *, const QUrl &);
117     void load(QQmlEngine *, const QUrl &, QQuickPixmap::Options options);
118     void load(QQmlEngine *, const QUrl &, const QSize &);
119     void load(QQmlEngine *, const QUrl &, const QSize &, QQuickPixmap::Options options);
120
121     void clear();
122     void clear(QObject *);
123
124     bool connectFinished(QObject *, const char *);
125     bool connectFinished(QObject *, int);
126     bool connectDownloadProgress(QObject *, const char *);
127     bool connectDownloadProgress(QObject *, int);
128
129     static void purgeCache();
130
131 private:
132     Q_DISABLE_COPY(QQuickPixmap)
133     QQuickPixmapData *d;
134     QIntrusiveListNode dataListNode;
135     friend class QQuickPixmapData;
136 };
137
138 Q_DECLARE_OPERATORS_FOR_FLAGS(QQuickPixmap::Options)
139
140 QT_END_NAMESPACE
141
142 QT_END_HEADER
143
144 #endif // QQUICKPIXMAPCACHE_H