]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/script.cc
Compile fix.
[lilypond.git] / lily / script.cc
index 63afc99f95ce74cddc7476d77de2497075c187df..7a8630dd7c0485de154cc68bcd4cd5f9d4931a33 100644 (file)
@@ -1,5 +1,5 @@
 /*   
-  script.cc --  implement Script
+  script.cc --  implement Script_interface
   
   source file of the GNU LilyPond music typesetter
   
@@ -7,7 +7,7 @@
   
  */
 
-#include "debug.hh"
+#include "warn.hh"
 #include "script.hh"
 #include "font-interface.hh"
 #include "side-position-interface.hh"
 #include "item.hh"
 #include "molecule.hh"
 #include "lookup.hh"
+#include "stem.hh"
+#include "note-column.hh"
 
 Molecule
-Script::get_molecule (Grob * me, Direction d)
+Script_interface::get_molecule (Grob * me, Direction d)
 {
   SCM s = me->get_grob_property ("script-molecule");
   assert (gh_pair_p (s));
@@ -26,7 +28,7 @@ Script::get_molecule (Grob * me, Direction d)
   if (key == ly_symbol2scm ("feta"))
     {
       return Font_interface::get_default_font (me)->find_by_name ("scripts-" +
-                                   ly_scm2string (index_cell (ly_cdr (s), d)));
+                                   ly_scm2string (index_get_cell (ly_cdr (s), d)));
     }
   else if (key == ly_symbol2scm ("accordion"))
     {
@@ -38,9 +40,9 @@ Script::get_molecule (Grob * me, Direction d)
   return Molecule ();
 }
 
-MAKE_SCHEME_CALLBACK (Script,before_line_breaking,1);
+MAKE_SCHEME_CALLBACK (Script_interface,before_line_breaking,1);
 SCM
-Script::before_line_breaking (SCM smob)
+Script_interface::before_line_breaking (SCM smob)
 {
   Grob * me = unsmob_grob (smob);
 
@@ -48,23 +50,32 @@ Script::before_line_breaking (SCM smob)
 
   if (!d)
     {
-  /*
-    we should not have `arbitrary' directions. 
-   */
+      /*
+       we should not have `arbitrary' directions. 
+      */
       programming_error ("Script direction not yet known!");
       d = DOWN;
     }
   
   Side_position_interface::set_direction (me,d);
 
+  if (Grob * par = me->get_parent (X_AXIS))
+    {
+      Grob * stem = Note_column::get_stem (par);
+      if (stem && Stem::first_head (stem))
+       {
+         me->set_parent (Stem::first_head (stem), X_AXIS);
+       }
+    }
+  
   return SCM_UNSPECIFIED;
 }
 
 
-MAKE_SCHEME_CALLBACK (Script,brew_molecule,1);
+MAKE_SCHEME_CALLBACK (Script_interface,brew_molecule,1);
 
 SCM
-Script::brew_molecule (SCM smob)
+Script_interface::brew_molecule (SCM smob)
 {
   Grob *me= unsmob_grob (smob);
 
@@ -94,7 +105,7 @@ ADD_INTERFACE (Text_script,"text-script-interface",
   "Any text script",
   "script-priority");
 
-ADD_INTERFACE (Skript, "script-interface",
+ADD_INTERFACE (Script_interface, "script-interface",
   "",
   "script-priority script-molecule staff-support");