-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDejaVuSans.h
220 lines (119 loc) · 3.57 KB
/
DejaVuSans.h
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#ifndef __DEJA_VU_SANS_H
#define __DEJA_VU_SANS_H
#include "EmBox.h"
#include "FontCommon.h"
#include "FontFace.h"
/**
* Font generated via use of converter.py, from DejaVuSans font, which is
* distributed under the license of:
*
* Bitstream Vera and Public Domain
*
* Converted to svg with FontForge.
*
* NOTE: Glyphs were removed to reduce overall size.
*/
class DejaVuSans: public FontFace
{
public:
virtual ~DejaVuSans(void);
glyph operator[](int character) const override;
private:
static em space(EmBox* box);
static em exclam(EmBox* box);
static em quotedbl(EmBox* box);
static em numbersign(EmBox* box);
static em dollar(EmBox* box);
static em percent(EmBox* box);
static em ampersand(EmBox* box);
static em quotesingle(EmBox* box);
static em parenleft(EmBox* box);
static em parenright(EmBox* box);
static em asterisk(EmBox* box);
static em plus(EmBox* box);
static em comma(EmBox* box);
static em hyphen(EmBox* box);
static em period(EmBox* box);
static em slash(EmBox* box);
static em zero(EmBox* box);
static em one(EmBox* box);
static em two(EmBox* box);
static em three(EmBox* box);
static em four(EmBox* box);
static em five(EmBox* box);
static em six(EmBox* box);
static em seven(EmBox* box);
static em eight(EmBox* box);
static em nine(EmBox* box);
static em colon(EmBox* box);
static em semicolon(EmBox* box);
static em less(EmBox* box);
static em equal(EmBox* box);
static em greater(EmBox* box);
static em question(EmBox* box);
static em at(EmBox* box);
static em A(EmBox* box);
static em B(EmBox* box);
static em C(EmBox* box);
static em D(EmBox* box);
static em E(EmBox* box);
static em F(EmBox* box);
static em G(EmBox* box);
static em H(EmBox* box);
static em I(EmBox* box);
static em J(EmBox* box);
static em K(EmBox* box);
static em L(EmBox* box);
static em M(EmBox* box);
static em N(EmBox* box);
static em O(EmBox* box);
static em P(EmBox* box);
static em Q(EmBox* box);
static em R(EmBox* box);
static em S(EmBox* box);
static em T(EmBox* box);
static em U(EmBox* box);
static em V(EmBox* box);
static em W(EmBox* box);
static em X(EmBox* box);
static em Y(EmBox* box);
static em Z(EmBox* box);
static em bracketleft(EmBox* box);
static em backslash(EmBox* box);
static em bracketright(EmBox* box);
static em asciicircum(EmBox* box);
static em underscore(EmBox* box);
static em grave(EmBox* box);
static em a(EmBox* box);
static em b(EmBox* box);
static em c(EmBox* box);
static em d(EmBox* box);
static em e(EmBox* box);
static em f(EmBox* box);
static em g(EmBox* box);
static em h(EmBox* box);
static em i(EmBox* box);
static em j(EmBox* box);
static em k(EmBox* box);
static em l(EmBox* box);
static em m(EmBox* box);
static em n(EmBox* box);
static em o(EmBox* box);
static em p(EmBox* box);
static em q(EmBox* box);
static em r(EmBox* box);
static em s(EmBox* box);
static em t(EmBox* box);
static em u(EmBox* box);
static em v(EmBox* box);
static em w(EmBox* box);
static em x(EmBox* box);
static em y(EmBox* box);
static em z(EmBox* box);
static em braceleft(EmBox* box);
static em bar(EmBox* box);
static em braceright(EmBox* box);
static em asciitilde(EmBox* box);
static em nonbreakingspace(EmBox* box);
};
#endif