]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/font-metric.hh
release: 1.3.20
[lilypond.git] / lily / include / font-metric.hh
1 /*   
2   font-metric.hh -- declare Font_metric
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef FONT_METRIC_HH
11 #define FONT_METRIC_HH
12
13 #include "box.hh"
14 #include "lily-guile.hh"
15 #include "smobs.hh"
16
17
18 struct Font_metric
19 {
20   Font_metric ();
21   SCM name_;
22   virtual SCM description () const;
23   virtual Box get_char (int ascii, bool warn) const;
24   virtual ~Font_metric ();
25   virtual Box text_dimension (String) const;
26
27   DECLARE_SMOBS;
28 private:
29   Font_metric (Font_metric const&); // no copy.
30 };
31
32
33 struct Scaled_font_metric : public Font_metric
34 {
35   Font_metric *orig_l_;
36   int magstep_i_;
37   
38   Scaled_font_metric (Font_metric*, int);
39   virtual SCM description () const;
40   virtual Box text_dimension (String) const;
41 };
42
43 Font_metric * unsmob_metrics (SCM s);
44
45
46 #endif /* FONT_METRIC_HH */
47