X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscript-interface.cc;h=b965959d5df1f6226d27a55f370c7324e61b6192;hb=7802d89e1fbb1310b2801502293ece228b5dda66;hp=f2dcbea2c8d6ea0bb5925b71422deaeb80f414e6;hpb=58bcc84c9480dae1b21bc24d8396b91fe19e0131;p=lilypond.git diff --git a/lily/script-interface.cc b/lily/script-interface.cc index f2dcbea2c8..b965959d5d 100644 --- a/lily/script-interface.cc +++ b/lily/script-interface.cc @@ -3,12 +3,14 @@ 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 "script-interface.hh" #include "font-interface.hh" #include "side-position-interface.hh" #include "output-def.hh" @@ -40,30 +42,55 @@ Script_interface::get_stencil (Grob *me, Direction d) return Stencil (); } -MAKE_SCHEME_CALLBACK (Script_interface, before_line_breaking, 1); +MAKE_SCHEME_CALLBACK (Script_interface, calc_positioning_done, 1); SCM -Script_interface::before_line_breaking (SCM smob) +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) +{ + Grob *me = unsmob_grob (smob); Direction d = Side_position_interface::get_direction (me); if (!d) { - /* FIXME: This should never happen: `arbitrary' directions. */ - programming_error ("Script direction not yet known!"); + me->programming_error ("script direction not yet known"); d = DOWN; } - set_grob_direction (me, d); + (void) me->get_property ("positioning-done"); + return scm_from_int (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_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); @@ -73,28 +100,37 @@ Script_interface::print (SCM smob) { Grob *me = unsmob_grob (smob); - Direction dir = Side_position_interface::get_direction (me); - if (!dir) - { - programming_error ("Script direction not known, but stencil wanted."); - dir = DOWN; - } + Direction dir = get_grob_direction (me); + return get_stencil (me, dir).smobbed_copy (); } 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", - "add-stem-support slur script-priority inside-slur"); + + /* properties */ + "add-stem-support " + "avoid-slur " + "script-priority " + "slur " + ); /* 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 slur-padding slur script-priority script-stencil inside-slur"); + "add-stem-support " + "avoid-slur " + "positioning-done " + "script-priority " + "script-stencil " + "slur " + "slur-padding " + );