Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qsvgfont_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5
6#ifndef QSVGFONT_P_H
7#define QSVGFONT_P_H
8
9//
10// W A R N I N G
11// -------------
12//
13// This file is not part of the Qt API. It exists purely as an
14// implementation detail. This header file may change from version to
15// version without notice, or even be removed.
16//
17// We mean it.
18//
19
20#include "qpainterpath.h"
21#include "qlist.h"
22#include "qstring.h"
23#include "qsvgstyle_p.h"
24
25#include <memory>
26
28
29class Q_SVG_EXPORT QSvgGlyph
30{
31public:
32 QSvgGlyph(const QString &unicode, const QPainterPath &path, qreal horizAdvX);
33 QSvgGlyph() : m_horizAdvX(0) {}
34
35 QString m_unicode;
36 QPainterPath m_path;
37 qreal m_horizAdvX;
38};
39
40
41class Q_SVG_EXPORT QSvgFont : public QSvgRefCounted
42{
43public:
44 static constexpr qreal DEFAULT_UNITS_PER_EM = 1000;
45 QSvgFont(qreal horizAdvX);
46
47 void setFamilyName(const QString &name);
48 QString familyName() const;
49
50 void setUnitsPerEm(qreal upem);
51
52 void addGlyph(const QString &unicode, const QPainterPath &path, qreal horizAdvX = -1);
53 bool addMissingGlyph(const QPainterPath &path, qreal horizAdvX);
54
55 void draw(QPainter *p, const QPointF &point, const QList<const QSvgGlyph *> &glyphs,
56 qreal pixelSize, Qt::Alignment alignment) const;
57 QRectF boundingRect(QPainter *p, const QPointF &point, const QList<const QSvgGlyph *> &glyphs,
58 qreal pixelSize, Qt::Alignment alignment) const;
59 const QSvgGlyph *findFirstGlyphFor(QStringView text) const;
60 QList<const QSvgGlyph *> toGlyphs(QStringView text) const;
61
62public:
63 QString m_familyName;
64 qreal m_unitsPerEm = DEFAULT_UNITS_PER_EM;
65 qreal m_horizAdvX;
66 // not about a missing <glyph> element, but the font's <missing-glyph> element:
67 std::unique_ptr<const QSvgGlyph> m_missingGlyph;
68 // The following needs to preserve the order of glyphs because
69 // "17.6 Glyph selection rules" in SVG Tiny 1.2 reads:
70 // "the 'font' element must be searched from its first
71 // 'glyph' element to its last in logical order"
72 QList<QSvgGlyph> m_glyphs;
73
74private:
75 // to speed up finding glyphs
76 mutable QHash<char32_t, QList<qsizetype>> m_possibleGlyphIndicesForChar;
77 mutable qsizetype m_firstUnscannedGlyphIdx = 0;
78
79 void draw_helper(QPainter *p, const QPointF &point,
80 const QList<const QSvgGlyph *> &glyphs, qreal pixelSize,
81 Qt::Alignment alignment, QRectF *boundingRect = nullptr) const;
82};
83
84QT_END_NAMESPACE
85
86#endif // QSVGFONT_P_H
friend class QPainter
Combined button and popup list for selecting options.
@ AssumeTrustedSource
Definition qtsvgglobal.h:20
@ DisableSMILAnimations
Definition qtsvgglobal.h:23
@ DisableCSSAnimations
Definition qtsvgglobal.h:24
@ Tiny12FeaturesOnly
Definition qtsvgglobal.h:19
@ NoOption
Definition qtsvgglobal.h:18
@ DisableAnimations
Definition qtsvgglobal.h:27
Q_CORE_EXPORT QDebug operator<<(QDebug debug, QDir::Filters filters)
Definition qdir.cpp:2582
#define qPrintable(string)
Definition qstring.h:1683
static QByteArray qt_inflateSvgzDataFrom(QIODevice *device, bool doCheckContent=true)
static bool isValidMatrix(const QTransform &transform)
static bool hasSvgHeader(const QByteArray &buf)