blob: 5e11d2b7b6d1af4bc6dfeecf1af00534c3365b86 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtDeclarative module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "private/qdeclarativeimagebase_p.h"
#include "private/qdeclarativeimagebase_p_p.h"
#include <qdeclarativeengine.h>
#include <qdeclarativeinfo.h>
#include <qdeclarativepixmapcache_p.h>
QT_BEGIN_NAMESPACE
QDeclarativeImageBase::QDeclarativeImageBase(QDeclarativeItem *parent)
: QDeclarativeImplicitSizeItem(*(new QDeclarativeImageBasePrivate), parent)
{
}
QDeclarativeImageBase::QDeclarativeImageBase(QDeclarativeImageBasePrivate &dd, QDeclarativeItem *parent)
: QDeclarativeImplicitSizeItem(dd, parent)
{
}
QDeclarativeImageBase::~QDeclarativeImageBase()
{
}
QDeclarativeImageBase::Status QDeclarativeImageBase::status() const
{
Q_D(const QDeclarativeImageBase);
return d->status;
}
qreal QDeclarativeImageBase::progress() const
{
Q_D(const QDeclarativeImageBase);
return d->progress;
}
bool QDeclarativeImageBase::asynchronous() const
{
Q_D(const QDeclarativeImageBase);
return d->async;
}
void QDeclarativeImageBase::setAsynchronous(bool async)
{
Q_D(QDeclarativeImageBase);
if (d->async != async) {
d->async = async;
emit asynchronousChanged();
}
}
QUrl QDeclarativeImageBase::source() const
{
Q_D(const QDeclarativeImageBase);
return d->url;
}
void QDeclarativeImageBase::setSource(const QUrl &url)
{
Q_D(QDeclarativeImageBase);
//equality is fairly expensive, so we bypass for simple, common case
if ((d->url.isEmpty() == url.isEmpty()) && url == d->url)
return;
d->url = url;
emit sourceChanged(d->url);
if (isComponentComplete())
load();
}
void QDeclarativeImageBase::setSourceSize(const QSize& size)
{
Q_D(QDeclarativeImageBase);
if (d->sourcesize == size)
return;
d->sourcesize = size;
d->explicitSourceSize = true;
emit sourceSizeChanged();
if (isComponentComplete())
load();
}
QSize QDeclarativeImageBase::sourceSize() const
{
Q_D(const QDeclarativeImageBase);
int width = d->sourcesize.width();
int height = d->sourcesize.height();
return QSize(width != -1 ? width : d->pix.width(), height != -1 ? height : d->pix.height());
}
void QDeclarativeImageBase::resetSourceSize()
{
Q_D(QDeclarativeImageBase);
if (!d->explicitSourceSize)
return;
d->explicitSourceSize = false;
d->sourcesize = QSize();
emit sourceSizeChanged();
if (isComponentComplete())
load();
}
bool QDeclarativeImageBase::cache() const
{
Q_D(const QDeclarativeImageBase);
return d->cache;
}
void QDeclarativeImageBase::setCache(bool cache)
{
Q_D(QDeclarativeImageBase);
if (d->cache == cache)
return;
d->cache = cache;
emit cacheChanged();
if (isComponentComplete())
load();
}
void QDeclarativeImageBase::setMirror(bool mirror)
{
Q_D(QDeclarativeImageBase);
if (mirror == d->mirror)
return;
d->mirror = mirror;
if (isComponentComplete())
update();
emit mirrorChanged();
}
bool QDeclarativeImageBase::mirror() const
{
Q_D(const QDeclarativeImageBase);
return d->mirror;
}
void QDeclarativeImageBase::load()
{
Q_D(QDeclarativeImageBase);
if (d->url.isEmpty()) {
d->pix.clear(this);
d->status = Null;
d->progress = 0.0;
pixmapChange();
emit progressChanged(d->progress);
emit statusChanged(d->status);
update();
} else {
QDeclarativePixmap::Options options;
if (d->async)
options |= QDeclarativePixmap::Asynchronous;
if (d->cache)
options |= QDeclarativePixmap::Cache;
d->pix.clear(this);
d->pix.load(qmlEngine(this), d->url, d->explicitSourceSize ? sourceSize() : QSize(), options);
if (d->pix.isLoading()) {
d->progress = 0.0;
d->status = Loading;
emit progressChanged(d->progress);
emit statusChanged(d->status);
static int thisRequestProgress = -1;
static int thisRequestFinished = -1;
if (thisRequestProgress == -1) {
thisRequestProgress =
QDeclarativeImageBase::staticMetaObject.indexOfSlot("requestProgress(qint64,qint64)");
thisRequestFinished =
QDeclarativeImageBase::staticMetaObject.indexOfSlot("requestFinished()");
}
d->pix.connectFinished(this, thisRequestFinished);
d->pix.connectDownloadProgress(this, thisRequestProgress);
} else {
requestFinished();
}
}
}
void QDeclarativeImageBase::requestFinished()
{
Q_D(QDeclarativeImageBase);
QDeclarativeImageBase::Status oldStatus = d->status;
qreal oldProgress = d->progress;
if (d->pix.isError()) {
d->status = Error;
qmlInfo(this) << d->pix.error();
} else {
d->status = Ready;
}
d->progress = 1.0;
pixmapChange();
if (d->sourcesize.width() != d->pix.width() || d->sourcesize.height() != d->pix.height())
emit sourceSizeChanged();
if (d->status != oldStatus)
emit statusChanged(d->status);
if (d->progress != oldProgress)
emit progressChanged(d->progress);
update();
}
void QDeclarativeImageBase::requestProgress(qint64 received, qint64 total)
{
Q_D(QDeclarativeImageBase);
if (d->status == Loading && total > 0) {
d->progress = qreal(received)/total;
emit progressChanged(d->progress);
}
}
void QDeclarativeImageBase::componentComplete()
{
Q_D(QDeclarativeImageBase);
QDeclarativeItem::componentComplete();
if (d->url.isValid())
load();
}
void QDeclarativeImageBase::pixmapChange()
{
Q_D(QDeclarativeImageBase);
setImplicitWidth(d->pix.width());
setImplicitHeight(d->pix.height());
}
QT_END_NAMESPACE