Get started with patching up the Qt GUI docs
[profile/ivi/qtbase.git] / src / gui / text / qrawfont_ft.cpp
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 QtGui 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 #include <QtCore/qglobal.h>
43
44 #if !defined(QT_NO_RAWFONT)
45
46 #include "qrawfont_p.h"
47 #include "qfontengine_ft_p.h"
48 #include "quuid.h"
49
50
51 QT_BEGIN_NAMESPACE
52
53 class QFontEngineFTRawFont
54
55         : public QFontEngineFT
56
57 {
58 public:
59     QFontEngineFTRawFont(const QFontDef &fontDef)
60         : QFontEngineFT(fontDef)
61     {
62     }
63
64     void updateFamilyNameAndStyle()
65     {
66         fontDef.family = QString::fromUtf8(freetype->face->family_name);
67
68         if (freetype->face->style_flags & FT_STYLE_FLAG_ITALIC)
69             fontDef.style = QFont::StyleItalic;
70
71         if (freetype->face->style_flags & FT_STYLE_FLAG_BOLD)
72             fontDef.weight = QFont::Bold;
73     }
74
75     bool initFromData(const QByteArray &fontData)
76     {
77         FaceId faceId;
78         faceId.filename = "";
79         faceId.index = 0;
80         faceId.uuid = QUuid::createUuid().toByteArray();
81
82         return init(faceId, true, Format_None, fontData);
83     }
84 };
85
86
87 void QRawFontPrivate::platformCleanUp()
88 {
89     // Font engine handles all resources
90 }
91
92 void QRawFontPrivate::platformLoadFromData(const QByteArray &fontData, qreal pixelSize,
93                                            QFont::HintingPreference hintingPreference)
94 {
95     Q_ASSERT(fontEngine == 0);
96
97     QFontDef fontDef;
98     fontDef.pixelSize = pixelSize;
99
100     QFontEngineFTRawFont *fe = new QFontEngineFTRawFont(fontDef);
101     if (!fe->initFromData(fontData)) {
102         delete fe;
103         return;
104     }
105
106     fe->updateFamilyNameAndStyle();
107
108     switch (hintingPreference) {
109     case QFont::PreferNoHinting:
110         fe->setDefaultHintStyle(QFontEngineFT::HintNone);
111         break;
112     case QFont::PreferFullHinting:
113         fe->setDefaultHintStyle(QFontEngineFT::HintFull);
114         break;
115     case QFont::PreferVerticalHinting:
116         fe->setDefaultHintStyle(QFontEngineFT::HintLight);
117         break;
118     default:
119         // Leave it as it is
120         break;
121     }
122
123     fontEngine = fe;
124     fontEngine->ref.ref();
125 }
126
127 QT_END_NAMESPACE
128
129 #endif // QT_NO_RAWFONT