blob: 217c46b71148a51a8f326f1941f404201951b24d (
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
|
<!-- ##### SECTION Title ##### -->
Coverage Maps
<!-- ##### SECTION Short_Description ##### -->
Unicode character range coverage storage.
<!-- ##### SECTION Long_Description ##### -->
<para>
It is often necessary in Pango to determine if a paticular font can
represent a particular character, and also how well it can represent
that character. The #PangoCoverage is a data structure that is used
to represent that information.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### ENUM PangoCoverageLevel ##### -->
<para>
Used to indicate how well a font can represent a particular ISO 10646
character point for a particular scrpt.
</para>
@PANGO_COVERAGE_NONE: The character is not representable with the font.
@PANGO_COVERAGE_FALLBACK: The character is represented in a way that may be
comprehensible but is not the correct graphical form.
For instance, a Hangul character represented as a
a sequence of Jamos, or a Latin transliteration of
a Cyrillic word.
@PANGO_COVERAGE_APPROXIMATE: The character is represented as basically the correct
graphical form, but with a stylistic variant inappropriate for
the current script.
@PANGO_COVERAGE_EXACT: The character is represented as the correct graphical form.
<!-- ##### STRUCT PangoCoverage ##### -->
<para>
The #PangoCoverage structure represents a map from ISO-10646 character
point to #PangoCoverageLevel. It is an opaque structure with no public fields.
</para>
<!-- ##### FUNCTION pango_coverage_new ##### -->
<para>
</para>
@Returns:
<!-- ##### FUNCTION pango_coverage_ref ##### -->
<para>
</para>
@coverage:
<!-- ##### FUNCTION pango_coverage_unref ##### -->
<para>
</para>
@coverage:
<!-- ##### FUNCTION pango_coverage_copy ##### -->
<para>
</para>
@coverage:
@Returns:
<!-- ##### FUNCTION pango_coverage_get ##### -->
<para>
</para>
@coverage:
@index:
@Returns:
<!-- ##### FUNCTION pango_coverage_max ##### -->
<para>
</para>
@coverage:
@other:
<!-- ##### FUNCTION pango_coverage_set ##### -->
<para>
</para>
@coverage:
@index:
@level:
|