2 font-config.cc -- implement FontConfig related functions
4 source file of the GNU LilyPond music typesetter
6 (c) 2005--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
13 #include <fontconfig/fontconfig.h>
16 #include "file-path.hh"
17 #include "international.hh"
22 FcConfig
*font_config_global
= 0;
27 if (be_verbose_global
)
28 message (_ ("Initializing FontConfig..."));
30 font_config_global
= FcInitLoadConfig ();
31 FcChar8
*cache_file
= FcConfigGetCache (font_config_global
);
34 // always returns 0 for FC 2.4
36 programming_error ("Cannot find file for FontConfig cache.");
39 This is a terrible kludge, but there is apparently no way for
40 FontConfig to signal whether it needs to rescan directories.
43 && !is_file ((char const *)cache_file
))
44 message (_f ("Rebuilding FontConfig cache %s, this may take a while...", cache_file
));
48 /* Extra trailing slash suddenly breaks fontconfig (fc-cache 2.5.0)
50 dirs
.push_back (lilypond_datadir
+ "/fonts/otf");
51 dirs
.push_back (lilypond_datadir
+ "/fonts/type1");
53 for (vsize i
= 0; i
< dirs
.size (); i
++)
56 if (!FcConfigAppFontAddDir (font_config_global
, (FcChar8
*)dir
.c_str ()))
57 error (_f ("failed adding font directory: %s", dir
.c_str ()));
58 else if (be_verbose_global
)
59 message (_f ("adding font directory: %s", dir
.c_str ()));
62 if (be_verbose_global
)
63 progress_indication ("Building font database.\n");
64 FcConfigBuildFonts (font_config_global
);
65 FcConfigSetCurrent (font_config_global
);
66 if (be_verbose_global
)
67 progress_indication ("\n");
70 && !is_file ((char*)cache_file
))
72 /* inhibit future messages. */
73 FILE *f
= fopen ((char*)cache_file
, "w");