X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flyric-extender.cc;h=bae1d9bbfe25c17fb8a37c31b609e71aa796c3fa;hb=ccb6254ee7726910f377d3882e638adda70f2342;hp=89f3eddf05ddf9891d88b4e4ee019a61a5c1fca9;hpb=c21d49df60cb97801ab33ab8a1bad6f2c81cd820;p=lilypond.git diff --git a/lily/lyric-extender.cc b/lily/lyric-extender.cc index 89f3eddf05..bae1d9bbfe 100644 --- a/lily/lyric-extender.cc +++ b/lily/lyric-extender.cc @@ -2,45 +2,93 @@ lyric-extender.cc -- implement Lyric_extender source file of the GNU LilyPond music typesetter - (c) 1998--2000 Jan Nieuwenhuizen + (c) 1998--2004 Jan Nieuwenhuizen Han-Wen Nienhuys */ -#include "dimension-cache.hh" +#include + #include "box.hh" -#include "debug.hh" +#include "warn.hh" #include "lookup.hh" -#include "molecule.hh" +#include "stencil.hh" #include "paper-column.hh" -#include "paper-def.hh" -#include "extender-spanner.hh" +#include "output-def.hh" +#include "lyric-extender.hh" +#include "note-head.hh" +#include "group-interface.hh" + -MAKE_SCHEME_SCORE_ELEMENT_CALLBACK(Lyric_extender,brew_molecule) +MAKE_SCHEME_CALLBACK (Lyric_extender, print, 1) SCM -Lyric_extender::brew_molecule (SCM smob) +Lyric_extender::print (SCM smob) { - Spanner *sp = dynamic_cast (unsmob_element (smob)); + Spanner *me = unsmob_spanner (smob); + Item *left_edge = me->get_bound (LEFT); + Item *right_text = unsmob_item (me->get_property ("next")); - Real leftext = sp->get_bound (LEFT)->extent (X_AXIS).length (); - Real ss = sp->paper_l ()->get_var ("staffspace"); - Real w = sp->spanner_length () - leftext - ss/2; + Grob *common = left_edge; + + if (right_text) + common = common->common_refpoint (right_text, X_AXIS); - Real h = sp->paper_l ()->get_var ("extender_height"); - Molecule mol (sp->lookup_l ()->filledbox ( Box (Interval (0,w), Interval (0,h)))); - mol.translate (Offset (leftext, 0)); - return mol.create_scheme(); -} + common = common->common_refpoint (me->get_bound (RIGHT), X_AXIS); + Real sl = me->get_paper ()->get_dimension (ly_symbol2scm ("linethickness")); + Link_array heads (Pointer_group_interface__extract_grobs (me, (Grob*)0, + "heads")); -void -Lyric_extender::set_textitem (Direction d, Item* textitem_l) -{ - elt_l_->set_bound (d, textitem_l); - elt_l_->add_dependency (textitem_l); -} + if (!heads.size ()) + return SCM_EOL; -Lyric_extender::Lyric_extender (Spanner*s) -{ - elt_l_ = s; + common = common_refpoint_of_array (heads, common, X_AXIS); + + Real left_point = 0.0; + if (left_edge->internal_has_interface (ly_symbol2scm ("lyric-syllable-interface"))) + left_point = left_edge->extent (common, X_AXIS)[RIGHT]; + else if (heads.size ()) + left_point = heads[0]->extent (common, X_AXIS)[LEFT]; + else + left_point = left_edge->extent (common, X_AXIS)[RIGHT]; + + if (isinf (left_point)) + return SCM_EOL; + + /* It seems that short extenders are even lengthened to go past the + note head, but haven't found a pattern in it yet. --hwn 1/1/04 */ + SCM minlen = me->get_property ("minimum-length"); + Real right_point + = left_point + (robust_scm2double (minlen, 0)); + + if (heads.size ()) + right_point = right_point >? heads.top ()->extent (common, X_AXIS)[RIGHT]; + + Real h = sl * robust_scm2double (me->get_property ("thickness"), 0); + Real pad = 2* h; + + if (right_text) + right_point = right_point ? (robust_relative_extent (me->get_bound (RIGHT), common, X_AXIS)[LEFT] - pad); + + left_point += pad; + + Real w = right_point - left_point; + + if (w < 1.5 * h) + return SCM_EOL; + + Stencil mol (Lookup::round_filled_box (Box (Interval (0, w), + Interval (0, h)), + 0.8 * h)); + mol.translate_axis (left_point - me->relative_coordinate (common, X_AXIS), + X_AXIS); + return mol.smobbed_copy (); } + +ADD_INTERFACE (Lyric_extender,"lyric-extender-interface", + "The extender is a simple line at the baseline of the lyric " + "that helps show the length of a melissima (tied/slurred note).", + "next thickness heads");