X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscript-interface.cc;h=59737b5ac49ff9ec84a0a6c3cf9f264ec82b9c5b;hb=0e5d83a9ceb4a143f83d22406d7eb816314ff9f7;hp=ff77193f179def3ba646fcdb507993a7036cf942;hpb=00e3e15364b9d3c94cda1bcab9f889bb95f6832d;p=lilypond.git diff --git a/lily/script-interface.cc b/lily/script-interface.cc index ff77193f17..59737b5ac4 100644 --- a/lily/script-interface.cc +++ b/lily/script-interface.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2007 Han-Wen Nienhuys + (c) 1999--2009 Han-Wen Nienhuys */ #include "script-interface.hh" @@ -33,15 +33,26 @@ Script_interface::get_stencil (Grob *me, Direction d) return Font_interface::get_default_font (me) ->find_by_name ("scripts." + ly_scm2string (str)); } - else if (key == ly_symbol2scm ("accordion")) - return Lookup::accordion (scm_cdr (s), 1.0, - Font_interface::get_default_font (me)); else assert (false); return Stencil (); } +MAKE_SCHEME_CALLBACK (Script_interface, calc_positioning_done, 1); +SCM +Script_interface::calc_positioning_done (SCM smob) +{ + Grob *me = unsmob_grob (smob); + 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_BOOL_T; +} + MAKE_SCHEME_CALLBACK (Script_interface, calc_direction, 1); SCM Script_interface::calc_direction (SCM smob) @@ -55,16 +66,30 @@ Script_interface::calc_direction (SCM smob) d = DOWN; } - 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); - } - + (void) me->get_property ("positioning-done"); return scm_from_int (d); } +MAKE_SCHEME_CALLBACK (Script_interface, calc_cross_staff, 1); +SCM +Script_interface::calc_cross_staff (SCM smob) +{ + Grob *me = unsmob_grob (smob); + Grob *stem = Note_column::get_stem (me->get_parent (X_AXIS)); + + if (stem && to_boolean (stem->get_property ("cross-staff"))) + return SCM_BOOL_T; + + Grob *slur = unsmob_grob (me->get_object ("slur")); + SCM avoid_slur = me->get_property ("avoid-slur"); + if (slur && to_boolean (slur->get_property ("cross-staff")) + && (avoid_slur == ly_symbol2scm ("outside") + || avoid_slur == ly_symbol2scm ("around"))) + return SCM_BOOL_T; + + return SCM_BOOL_F; +} + MAKE_SCHEME_CALLBACK (Script_interface, print, 1); SCM @@ -83,7 +108,7 @@ struct Text_script }; ADD_INTERFACE (Text_script, - "An object that is put above or below a note", + "An object that is put above or below a note.", /* properties */ "add-stem-support " @@ -96,11 +121,15 @@ ADD_INTERFACE (Text_script, Hmm. Where should we put add-stem-support ? */ ADD_INTERFACE (Script_interface, - "An object that is put above or below a note", + "An object that is put above or below a note.", + + /* properties */ "add-stem-support " "avoid-slur " + "positioning-done " "script-priority " "script-stencil " + "toward-stem-shift " "slur " "slur-padding " );