X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscript-interface.cc;h=a1dfd85dc6e5afdf9fab6bb6f67555c300914f0a;hb=7b103ac5af05f78d6bb732611719e5be0b7c39d3;hp=6db959113e846e182fb0d724956b8dc62a0ffa25;hpb=9cf485743fe1f5f6e2de3d2c5e070b67055edeb7;p=lilypond.git diff --git a/lily/script-interface.cc b/lily/script-interface.cc index 6db959113e..a1dfd85dc6 100644 --- a/lily/script-interface.cc +++ b/lily/script-interface.cc @@ -1,9 +1,20 @@ /* - script-interface.cc -- implement Script_interface + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1999--2011 Han-Wen Nienhuys - (c) 1999--2007 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "script-interface.hh" @@ -33,9 +44,6 @@ 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); @@ -56,12 +64,28 @@ Script_interface::calc_positioning_done (SCM smob) return SCM_BOOL_T; } +Direction +Script_interface::get_direction (Grob *me) +{ + Direction relative_dir = Direction (1); + SCM reldir = me->get_property ("side-relative-direction"); + if (is_direction (reldir)) + relative_dir = to_dir (reldir); + + SCM other_elt = me->get_object ("direction-source"); + Grob *e = unsmob_grob (other_elt); + if (e) + return (Direction) (relative_dir * get_grob_direction (e)); + + return CENTER; +} + 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); + Direction d = Script_interface::get_direction (me); if (!d) { @@ -79,7 +103,18 @@ 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"))); + + 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); @@ -100,7 +135,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 " @@ -113,13 +148,18 @@ 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 " + "direction-source " "positioning-done " "script-priority " "script-stencil " + "side-relative-direction " "slur " "slur-padding " + "toward-stem-shift " );