]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/all-font-metrics.hh
(Module): strip AFM handling completely.
[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--2005 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_PANGO16
17 #include <pango/pango.h>
18 #include <pango/pangoft2.h>
19 #endif
20
21 /**
22    Interface to all .afm files living in the filesystem.
23 */
24 class All_font_metrics
25 {
26   Scheme_hash_table *tfm_dict_;
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   All_font_metrics (All_font_metrics const &);
37 public:
38   All_font_metrics (String search_path);
39   ~All_font_metrics ();
40
41 #if HAVE_PANGO_FT2
42   Pango_font *find_pango_font (PangoFontDescription *description,
43                                Real magnification,
44                                Real scale);
45 #endif
46
47   Tex_font_metric *find_tfm (String);
48   Font_metric *find_font (String name);
49   Open_type_font *find_otf (String name);
50   SCM font_descriptions () const;
51 };
52
53 extern All_font_metrics *all_fonts_global;
54
55 #endif /* ALL_FONTS_HH */
56