qpa: merge qrawfont_qpa.cpp
Change-Id: I8552199c8b3e365adefbc2bb096c8153e222cec8 Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com> Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
This commit is contained in:
parent
6e90a48920
commit
6e5410e5b5
@ -47,6 +47,10 @@
|
|||||||
#include "qrawfont_p.h"
|
#include "qrawfont_p.h"
|
||||||
#include "qplatformfontdatabase.h"
|
#include "qplatformfontdatabase.h"
|
||||||
|
|
||||||
|
#include <private/qguiapplication_p.h>
|
||||||
|
#include <qpa/qplatformintegration.h>
|
||||||
|
#include <qpa/qplatformfontdatabase.h>
|
||||||
|
|
||||||
#include <QtCore/qendian.h>
|
#include <QtCore/qendian.h>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
@ -252,7 +256,7 @@ void QRawFont::loadFromData(const QByteArray &fontData,
|
|||||||
d->cleanUp();
|
d->cleanUp();
|
||||||
d->hintingPreference = hintingPreference;
|
d->hintingPreference = hintingPreference;
|
||||||
d->thread = QThread::currentThread();
|
d->thread = QThread::currentThread();
|
||||||
d->platformLoadFromData(fontData, pixelSize, hintingPreference);
|
d->loadFromData(fontData, pixelSize, hintingPreference);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@ -735,7 +739,6 @@ void QRawFont::setPixelSize(qreal pixelSize)
|
|||||||
*/
|
*/
|
||||||
void QRawFontPrivate::cleanUp()
|
void QRawFontPrivate::cleanUp()
|
||||||
{
|
{
|
||||||
platformCleanUp();
|
|
||||||
if (fontEngine != 0) {
|
if (fontEngine != 0) {
|
||||||
if (!fontEngine->ref.deref())
|
if (!fontEngine->ref.deref())
|
||||||
delete fontEngine;
|
delete fontEngine;
|
||||||
@ -744,6 +747,17 @@ void QRawFontPrivate::cleanUp()
|
|||||||
hintingPreference = QFont::PreferDefaultHinting;
|
hintingPreference = QFont::PreferDefaultHinting;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void QRawFontPrivate::loadFromData(const QByteArray &fontData, qreal pixelSize,
|
||||||
|
QFont::HintingPreference hintingPreference)
|
||||||
|
{
|
||||||
|
Q_ASSERT(fontEngine == 0);
|
||||||
|
|
||||||
|
QPlatformFontDatabase *pfdb = QGuiApplicationPrivate::platformIntegration()->fontDatabase();
|
||||||
|
fontEngine = pfdb->fontEngine(fontData, pixelSize, hintingPreference);
|
||||||
|
if (fontEngine != 0)
|
||||||
|
fontEngine->ref.ref();
|
||||||
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Returns the smallest rectangle containing the glyph with the given \a glyphIndex.
|
Returns the smallest rectangle containing the glyph with the given \a glyphIndex.
|
||||||
|
|
||||||
|
@ -95,8 +95,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cleanUp();
|
void cleanUp();
|
||||||
void platformCleanUp();
|
void loadFromData(const QByteArray &fontData,
|
||||||
void platformLoadFromData(const QByteArray &fontData,
|
|
||||||
qreal pixelSize,
|
qreal pixelSize,
|
||||||
QFont::HintingPreference hintingPreference);
|
QFont::HintingPreference hintingPreference);
|
||||||
|
|
||||||
|
@ -1,70 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
**
|
|
||||||
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
||||||
** Contact: http://www.qt-project.org/legal
|
|
||||||
**
|
|
||||||
** This file is part of the QtGui module of the Qt Toolkit.
|
|
||||||
**
|
|
||||||
** $QT_BEGIN_LICENSE:LGPL$
|
|
||||||
** Commercial License Usage
|
|
||||||
** Licensees holding valid commercial Qt licenses may use this file in
|
|
||||||
** accordance with the commercial license agreement provided with the
|
|
||||||
** Software or, alternatively, in accordance with the terms contained in
|
|
||||||
** a written agreement between you and Digia. For licensing terms and
|
|
||||||
** conditions see http://qt.digia.com/licensing. For further information
|
|
||||||
** use the contact form at http://qt.digia.com/contact-us.
|
|
||||||
**
|
|
||||||
** 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, Digia gives you certain additional
|
|
||||||
** rights. These rights are described in the Digia 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.
|
|
||||||
**
|
|
||||||
**
|
|
||||||
** $QT_END_LICENSE$
|
|
||||||
**
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#include <QtCore/qglobal.h>
|
|
||||||
|
|
||||||
#if !defined(QT_NO_RAWFONT)
|
|
||||||
|
|
||||||
#include "qrawfont_p.h"
|
|
||||||
#include <qpa/qplatformintegration.h>
|
|
||||||
#include <qpa/qplatformfontdatabase.h>
|
|
||||||
#include <private/qguiapplication_p.h>
|
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
|
||||||
|
|
||||||
void QRawFontPrivate::platformCleanUp()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void QRawFontPrivate::platformLoadFromData(const QByteArray &fontData, qreal pixelSize,
|
|
||||||
QFont::HintingPreference hintingPreference)
|
|
||||||
{
|
|
||||||
Q_ASSERT(fontEngine == 0);
|
|
||||||
|
|
||||||
QPlatformFontDatabase *pfdb = QGuiApplicationPrivate::platformIntegration()->fontDatabase();
|
|
||||||
fontEngine = pfdb->fontEngine(fontData, pixelSize, hintingPreference);
|
|
||||||
if (fontEngine != 0)
|
|
||||||
fontEngine->ref.ref();
|
|
||||||
}
|
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
|
||||||
|
|
||||||
#endif // QT_NO_RAWFONT
|
|
@ -78,8 +78,7 @@ SOURCES += \
|
|||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
text/qfontengine_qpa.cpp \
|
text/qfontengine_qpa.cpp \
|
||||||
text/qplatformfontdatabase.cpp \
|
text/qplatformfontdatabase.cpp
|
||||||
text/qrawfont_qpa.cpp
|
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
text/qplatformfontdatabase.h
|
text/qplatformfontdatabase.h
|
||||||
|
@ -341,7 +341,7 @@ QFontEngine *QCoreTextFontDatabase::fontEngine(const QByteArray &fontData, qreal
|
|||||||
|
|
||||||
QFontEngine *fontEngine = NULL;
|
QFontEngine *fontEngine = NULL;
|
||||||
if (cgFont == NULL) {
|
if (cgFont == NULL) {
|
||||||
qWarning("QRawFont::platformLoadFromData: CGFontCreateWithDataProvider failed");
|
qWarning("QCoreTextFontDatabase::fontEngine: CGFontCreateWithDataProvider failed");
|
||||||
} else {
|
} else {
|
||||||
QFontDef def;
|
QFontDef def;
|
||||||
def.pixelSize = pixelSize;
|
def.pixelSize = pixelSize;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user