1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2018 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef SEEN_OPENTYPEUTIL_H
#define SEEN_OPENTYPEUTIL_H
#ifndef USE_PANGO_WIN32
#include <map>
#include <memory>
#include <ft2build.h>
#include FT_FREETYPE_H
#include <glibmm/ustring.h>
/*
* A set of utilities to extract data from OpenType fonts.
*
* Isolates dependencies on FreeType, Harfbuzz, and Pango.
* All three provide variable amounts of access to data.
*/
struct hb_font_t;
// OpenType substitution
class OTSubstitution {
public:
OTSubstitution() = default;;
Glib::ustring before;
Glib::ustring input;
Glib::ustring after;
Glib::ustring output;
};
// An OpenType fvar axis.
class OTVarAxis {
public:
OTVarAxis()
: minimum(0)
, def(500) // Default
, maximum(1000)
, set_val(500)
, index(-1) {};
OTVarAxis(double _minimum, double _def, double _maximum, double _set_val, int _index)
: minimum(_minimum)
, def(_def) // Default
, maximum(_maximum)
, set_val(_set_val)
, index (_index) {};
double minimum;
double def;
double maximum;
double set_val;
int index; // Index in OpenType file (since we use a map).
};
// A particular instance of a variable font.
// A map indexed by axis name with value.
class OTVarInstance {
std::map<Glib::ustring, double> axes;
};
inline double FTFixedToDouble (FT_Fixed value) {
return static_cast<FT_Int32>(value) / 65536.0;
}
inline FT_Fixed FTDoubleToFixed (double value) {
return static_cast<FT_Fixed>(value * 65536);
}
namespace Inkscape { class Pixbuf; }
struct SVGTableEntry
{
std::string svg;
std::unique_ptr<Inkscape::Pixbuf const> pixbuf;
~SVGTableEntry();
};
// This would be better if one had std::vector<OTSubstitution> instead of OTSubstitution where each
// entry corresponded to one substitution (e.g. ff -> ff) but Harfbuzz at the moment cannot return
// individual substitutions. See Harfbuzz issue #673.
void readOpenTypeGsubTable (hb_font_t* hb_font,
std::map<Glib::ustring, OTSubstitution >& tables);
void readOpenTypeFvarAxes (const FT_Face ft_face,
std::map<Glib::ustring, OTVarAxis>& axes);
void readOpenTypeFvarNamed (const FT_Face ft_face,
std::map<Glib::ustring, OTVarInstance>& named);
void readOpenTypeSVGTable (hb_font_t* hb_font,
std::map<int, SVGTableEntry>& glyphs);
#endif /* !USE_PANGO_WIND32 */
#endif /* !SEEN_OPENTYPEUTIL_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
|