/**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). ** Contact: Qt Software Information (qt-info@nokia.com) ** ** This file is part of the QtDeclarative module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage ** This file contains pre-release code and may not be distributed. ** You may use this file in accordance with the terms and conditions ** contained in the either Technology Preview License Agreement or the ** Beta Release License Agreement. ** ** GNU Lesser General Public License Usage ** Alternatively, 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.0, 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. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "private/qobject_p.h" #include "qmlfontfamily.h" #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QmlFontFamilyPrivate : public QObjectPrivate { Q_DECLARE_PUBLIC(QmlFontFamily); public: QmlFontFamilyPrivate() : reply(0) {} void addFontToDatabase(const QByteArray &); QUrl url; QString name; QNetworkReply *reply; }; QML_DEFINE_TYPE(Qt,4,6,(QT_VERSION&0x00ff00)>>8,FontFamily,QmlFontFamily) /*! \qmlclass FontFamily QmlFontFamily \ingroup group_utility */ QmlFontFamily::QmlFontFamily(QObject *parent) : QObject(*(new QmlFontFamilyPrivate), parent) { } QmlFontFamily::~QmlFontFamily() { } QUrl QmlFontFamily::source() const { Q_D(const QmlFontFamily); return d->url; } void QmlFontFamily::setSource(const QUrl &url) { Q_D(QmlFontFamily); if (url == d->url) return; d->url = qmlContext(this)->resolvedUrl(url); #ifndef QT_NO_LOCALFILE_OPTIMIZED_QML if (d->url.scheme() == QLatin1String("file")) { QFile file(d->url.toLocalFile()); file.open(QIODevice::ReadOnly); QByteArray ba = file.readAll(); d->addFontToDatabase(ba); } else #endif { QNetworkRequest req(d->url); req.setAttribute(QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache); d->reply = qmlEngine(this)->networkAccessManager()->get(req); QObject::connect(d->reply, SIGNAL(finished()), this, SLOT(replyFinished())); } } QString QmlFontFamily::name() const { Q_D(const QmlFontFamily); return d->name; } void QmlFontFamily::setName(const QString &name) { Q_D(QmlFontFamily); if (d->name == name ) return; d->name = name; emit nameChanged(); } void QmlFontFamily::replyFinished() { Q_D(QmlFontFamily); if (!d->reply->error()) { QByteArray ba = d->reply->readAll(); d->addFontToDatabase(ba); } d->reply->deleteLater(); d->reply = 0; } void QmlFontFamilyPrivate::addFontToDatabase(const QByteArray &ba) { Q_Q(QmlFontFamily); int id = QFontDatabase::addApplicationFontFromData(ba); if (id != -1) { name = QFontDatabase::applicationFontFamilies(id).at(0); emit q->nameChanged(); } else { qWarning() << "Cannot load font: " << name << url; } } QT_END_NAMESPACE