summaryrefslogtreecommitdiff
path: root/docs/tmpl/fonts.sgml
blob: 0b93033b72e0af2ab59f1c7deb0165af1acc089f (plain)
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
<!-- ##### SECTION Title ##### -->
Fonts

<!-- ##### SECTION Short_Description ##### -->
Structures representing abstract fonts.

<!-- ##### SECTION Long_Description ##### -->
<para>
Pango supports a flexible architecture where a
particular rendering architecture can supply an
implementation of fonts. The #PangoFont structure
representn an abstract rendering-system-indepent font.
Pango provides routines to list available fonts, and
to load a font of a given description.
</para>

<!-- ##### SECTION See_Also ##### -->
<para>

</para>

<!-- ##### STRUCT PangoFontDescription ##### -->
<para>
The #PangoFontDescription structure represents the description
of an ideal font. These structures are used both to list
what fonts are available on the system and also for specifying
the characteristics of a font to load.
</para>

@family_name: the name of the font family.
@style: the style (slant) of the font.
@variant: the variant (normal or small caps) of the font.
@weight: the weight (boldness) of the font.
@stretch: the relative width of the font.
@size: 

<!-- ##### ENUM PangoStyle ##### -->
<para>
</para>

@PANGO_STYLE_NORMAL: 
@PANGO_STYLE_OBLIQUE: 
@PANGO_STYLE_ITALIC: 

<!-- ##### ENUM PangoWeight ##### -->
<para>
An enumeration specifying the weight (boldness) of a font. This is a numerical
value ranging from 100 to 900, but there are two predefined values:
</para>

@PANGO_WEIGHT_ULTRALIGHT: 
@PANGO_WEIGHT_LIGHT: 
@PANGO_WEIGHT_NORMAL: the default weight (= 400)
@PANGO_WEIGHT_BOLD: the bold weight (= 700)
@PANGO_WEIGHT_ULTRABOLD: 
@PANGO_WEIGHT_HEAVY: 

<!-- ##### ENUM PangoVariant ##### -->
<para>
An enumeration specifying capitalization variant of the font.
</para>

@PANGO_VARIANT_NORMAL: A normal font.
@PANGO_VARIANT_SMALL_CAPS: A font with the lower case characters
  replaced by smaller variants of the capital characters.

<!-- ##### ENUM PangoStretch ##### -->
<para>
An enumeration specifying the width of the font relative to other designs
within a family.
</para>

@PANGO_STRETCH_ULTRA_CONDENSED: 
@PANGO_STRETCH_EXTRA_CONDENSED: 
@PANGO_STRETCH_CONDENSED: 
@PANGO_STRETCH_SEMI_CONDENSED: 
@PANGO_STRETCH_NORMAL: the normal width
@PANGO_STRETCH_SEMI_EXPANDED: 
@PANGO_STRETCH_EXPANDED: 
@PANGO_STRETCH_EXTRA_EXPANDED: 
@PANGO_STRETCH_ULTRA_EXPANDED: 

<!-- ##### FUNCTION pango_font_description_copy ##### -->
<para>

</para>

@desc: 
@Returns: 


<!-- ##### FUNCTION pango_font_descriptions_free ##### -->
<para>

</para>

@descs: 
@n_descs: 


<!-- ##### FUNCTION pango_font_description_free ##### -->
<para>

</para>

@desc: 


<!-- ##### FUNCTION pango_font_description_from_string ##### -->
<para>

</para>

@str: 
@Returns: 


<!-- ##### FUNCTION pango_font_description_to_string ##### -->
<para>

</para>

@desc: 
@Returns: 


<!-- ##### STRUCT PangoFont ##### -->
<para>
The #PangoFont structure is used to represent
a font in a rendering-system-independent matter.
To create an implementation of a #PangoFont,
the rendering-system specific code should malloc
a larger structure that contains a nested
#PangoFont, fill in the klass member of
the nested #PangoFont with a pointer to
a appropriate #PangoFontClass, then call
pango_font_init() on the structure.
</para>
<para>
The #PangoFont structure contains one member
which the implementation fills in:
</para>

@parent_instance: 

<!-- ##### STRUCT PangoFontClass ##### -->
<para>
The #PangoFontClass structure contains the virtual
functions for an implementation of a a PangoFont.

It contains the following members:

<informaltable pgwide=1 frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="2*"><colspec colwidth="8*">
<tbody>

<row>
<entry>void (*destroy) (#PangoFont *font);</entry>
<entry>a function to free the font structure and associated resources.</entry>
</row>
</tbody></tgroup></informaltable>
</para>

@parent_class: 
@describe: a function to describe the characteristics of a font. See
           pango_font_describe().
@get_coverage: A function to get a coverage map for the font.
               See pango_font_get_coverage().
@find_shaper: A function to find the shaper for a particular character 
              point. See pango_font_find_shaper().
@get_glyph_extents: A function called to find out the logical and ink
                    extents of a glyph within the fonts. See
                    pango_font_get_glyph_extents().
@get_metrics: A function called to find the overall metric information
              for the font or the metric information appropriate to
              a particular language. See pango_font_get_metrics().

<!-- ##### STRUCT PangoFontMetrics ##### -->
<para>
The #PangoFontMetrics structure represents the overall metrics for
a font. It contains the following members:
</para>

@ascent: the logical extent of the font upwards from the baseline.
         The spacing between lines of text should be calculated
         as @ascent + @descent. Individual characters may have
         extents exceeding this value.
@descent: the logical extent of the font beneath the baseline.
         as @ascent + @descent. Individual characters may have
         extents exceeding this value.

<!-- ##### FUNCTION pango_font_find_shaper ##### -->
<para>

</para>

@font: 
@lang: 
@ch: 
@Returns: 
<!-- # Unused Parameters # -->
@char: 


<!-- ##### FUNCTION pango_font_describe ##### -->
<para>

</para>

@font: 
@Returns: 


<!-- ##### FUNCTION pango_font_get_coverage ##### -->
<para>

</para>

@font: 
@lang: 
@Returns: 


<!-- ##### FUNCTION pango_font_get_glyph_extents ##### -->
<para>

</para>

@font: 
@glyph: 
@ink_rect: 
@logical_rect: 


<!-- ##### FUNCTION pango_font_get_metrics ##### -->
<para>

</para>

@font: 
@lang: 
@metrics: 


<!-- ##### MACRO PANGO_TYPE_FONT ##### -->
<para>

</para>



<!-- ##### MACRO PANGO_FONT ##### -->
<para>

</para>

@object: 


<!-- ##### MACRO PANGO_IS_FONT ##### -->
<para>

</para>

@object: 


<!-- ##### MACRO PANGO_FONT_CLASS ##### -->
<para>

</para>

@klass: 


<!-- ##### MACRO PANGO_IS_FONT_CLASS ##### -->
<para>

</para>

@klass: 


<!-- ##### MACRO PANGO_FONT_GET_CLASS ##### -->
<para>

</para>

@obj: 


<!-- ##### FUNCTION pango_font_get_type ##### -->
<para>

</para>

@Returns: 


<!-- ##### STRUCT PangoFontMap ##### -->
<para>
The #PangoFontMap represents the set of fonts available for a
particular rendering system. This is a virtual object with
implementations being specific to particular rendering systems.  To
create an implementation of a #PangoFontMap, the rendering-system
specific code should malloc a larger structure that contains a nested
#PangoFontMap, fill in the klass member of the nested #PangoFontMap with a
pointer to a appropriate #PangoFontMapClass, then call
pango_font_map_init() on the structure.
</para>
<para>
The #PangoFont structure contains one member which the implementation fills in:
</para>

@parent_instance: 

<!-- ##### STRUCT PangoFontMapClass ##### -->
<para>
The #PangoFontMapClass structure holds the virtual functions for
a particular #PangoFontMap implementation.
</para>

@parent_class: 
@load_font: a function to load a font with a given description. See
            pango_font_map_load_font()
@list_fonts: A function to list available fonts. See pango_font_map_list_fonts()
@list_families: A function to list available font families. See
                pango_font_map_list_families().

<!-- ##### FUNCTION pango_font_map_load_font ##### -->
<para>

</para>

@fontmap: 
@desc: 
@Returns: 
<!-- # Unused Parameters # -->
@size: 


<!-- ##### FUNCTION pango_font_map_list_families ##### -->
<para>

</para>

@fontmap: 
@families: 
@n_families: 


<!-- ##### FUNCTION pango_font_map_free_families ##### -->
<para>

</para>

@families: 
@n_families: 


<!-- ##### FUNCTION pango_font_map_list_fonts ##### -->
<para>

</para>

@fontmap: 
@family: 
@descs: 
@n_descs: 


<!-- ##### MACRO PANGO_TYPE_FONT_MAP ##### -->
<para>

</para>



<!-- ##### MACRO PANGO_FONT_MAP ##### -->
<para>

</para>

@object: 


<!-- ##### MACRO PANGO_IS_FONT_MAP ##### -->
<para>

</para>

@object: 


<!-- ##### MACRO PANGO_FONT_MAP_CLASS ##### -->
<para>

</para>

@klass: 


<!-- ##### MACRO PANGO_IS_FONT_MAP_CLASS ##### -->
<para>

</para>

@klass: 


<!-- ##### MACRO PANGO_FONT_MAP_GET_CLASS ##### -->
<para>

</para>

@obj: 


<!-- ##### FUNCTION pango_font_map_get_type ##### -->
<para>

</para>

@Returns: