X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpiano-pedal-bracket.cc;h=b47e5e3b6deee146c2f20a51d49c05353064273d;hb=f127e14af04f474d20406ca0e0f76f05061ee103;hp=fee4c4b762637bf0b417de7880df1be1e96485f8;hpb=bb8a0a5387af94dd2702877256334b160575a730;p=lilypond.git diff --git a/lily/piano-pedal-bracket.cc b/lily/piano-pedal-bracket.cc index fee4c4b762..b47e5e3b6d 100644 --- a/lily/piano-pedal-bracket.cc +++ b/lily/piano-pedal-bracket.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2003--2011 Han-Wen Nienhuys + Copyright (C) 2003--2015 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 @@ -21,18 +21,18 @@ #include "spanner.hh" #include "item.hh" #include "tuplet-bracket.hh" +#include "axis-group-interface.hh" struct Piano_pedal_bracket { DECLARE_SCHEME_CALLBACK (print, (SCM)); - DECLARE_GROB_INTERFACE (); }; MAKE_SCHEME_CALLBACK (Piano_pedal_bracket, print, 1); SCM Piano_pedal_bracket::print (SCM smob) { - Spanner *me = dynamic_cast (unsmob_grob (smob)); + Spanner *me = unsmob (smob); Spanner *orig = dynamic_cast (me->original ()); Drul_array broken (false, false); @@ -45,14 +45,13 @@ Piano_pedal_bracket::print (SCM smob) Grob *common = me->get_bound (LEFT) ->common_refpoint (me->get_bound (RIGHT), X_AXIS); - Grob *textbit = unsmob_grob (me->get_object ("pedal-text")); + Grob *textbit = unsmob (me->get_object ("pedal-text")); if (textbit) common = common->common_refpoint (textbit, X_AXIS); Interval span_points (0, 0); - Direction d = LEFT; - do + for (LEFT_and_RIGHT (d)) { Item *b = me->get_bound (d); broken[d] = b->break_status_dir () != CENTER; @@ -65,12 +64,13 @@ Piano_pedal_bracket::print (SCM smob) height[d] = 0.0; else flare[d] = 0.0; - } - Interval ext = robust_relative_extent (b, common, X_AXIS); - span_points[d] = ext [broken[d] ? RIGHT : LEFT]; + span_points[d] + = Axis_group_interface::generic_bound_extent (b, common, X_AXIS)[RIGHT]; + } + else + span_points[d] = b->relative_coordinate (common, X_AXIS); } - while (flip (&d) != LEFT); /* For 'Mixed' style pedals, i.e. a bracket preceded by text: Ped._____| need to shorten by the extent of the text grob