DirectWrite font engine: don't leak the font table buffer
[profile/ivi/qtbase.git] / src / gui / text / qfontenginedirectwrite_p.h
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 #ifndef QFONTENGINEDIRECTWRITE_H
43 #define QFONTENGINEDIRECTWRITE_H
44
45 #ifndef QT_NO_DIRECTWRITE
46
47 //
48 //  W A R N I N G
49 //  -------------
50 //
51 // This file is not part of the Qt API.  It exists purely as an
52 // implementation detail.  This header file may change from version to
53 // version without notice, or even be removed.
54 //
55 // We mean it.
56 //
57
58 #include "private/qfontengine_p.h"
59
60 struct IDWriteFont ;
61 struct IDWriteFontFace ;
62 struct IDWriteFactory ;
63 struct IDWriteBitmapRenderTarget ;
64 struct IDWriteGdiInterop ;
65
66 QT_BEGIN_NAMESPACE
67
68 class QFontEngineDirectWrite : public QFontEngine
69 {
70     Q_OBJECT
71 public:
72     explicit QFontEngineDirectWrite(IDWriteFactory *directWriteFactory,
73                                     IDWriteFontFace *directWriteFontFace,
74                                     qreal pixelSize);
75     ~QFontEngineDirectWrite();
76
77     QFixed lineThickness() const;
78     bool getSfntTableData(uint tag, uchar *buffer, uint *length) const;
79     QFixed emSquareSize() const;
80
81     bool stringToCMap(const QChar *str, int len, QGlyphLayout *glyphs, int *nglyphs, QTextEngine::ShaperFlags flags) const;
82     void recalcAdvances(QGlyphLayout *glyphs, QTextEngine::ShaperFlags) const;
83
84     void addGlyphsToPath(glyph_t *glyphs, QFixedPoint *positions, int nglyphs,
85                          QPainterPath *path, QTextItem::RenderFlags flags);
86
87     glyph_metrics_t boundingBox(const QGlyphLayout &glyphs);
88     glyph_metrics_t boundingBox(glyph_t g);
89     glyph_metrics_t alphaMapBoundingBox(glyph_t glyph,
90                                         QFixed subPixelPosition,
91                                         const QTransform &matrix,
92                                         GlyphFormat format);
93
94     QFixed ascent() const;
95     QFixed descent() const;
96     QFixed leading() const;
97     QFixed xHeight() const;
98     qreal maxCharWidth() const;
99
100     const char *name() const;
101
102     bool supportsSubPixelPositions() const;
103
104     QImage alphaMapForGlyph(glyph_t, QFixed subPixelPosition, const QTransform &t);
105     QImage alphaRGBMapForGlyph(glyph_t t, QFixed subPixelPosition, const QTransform &xform);
106
107     QFontEngine *cloneWithSize(qreal pixelSize) const;
108
109     bool canRender(const QChar *string, int len);
110     Type type() const;
111
112 private:
113     friend class QRawFontPrivate;
114
115     QImage imageForGlyph(glyph_t t, QFixed subPixelPosition, int margin, const QTransform &xform);
116     void collectMetrics();
117
118     IDWriteFontFace *m_directWriteFontFace;
119     IDWriteFactory *m_directWriteFactory;
120     IDWriteBitmapRenderTarget *m_directWriteBitmapRenderTarget;
121
122     QFixed m_lineThickness;
123     int m_unitsPerEm;
124     QFixed m_ascent;
125     QFixed m_descent;
126     QFixed m_xHeight;
127     QFixed m_lineGap;
128     FaceId m_faceId;
129 };
130
131 QT_END_NAMESPACE
132
133 #endif // QT_NO_DIRECTWRITE
134
135 #endif // QFONTENGINEDIRECTWRITE_H