]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/all-font-metrics.hh
patch::: 1.3.99.jcn2
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef ALL_FONTS_HH
11 #define ALL_FONTS_HH
12
13 #include "file-path.hh"
14 #include "lily-proto.hh"
15 #include "font-metric.hh"
16
17 /**
18    Interface to all .afm files living in the filesystem.
19  */
20 class All_font_metrics
21 {
22   Scheme_hash_table *afm_p_dict_;
23   Scheme_hash_table *tfm_p_dict_;
24   Scheme_hash_table *scaled_p_dict_;
25   
26   File_path search_path_;
27 public:
28   ~All_font_metrics ();  
29   Adobe_font_metric *find_afm (String name);
30   Tex_font_metric *find_tfm (String);
31   Font_metric *find_font (String name);  
32   Scaled_font_metric* find_scaled (String , Real);
33   
34   All_font_metrics (String search_path);
35   
36   SCM font_descriptions () const;
37 };
38
39 Font_metric * find_font (String name);
40
41 #endif /* ALL_FONTS_HH */
42