2 all-fonts.hh -- declare All_font_metrics
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
12 #include "file-path.hh"
13 #include "font-metric.hh"
17 #include <pango/pango.h>
18 #include <pango/pangoft2.h>
22 Interface to all .afm files living in the filesystem.
24 class All_font_metrics
26 Scheme_hash_table *otf_dict_;
27 File_path search_path_;
30 PangoFT2FontMap *pango_ft2_fontmap_;
31 Scheme_hash_table *pango_dict_;
35 All_font_metrics (All_font_metrics const &);
37 All_font_metrics (string search_path);
41 Pango_font *find_pango_font (PangoFontDescription *description,
46 Font_metric *find_font (string name);
47 Open_type_font *find_otf (string name);
48 SCM font_descriptions () const;
51 extern All_font_metrics *all_fonts_global;
53 #endif /* ALL_FONTS_HH */