]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script-interface.cc
* scripts/lilypond-book.py (LATEX_DOCUMENT): More or less ugly
[lilypond.git] / lily / script-interface.cc
index c82b30c4be4acbc7b28cd2b961929420d1c125a7..b6a17251efff27e59d6f767fc0d75256c1ed2227 100644 (file)
@@ -1,11 +1,10 @@
-/*   
-  script-interface.cc --  implement Script_interface
-  
+/*
+  script-interface.cc -- implement Script_interface
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
+
+  (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
 
 #include "directional-element-interface.hh"
 #include "warn.hh"
@@ -30,7 +29,7 @@ Script_interface::get_stencil (Grob *me, Direction d)
       SCM str = ((scm_is_pair (name_entry)) ? index_get_cell (name_entry, d)
                 : name_entry);
       return Font_interface::get_default_font (me)
-       ->find_by_name ("scripts-" + ly_scm2string (str));
+       ->find_by_name ("scripts." + ly_scm2string (str));
     }
   else if (key == ly_symbol2scm ("accordion"))
     return Lookup::accordion (scm_cdr (s), 1.0,
@@ -52,7 +51,7 @@ Script_interface::before_line_breaking (SCM smob)
   if (!d)
     {
       /* FIXME: This should never happen: `arbitrary' directions.  */
-      programming_error ("Script direction not yet known!");
+      programming_error ("script direction not yet known");
       d = DOWN;
     }
 
@@ -77,7 +76,7 @@ Script_interface::print (SCM smob)
   Direction dir = Side_position_interface::get_direction (me);
   if (!dir)
     {
-      programming_error ("Script direction not known, but stencil wanted.");
+      programming_error ("script direction unknown, but stencil wanted");
       dir = DOWN;
     }
   return get_stencil (me, dir).smobbed_copy ();
@@ -85,18 +84,17 @@ Script_interface::print (SCM smob)
 
 struct Text_script
 {
-  static bool has_interface (Grob*);
+  static bool has_interface (Grob *);
 };
 
-ADD_INTERFACE (Text_script,"text-script-interface",
-  "An object that is put above or below a note",
-  "add-stem-support slur script-priority inside-slur");
-
+ADD_INTERFACE (Text_script, "text-script-interface",
+              "An object that is put above or below a note",
+              "add-stem-support slur script-priority inside-slur");
 
 /*
   Hmm. Where should we put add-stem-support ?
- */
+*/
 ADD_INTERFACE (Script_interface, "script-interface",
-  "An object that is put above or below a note",
-  "add-stem-support slur-padding slur script-priority script-stencil inside-slur");
+              "An object that is put above or below a note",
+              "add-stem-support slur-padding slur script-priority script-stencil inside-slur");