5c9f0be1e0af50e80a37c278b6a5df1b1ce4b733
[m17n/m17n-lib.git] / src / font.h
1 /* font.h -- header file for the font module.
2    Copyright (C) 2003, 2004
3      National Institute of Advanced Industrial Science and Technology (AIST)
4      Registration Number H15PRO112
5
6    This file is part of the m17n library.
7
8    The m17n library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Lesser General Public License
10    as published by the Free Software Foundation; either version 2.1 of
11    the License, or (at your option) any later version.
12
13    The m17n library is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    Lesser General Public License for more details.
17
18    You should have received a copy of the GNU Lesser General Public
19    License along with the m17n library; if not, write to the Free
20    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21    02111-1307, USA.  */
22
23 #ifndef _M17N_FONT_H_
24 #define _M17N_FONT_H_
25
26 /** Type of font.  Now obsolete.  */
27
28 enum MFontType
29   {
30     /** Fonts supproted by a window system natively.  On X Window
31         System, it is an X font.  */
32     MFONT_TYPE_WIN,
33
34     /** Fonts supported by FreeType library.  */
35     MFONT_TYPE_FT,
36
37     /** anchor */
38     MFONT_TYPE_MAX
39   };
40
41
42 enum MFontProperty
43   {
44     /* The order of MFONT_FOUNDRY to MFONT_ADSTYLE must be the same as
45        enum MFaceProperty.  */
46     MFONT_FOUNDRY,
47     MFONT_FAMILY,
48     MFONT_WEIGHT,
49     MFONT_STYLE,
50     MFONT_STRETCH,
51     MFONT_ADSTYLE,
52     MFONT_REGISTRY,
53     MFONT_SIZE,
54     MFONT_RESY,
55     /* anchor */
56     MFONT_PROPERTY_MAX
57   };
58
59 /** Information about a font.  This structure is used in three ways:
60     FONT-OBJ, FONT-OPENED, and FONT-SPEC.  
61
62     FONT-OBJ: To store information of an existing font.  Instances
63     appear only in <font_list> of MDisplay.
64
65     FONT-OPENED: To store information of an opened font.  Instances
66     appear only in <opend_list> of MDisplay.
67
68     FONT-SPEC: To store specifications of a font.  Instances appear
69     only in <spec_list> of MFontset.  */
70
71 struct MFont
72 {
73   /** Numeric value of each font property.  Also used as an index to
74       the table @c mfont__property_table to get the actual name of the
75       property.
76
77       For FONT-OBJ, FONT-OPENED: The value is greater than zero.
78
79       For FONT-SPEC: The value is equal to or greater than zero.  Zero
80       means that the correponding property is not specified (i.e. wild
81       card).
82
83       <property>[MFONT_SIZE] is the size of the font in 1/10 pixels.
84
85       For FONT-OBJ: If the value is 0, the font is scalable or
86       auto-scaled.
87
88       For FONT-OPENED: The actual size of opened font.
89
90       <prperty>[MFONT_RESY] is the designed resolution of the font in
91       DPI, or zero.  Zero means that the font is scalable.
92
93       For the time being, we mention only Y-resolution (resy) and
94       assume that resx is always equal to resy.  */
95   unsigned short property[MFONT_PROPERTY_MAX];
96 };
97
98 typedef struct
99 {
100   int size, inc, used;
101   MSymbol property;
102   MSymbol *names;
103 } MFontPropertyTable;
104
105 extern MFontPropertyTable mfont__property_table[MFONT_REGISTRY + 1];
106
107 /** Return the symbol of the Nth font property of FONT.  */
108 #define FONT_PROPERTY(font, n)  \
109   mfont__property_table[(n)].names[(font)->property[(n)]]
110
111 typedef struct MFontEncoding MFontEncoding;
112
113 struct MRealizedFont
114 {
115   /* Frame on which the font is realized.  */
116   MFrame *frame;
117
118   /* Font spec used to find the font.  */
119   MFont spec;
120
121   /* Font spec requested by a face.  */
122   MFont request;
123
124   /* The found font.  */
125   MFont font;
126
127   /* How well <font> matches with <request>.  */
128   int score;
129
130   MFontDriver *driver;
131
132   /* Font Layout Table for the font.  */
133   MSymbol layouter;
134
135   /* 0: not yet tried to open
136      -1: failed to open
137      1: succeessfully opened.  */
138   int status;
139
140   /* Extra information set by <driver>->select or <driver>->open.  If
141      non-NULL, it must be a pointer to a managed object.  */
142   void *info;
143
144   short ascent, descent;
145
146   MFontEncoding *encoding;
147
148   /* Type of the font: Mx, Mfreetype, or Mxft.  */
149   MSymbol type;
150
151   /* Pointer to the font structure.  */
152   void *fontp;
153 };
154
155 /** Structure to hold a list of fonts of each registry.  */
156
157 typedef struct
158 {
159   MSymbol tag;
160   int nfonts;
161   MFont *fonts;
162 } MFontList;
163
164
165 struct MFontDriver
166 {
167   /** Return a font satisfying REQUEST and best matching with SPEC.
168       For the moment, LIMITTED_SIZE is ignored.  */
169   MRealizedFont *(*select) (MFrame *frame, MFont *spec, MFont *request,
170                             int limitted_size);
171
172   /** Open a font specified by RFONT.  */
173   int (*open) (MRealizedFont *rfont);
174
175   /** Set metrics of glyphs in GSTRING from FROM to TO.  */
176   void (*find_metric) (MRealizedFont *rfont, MGlyphString *gstring,
177                        int from, int to);
178
179   /** Encode CODE into a glyph code the font.  CODE is a code point of
180       a character in rfont->encoder->encoding_charset.  If the font
181       has no glyph for CODE, return MCHAR_INVALID_CODE.  */
182   unsigned (*encode_char) (MRealizedFont *rfont, unsigned code);
183
184   /** Draw glyphs from FROM to TO (exclusive) on window WIN of FRAME
185       at coordinate (X, Y) relative to WIN.  */
186   void (*render) (MDrawWindow win, int x, int y,
187                   MGlyphString *gstring, MGlyph *from, MGlyph *to,
188                   int reverse, MDrawRegion region);
189
190   /** Push to PLIST a list of fonts matching with FONT.  LANGUAGE, if
191       not Mnil, limits fonts to ones that support LANGUAGE.  */
192   void (*list) (MFrame *frame, MPlist *plist, MFont *font, MSymbol language);
193 };
194
195 /** Initialize the members of FONT.  */
196
197 #define MFONT_INIT(font) memset ((font), 0, sizeof (MFont))
198
199 extern MSymbol Mlayouter;
200
201 extern int mfont__flt_init ();
202
203 extern void mfont__flt_fini ();
204
205 #ifdef HAVE_FREETYPE
206 #include <ft2build.h>
207 #include FT_FREETYPE_H
208
209 #ifdef HAVE_FONTCONFIG
210 #include <fontconfig/fontconfig.h>
211 #endif
212
213 #ifdef HAVE_OTF
214 #include <otf.h>
215 #endif /* HAVE_OTF */
216
217 typedef struct
218 {
219   M17NObject control;
220   MFont font;
221   char *filename;
222   int otf_flag; /* This font is OTF (1), may be OTF (0), is not OTF (-1).  */
223   MPlist *charmap_list;
224   int charmap_index;
225   FT_Face ft_face;
226   char *languages;
227 #ifdef HAVE_OTF
228   OTF *otf;
229 #endif /* HAVE_OTF */
230 #ifdef HAVE_FONTCONFIG
231   FcLangSet *langset;
232 #else
233   void *langset;
234 #endif
235   void *extra_info;             /* Xft uses this member.  */
236 } MFTInfo;
237
238 extern MFontDriver mfont__ft_driver;
239
240 extern int mfont__ft_init ();
241
242 extern void mfont__ft_fini ();
243
244 extern int mfont__ft_parse_name (char *name, MFont *font);
245
246 extern char *mfont__ft_unparse_name (MFont *font);
247
248 #ifdef HAVE_OTF
249
250 extern int mfont__ft_drive_otf (MGlyphString *gstring, int from, int to,
251                                 MSymbol script, MSymbol langsys,
252                                 MSymbol gsub_features, MSymbol gpos_features);
253
254 extern int mfont__ft_decode_otf (MGlyph *g);
255
256 #endif  /* HAVE_OTF */
257
258 #endif /* HAVE_FREETYPE */
259
260 extern void mfont__free_realized (MRealizedFont *rfont);
261
262 extern int mfont__match_p (MFont *font, MFont *spec, int prop);
263
264 extern int mfont__score (MFont *font, MFont *spec, MFont *request,
265                          int limitted_size);
266
267 extern void mfont__set_spec_from_face (MFont *spec, MFace *face);
268
269 extern MSymbol mfont__set_spec_from_plist (MFont *spec, MPlist *plist);
270
271 extern void mfont__resize (MFont *spec, MFont *request);
272
273 extern unsigned mfont__encode_char (MRealizedFont *rfont, int c);
274
275 extern MRealizedFont *mfont__select (MFrame *frame, MFont *spec,
276                                      MFont *request, int limitted_size,
277                                      MSymbol layouter);
278
279 extern int mfont__open (MRealizedFont *rfont);
280
281 extern void mfont__get_metric (MGlyphString *gstring, int from, int to);
282
283 extern void mfont__set_property (MFont *font, enum MFontProperty key,
284                                  MSymbol val);
285
286 extern int mfont__split_name (char *name, int *property_idx,
287                               unsigned short *point, unsigned short *resy);
288
289 extern void mfont__set_spec (MFont *font,
290                              MSymbol attrs[MFONT_PROPERTY_MAX],
291                              unsigned short size, unsigned short resy);
292
293 extern int mfont__parse_name_into_font (char *name, MSymbol format,
294                                         MFont *font);
295
296 extern MPlist *mfont__encoding_list (void);
297
298 extern unsigned mfont__flt_encode_char (MSymbol layouter_name, int c);
299
300 extern int mfont__flt_run (MGlyphString *gstring, int from, int to,
301                            MRealizedFace *rface);
302
303 #endif /* _M17N_FONT_H_ */