]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-metric-scheme.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / font-metric-scheme.cc
index 8ccb94dbc703ffb468bf7eee3ac2abc1d4797f83..bcb034174e6561ee1e7e840fe948bb303dffb3c6 100644 (file)
@@ -1,10 +1,9 @@
 /*
-  font-metric-scheme.cc --  implement Font_metric scheme bindings
+  font-metric-scheme.cc -- implement Font_metric scheme bindings
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
-
+  (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "stencil.hh"
@@ -13,7 +12,7 @@
 
 LY_DEFINE (ly_font_get_glyph, "ly:font-get-glyph",
           2, 0, 0,
-         (SCM font, SCM name),
+          (SCM font, SCM name),
           "Return a Stencil from @var{font} for the glyph named @var{name}.  "
           "@var{font} must be available as an AFM file.  If the glyph "
           "is not available, return @code{#f}.")
@@ -30,7 +29,7 @@ LY_DEFINE (ly_font_get_glyph, "ly:font-get-glyph",
 
 LY_DEFINE (ly_get_glyph, "ly:get-glyph",
           2, 0, 0,
-         (SCM font, SCM index),
+          (SCM font, SCM index),
           "Retrieve a Stencil for the glyph numbered @var{index} "
           "in @var{font}.")
 {
@@ -43,7 +42,7 @@ LY_DEFINE (ly_get_glyph, "ly:get-glyph",
 
 LY_DEFINE (ly_font_glyph_name_to_index, "ly:font-glyph-name-to-index",
           2, 0, 0,
-         (SCM font, SCM name),
+          (SCM font, SCM name),
           "Return the index for @var{name} in @var{font}.")
 {
   Font_metric *fm = unsmob_metrics (font);
@@ -55,7 +54,7 @@ LY_DEFINE (ly_font_glyph_name_to_index, "ly:font-glyph-name-to-index",
 
 LY_DEFINE (ly_font_index_to_charcode, "ly:font-index-to-charcode",
           2, 0, 0,
-         (SCM font, SCM index),
+          (SCM font, SCM index),
           "Return the character code for @var{index} @var{font}.")
 {
   Font_metric *fm = unsmob_metrics (font);
@@ -67,7 +66,7 @@ LY_DEFINE (ly_font_index_to_charcode, "ly:font-index-to-charcode",
 
 LY_DEFINE (ly_font_glyph_name_to_charcode, "ly:font-glyph-name-to-charcode",
           2, 0, 0,
-         (SCM font, SCM name),
+          (SCM font, SCM name),
           "Return the character code for glyph @var{name} in @var{font}.")
 {
   Font_metric *fm = unsmob_metrics (font);
@@ -82,15 +81,15 @@ LY_DEFINE (ly_font_glyph_name_to_charcode, "ly:font-glyph-name-to-charcode",
 
 LY_DEFINE (ly_text_dimension, "ly:text-dimension",
           2, 0, 0,
-         (SCM font, SCM text),
-         "Given the font metric in @var{font} and the string @var{text}, "
+          (SCM font, SCM text),
+          "Given the font metric in @var{font} and the string @var{text}, "
           "compute the extents of that text in that font.  "
           "The return value is a pair of number-pairs.")
 {
   Box b;
-  Modified_font_metric*fm = dynamic_cast<Modified_font_metric*>
+  Modified_font_metric *fm = dynamic_cast<Modified_font_metric *>
     (unsmob_metrics (font));
-  
+
   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "modified font metric");
   SCM_ASSERT_TYPE (scm_is_string (text), text, SCM_ARG2, __FUNCTION__, "string");
   Stencil stc (fm->text_stencil (ly_scm2string (text)));
@@ -106,10 +105,9 @@ LY_DEFINE (ly_font_file_name, "ly:font-file-name",
 {
   Font_metric *fm = unsmob_metrics (font);
   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
-  return fm->font_file_name();
+  return fm->font_file_name ();
 }
 
-
 LY_DEFINE (ly_font_name, "ly:font-name",
           1, 0, 0,
           (SCM font),
@@ -117,15 +115,15 @@ LY_DEFINE (ly_font_name, "ly:font-name",
           "return the corresponding name.")
 {
   Font_metric *fm = unsmob_metrics (font);
-      
+
   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
-  return scm_makfrom0str (fm->font_name().to_str0 ());
+  return scm_makfrom0str (fm->font_name ().c_str ());
 }
 
 LY_DEFINE (ly_font_magnification, "ly:font-magnification", 1, 0, 0,
-         (SCM font),
+          (SCM font),
           "Given the font metric @var{font}, return the "
-          "magnification, relative to the current outputscale.")
+          "magnification, relative to the current outputs-cale.")
 {
   Font_metric *fm = unsmob_metrics (font);
   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
@@ -133,12 +131,12 @@ LY_DEFINE (ly_font_magnification, "ly:font-magnification", 1, 0, 0,
 }
 
 LY_DEFINE (ly_font_design_size, "ly:font-design-size", 1, 0, 0,
-         (SCM font),
+          (SCM font),
           "Given the font metric @var{font}, return the "
-          "design size, relative to the current outputscale.")
+          "design size, relative to the current output-scale.")
 {
   Font_metric *fm = unsmob_metrics (font);
   SCM_ASSERT_TYPE (fm, font, SCM_ARG1, __FUNCTION__, "font-metric");
-  return scm_make_real (fm->design_size ());
+  return scm_from_double (fm->design_size ());
 }