]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/scaled-font-metric.hh
2003 -> 2004
[lilypond.git] / lily / include / scaled-font-metric.hh
index 0535df0fc2768560845071096b7d13e570935345..2b27d71b4ded48624180204db56391828ecf97e8 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -20,11 +20,14 @@ struct Scaled_font_metric : public Font_metric
   virtual Box text_dimension (String) const;
   virtual Molecule find_by_name (String) const;
   static SCM make_scaled_font_metric (Font_metric*, Real);
-
+  virtual int count () const;
+  virtual Offset get_indexed_wxwy (int) const;
+  virtual int name_to_index (String) const;
 protected:
-  virtual   Box get_char (int)const;
-  Font_metric *orig_l_;
-  Real magnification_f_;
+  virtual Box get_indexed_char (int)const;
+  virtual Box get_ascii_char (int)const;
+  Font_metric *orig_;
+  Real magnification_;
   
   Scaled_font_metric (Font_metric*,Real);
 };