(main): Call syms_of_font unconditionally.
[bpt/emacs.git] / src / font.h
CommitLineData
c2f5bfd6
KH
1/* font.h -- Interface definition for font handling.
2 Copyright (C) 2006 Free Software Foundation, Inc.
3 Copyright (C) 2006
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009
6
7This file is part of GNU Emacs.
8
9GNU Emacs is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published by
11the Free Software Foundation; either version 2, or (at your option)
12any later version.
13
14GNU Emacs is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with GNU Emacs; see the file COPYING. If not, write to
21the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22Boston, MA 02110-1301, USA. */
23
24#ifndef EMACS_FONT_H
25#define EMACS_FONT_H
26
27#include "ccl.h"
28
29/* We have three types of Lisp objects related to font.
30
31 FONT-SPEC
32
33 Vector (length FONT_SPEC_MAX) of font properties. Some
34 properties can be left unspecified (i.e. nil). Emacs asks
35 font-drivers to find a font by FONT-SPEC. A fontset entry
36 specifies requisite properties whereas a face specifies just
37 preferable properties. This object is fully modifiable by
38 Lisp.
39
40 FONT-ENTITY
41
42 Vector (length FONT_ENTITY_MAX) of fully specified font
43 properties that a font-driver returns upon a request of
44 FONT-SPEC.
45
46 Note: Only the method `list' of a font-driver can create this
47 object, and should never be modified by Lisp. In that sense,
48 it may be cleaner to implement it as a Lisp object of a new
49 type (e.g. struct Lisp_Font).
50
51 FONT-OBJECT
52
53 Lisp object of type Lisp_Misc_Save_Value encapsulating a
54 pointer to "struct font". This corresponds to an opened font.
55
56 Note: The note for FONT-ENTITY also applies to this.
57*/
58
59
60struct font_driver;
61struct font;
62
63/* An enumerator for each font property. This is used as an index to
64 the vector of FONT-SPEC and FONT-ENTITY.
65
66 Note: The order is important and should not be changed. */
67
68enum font_property_index
69 {
70 /* FONT-TYPE is a symbol indicating a font backend; currently `x',
71 `xft', `ftx', `freetype' are available. For windows, we need
72 `bdf' and `windows'. For Mac OS X, we need `atm'. */
73 FONT_TYPE_INDEX,
74
75 /* FONT-FOUNDRY is a foundry name (symbol). */
76 FONT_FOUNDRY_INDEX,
77
78 /* FONT-FAMILY is a family name (symbol). */
79 FONT_FAMILY_INDEX,
80
81 /* FONT-ADSTYLE is an additional style name (symbol). */
82 FONT_ADSTYLE_INDEX,
83
84 /* FONT-REGISTRY is a combination of a charset-registry and
85 charset0encoding name (symbol). */
86 FONT_REGISTRY_INDEX,
87
88 /* FONT-WEIGHT is a numeric value of weight (e.g. medium, bold) of
89 the font. The value is what defined by FC_WEIGHT_* in
90 fontconfig. */
91 FONT_WEIGHT_INDEX,
92
93 /* FONT-SLANT is a numeric value of slant (e.g. r, i, o) of the
94 font. The value is what defined by FC_SLANT_* in
95 fontconfig plus 100. */
96 FONT_SLANT_INDEX,
97
98 /* FONT-WIDTH is a numeric value of setwidth (e.g. normal,
99 condensed) of the font. The value is what defined by
100 FC_WIDTH_* in fontconfig. */
101 FONT_WIDTH_INDEX,
102
103 /* FONT-SIZE is a size of the font. If integer, it is a pixel
104 size. For a font-spec, the value can be float specifying a
105 point size. For a font-entity, the value can be zero meaning
106 that the font is scalable. */
107 FONT_SIZE_INDEX,
108
109 /* In a font-spec, the value is an alist of extra information of a
110 font such as name, OpenType features, and language coverage.
111 In a font-entity, the value is an extra infomation for
112 identifying a font (font-driver dependent). */
113 FONT_EXTRA_INDEX, /* alist alist */
114
115 /* This value is the length of font-spec vector. */
116 FONT_SPEC_MAX,
117
118 /* The followings are used only for a font-entity. */
119
120 /* Frame on which the font is found. The value is nil if the font
121 can be opend on any frame. */
122 FONT_FRAME_INDEX = FONT_SPEC_MAX,
123
124 /* List of font-objects opened from the font-entity. */
125 FONT_OBJLIST_INDEX,
126
127 /* This value is the length of font-entity vector. */
128 FONT_ENTITY_MAX
129 };
130
a46bb06e 131extern Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClanguage, QCscript;
c2f5bfd6 132
3223c449 133/* Important character set symbols. */
32d497b1 134extern Lisp_Object Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip;
3223c449 135
c2f5bfd6
KH
136extern Lisp_Object null_string;
137extern Lisp_Object null_vector;
138
139/* Structure for an opened font. We can safely cast this structure to
4fe8e188 140 "struct font_info". */
c2f5bfd6
KH
141
142struct font
143{
144 struct font_info font;
145
146 /* From which font-entity the font is opened. */
147 Lisp_Object entity;
148
149 /* By which pixel size the font is opened. */
150 int pixel_size;
151
152 /* Font-driver for the font. */
153 struct font_driver *driver;
154
c6666169
KH
155 /* Symbol of font font; x, ttf, pcf, etc, */
156 Lisp_Object format;
157
c2f5bfd6
KH
158 /* File name of the font, or NULL if the font is not associated with
159 a file. */
160 char *file_name;
161
64c9fe54
KH
162 /* Charset to encode a character code into a glyph code of the font.
163 -1 means that the font doesn't require this information to encode
164 a character. */
c2f5bfd6
KH
165 int encoding_charset;
166
167 /* Charset to check if a character code is supported by the font.
168 -1 means that the contents of the font must be looked up to
64c9fe54 169 determine it. */
e2a3f5b2 170 int repertory_charset;
c2f5bfd6
KH
171
172 /* Minimum glyph width (in pixels). */
173 int min_width;
174
175 /* Ascent and descent of the font (in pixels). */
176 int ascent, descent;
177
e2873d13
KH
178 /* 1 iff the font is scalable. */
179 int scalable;
180
c2f5bfd6
KH
181 /* There will be more to this structure, but they are private to a
182 font-driver. */
183};
184
f8657b39
KH
185enum font_spacing
186 {
187 FONT_SPACING_PROPORTIONAL = 0,
188 FONT_SPACING_DUAL = 90,
189 FONT_SPACING_MONO = 100,
190 FONT_SPACING_CHARCELL = 110
191 };
192
c2f5bfd6
KH
193struct font_metrics
194{
195 short lbearing, rbearing, width, ascent, descent;
196};
197
198struct font_bitmap
199{
5a74d0e5 200 int bits_per_pixel;
c2f5bfd6
KH
201 int rows;
202 int width;
203 int pitch;
204 unsigned char *buffer;
205 int left;
206 int top;
207 int advance;
208 void *extra;
209};
210
211/* Predicates to check various font-related objects. */
212
213#define FONTP(x) \
214 (VECTORP (x) && (ASIZE (x) == FONT_SPEC_MAX || ASIZE (x) == FONT_ENTITY_MAX))
215#define FONT_SPEC_P(x) \
216 (VECTORP (x) && ASIZE (x) == FONT_SPEC_MAX)
217#define FONT_ENTITY_P(x) \
218 (VECTORP (x) && ASIZE (x) == FONT_ENTITY_MAX)
219#define FONT_OBJECT_P(x) \
220 (XTYPE (x) == Lisp_Misc && XMISCTYPE (x) == Lisp_Misc_Save_Value)
221
222
223/* Check macros for various font-related objects. */
224
225#define CHECK_FONT(x) \
226 do { if (! FONTP (x)) x = wrong_type_argument (Qfont, x); } while (0)
227#define CHECK_FONT_SPEC(x) \
228 do { if (! FONT_SPEC_P (x)) x = wrong_type_argument (Qfont, x); } while (0)
229#define CHECK_FONT_ENTITY(x) \
230 do { if (! FONT_ENTITY_P (x)) x = wrong_type_argument (Qfont, x); } while (0)
231#define CHECK_FONT_OBJECT(x) \
232 do { if (! FONT_OBJECT_P (x)) x = wrong_type_argument (Qfont, x); } while (0)
233
234#define CHECK_FONT_GET_OBJECT(x, font) \
235 do { \
236 if (! FONT_OBJECT_P (x)) x = wrong_type_argument (Qfont, x); \
237 if (! XSAVE_VALUE (x)->pointer) error ("Font already closed"); \
238 font = XSAVE_VALUE (x)->pointer; \
239 } while (0)
240
f8657b39
KH
241/* Ignore the difference of font pixel sizes less than or equal to
242 this value. */
243#define FONT_PIXEL_SIZE_QUANTUM 1
244
c2f5bfd6
KH
245struct face;
246struct composition;
247
248/* Macros for lispy glyph-string. */
249#define LGSTRING_FONT(lgs) AREF (AREF ((lgs), 0), 0)
250#define LGSTRING_LBEARING(lgs) AREF (AREF ((lgs), 0), 1)
251#define LGSTRING_RBEARING(lgs) AREF (AREF ((lgs), 0), 2)
252#define LGSTRING_WIDTH(lgs) AREF (AREF ((lgs), 0), 3)
253#define LGSTRING_ASCENT(lgs) AREF (AREF ((lgs), 0), 4)
254#define LGSTRING_DESCENT(lgs) AREF (AREF ((lgs), 0), 5)
255#define LGSTRING_SET_FONT(lgs, val) ASET (AREF ((lgs), 0), 0, (val))
256#define LGSTRING_SET_LBEARING(lgs, val) ASET (AREF ((lgs), 0), 1, (val))
257#define LGSTRING_SET_RBEARING(lgs, val) ASET (AREF ((lgs), 0), 2, (val))
258#define LGSTRING_SET_WIDTH(lgs, val) ASET (AREF ((lgs), 0), 3, (val))
259#define LGSTRING_SET_ASCENT(lgs, val) ASET (AREF ((lgs), 0), 4, (val))
260#define LGSTRING_SET_DESCENT(lgs, val) ASET (AREF ((lgs), 0), 5, (val))
261
262#define LGSTRING_LENGTH(lgs) (ASIZE ((lgs)) - 1)
263#define LGSTRING_GLYPH(lgs, idx) AREF ((lgs), (idx) + 1)
264
0bd4cc79
KH
265#define LGLYPH_FROM(g) AREF ((g), 0)
266#define LGLYPH_TO(g) AREF ((g), 1)
c2f5bfd6
KH
267#define LGLYPH_CHAR(g) AREF ((g), 2)
268#define LGLYPH_CODE(g) AREF ((g), 3)
33b27f57
KH
269#define LGLYPH_WIDTH(g) AREF ((g), 4)
270#define LGLYPH_ADJUSTMENT(g) AREF ((g), 5)
0bd4cc79
KH
271#define LGLYPH_SET_FROM(g, val) ASET ((g), 0, (val))
272#define LGLYPH_SET_TO(g, val) ASET ((g), 1, (val))
c2f5bfd6
KH
273#define LGLYPH_SET_CHAR(g, val) ASET ((g), 2, (val))
274#define LGLYPH_SET_CODE(g, val) ASET ((g), 3, (val))
33b27f57
KH
275#define LGLYPH_SET_WIDTH(g, val) ASET ((g), 4, (val))
276#define LGLYPH_SET_ADJUSTMENT(g, val) ASET ((g), 5, (val))
277
0bd4cc79
KH
278#define LGLYPH_XOFF(g) (VECTORP (LGLYPH_ADJUSTMENT (g)) \
279 ? XINT (AREF (LGLYPH_ADJUSTMENT (g), 0)) : 0)
280#define LGLYPH_YOFF(g) (VECTORP (LGLYPH_ADJUSTMENT (g)) \
281 ? XINT (AREF (LGLYPH_ADJUSTMENT (g), 1)) : 0)
282#define LGLYPH_WADJUST(g) (VECTORP (LGLYPH_ADJUSTMENT (g)) \
283 ? XINT (AREF (LGLYPH_ADJUSTMENT (g), 2)) : 0)
c2f5bfd6
KH
284
285#define FONT_INVALID_CODE 0xFFFFFFFF
286
217caa37
KH
287/* Font driver. Members specified as "optional" can be NULL. */
288
c2f5bfd6
KH
289struct font_driver
290{
291 /* Symbol indicating the type of the font-driver. */
292 Lisp_Object type;
293
294 /* Return a cache of font-entities on FRAME. The cache must be a
295 cons whose cdr part is the actual cache area. */
296 Lisp_Object (*get_cache) P_ ((Lisp_Object frame));
297
dc377380
KH
298 /* List fonts exactly matching with FONT_SPEC on FRAME. The value
299 is a vector of font-entities. This is the sole API that
300 allocates font-entities. */
c2f5bfd6
KH
301 Lisp_Object (*list) P_ ((Lisp_Object frame, Lisp_Object font_spec));
302
dc377380
KH
303 /* Return a font entity most closely maching with FONT_SPEC on
304 FRAME. The closeness is detemined by the font backend, thus
305 `face-font-selection-order' is ignored here. */
306 Lisp_Object (*match) P_ ((Lisp_Object frame, Lisp_Object font_spec));
307
217caa37
KH
308 /* Optional.
309 List available families. The value is a list of family names
310 (symbols). */
c2f5bfd6
KH
311 Lisp_Object (*list_family) P_ ((Lisp_Object frame));
312
217caa37
KH
313 /* Optional (if FONT_EXTRA_INDEX is not Lisp_Save_Value).
314 Free FONT_EXTRA_INDEX field of FONT_ENTITY. */
c2f5bfd6
KH
315 void (*free_entity) P_ ((Lisp_Object font_entity));
316
317 /* Open a font specified by FONT_ENTITY on frame F. If the font is
318 scalable, open it with PIXEL_SIZE. */
319 struct font *(*open) P_ ((FRAME_PTR f, Lisp_Object font_entity,
320 int pixel_size));
321
322 /* Close FONT on frame F. */
323 void (*close) P_ ((FRAME_PTR f, struct font *font));
324
217caa37
KH
325 /* Optional (if FACE->extra is not used).
326 Prepare FACE for displaying characters by FONT on frame F by
327 storing some data in FACE->extra. If successful, return 0.
328 Otherwise, return -1. */
c2f5bfd6
KH
329 int (*prepare_face) P_ ((FRAME_PTR f, struct face *face));
330
217caa37
KH
331 /* Optional.
332 Done FACE for displaying characters by FACE->font on frame F. */
c2f5bfd6
KH
333 void (*done_face) P_ ((FRAME_PTR f, struct face *face));
334
217caa37
KH
335 /* Optional.
336 If FONT_ENTITY has a glyph for character C (Unicode code point),
337 return 1. If not, return 0. If a font must be opened to check
338 it, return -1. */
c2f5bfd6
KH
339 int (*has_char) P_ ((Lisp_Object entity, int c));
340
217caa37
KH
341 /* Return a glyph code of FONT for characer C (Unicode code point).
342 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */
c2f5bfd6
KH
343 unsigned (*encode_char) P_ ((struct font *font, int c));
344
ef5e1a96
KH
345 /* Computate the total metrics of the NGLYPHS glyphs specified by
346 the font FONT and the sequence of glyph codes CODE, and store the
347 result in METRICS. */
c2f5bfd6
KH
348 int (*text_extents) P_ ((struct font *font,
349 unsigned *code, int nglyphs,
350 struct font_metrics *metrics));
351
217caa37
KH
352 /* Optional.
353 Draw glyphs between FROM and TO of S->char2b at (X Y) pixel
c2f5bfd6
KH
354 position of frame F with S->FACE and S->GC. If WITH_BACKGROUND
355 is nonzero, fill the background in advance. It is assured that
356 WITH_BACKGROUND is zero when (FROM > 0 || TO < S->nchars). */
357 int (*draw) P_ ((struct glyph_string *s, int from, int to,
358 int x, int y, int with_background));
359
217caa37
KH
360 /* Optional.
361 Store bitmap data for glyph-code CODE of FONT in BITMAP. It is
362 intended that this method is callled from the other font-driver
363 for actual drawing. */
c2f5bfd6
KH
364 int (*get_bitmap) P_ ((struct font *font, unsigned code,
365 struct font_bitmap *bitmap,
366 int bits_per_pixel));
367
217caa37
KH
368 /* Optional.
369 Free bitmap data in BITMAP. */
c2f5bfd6
KH
370 void (*free_bitmap) P_ ((struct font *font, struct font_bitmap *bitmap));
371
217caa37
KH
372 /* Optional.
373 Return an outline data for glyph-code CODE of FONT. The format
374 of the outline data depends on the font-driver. */
c2f5bfd6
KH
375 void *(*get_outline) P_ ((struct font *font, unsigned code));
376
217caa37
KH
377 /* Optional.
378 Free OUTLINE (that is obtained by the above method). */
c2f5bfd6
KH
379 void (*free_outline) P_ ((struct font *font, void *outline));
380
217caa37
KH
381 /* Optional.
382 Get coordinates of the INDEXth anchor point of the glyph whose
c2f5bfd6 383 code is CODE. Store the coordinates in *X and *Y. Return 0 if
217caa37 384 the operations was successfull. Otherwise return -1. */
c2f5bfd6
KH
385 int (*anchor_point) P_ ((struct font *font, unsigned code, int index,
386 int *x, int *y));
387
217caa37
KH
388 /* Optional.
389 Return a list describing which scripts/languages FONT
c2f5bfd6
KH
390 supports by which GSUB/GPOS features of OpenType tables. */
391 Lisp_Object (*otf_capability) P_ ((struct font *font));
392
217caa37 393 /* Optional.
b6c8772a
KH
394 Apply FONT's OTF-FEATURES to the glyph string.
395
396 FEATURES specifies which OTF features to apply in this format:
397 (SCRIPT LANGSYS GSUB-FEATURE GPOS-FEATURE)
398 See the documentation of `font-drive-otf' for the detail.
c2f5bfd6
KH
399
400 This method applies the specified features to the codes in the
401 elements of GSTRING-IN (between FROMth and TOth). The output
402 codes are stored in GSTRING-OUT at the IDXth element and the
403 following elements.
404
405 Return the number of output codes. If none of the features are
406 applicable to the input data, return 0. If GSTRING-OUT is too
407 short, return -1. */
b6c8772a 408 int (*otf_drive) P_ ((struct font *font, Lisp_Object features,
c2f5bfd6 409 Lisp_Object gstring_in, int from, int to,
e2873d13 410 Lisp_Object gstring_out, int idx, int alternate_subst));
5a74d0e5
KH
411
412 /* Optional.
413 Make the font driver ready for frame F. Usually this function
414 makes some data specific to F and store it in F by calling
415 font_put_frame_data (). */
416 int (*start_for_frame) P_ ((FRAME_PTR f));
417
418 /* Optional.
419 End using the driver for frame F. Usually this function free
420 some data stored for F. */
421 int (*end_for_frame) P_ ((FRAME_PTR f));
c2f5bfd6
KH
422};
423
424
5a74d0e5
KH
425/* Chain of font drivers. There's one global font driver list
426 (font_driver_list in font.c). In addition, each frame has it's own
427 font driver list at FRAME_PTR->font_driver_list. */
428
c2f5bfd6
KH
429struct font_driver_list
430{
5a74d0e5
KH
431 /* 1 iff this driver is currently used. It is igonred in the global
432 font driver list.*/
484ca464 433 int on;
5a74d0e5 434 /* Pointer to the font driver. */
c2f5bfd6 435 struct font_driver *driver;
5a74d0e5 436 /* Pointer to the next element of the chain. */
c2f5bfd6
KH
437 struct font_driver_list *next;
438};
439
5a74d0e5
KH
440
441/* Chain of arbitrary data specific to each font driver. Each frame
442 has it's own font data list at FRAME_PTR->font_data_list. */
443
444struct font_data_list
445{
446 /* Pointer to the font driver. */
447 struct font_driver *driver;
448 /* Data specific to the font driver. */
449 void *data;
450 /* Pointer to the next element of the chain. */
451 struct font_data_list *next;
452};
453
c2f5bfd6
KH
454extern int enable_font_backend;
455
456EXFUN (Ffont_spec, MANY);
8d3251f2 457EXFUN (Flist_fonts, 4);
484ca464 458EXFUN (Fclear_font_cache, 0);
8bb2f20f 459EXFUN (Ffont_xlfd_name, 1);
c2f5bfd6
KH
460
461extern Lisp_Object font_symbolic_weight P_ ((Lisp_Object font));
462extern Lisp_Object font_symbolic_slant P_ ((Lisp_Object font));
463extern Lisp_Object font_symbolic_width P_ ((Lisp_Object font));
464
217caa37
KH
465extern int font_match_p P_ ((Lisp_Object spec, Lisp_Object entity));
466
c2f5bfd6 467extern Lisp_Object font_find_object P_ ((struct font *font));
217caa37
KH
468extern Lisp_Object font_get_name P_ ((Lisp_Object font_object));
469extern Lisp_Object font_get_spec P_ ((Lisp_Object font_object));
470extern Lisp_Object font_get_frame P_ ((Lisp_Object font_object));
c2f5bfd6
KH
471extern int font_has_char P_ ((FRAME_PTR, Lisp_Object, int));
472extern unsigned font_encode_char P_ ((Lisp_Object, int));
473
474extern int font_set_lface_from_name P_ ((FRAME_PTR f,
475 Lisp_Object lface,
476 Lisp_Object fontname,
477 int force_p, int may_fail_p));
478extern Lisp_Object font_find_for_lface P_ ((FRAME_PTR f, Lisp_Object *lface,
479 Lisp_Object spec));
b6c8772a
KH
480extern Lisp_Object font_open_for_lface P_ ((FRAME_PTR f, Lisp_Object entity,
481 Lisp_Object *lface,
482 Lisp_Object spec));
c2f5bfd6
KH
483extern void font_load_for_face P_ ((FRAME_PTR f, struct face *face));
484extern void font_prepare_for_face P_ ((FRAME_PTR f, struct face *face));
485extern Lisp_Object font_open_by_name P_ ((FRAME_PTR f, char *name));
64c9fe54 486extern void font_close_object (FRAME_PTR f, Lisp_Object font_object);
c2f5bfd6
KH
487
488extern Lisp_Object intern_downcase P_ ((char *str, int len));
489extern void font_update_sort_order P_ ((int *order));
490
64c9fe54
KH
491extern void font_merge_old_spec P_ ((Lisp_Object name, Lisp_Object family,
492 Lisp_Object registry, Lisp_Object spec));
c2f5bfd6
KH
493
494
a46bb06e 495extern int font_parse_xlfd P_ ((char *name, Lisp_Object font));
c2f5bfd6
KH
496extern int font_unparse_xlfd P_ ((Lisp_Object font, int pixel_size,
497 char *name, int bytes));
a46bb06e 498extern int font_parse_fcname P_ ((char *name, Lisp_Object font));
217caa37
KH
499extern int font_unparse_fcname P_ ((Lisp_Object font, int pixel_size,
500 char *name, int bytes));
c2f5bfd6
KH
501extern void register_font_driver P_ ((struct font_driver *driver, FRAME_PTR f));
502extern void free_font_driver_list P_ ((FRAME_PTR f));
dc377380 503extern Lisp_Object font_update_drivers P_ ((FRAME_PTR f, Lisp_Object list));
0bd4cc79
KH
504extern Lisp_Object font_at P_ ((int c, EMACS_INT pos, struct face *face,
505 struct window *w, Lisp_Object object));
c2f5bfd6
KH
506
507extern struct font *font_prepare_composition P_ ((struct composition *cmp));
508
17484ddc
JR
509extern Lisp_Object font_put_extra P_ ((Lisp_Object font, Lisp_Object prop,
510 Lisp_Object val));
c2f5bfd6
KH
511
512#ifdef HAVE_LIBOTF
513/* This can be used as `otf_capability' method of a font-driver. */
514extern Lisp_Object font_otf_capability P_ ((struct font *font));
b6c8772a
KH
515/* This can be used as `otf_drive' method of a font-driver. */
516extern int font_drive_otf P_ ((struct font *font, Lisp_Object otf_features,
c927d1df
KH
517 Lisp_Object gstring_in, int from, int to,
518 Lisp_Object gstring_out, int idx,
519 int alternate_subst));
c2f5bfd6
KH
520#endif /* HAVE_LIBOTF */
521
5a74d0e5
KH
522extern int font_put_frame_data P_ ((FRAME_PTR f,
523 struct font_driver *driver,
524 void *data));
525extern void *font_get_frame_data P_ ((FRAME_PTR f,
526 struct font_driver *driver));
527
528
c2f5bfd6
KH
529#ifdef HAVE_FREETYPE
530extern struct font_driver ftfont_driver;
531#endif /* HAVE_FREETYPE */
532#ifdef HAVE_X_WINDOWS
533extern struct font_driver xfont_driver;
534extern struct font_driver ftxfont_driver;
535#ifdef HAVE_XFT
536extern struct font_driver xftfont_driver;
537#endif /* HAVE_XFT */
538#endif /* HAVE_X_WINDOWS */
539#ifdef WINDOWSNT
540extern struct font_driver w32font_driver;
541#endif /* WINDOWSNT */
542#ifdef MAC_OS
543extern struct font_driver atmfont_driver;
544#endif /* MAC_OS */
545
546#endif /* not EMACS_FONT_H */
885b7d09
MB
547
548/* arch-tag: 3b7260c3-5bec-4d6b-a0db-95c1b431b1a2
549 (do not change this comment) */