~sil2100/unity-2d/precise-security

« back to all changes in this revision

Viewing changes to launcher/app/qdeclarativepixmapcache_p.h

  • Committer: Aurelien Gateau
  • Date: 2010-11-10 08:57:29 UTC
  • mto: This revision was merged to the branch mainline in revision 284.
  • Revision ID: aurelien.gateau@canonical.com-20101110085729-fl1ye7impkqhm0w6
Added a section about const correct-ness

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
4
** All rights reserved.
 
5
** Contact: Nokia Corporation (qt-info@nokia.com)
 
6
**
 
7
** This file is part of the QtDeclarative module of the Qt Toolkit.
 
8
**
 
9
** $QT_BEGIN_LICENSE:LGPL$
 
10
** No Commercial Usage
 
11
** This file contains pre-release code and may not be distributed.
 
12
** You may use this file in accordance with the terms and conditions
 
13
** contained in the Technology Preview License Agreement accompanying
 
14
** this package.
 
15
**
 
16
** GNU Lesser General Public License Usage
 
17
** Alternatively, this file may be used under the terms of the GNU Lesser
 
18
** General Public License version 2.1 as published by the Free Software
 
19
** Foundation and appearing in the file LICENSE.LGPL included in the
 
20
** packaging of this file.  Please review the following information to
 
21
** ensure the GNU Lesser General Public License version 2.1 requirements
 
22
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
23
**
 
24
** In addition, as a special exception, Nokia gives you certain additional
 
25
** rights.  These rights are described in the Nokia Qt LGPL Exception
 
26
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
27
**
 
28
** If you have questions regarding the use of this file, please contact
 
29
** Nokia at qt-info@nokia.com.
 
30
**
 
31
**
 
32
**
 
33
**
 
34
**
 
35
**
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#ifndef QDECLARATIVEPIXMAPCACHE_H
 
43
#define QDECLARATIVEPIXMAPCACHE_H
 
44
 
 
45
#include <QtCore/qcoreapplication.h>
 
46
#include <QtCore/qstring.h>
 
47
#include <QtGui/qpixmap.h>
 
48
#include <QtCore/qurl.h>
 
49
 
 
50
QT_BEGIN_HEADER
 
51
 
 
52
QT_BEGIN_NAMESPACE
 
53
 
 
54
QT_MODULE(Declarative)
 
55
 
 
56
class QDeclarativeEngine;
 
57
class QDeclarativePixmapData;
 
58
class Q_DECLARATIVE_EXPORT QDeclarativePixmap
 
59
{
 
60
    Q_DECLARE_TR_FUNCTIONS(QDeclarativePixmap)
 
61
public:
 
62
    QDeclarativePixmap();
 
63
    QDeclarativePixmap(QDeclarativeEngine *, const QUrl &);
 
64
    QDeclarativePixmap(QDeclarativeEngine *, const QUrl &, const QSize &);
 
65
    ~QDeclarativePixmap();
 
66
 
 
67
    bool isNull() const;
 
68
    bool isReady() const;
 
69
    bool isError() const;
 
70
    bool isLoading() const;
 
71
 
 
72
    Status status() const;
 
73
    QString error() const;
 
74
    const QUrl &url() const;
 
75
    const QSize &implicitSize() const;
 
76
    const QSize &requestSize() const;
 
77
    const QPixmap &pixmap() const;
 
78
    void setPixmap(const QPixmap &);
 
79
 
 
80
    QRect rect() const;
 
81
    int width() const;
 
82
    int height() const;
 
83
    inline operator const QPixmap &() const;
 
84
 
 
85
    void load(QDeclarativeEngine *, const QUrl &);
 
86
    void load(QDeclarativeEngine *, const QUrl &, bool);
 
87
    void load(QDeclarativeEngine *, const QUrl &, const QSize &);
 
88
    void load(QDeclarativeEngine *, const QUrl &, const QSize &, bool);
 
89
 
 
90
    void clear();
 
91
    void clear(QObject *);
 
92
 
 
93
    bool connectFinished(QObject *, const char *);
 
94
    bool connectFinished(QObject *, int);
 
95
    bool connectDownloadProgress(QObject *, const char *);
 
96
    bool connectDownloadProgress(QObject *, int);
 
97
 
 
98
private:
 
99
    Q_DISABLE_COPY(QDeclarativePixmap)
 
100
    QDeclarativePixmapData *d;
 
101
};
 
102
 
 
103
inline QDeclarativePixmap::operator const QPixmap &() const
 
104
{
 
105
    return pixmap();
 
106
}
 
107
 
 
108
QT_END_NAMESPACE
 
109
 
 
110
QT_END_HEADER
 
111
 
 
112
#endif // QDECLARATIVEPIXMAPCACHE_H