]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/afm.hh
release: 1.3.55
[lilypond.git] / lily / include / afm.hh
1
2 /*   
3   afm.hh -- declare Adobe_font_metric
4   
5   source file of the GNU LilyPond music typesetter
6   
7   (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8   
9  */
10
11 #ifndef AFM_HH
12 #define AFM_HH
13
14 #include "string.hh"
15 #include "box.hh"
16 #include "array.hh"
17 #include "dictionary.hh"
18 #include "font-metric.hh"
19 #include "parse-afm.hh"
20
21 struct Adobe_font_metric : Font_metric {
22   AFM_Font_info * font_inf_;
23
24   Array<int> ascii_to_metric_idx_;
25   Dictionary<int> name_to_metric_dict_;
26
27   Box get_char (int, bool) const;
28   AFM_CharMetricInfo const *find_char_metric (String name, bool warn=true) const;
29   AFM_CharMetricInfo const *find_ascii_metric (int, bool warn=true) const;  
30
31   String str () const;
32   Adobe_font_metric (AFM_Font_info*);
33   ~Adobe_font_metric ();
34 };
35
36 Adobe_font_metric * read_afm_file (String fn);
37 Box afm_bbox_to_box (AFM_BBox bb);
38   
39
40 #endif /* AFM_HH */
41