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
|
.\" Copyright (C) 2001 Information-technology Promotion Agency (IPA)
.\" Copyright (C) 2001-2011
.\" National Institute of Advanced Industrial Science and Technology (AIST)
.\" This file is part of the m17n library documentation.
.\" Permission is granted to copy, distribute and/or modify this document
.\" under the terms of the GNU Free Documentation License, Version 1.2 or
.\" any later version published by the Free Software Foundation; with no
.\" Invariant Section, no Front-Cover Texts,
.\" and no Back-Cover Texts. A copy of the license is included in the
.\" appendix entitled "GNU Free Documentation License".
.TH "mfontset_modify_entry" 3m17n "12 Jan 2011" "Version 1.6.2" "The m17n Library" \" -*- nroff -*-
.ad l
.nh
.SH NAME
mfontset_modify_entry \- Modify the contents of a fontset.
.SH SYNOPSIS
int
\fBmfontset_modify_entry\fP (\fBMFontset\fP *
\fIfontset\fP, \fBMSymbol\fP
\fIscript\fP, \fBMSymbol\fP
\fIlanguage\fP, \fBMSymbol\fP
\fIcharset\fP, \fBMFont\fP *
\fIspec\fP, \fBMSymbol\fP
\fIlayouter_name\fP, int
\fIhow\fP)
.SH DESCRIPTION
Modify the contents of a fontset. The
.ft B
mfontset_modify_entry()
.ft R
function associates, in fontset
.ft B
fontset\fP,
.ft R
a copy of
.ft B
font
.ft R
with the
.ft B
script
.ft R
/
.ft B
language
.ft R
pair or with
.ft B
charset\fP.
.ft R
.PP
Each font in a fontset is associated with a particular script/language pair, with a particular charset, or with the symbol
.ft C
Mnil\fP.
.ft R
The fonts that are associated with the same item make a group.
.PP
If
.ft B
script
.ft R
is not
.ft C
Mnil\fP,
.ft R
it must be a symbol identifying a script. In this case,
.ft B
language
.ft R
is either a symbol identifying a language or
.ft C
Mnil\fP,
.ft R
and
.ft B
font
.ft R
is associated with the
.ft B
script
.ft R
/
.ft B
language
.ft R
pair.
.PP
If
.ft B
charset
.ft R
is not
.ft C
Mnil\fP,
.ft R
it must be a symbol representing a charset object. In this case,
.ft B
font
.ft R
is associated with that charset.
.PP
If both
.ft B
script
.ft R
and
.ft B
charset
.ft R
are not
.ft C
Mnil\fP,
.ft R
two copies of
.ft B
font
.ft R
are created. Then one is associated with the
.ft B
script
.ft R
/
.ft B
language
.ft R
pair and the other with that charset.
.PP
If both
.ft B
script
.ft R
and
.ft B
charset
.ft R
are
.ft C
Mnil\fP,
.ft R
.ft B
font
.ft R
is associated with
.ft C
Mnil\fP.
.ft R
This kind of fonts are called
.ft I
fallback
.ft R
.ft I
fonts\fP.
.ft R
.PP
The argument
.ft B
how
.ft R
specifies the priority of
.ft B
font\fP.
.ft R
If
.ft B
how
.ft R
is positive,
.ft B
font
.ft R
has the highest priority in the group of fonts that are associated with the same item. If
.ft B
how
.ft R
is negative,
.ft B
font
.ft R
has the lowest priority. If
.ft B
how
.ft R
is zero,
.ft B
font
.ft R
becomes the only available font for the associated item; all the other fonts are removed from the group.
.PP
If
.ft B
layouter_name
.ft R
is not
.ft C
Mnil\fP,
.ft R
it must be a symbol representing a
.ft B
mdbFLT
.ft R
(font layout table). In that case, if
.ft B
font
.ft R
is selected for drawing an M\-text, that font layout table is used to generate a glyph code sequence from a character sequence.
.PP
.SH RETURN VALUE
.PP
.RS 4
If the operation was successful,
.ft B
mfontset_modify_entry()
.ft R
returns 0. Otherwise it returns \-1 and assigns an error code to the external variable
.ft B
merror_code\fP.
.ft R
.RE
.PP
.SH ERRORS
.PP
.RS 4
\fCMERROR_SYMBOL
.ft R
.RE
.PP
.SH COPYRIGHT
Copyright (C) 2001 Information\-technology Promotion Agency (IPA)
.br
Copyright (C) 2001\-2011 National Institute of Advanced Industrial Science and Technology (AIST)
.br
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License
<http://www.gnu.org/licenses/fdl.html>.
|