]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/all-font-metrics.hh
Merge with master
[lilypond.git] / lily / include / all-font-metrics.hh
1 /*
2   all-fonts.hh -- declare All_font_metrics
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef ALL_FONTS_HH
10 #define ALL_FONTS_HH
11
12 #include "file-path.hh"
13 #include "font-metric.hh"
14 #include "config.hh"
15
16 #if HAVE_PANGO_FT2
17 #include <pango/pango.h>
18 #include <pango/pangoft2.h>
19 #endif
20
21
22 /*
23    Interface to all .afm files living in the filesystem.
24 */
25 class All_font_metrics
26 {
27   Scheme_hash_table *otf_dict_;
28   File_path search_path_;
29
30 #if HAVE_PANGO_FT2
31   PangoFT2FontMap *pango_ft2_fontmap_;
32   Scheme_hash_table *pango_dict_;
33   int pango_dpi_;
34 #endif
35
36   map<string, Index_to_charcode_map > filename_charcode_maps_map_;
37   
38   All_font_metrics (All_font_metrics const &);
39 public:
40
41   Index_to_charcode_map const *get_index_to_charcode_map (string filename, FT_Face face);
42
43   All_font_metrics (string search_path);
44   ~All_font_metrics ();
45
46   Pango_font *find_pango_font (PangoFontDescription const *description,
47                                Real scale);
48
49   Font_metric *find_font (string name);
50   Open_type_font *find_otf (string name);
51   SCM font_descriptions () const;
52 };
53
54 extern All_font_metrics *all_fonts_global;
55 SCM ly_reset_all_fonts ();
56
57 #endif /* ALL_FONTS_HH */
58