]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/font-metric-scheme.cc
* flower
[lilypond.git] / lily / font-metric-scheme.cc
index fa1d9be03b9683ad16661939756071f6f8fcba87..6b7c606423662bba1ff131bbfeddaea8fb45f5c2 100644 (file)
@@ -4,7 +4,6 @@
   source file of the GNU LilyPond music typesetter
 
   (c) 2005 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,13 +115,13 @@ 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 ().to_str0 ());
 }
 
 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.")
 {
@@ -133,7 +131,7 @@ 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.")
 {