1 /* ftfont.c -- FreeType font driver.
2 Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
3 Copyright (C) 2006, 2007, 2008
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009
7 This file is part of GNU Emacs.
9 GNU Emacs is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
27 #include <fontconfig/fontconfig.h>
28 #include <fontconfig/fcfreetype.h>
31 #include "dispextern.h"
33 #include "blockinput.h"
34 #include "character.h"
41 /* Symbolic type of this font-driver. */
42 Lisp_Object Qfreetype
;
44 /* Fontconfig's generic families and their aliases. */
45 static Lisp_Object Qmonospace
, Qsans_serif
, Qserif
, Qmono
, Qsans
, Qsans__serif
;
47 /* Flag to tell if FcInit is areadly called or not. */
48 static int fc_initialized
;
50 /* Handle to a FreeType library instance. */
51 static FT_Library ft_library
;
53 /* Cache for FreeType fonts. */
54 static Lisp_Object freetype_font_cache
;
56 /* Fontconfig's charset used for finding fonts of registry
58 static FcCharSet
*cs_iso8859_1
;
60 /* The actual structure for FreeType font that can be casted to struct
68 int maybe_otf
; /* Flag to tell if this may be OTF or not. */
70 #endif /* HAVE_LIBOTF */
73 static int ftfont_build_basic_charsets
P_ ((void));
74 static Lisp_Object ftfont_pattern_entity
P_ ((FcPattern
*,
75 Lisp_Object
, Lisp_Object
));
76 static Lisp_Object ftfont_list_generic_family
P_ ((Lisp_Object
, Lisp_Object
,
78 Lisp_Object ftfont_font_format
P_ ((FcPattern
*));
80 #define SYMBOL_FcChar8(SYM) (FcChar8 *) SDATA (SYMBOL_NAME (SYM))
83 ftfont_build_basic_charsets ()
87 cs_iso8859_1
= FcCharSetCreate ();
90 for (c
= ' '; c
< 127; c
++)
91 if (! FcCharSetAddChar (cs_iso8859_1
, c
))
94 /* This part is currently disabled. Should be fixed later. */
95 for (c
= 192; c
< 256; c
++)
96 if (! FcCharSetAddChar (cs_iso8859_1
, c
))
103 ftfont_pattern_entity (p
, frame
, registry
)
105 Lisp_Object frame
, registry
;
108 FcChar8
*file
, *fontformat
;
114 if (FcPatternGetString (p
, FC_FILE
, 0, &file
) != FcResultMatch
)
116 if (FcPatternGetCharSet (p
, FC_CHARSET
, 0, &charset
) != FcResultMatch
)
119 if (FcPatternGetString (p
, FC_FONTFORMAT
, 0, &fontformat
) != FcResultMatch
)
120 #endif /* FC_FONTFORMAT */
123 entity
= Fmake_vector (make_number (FONT_ENTITY_MAX
), null_string
);
125 ASET (entity
, FONT_TYPE_INDEX
, Qfreetype
);
126 ASET (entity
, FONT_REGISTRY_INDEX
, registry
);
127 ASET (entity
, FONT_FRAME_INDEX
, frame
);
128 ASET (entity
, FONT_OBJLIST_INDEX
, Qnil
);
130 if (FcPatternGetString (p
, FC_FOUNDRY
, 0, (FcChar8
**) &str
) == FcResultMatch
)
131 ASET (entity
, FONT_FOUNDRY_INDEX
, intern_downcase (str
, strlen (str
)));
132 if (FcPatternGetString (p
, FC_FAMILY
, 0, (FcChar8
**) &str
) == FcResultMatch
)
133 ASET (entity
, FONT_FAMILY_INDEX
, intern_downcase (str
, strlen (str
)));
134 if (FcPatternGetInteger (p
, FC_WEIGHT
, 0, &numeric
) == FcResultMatch
)
136 if (numeric
== FC_WEIGHT_REGULAR
)
138 ASET (entity
, FONT_WEIGHT_INDEX
, make_number (numeric
));
140 if (FcPatternGetInteger (p
, FC_SLANT
, 0, &numeric
) == FcResultMatch
)
141 ASET (entity
, FONT_SLANT_INDEX
, make_number (numeric
+ 100));
142 if (FcPatternGetInteger (p
, FC_WIDTH
, 0, &numeric
) == FcResultMatch
)
143 ASET (entity
, FONT_WIDTH_INDEX
, make_number (numeric
));
144 if (FcPatternGetDouble (p
, FC_PIXEL_SIZE
, 0, &dbl
) == FcResultMatch
)
145 ASET (entity
, FONT_SIZE_INDEX
, make_number (dbl
));
147 ASET (entity
, FONT_SIZE_INDEX
, make_number (0));
149 if (FcPatternGetInteger (p
, FC_SPACING
, 0, &numeric
) != FcResultMatch
)
151 file
= FcStrCopy (file
);
155 p
= FcPatternCreate ();
159 if (FcPatternAddString (p
, FC_FILE
, file
) == FcFalse
161 && FcPatternAddCharSet (p
, FC_CHARSET
, charset
) == FcFalse
)
164 && FcPatternAddString (p
, FC_FONTFORMAT
, fontformat
) == FcFalse
)
165 #endif /* FC_FONTFORMAT */
167 && FcPatternAddInteger (p
, FC_SPACING
, numeric
) == FcFalse
))
169 FcPatternDestroy (p
);
172 ASET (entity
, FONT_EXTRA_INDEX
, make_save_value (p
, 0));
176 static Lisp_Object ftfont_generic_family_list
;
179 ftfont_list_generic_family (spec
, frame
, registry
)
180 Lisp_Object spec
, frame
, registry
;
182 Lisp_Object family
= AREF (spec
, FONT_FAMILY_INDEX
);
183 Lisp_Object slot
, list
, val
;
185 if (EQ (family
, Qmono
))
187 else if (EQ (family
, Qsans
) || EQ (family
, Qsans__serif
))
188 family
= Qsans_serif
;
189 slot
= assq_no_quit (family
, ftfont_generic_family_list
);
195 /* Not yet listed. */
196 FcObjectSet
*objset
= NULL
;
197 FcPattern
*pattern
= NULL
, *pat
= NULL
;
198 FcFontSet
*fontset
= NULL
;
202 objset
= FcObjectSetBuild (FC_FOUNDRY
, FC_FAMILY
, FC_WEIGHT
, FC_SLANT
,
203 FC_WIDTH
, FC_PIXEL_SIZE
, FC_SPACING
,
207 #endif /* FC_FONTFORMAT */
211 pattern
= FcPatternBuild (NULL
, FC_FAMILY
, FcTypeString
,
212 SYMBOL_FcChar8 (family
), (char *) 0);
215 pat
= FcPatternCreate ();
218 FcConfigSubstitute (NULL
, pattern
, FcMatchPattern
);
219 for (i
= 0, val
= Qnil
;
220 FcPatternGetString (pattern
, FC_FAMILY
, i
, &fam
) == FcResultMatch
;
223 if (strcmp ((char *) fam
, (char *) SYMBOL_FcChar8 (family
)) == 0)
225 if (! FcPatternAddString (pat
, FC_FAMILY
, fam
))
227 fontset
= FcFontList (NULL
, pat
, objset
);
230 /* Here we build the list in reverse order so that the last
231 loop in this function build a list in the correct
233 for (j
= 0; j
< fontset
->nfont
; j
++)
237 entity
= ftfont_pattern_entity (fontset
->fonts
[j
],
240 val
= Fcons (entity
, val
);
242 FcFontSetDestroy (fontset
);
244 FcPatternDel (pat
, FC_FAMILY
);
247 XSETCDR (slot
, list
);
249 if (pat
) FcPatternDestroy (pat
);
250 if (pattern
) FcPatternDestroy (pattern
);
251 if (fontset
) FcFontSetDestroy (fontset
);
252 if (objset
) FcObjectSetDestroy (objset
);
256 ASET (spec
, FONT_FAMILY_INDEX
, Qnil
);
257 for (val
= Qnil
; CONSP (list
); list
= XCDR (list
))
258 if (font_match_p (spec
, XCAR (list
)))
259 val
= Fcons (XCAR (list
), val
);
260 ASET (spec
, FONT_FAMILY_INDEX
, family
);
261 return Fvconcat (1, &val
);
265 static Lisp_Object ftfont_get_cache
P_ ((FRAME_PTR
));
266 static Lisp_Object ftfont_list
P_ ((Lisp_Object
, Lisp_Object
));
267 static Lisp_Object ftfont_match
P_ ((Lisp_Object
, Lisp_Object
));
268 static Lisp_Object ftfont_list_family
P_ ((Lisp_Object
));
269 static void ftfont_free_entity
P_ ((Lisp_Object
));
270 static struct font
*ftfont_open
P_ ((FRAME_PTR
, Lisp_Object
, int));
271 static void ftfont_close
P_ ((FRAME_PTR
, struct font
*));
272 static int ftfont_has_char
P_ ((Lisp_Object
, int));
273 static unsigned ftfont_encode_char
P_ ((struct font
*, int));
274 static int ftfont_text_extents
P_ ((struct font
*, unsigned *, int,
275 struct font_metrics
*));
276 static int ftfont_get_bitmap
P_ ((struct font
*, unsigned,
277 struct font_bitmap
*, int));
278 static int ftfont_anchor_point
P_ ((struct font
*, unsigned, int,
280 static Lisp_Object ftfont_shape
P_ ((Lisp_Object
));
282 struct font_driver ftfont_driver
=
292 /* We can't draw a text without device dependent functions. */
298 /* We can't draw a text without device dependent functions. */
309 #if defined (HAVE_M17N_FLT) && defined (HAVE_LIBOTF)
311 #else /* not (HAVE_M17N_FLT && HAVE_LIBOTF) */
313 #endif /* not (HAVE_M17N_FLT && HAVE_LIBOTF) */
316 extern Lisp_Object QCname
;
322 return freetype_font_cache
;
328 unsigned int script_tag
, langsys_tag
;
330 unsigned int *features
[2];
333 #define OTF_SYM_TAG(SYM, TAG) \
335 unsigned char *p = SDATA (SYMBOL_NAME (SYM)); \
336 TAG = (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]; \
339 #define OTF_TAG_STR(TAG, P) \
341 (P)[0] = (char) (TAG >> 24); \
342 (P)[1] = (char) ((TAG >> 16) & 0xFF); \
343 (P)[2] = (char) ((TAG >> 8) & 0xFF); \
344 (P)[3] = (char) (TAG & 0xFF); \
348 static struct OpenTypeSpec
*
349 ftfont_get_open_type_spec (Lisp_Object otf_spec
)
351 struct OpenTypeSpec
*spec
= malloc (sizeof (struct OpenTypeSpec
));
357 spec
->script
= XCAR (otf_spec
);
360 OTF_SYM_TAG (spec
->script
, spec
->script_tag
);
361 val
= assq_no_quit (spec
->script
, Votf_script_alist
);
362 if (CONSP (val
) && SYMBOLP (XCDR (val
)))
363 spec
->script
= XCDR (val
);
368 spec
->script_tag
= 0x44464C54; /* "DFLT" */
369 otf_spec
= XCDR (otf_spec
);
370 val
= XCAR (otf_spec
);
372 OTF_SYM_TAG (val
, spec
->langsys_tag
);
374 spec
->langsys_tag
= 0;
375 spec
->nfeatures
[0] = spec
->nfeatures
[1] = 0;
376 for (i
= 0; i
< 2; i
++)
380 otf_spec
= XCDR (otf_spec
);
383 val
= XCAR (otf_spec
);
387 spec
->features
[i
] = malloc (sizeof (int) * XINT (len
));
388 if (! spec
->features
[i
])
390 if (i
> 0 && spec
->features
[0])
391 free (spec
->features
[0]);
395 for (j
= 0, negative
= 0; CONSP (val
); val
= XCDR (val
))
397 if (NILP (XCAR (val
)))
403 OTF_SYM_TAG (XCAR (val
), tag
);
404 spec
->features
[i
][j
++] = negative
? tag
& 0x80000000 : tag
;
407 spec
->nfeatures
[i
] = j
;
413 ftfont_list (frame
, spec
)
414 Lisp_Object frame
, spec
;
416 Lisp_Object val
, tmp
, extra
;
418 FcPattern
*pattern
= NULL
;
419 FcCharSet
*charset
= NULL
;
420 FcLangSet
*langset
= NULL
;
421 FcFontSet
*fontset
= NULL
;
422 FcObjectSet
*objset
= NULL
;
424 Lisp_Object registry
= Qunicode_bmp
;
425 struct OpenTypeSpec
*otspec
= NULL
;
430 char otlayout
[15]; /* For "otlayout:XXXX" */
434 if (! fc_initialized
)
440 if (! NILP (AREF (spec
, FONT_ADSTYLE_INDEX
))
441 && ! EQ (AREF (spec
, FONT_ADSTYLE_INDEX
), null_string
))
443 if (! NILP (AREF (spec
, FONT_SLANT_INDEX
))
444 && XINT (AREF (spec
, FONT_SLANT_INDEX
)) < 100)
445 /* Fontconfig doesn't support reverse-italic/obligue. */
448 if (! NILP (AREF (spec
, FONT_REGISTRY_INDEX
)))
450 registry
= AREF (spec
, FONT_REGISTRY_INDEX
);
451 if (EQ (registry
, Qiso8859_1
))
454 && ftfont_build_basic_charsets () < 0)
456 charset
= cs_iso8859_1
;
458 else if (! EQ (registry
, Qiso10646_1
)
459 && ! EQ (registry
, Qunicode_bmp
)
460 && ! EQ (registry
, Qunicode_sip
))
466 for (extra
= AREF (spec
, FONT_EXTRA_INDEX
);
467 CONSP (extra
); extra
= XCDR (extra
))
469 Lisp_Object key
, val
;
472 key
= XCAR (tmp
), val
= XCDR (tmp
);
475 otspec
= ftfont_get_open_type_spec (val
);
478 strcat (otlayout
, "otlayout:");
479 OTF_TAG_STR (otspec
->script_tag
, otlayout
+ 9);
480 script
= otspec
->script
;
482 else if (EQ (key
, QClanguage
))
484 langset
= FcLangSetCreate ();
489 if (! FcLangSetAdd (langset
, SYMBOL_FcChar8 (val
)))
493 for (; CONSP (val
); val
= XCDR (val
))
494 if (SYMBOLP (XCAR (val
))
495 && ! FcLangSetAdd (langset
, SYMBOL_FcChar8 (XCAR (val
))))
498 else if (EQ (key
, QCscript
))
500 else if (EQ (key
, QCdpi
))
502 else if (EQ (key
, QCspacing
))
503 spacing
= XINT (val
);
504 else if (EQ (key
, QCscalable
))
505 scalable
= ! NILP (val
);
508 if (! NILP (script
) && ! charset
)
510 Lisp_Object chars
= assq_no_quit (script
, Vscript_representative_chars
);
514 charset
= FcCharSetCreate ();
517 for (chars
= XCDR (chars
); CONSP (chars
); chars
= XCDR (chars
))
518 if (CHARACTERP (XCAR (chars
))
519 && ! FcCharSetAddChar (charset
, XUINT (XCAR (chars
))))
524 pattern
= FcPatternCreate ();
527 tmp
= AREF (spec
, FONT_FOUNDRY_INDEX
);
528 if (SYMBOLP (tmp
) && ! NILP (tmp
)
529 && ! FcPatternAddString (pattern
, FC_FOUNDRY
, SYMBOL_FcChar8 (tmp
)))
531 tmp
= AREF (spec
, FONT_FAMILY_INDEX
);
532 if (SYMBOLP (tmp
) && ! NILP (tmp
)
533 && ! FcPatternAddString (pattern
, FC_FAMILY
, SYMBOL_FcChar8 (tmp
)))
535 /* Emacs conventionally doesn't distinguish normal, regular, and
536 medium weight, but fontconfig does. So, we can't restrict font
537 listing by weight. We check it after getting a list. */
538 tmp
= AREF (spec
, FONT_WEIGHT_INDEX
);
541 tmp
= AREF (spec
, FONT_SLANT_INDEX
);
543 && ! FcPatternAddInteger (pattern
, FC_SLANT
, XINT (tmp
) - 100))
545 tmp
= AREF (spec
, FONT_WIDTH_INDEX
);
547 && ! FcPatternAddInteger (pattern
, FC_WIDTH
, XINT (tmp
)))
551 && ! FcPatternAddCharSet (pattern
, FC_CHARSET
, charset
))
554 && ! FcPatternAddLangSet (pattern
, FC_LANG
, langset
))
557 && ! FcPatternAddDouble (pattern
, FC_DPI
, dpi
))
560 && ! FcPatternAddInteger (pattern
, FC_SPACING
, spacing
))
563 && ! FcPatternAddBool (pattern
, FC_SCALABLE
, scalable
? FcTrue
: FcFalse
))
566 objset
= FcObjectSetBuild (FC_FOUNDRY
, FC_FAMILY
, FC_WEIGHT
, FC_SLANT
,
567 FC_WIDTH
, FC_PIXEL_SIZE
, FC_SPACING
,
571 #endif /* FC_FONTFORMAT */
578 if (! FcObjectSetAdd (objset
, FC_CAPABILITY
))
580 #else /* not FC_CAPABILITY */
582 #endif /* not FC_CAPABILITY */
585 fontset
= FcFontList (NULL
, pattern
, objset
);
589 if (fontset
->nfont
> 0)
593 if (NILP (AREF (spec
, FONT_SIZE_INDEX
)))
596 pixel_size
= XINT (AREF (spec
, FONT_SIZE_INDEX
));
598 for (i
= 0, val
= Qnil
; i
< fontset
->nfont
; i
++)
606 if (FcPatternGetDouble (fontset
->fonts
[i
], FC_PIXEL_SIZE
, 0,
607 &this) == FcResultMatch
608 && ((this < pixel_size
- FONT_PIXEL_SIZE_QUANTUM
)
609 || (this > pixel_size
+ FONT_PIXEL_SIZE_QUANTUM
)))
616 if (FcPatternGetInteger (fontset
->fonts
[i
], FC_WEIGHT
, 0,
617 &this) != FcResultMatch
620 || this < FC_WEIGHT_REGULAR
621 || this > FC_WEIGHT_MEDIUM
)))
629 if (FcPatternGetString (fontset
->fonts
[i
], FC_CAPABILITY
, 0,
630 &this) != FcResultMatch
631 || ! strstr ((char *) this, otlayout
))
634 #endif /* FC_CAPABILITY */
641 if (FcPatternGetString (fontset
->fonts
[i
], FC_FILE
, 0, &file
)
644 otf
= OTF_open ((char *) file
);
647 if (OTF_check_features (otf
, 1,
648 otspec
->script_tag
, otspec
->langsys_tag
,
650 otspec
->nfeatures
[0]) != 1
651 || OTF_check_features (otf
, 0,
652 otspec
->script_tag
, otspec
->langsys_tag
,
654 otspec
->nfeatures
[1]) != 1)
657 #endif /* HAVE_LIBOTF */
658 entity
= ftfont_pattern_entity (fontset
->fonts
[i
], frame
, registry
);
660 val
= Fcons (entity
, val
);
662 val
= Fvconcat (1, &val
);
664 else if (! NILP (AREF (spec
, FONT_FAMILY_INDEX
)))
665 val
= ftfont_list_generic_family (spec
, frame
, registry
);
669 /* We come here because of unexpected error in fontconfig API call
670 (usually insufficient memory). */
674 if (charset
&& charset
!= cs_iso8859_1
) FcCharSetDestroy (charset
);
675 if (objset
) FcObjectSetDestroy (objset
);
676 if (fontset
) FcFontSetDestroy (fontset
);
677 if (langset
) FcLangSetDestroy (langset
);
678 if (pattern
) FcPatternDestroy (pattern
);
681 if (otspec
->nfeatures
[0] > 0)
682 free (otspec
->features
[0]);
683 if (otspec
->nfeatures
[1] > 0)
684 free (otspec
->features
[1]);
691 ftfont_match (frame
, spec
)
692 Lisp_Object frame
, spec
;
694 Lisp_Object extra
, val
, entity
;
695 FcPattern
*pattern
= NULL
, *match
= NULL
;
698 if (! fc_initialized
)
704 extra
= AREF (spec
, FONT_EXTRA_INDEX
);
705 val
= assq_no_quit (QCname
, extra
);
706 if (! CONSP (val
) || ! STRINGP (XCDR (val
)))
710 pattern
= FcNameParse (SDATA (XCDR (val
)));
713 if (FcConfigSubstitute (NULL
, pattern
, FcMatchPattern
) == FcTrue
)
715 FcDefaultSubstitute (pattern
);
716 match
= FcFontMatch (NULL
, pattern
, &result
);
719 entity
= ftfont_pattern_entity (match
, frame
, Qunicode_bmp
);
720 FcPatternDestroy (match
);
723 FcPatternDestroy (pattern
);
730 ftfont_list_family (frame
)
734 FcPattern
*pattern
= NULL
;
735 FcFontSet
*fontset
= NULL
;
736 FcObjectSet
*objset
= NULL
;
739 if (! fc_initialized
)
745 pattern
= FcPatternCreate ();
748 objset
= FcObjectSetBuild (FC_FAMILY
, NULL
);
751 fontset
= FcFontList (NULL
, pattern
, objset
);
756 for (i
= 0; i
< fontset
->nfont
; i
++)
758 FcPattern
*pat
= fontset
->fonts
[i
];
761 if (FcPatternGetString (pat
, FC_FAMILY
, 0, &str
) == FcResultMatch
)
762 list
= Fcons (intern_downcase ((char *) str
, strlen ((char *) str
)),
767 if (objset
) FcObjectSetDestroy (objset
);
768 if (fontset
) FcFontSetDestroy (fontset
);
769 if (pattern
) FcPatternDestroy (pattern
);
776 ftfont_free_entity (entity
)
779 Lisp_Object val
= AREF (entity
, FONT_EXTRA_INDEX
);
780 FcPattern
*pattern
= XSAVE_VALUE (val
)->pointer
;
782 FcPatternDestroy (pattern
);
786 ftfont_open (f
, entity
, pixel_size
)
791 struct ftfont_info
*ftfont_info
;
803 val
= AREF (entity
, FONT_EXTRA_INDEX
);
804 if (XTYPE (val
) != Lisp_Misc
805 || XMISCTYPE (val
) != Lisp_Misc_Save_Value
)
807 pattern
= XSAVE_VALUE (val
)->pointer
;
808 if (XSAVE_VALUE (val
)->integer
== 0)
810 /* We have not yet created FT_Face for this font. */
812 && FT_Init_FreeType (&ft_library
) != 0)
814 if (FcPatternGetString (pattern
, FC_FILE
, 0, &file
) != FcResultMatch
)
816 if (FT_New_Face (ft_library
, (char *) file
, 0, &ft_face
) != 0)
818 FcPatternAddFTFace (pattern
, FC_FT_FACE
, ft_face
);
819 ft_size
= ft_face
->size
;
823 if (FcPatternGetFTFace (pattern
, FC_FT_FACE
, 0, &ft_face
)
826 if (FT_New_Size (ft_face
, &ft_size
) != 0)
828 if (FT_Activate_Size (ft_size
) != 0)
830 FT_Done_Size (ft_size
);
835 size
= XINT (AREF (entity
, FONT_SIZE_INDEX
));
838 if (FT_Set_Pixel_Sizes (ft_face
, size
, size
) != 0)
840 if (XSAVE_VALUE (val
)->integer
== 0)
841 FT_Done_Face (ft_face
);
845 ftfont_info
= malloc (sizeof (struct ftfont_info
));
848 ftfont_info
->ft_size
= ft_size
;
850 ftfont_info
->maybe_otf
= ft_face
->face_flags
& FT_FACE_FLAG_SFNT
;
851 ftfont_info
->otf
= NULL
;
852 #endif /* HAVE_LIBOTF */
854 font
= (struct font
*) ftfont_info
;
855 font
->format
= ftfont_font_format (pattern
);
856 font
->entity
= entity
;
857 font
->pixel_size
= size
;
858 font
->driver
= &ftfont_driver
;
861 while (name
&& font_unparse_fcname (entity
, pixel_size
, name
, len
) < 0)
863 char *new = realloc (name
, len
+= 32);
869 font
->font
.full_name
= font
->font
.name
= name
;
870 font
->file_name
= (char *) file
;
871 font
->font
.size
= ft_face
->size
->metrics
.max_advance
>> 6;
872 if (font
->font
.size
<= 0)
873 font
->font
.size
= size
;
874 font
->font
.charset
= font
->encoding_charset
= font
->repertory_charset
= -1;
875 font
->ascent
= ft_face
->size
->metrics
.ascender
>> 6;
876 font
->descent
= - ft_face
->size
->metrics
.descender
>> 6;
877 font
->font
.height
= font
->ascent
+ font
->descent
;
878 if (FcPatternGetInteger (pattern
, FC_SPACING
, 0, &spacing
) != FcResultMatch
)
879 spacing
= FC_PROPORTIONAL
;
880 if (spacing
!= FC_PROPORTIONAL
)
881 font
->font
.average_width
= font
->font
.space_width
= font
->font
.size
;
886 font
->font
.average_width
= font
->font
.space_width
= 0;
887 for (i
= 32; i
< 127; i
++)
889 if (FT_Load_Char (ft_face
, i
, FT_LOAD_DEFAULT
) != 0)
892 font
->font
.space_width
= ft_face
->glyph
->metrics
.horiAdvance
>> 6;
893 font
->font
.average_width
+= ft_face
->glyph
->metrics
.horiAdvance
>> 6;
897 /* The font contains all ASCII printable characters. */
898 font
->font
.average_width
/= 95;
903 font
->font
.space_width
= font
->font
.size
;
904 font
->font
.average_width
= font
->font
.size
;
908 /* Unfortunately FreeType doesn't provide a way to get minimum char
909 width. So, we use space_width instead. */
910 font
->min_width
= font
->font
.space_width
;
912 font
->font
.baseline_offset
= 0;
913 font
->font
.relative_compose
= 0;
914 font
->font
.default_ascent
= 0;
915 font
->font
.vertical_centering
= 0;
917 (XSAVE_VALUE (val
)->integer
)++;
923 ftfont_close (f
, font
)
927 struct ftfont_info
*ftfont_info
= (struct ftfont_info
*) font
;
928 Lisp_Object entity
= font
->entity
;
929 Lisp_Object val
= AREF (entity
, FONT_EXTRA_INDEX
);
931 (XSAVE_VALUE (val
)->integer
)--;
932 if (XSAVE_VALUE (val
)->integer
== 0)
934 FT_Done_Face (ftfont_info
->ft_size
->face
);
936 if (ftfont_info
->otf
)
937 OTF_close (ftfont_info
->otf
);
941 FT_Done_Size (ftfont_info
->ft_size
);
947 ftfont_has_char (entity
, c
)
955 val
= AREF (entity
, FONT_EXTRA_INDEX
);
956 pattern
= XSAVE_VALUE (val
)->pointer
;
957 if (FcPatternGetCharSet (pattern
, FC_CHARSET
, 0, &charset
) != FcResultMatch
)
959 return (FcCharSetHasChar (charset
, (FcChar32
) c
) == FcTrue
);
963 ftfont_encode_char (font
, c
)
967 struct ftfont_info
*ftfont_info
= (struct ftfont_info
*) font
;
968 FT_Face ft_face
= ftfont_info
->ft_size
->face
;
969 FT_ULong charcode
= c
;
970 FT_UInt code
= FT_Get_Char_Index (ft_face
, charcode
);
972 return (code
> 0 ? code
: FONT_INVALID_CODE
);
976 ftfont_text_extents (font
, code
, nglyphs
, metrics
)
980 struct font_metrics
*metrics
;
982 struct ftfont_info
*ftfont_info
= (struct ftfont_info
*) font
;
983 FT_Face ft_face
= ftfont_info
->ft_size
->face
;
987 if (ftfont_info
->ft_size
!= ft_face
->size
)
988 FT_Activate_Size (ftfont_info
->ft_size
);
990 bzero (metrics
, sizeof (struct font_metrics
));
991 for (i
= 0; i
< nglyphs
; i
++)
993 if (FT_Load_Glyph (ft_face
, code
[i
], FT_LOAD_DEFAULT
) == 0)
995 FT_Glyph_Metrics
*m
= &ft_face
->glyph
->metrics
;
999 if (metrics
->lbearing
> width
+ (m
->horiBearingX
>> 6))
1000 metrics
->lbearing
= width
+ (m
->horiBearingX
>> 6);
1001 if (metrics
->rbearing
1002 < width
+ ((m
->horiBearingX
+ m
->width
) >> 6))
1004 = width
+ ((m
->horiBearingX
+ m
->width
) >> 6);
1005 if (metrics
->ascent
< (m
->horiBearingY
>> 6))
1006 metrics
->ascent
= m
->horiBearingY
>> 6;
1007 if (metrics
->descent
> ((m
->horiBearingY
+ m
->height
) >> 6))
1008 metrics
->descent
= (m
->horiBearingY
+ m
->height
) >> 6;
1010 width
+= m
->horiAdvance
>> 6;
1014 width
+= font
->font
.space_width
;
1018 metrics
->width
= width
;
1024 ftfont_get_bitmap (font
, code
, bitmap
, bits_per_pixel
)
1027 struct font_bitmap
*bitmap
;
1030 struct ftfont_info
*ftfont_info
= (struct ftfont_info
*) font
;
1031 FT_Face ft_face
= ftfont_info
->ft_size
->face
;
1032 FT_Int32 load_flags
= FT_LOAD_RENDER
;
1034 if (ftfont_info
->ft_size
!= ft_face
->size
)
1035 FT_Activate_Size (ftfont_info
->ft_size
);
1036 if (bits_per_pixel
== 1)
1038 #ifdef FT_LOAD_TARGET_MONO
1039 load_flags
|= FT_LOAD_TARGET_MONO
;
1041 load_flags
|= FT_LOAD_MONOCHROME
;
1044 else if (bits_per_pixel
!= 8)
1045 /* We don't support such a rendering. */
1048 if (FT_Load_Glyph (ft_face
, code
, load_flags
) != 0)
1050 bitmap
->bits_per_pixel
1051 = (ft_face
->glyph
->bitmap
.pixel_mode
== FT_PIXEL_MODE_MONO
? 1
1052 : ft_face
->glyph
->bitmap
.pixel_mode
== FT_PIXEL_MODE_GRAY
? 8
1053 : ft_face
->glyph
->bitmap
.pixel_mode
== FT_PIXEL_MODE_LCD
? 8
1054 : ft_face
->glyph
->bitmap
.pixel_mode
== FT_PIXEL_MODE_LCD_V
? 8
1056 if (bitmap
->bits_per_pixel
< 0)
1057 /* We don't suport that kind of pixel mode. */
1059 bitmap
->rows
= ft_face
->glyph
->bitmap
.rows
;
1060 bitmap
->width
= ft_face
->glyph
->bitmap
.width
;
1061 bitmap
->pitch
= ft_face
->glyph
->bitmap
.pitch
;
1062 bitmap
->buffer
= ft_face
->glyph
->bitmap
.buffer
;
1063 bitmap
->left
= ft_face
->glyph
->bitmap_left
;
1064 bitmap
->top
= ft_face
->glyph
->bitmap_top
;
1065 bitmap
->advance
= ft_face
->glyph
->metrics
.horiAdvance
>> 6;
1066 bitmap
->extra
= NULL
;
1072 ftfont_anchor_point (font
, code
, index
, x
, y
)
1078 struct ftfont_info
*ftfont_info
= (struct ftfont_info
*) font
;
1079 FT_Face ft_face
= ftfont_info
->ft_size
->face
;
1081 if (ftfont_info
->ft_size
!= ft_face
->size
)
1082 FT_Activate_Size (ftfont_info
->ft_size
);
1083 if (FT_Load_Glyph (ft_face
, code
, FT_LOAD_DEFAULT
) != 0)
1085 if (ft_face
->glyph
->format
!= FT_GLYPH_FORMAT_OUTLINE
)
1087 if (index
>= ft_face
->glyph
->outline
.n_points
)
1089 *x
= ft_face
->glyph
->outline
.points
[index
].x
;
1090 *y
= ft_face
->glyph
->outline
.points
[index
].y
;
1095 #ifdef HAVE_M17N_FLT
1106 ftfont_get_glyph_id (font
, gstring
, from
, to
)
1108 MFLTGlyphString
*gstring
;
1111 struct MFLTFontFT
*flt_font_ft
= (struct MFLTFontFT
*) font
;
1112 FT_Face ft_face
= flt_font_ft
->ft_face
;
1115 for (g
= gstring
->glyphs
+ from
; from
< to
; g
++, from
++)
1118 FT_UInt code
= FT_Get_Char_Index (ft_face
, g
->code
);
1120 g
->code
= code
> 0 ? code
: FONT_INVALID_CODE
;
1127 ftfont_get_metrics (font
, gstring
, from
, to
)
1129 MFLTGlyphString
*gstring
;
1132 struct MFLTFontFT
*flt_font_ft
= (struct MFLTFontFT
*) font
;
1133 FT_Face ft_face
= flt_font_ft
->ft_face
;
1136 for (g
= gstring
->glyphs
+ from
; from
< to
; g
++, from
++)
1139 if (g
->code
!= FONT_INVALID_CODE
)
1141 FT_Glyph_Metrics
*m
;
1143 if (FT_Load_Glyph (ft_face
, g
->code
, FT_LOAD_DEFAULT
) != 0)
1145 m
= &ft_face
->glyph
->metrics
;
1147 g
->lbearing
= m
->horiBearingX
;
1148 g
->rbearing
= m
->horiBearingX
+ m
->width
;
1149 g
->ascent
= m
->horiBearingY
;
1150 g
->descent
= m
->height
- m
->horiBearingY
;
1151 g
->xadv
= m
->horiAdvance
;
1156 g
->rbearing
= g
->xadv
= flt_font_ft
->font
->font
.space_width
<< 6;
1157 g
->ascent
= flt_font_ft
->font
->ascent
<< 6;
1158 g
->descent
= flt_font_ft
->font
->descent
<< 6;
1167 ftfont_check_otf (MFLTFont
*font
, MFLTOtfSpec
*spec
)
1169 struct MFLTFontFT
*flt_font_ft
= (struct MFLTFontFT
*) font
;
1170 OTF
*otf
= flt_font_ft
->otf
;
1174 for (i
= 0; i
< 2; i
++)
1176 if (! spec
->features
[i
])
1178 for (n
= 0; spec
->features
[i
][n
]; n
++);
1179 tags
= alloca (sizeof (OTF_Tag
) * n
);
1180 for (n
= 0, negative
= 0; spec
->features
[i
][n
]; n
++)
1182 if (spec
->features
[i
][n
] == 0xFFFFFFFF)
1185 tags
[n
- 1] = spec
->features
[i
][n
] | 0x80000000;
1187 tags
[n
] = spec
->features
[i
][n
];
1189 if (n
- negative
> 0
1190 && OTF_check_features (otf
, i
== 0, spec
->script
, spec
->langsys
,
1191 tags
, n
- negative
) != 1)
1197 #define DEVICE_DELTA(table, size) \
1198 (((size) >= (table).StartSize && (size) <= (table).EndSize) \
1199 ? (table).DeltaValue[(size) - (table).StartSize] << 6 \
1203 adjust_anchor (FT_Face ft_face
, OTF_Anchor
*anchor
,
1204 unsigned code
, int x_ppem
, int y_ppem
, int *x
, int *y
)
1206 if (anchor
->AnchorFormat
== 2)
1208 FT_Outline
*outline
;
1209 int ap
= anchor
->f
.f1
.AnchorPoint
;
1211 FT_Load_Glyph (ft_face
, (FT_UInt
) code
, FT_LOAD_MONOCHROME
);
1212 outline
= &ft_face
->glyph
->outline
;
1213 if (ap
< outline
->n_points
)
1215 *x
= outline
->points
[ap
].x
<< 6;
1216 *y
= outline
->points
[ap
].y
<< 6;
1219 else if (anchor
->AnchorFormat
== 3)
1221 if (anchor
->f
.f2
.XDeviceTable
.offset
)
1222 *x
+= DEVICE_DELTA (anchor
->f
.f2
.XDeviceTable
, x_ppem
);
1223 if (anchor
->f
.f2
.YDeviceTable
.offset
)
1224 *y
+= DEVICE_DELTA (anchor
->f
.f2
.YDeviceTable
, y_ppem
);
1228 static OTF_GlyphString otf_gstring
;
1231 ftfont_drive_otf (font
, spec
, in
, from
, to
, out
, adjustment
)
1234 MFLTGlyphString
*in
;
1236 MFLTGlyphString
*out
;
1237 MFLTGlyphAdjustment
*adjustment
;
1239 struct MFLTFontFT
*flt_font_ft
= (struct MFLTFontFT
*) font
;
1240 FT_Face ft_face
= flt_font_ft
->ft_face
;
1241 OTF
*otf
= flt_font_ft
->otf
;
1242 int len
= to
- from
;
1245 char script
[5], *langsys
= NULL
;
1246 char *gsub_features
= NULL
, *gpos_features
= NULL
;
1250 OTF_tag_name (spec
->script
, script
);
1253 langsys
= alloca (5);
1254 OTF_tag_name (spec
->langsys
, langsys
);
1256 for (i
= 0; i
< 2; i
++)
1260 if (spec
->features
[i
] && spec
->features
[i
][1] != 0xFFFFFFFF)
1262 for (j
= 0; spec
->features
[i
][j
]; j
++);
1264 p
= gsub_features
= alloca (6 * j
);
1266 p
= gpos_features
= alloca (6 * j
);
1267 for (j
= 0; spec
->features
[i
][j
]; j
++)
1269 if (spec
->features
[i
][j
] == 0xFFFFFFFF)
1270 *p
++ = '*', *p
++ = ',';
1273 OTF_tag_name (spec
->features
[i
][j
], p
);
1282 if (otf_gstring
.size
== 0)
1284 otf_gstring
.glyphs
= (OTF_Glyph
*) malloc (sizeof (OTF_Glyph
) * len
);
1285 otf_gstring
.size
= len
;
1287 else if (otf_gstring
.size
< len
)
1289 otf_gstring
.glyphs
= (OTF_Glyph
*) realloc (otf_gstring
.glyphs
,
1290 sizeof (OTF_Glyph
) * len
);
1291 otf_gstring
.size
= len
;
1293 otf_gstring
.used
= len
;
1294 memset (otf_gstring
.glyphs
, 0, sizeof (OTF_Glyph
) * len
);
1295 for (i
= 0; i
< len
; i
++)
1297 otf_gstring
.glyphs
[i
].c
= in
->glyphs
[from
+ i
].c
;
1298 otf_gstring
.glyphs
[i
].glyph_id
= in
->glyphs
[from
+ i
].code
;
1301 OTF_drive_gdef (otf
, &otf_gstring
);
1306 if (OTF_drive_gsub (otf
, &otf_gstring
, script
, langsys
, gsub_features
)
1309 if (out
->allocated
< out
->used
+ otf_gstring
.used
)
1311 for (i
= 0, otfg
= otf_gstring
.glyphs
; i
< otf_gstring
.used
; )
1315 int min_from
, max_to
;
1318 g
= out
->glyphs
+ out
->used
;
1319 *g
= in
->glyphs
[from
+ otfg
->f
.index
.from
];
1320 if (g
->code
!= otfg
->glyph_id
)
1323 g
->code
= otfg
->glyph_id
;
1329 if (otfg
->f
.index
.from
< otfg
->f
.index
.to
)
1331 /* OTFG substitutes multiple glyphs in IN. */
1332 for (j
= from
+ otfg
->f
.index
.from
+ 1;
1333 j
<= from
+ otfg
->f
.index
.to
; j
++)
1335 if (min_from
> in
->glyphs
[j
].from
)
1336 min_from
= in
->glyphs
[j
].from
;
1337 if (max_to
< in
->glyphs
[j
].to
)
1338 max_to
= in
->glyphs
[j
].to
;
1343 for (i
++, otfg
++; (i
< otf_gstring
.used
1344 && otfg
->f
.index
.from
== otfg
[-1].f
.index
.from
);
1347 g
= out
->glyphs
+ out
->used
;
1348 *g
= in
->glyphs
[from
+ otfg
->f
.index
.to
];
1349 if (g
->code
!= otfg
->glyph_id
)
1352 g
->code
= otfg
->glyph_id
;
1361 if (out
->allocated
< out
->used
+ len
)
1363 for (i
= 0; i
< len
; i
++)
1364 out
->glyphs
[out
->used
++] = in
->glyphs
[from
+ i
];
1369 MFLTGlyph
*base
= NULL
, *mark
= NULL
, *g
;
1370 int x_ppem
, y_ppem
, x_scale
, y_scale
;
1372 if (OTF_drive_gpos (otf
, &otf_gstring
, script
, langsys
, gpos_features
)
1376 x_ppem
= ft_face
->size
->metrics
.x_ppem
;
1377 y_ppem
= ft_face
->size
->metrics
.y_ppem
;
1378 x_scale
= ft_face
->size
->metrics
.x_scale
;
1379 y_scale
= ft_face
->size
->metrics
.y_scale
;
1381 for (i
= 0, otfg
= otf_gstring
.glyphs
, g
= out
->glyphs
+ gidx
;
1382 i
< otf_gstring
.used
; i
++, otfg
++, g
++)
1386 if (! otfg
->glyph_id
)
1388 switch (otfg
->positioning_type
)
1392 case 1: /* Single */
1395 int format
= otfg
->f
.f1
.format
;
1397 if (format
& OTF_XPlacement
)
1399 = otfg
->f
.f1
.value
->XPlacement
* x_scale
/ 0x10000;
1400 if (format
& OTF_XPlaDevice
)
1402 += DEVICE_DELTA (otfg
->f
.f1
.value
->XPlaDevice
, x_ppem
);
1403 if (format
& OTF_YPlacement
)
1405 = - (otfg
->f
.f1
.value
->YPlacement
* y_scale
/ 0x10000);
1406 if (format
& OTF_YPlaDevice
)
1408 -= DEVICE_DELTA (otfg
->f
.f1
.value
->YPlaDevice
, y_ppem
);
1409 if (format
& OTF_XAdvance
)
1411 += otfg
->f
.f1
.value
->XAdvance
* x_scale
/ 0x10000;
1412 if (format
& OTF_XAdvDevice
)
1414 += DEVICE_DELTA (otfg
->f
.f1
.value
->XAdvDevice
, x_ppem
);
1415 if (format
& OTF_YAdvance
)
1417 += otfg
->f
.f1
.value
->YAdvance
* y_scale
/ 0x10000;
1418 if (format
& OTF_YAdvDevice
)
1420 += DEVICE_DELTA (otfg
->f
.f1
.value
->YAdvDevice
, y_ppem
);
1421 adjustment
[i
].set
= 1;
1424 case 3: /* Cursive */
1425 /* Not yet supported. */
1427 case 4: /* Mark-to-Base */
1428 case 5: /* Mark-to-Ligature */
1432 goto label_adjust_anchor
;
1433 default: /* i.e. case 6 Mark-to-Mark */
1438 label_adjust_anchor
:
1440 int base_x
, base_y
, mark_x
, mark_y
;
1441 int this_from
, this_to
;
1443 base_x
= otfg
->f
.f4
.base_anchor
->XCoordinate
* x_scale
/ 0x10000;
1444 base_y
= otfg
->f
.f4
.base_anchor
->YCoordinate
* y_scale
/ 0x10000;
1445 mark_x
= otfg
->f
.f4
.mark_anchor
->XCoordinate
* x_scale
/ 0x10000;
1446 mark_y
= otfg
->f
.f4
.mark_anchor
->YCoordinate
* y_scale
/ 0x10000;;
1448 if (otfg
->f
.f4
.base_anchor
->AnchorFormat
!= 1)
1449 adjust_anchor (ft_face
, otfg
->f
.f4
.base_anchor
,
1450 prev
->code
, x_ppem
, y_ppem
, &base_x
, &base_y
);
1451 if (otfg
->f
.f4
.mark_anchor
->AnchorFormat
!= 1)
1452 adjust_anchor (ft_face
, otfg
->f
.f4
.mark_anchor
, g
->code
,
1453 x_ppem
, y_ppem
, &mark_x
, &mark_y
);
1454 adjustment
[i
].xoff
= (base_x
- mark_x
);
1455 adjustment
[i
].yoff
= - (base_y
- mark_y
);
1456 adjustment
[i
].back
= (g
- prev
);
1457 adjustment
[i
].xadv
= 0;
1458 adjustment
[i
].advance_is_absolute
= 1;
1459 adjustment
[i
].set
= 1;
1460 this_from
= g
->from
;
1462 for (j
= 0; prev
+ j
< g
; j
++)
1464 if (this_from
> prev
[j
].from
)
1465 this_from
= prev
[j
].from
;
1466 if (this_to
< prev
[j
].to
)
1467 this_to
= prev
[j
].to
;
1469 for (; prev
<= g
; prev
++)
1471 prev
->from
= this_from
;
1476 if (otfg
->GlyphClass
== OTF_GlyphClass0
)
1478 else if (otfg
->GlyphClass
== OTF_GlyphClassMark
)
1487 if (out
->allocated
< out
->used
+ len
)
1489 font
->get_metrics (font
, in
, from
, to
);
1490 memcpy (out
->glyphs
+ out
->used
, in
->glyphs
+ from
,
1491 sizeof (MFLTGlyph
) * len
);
1496 static MFLTGlyphString gstring
;
1498 static int m17n_flt_initialized
;
1500 extern Lisp_Object QCfamily
;
1503 ftfont_shape_by_flt (lgstring
, font
, ft_face
, otf
)
1504 Lisp_Object lgstring
;
1509 EMACS_UINT len
= LGSTRING_LENGTH (lgstring
);
1511 struct MFLTFontFT flt_font_ft
;
1513 if (! m17n_flt_initialized
)
1516 m17n_flt_initialized
= 1;
1519 for (i
= 0; i
< len
; i
++)
1520 if (NILP (LGSTRING_GLYPH (lgstring
, i
)))
1524 if (gstring
.allocated
== 0)
1526 gstring
.allocated
= len
* 2;
1527 gstring
.glyph_size
= sizeof (MFLTGlyph
);
1528 gstring
.glyphs
= malloc (sizeof (MFLTGlyph
) * gstring
.allocated
);
1530 else if (gstring
.allocated
< len
* 2)
1532 gstring
.allocated
= len
* 2;
1533 gstring
.glyphs
= realloc (gstring
.glyphs
,
1534 sizeof (MFLTGlyph
) * gstring
.allocated
);
1536 for (i
= 0; i
< len
; i
++)
1537 gstring
.glyphs
[i
].c
= LGLYPH_CHAR (LGSTRING_GLYPH (lgstring
, i
));
1542 Lisp_Object family
= Ffont_get (LGSTRING_FONT (lgstring
), QCfamily
);
1545 flt_font_ft
.flt_font
.family
= Mnil
;
1547 flt_font_ft
.flt_font
.family
= msymbol (SDATA (SYMBOL_NAME (family
)));
1549 flt_font_ft
.flt_font
.x_ppem
= ft_face
->size
->metrics
.x_ppem
;
1550 flt_font_ft
.flt_font
.y_ppem
= ft_face
->size
->metrics
.y_ppem
;
1551 flt_font_ft
.flt_font
.get_glyph_id
= ftfont_get_glyph_id
;
1552 flt_font_ft
.flt_font
.get_metrics
= ftfont_get_metrics
;
1553 flt_font_ft
.flt_font
.check_otf
= ftfont_check_otf
;
1554 flt_font_ft
.flt_font
.drive_otf
= ftfont_drive_otf
;
1555 flt_font_ft
.flt_font
.internal
= NULL
;
1556 flt_font_ft
.font
= font
;
1557 flt_font_ft
.ft_face
= ft_face
;
1558 flt_font_ft
.otf
= otf
;
1559 for (i
= 0; i
< 3; i
++)
1561 int result
= mflt_run (&gstring
, 0, len
, &flt_font_ft
.flt_font
, NULL
);
1564 gstring
.allocated
+= gstring
.allocated
;
1565 gstring
.glyphs
= realloc (gstring
.glyphs
,
1566 sizeof (MFLTGlyph
) * gstring
.allocated
);
1568 if (gstring
.used
> LGSTRING_LENGTH (lgstring
))
1570 for (i
= 0; i
< gstring
.used
; i
++)
1572 MFLTGlyph
*g
= gstring
.glyphs
+ i
;
1574 g
->from
= LGLYPH_FROM (LGSTRING_GLYPH (lgstring
, g
->from
));
1575 g
->to
= LGLYPH_TO (LGSTRING_GLYPH (lgstring
, g
->to
));
1578 for (i
= 0; i
< gstring
.used
; i
++)
1580 Lisp_Object lglyph
= LGSTRING_GLYPH (lgstring
, i
);
1581 MFLTGlyph
*g
= gstring
.glyphs
+ i
;
1585 lglyph
= Fmake_vector (make_number (LGLYPH_SIZE
), Qnil
);
1586 LGSTRING_SET_GLYPH (lgstring
, i
, lglyph
);
1588 LGLYPH_SET_FROM (lglyph
, g
->from
);
1589 LGLYPH_SET_TO (lglyph
, g
->to
);
1590 LGLYPH_SET_CHAR (lglyph
, g
->c
);
1591 LGLYPH_SET_CODE (lglyph
, g
->code
);
1592 LGLYPH_SET_WIDTH (lglyph
, g
->xadv
>> 6);
1593 LGLYPH_SET_LBEARING (lglyph
, g
->lbearing
>> 6);
1594 LGLYPH_SET_RBEARING (lglyph
, g
->rbearing
>> 6);
1595 LGLYPH_SET_ASCENT (lglyph
, g
->ascent
>> 6);
1596 LGLYPH_SET_DESCENT (lglyph
, g
->descent
>> 6);
1601 vec
= Fmake_vector (make_number (3), Qnil
);
1602 ASET (vec
, 0, make_number (g
->xoff
>> 6));
1603 ASET (vec
, 1, make_number (g
->yoff
>> 6));
1604 ASET (vec
, 2, make_number (g
->xadv
>> 6));
1605 LGLYPH_SET_ADJUSTMENT (lglyph
, vec
);
1608 return make_number (i
);
1612 ftfont_shape (lgstring
)
1613 Lisp_Object lgstring
;
1616 struct ftfont_info
*ftfont_info
;
1618 CHECK_FONT_GET_OBJECT (LGSTRING_FONT (lgstring
), font
);
1619 ftfont_info
= (struct ftfont_info
*) font
;
1620 if (! ftfont_info
->maybe_otf
)
1622 if (! ftfont_info
->otf
)
1624 OTF
*otf
= OTF_open_ft_face (ftfont_info
->ft_size
->face
);
1626 if (! otf
|| OTF_get_table (otf
, "head") < 0)
1630 ftfont_info
->maybe_otf
= 0;
1634 ftfont_info
->otf
= otf
;
1637 return ftfont_shape_by_flt (lgstring
, font
, ftfont_info
->ft_size
->face
,
1641 #endif /* HAVE_M17N_FLT */
1642 #endif /* HAVE_LIBOTF */
1645 ftfont_font_format (FcPattern
*pattern
)
1649 #ifdef FC_FONTFORMAT
1650 if (FcPatternGetString (pattern
, FC_FONTFORMAT
, 0, &str
) != FcResultMatch
)
1652 if (strcmp ((char *) str
, "TrueType") == 0)
1653 return intern ("truetype");
1654 if (strcmp ((char *) str
, "Type 1") == 0)
1655 return intern ("type1");
1656 if (strcmp ((char *) str
, "PCF") == 0)
1657 return intern ("pcf");
1658 if (strcmp ((char *) str
, "BDF") == 0)
1659 return intern ("bdf");
1660 #else /* not FC_FONTFORMAT */
1661 if (FcPatternGetString (pattern
, FC_FILE
, 0, &str
) != FcResultMatch
)
1663 if (strcasestr ((char *) str
, ".ttf") == 0)
1664 return intern ("truetype");
1665 if (strcasestr ((char *) str
, "pfb") == 0)
1666 return intern ("type1");
1667 if (strcasestr ((char *) str
, "pcf") == 0)
1668 return intern ("pcf");
1669 if (strcasestr ((char *) str
, "bdf") == 0)
1670 return intern ("bdf");
1671 #endif /* not FC_FONTFORMAT */
1672 return intern ("unknown");
1679 DEFSYM (Qfreetype
, "freetype");
1680 DEFSYM (Qmonospace
, "monospace");
1681 DEFSYM (Qsans_serif
, "sans-serif");
1682 DEFSYM (Qserif
, "serif");
1683 DEFSYM (Qmono
, "mono");
1684 DEFSYM (Qsans
, "sans");
1685 DEFSYM (Qsans__serif
, "sans serif");
1687 staticpro (&freetype_font_cache
);
1688 freetype_font_cache
= Fcons (Qt
, Qnil
);
1690 staticpro (&ftfont_generic_family_list
);
1691 ftfont_generic_family_list
1692 = Fcons (Fcons (Qmonospace
, Qt
),
1693 Fcons (Fcons (Qsans_serif
, Qt
),
1694 Fcons (Fcons (Qsans
, Qt
), Qnil
)));
1696 ftfont_driver
.type
= Qfreetype
;
1697 register_font_driver (&ftfont_driver
, NULL
);
1700 /* arch-tag: 7cfa432c-33a6-4988-83d2-a82ed8604aca
1701 (do not change this comment) */