X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpiano-pedal-bracket.cc;h=89a97fb4e33102e288512ff3b282d6db634afc7e;hb=32a34dcef0c0041c6d62677487a380b5c8b85712;hp=40ebbaef7df5a7b638286cff96f2b10a8c654086;hpb=f41973ff763d5972a85995b6d40c864281ec6714;p=lilypond.git diff --git a/lily/piano-pedal-bracket.cc b/lily/piano-pedal-bracket.cc index 40ebbaef7d..89a97fb4e3 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--2012 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,6 +21,7 @@ #include "spanner.hh" #include "item.hh" #include "tuplet-bracket.hh" +#include "axis-group-interface.hh" struct Piano_pedal_bracket { @@ -37,40 +38,40 @@ Piano_pedal_bracket::print (SCM smob) Drul_array broken (false, false); Drul_array height = robust_scm2drul - (me->get_property ("edge-height"), Interval (0, 0)); + (me->get_property ("edge-height"), Interval (0, 0)); Drul_array shorten = robust_scm2drul - (me->get_property ("shorten-pair"), Interval (0, 0)); + (me->get_property ("shorten-pair"), Interval (0, 0)); Drul_array flare = robust_scm2drul - (me->get_property ("bracket-flare"), Interval (0, 0)); + (me->get_property ("bracket-flare"), Interval (0, 0)); Grob *common = me->get_bound (LEFT) - ->common_refpoint (me->get_bound (RIGHT), X_AXIS); + ->common_refpoint (me->get_bound (RIGHT), X_AXIS); Grob *textbit = unsmob_grob (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; if (broken[d]) - { - if (orig - && ((d == RIGHT - && me->get_break_index () != orig->broken_intos_.size () - 1) - || (d == LEFT && me->get_break_index ()))) - 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]; + { + if (orig + && ((d == RIGHT + && me->get_break_index () != orig->broken_intos_.size () - 1) + || (d == LEFT && me->get_break_index ()))) + height[d] = 0.0; + else + flare[d] = 0.0; + + 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 @@ -82,7 +83,7 @@ Piano_pedal_bracket::print (SCM smob) Real padding = robust_scm2double (me->get_property ("bound-padding"), 0); span_points[LEFT] = padding - + robust_relative_extent (textbit, common, X_AXIS)[RIGHT]; + + robust_relative_extent (textbit, common, X_AXIS)[RIGHT]; } Stencil m; @@ -90,24 +91,24 @@ Piano_pedal_bracket::print (SCM smob) && span_points.length () > 0.001) { m = Tuplet_bracket::make_bracket (me, Y_AXIS, - Offset (span_points.length (), 0), - height, - Interval (), - flare, shorten); + Offset (span_points.length (), 0), + height, + Interval (), + flare, shorten); } m.translate_axis (span_points[LEFT] - - me->relative_coordinate (common, X_AXIS), X_AXIS); + - me->relative_coordinate (common, X_AXIS), X_AXIS); return m.smobbed_copy (); } ADD_INTERFACE (Piano_pedal_bracket, - "The bracket of the piano pedal. It can be tuned through" - " the regular bracket properties.", - - /* properties */ - "bound-padding " - "edge-height " - "shorten-pair " - "bracket-flare " - "pedal-text " - ); + "The bracket of the piano pedal. It can be tuned through" + " the regular bracket properties.", + + /* properties */ + "bound-padding " + "edge-height " + "shorten-pair " + "bracket-flare " + "pedal-text " + );