X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscript-interface.cc;h=6db959113e846e182fb0d724956b8dc62a0ffa25;hb=b018b412f77e1fc4de334ae9cb0fc01e1721e355;hp=171ce8e51b3dfe79f27b0913862b220f805bbd60;hpb=545092a25d8ca41dc90b87482474b3719f7130a9;p=lilypond.git diff --git a/lily/script-interface.cc b/lily/script-interface.cc index 171ce8e51b..6db959113e 100644 --- a/lily/script-interface.cc +++ b/lily/script-interface.cc @@ -3,12 +3,13 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2005 Han-Wen Nienhuys + (c) 1999--2007 Han-Wen Nienhuys */ #include "script-interface.hh" #include "directional-element-interface.hh" +#include "item.hh" #include "warn.hh" #include "font-interface.hh" #include "side-position-interface.hh" @@ -41,6 +42,20 @@ Script_interface::get_stencil (Grob *me, Direction d) 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) @@ -54,16 +69,19 @@ 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)); + return scm_from_bool (stem && to_boolean (stem->get_property ("cross-staff"))); +} + MAKE_SCHEME_CALLBACK (Script_interface, print, 1); SCM @@ -78,10 +96,10 @@ Script_interface::print (SCM smob) struct Text_script { - static bool has_interface (Grob *); + DECLARE_GROB_INTERFACE (); }; -ADD_INTERFACE (Text_script, "text-script-interface", +ADD_INTERFACE (Text_script, "An object that is put above or below a note", /* properties */ @@ -94,10 +112,11 @@ ADD_INTERFACE (Text_script, "text-script-interface", /* Hmm. Where should we put add-stem-support ? */ -ADD_INTERFACE (Script_interface, "script-interface", +ADD_INTERFACE (Script_interface, "An object that is put above or below a note", "add-stem-support " "avoid-slur " + "positioning-done " "script-priority " "script-stencil " "slur "