X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fline-spanner.cc;h=f42628820e6e64b6a0ba019d93f0bf8666125472;hb=05b3ddf4bb419c41da16b4be853d823ee0d3a0ec;hp=028fe20e155d5db5ad46ec5624fa6baab3a2f406;hpb=ebe492ca408fb0d9abf80b94c56197eef8dc2f09;p=lilypond.git diff --git a/lily/line-spanner.cc b/lily/line-spanner.cc index 028fe20e15..f42628820e 100644 --- a/lily/line-spanner.cc +++ b/lily/line-spanner.cc @@ -21,6 +21,7 @@ #include "axis-group-interface.hh" #include "font-interface.hh" #include "grob-interface.hh" +#include "international.hh" #include "item.hh" #include "lily-proto.hh" #include "line-interface.hh" @@ -75,8 +76,7 @@ Line_spanner::calc_bound_info (SCM smob, Direction dir) ? ly_symbol2scm ("left-broken") : ly_symbol2scm ("right-broken"), bound_details, SCM_EOL); - for (SCM s = scm_reverse (extra); scm_is_pair (s); s = scm_cdr (s)) - details = scm_cons (scm_car (s), details); + details = scm_append (scm_list_2 (extra, details)); } if (details == SCM_BOOL_F) @@ -271,8 +271,7 @@ Line_spanner::print (SCM smob) Drul_array span_points; - Direction d = LEFT; - do + for (LEFT_and_RIGHT (d)) { Offset z (robust_scm2double (ly_assoc_get (ly_symbol2scm ("X"), bounds[d], SCM_BOOL_F), 0.0), @@ -281,7 +280,6 @@ Line_spanner::print (SCM smob) span_points[d] = z; } - while (flip (&d) != LEFT); Drul_array gaps (0, 0); Drul_array arrows (0, 0); @@ -292,7 +290,7 @@ Line_spanner::print (SCM smob) Real magstep = pow (2, robust_scm2double (me->get_property ("font-size"), 0.0) / 6); - do + for (LEFT_and_RIGHT (d)) { gaps[d] = robust_scm2double (ly_assoc_get (ly_symbol2scm ("padding"), bounds[d], SCM_BOOL_F), 0.0); @@ -305,15 +303,13 @@ Line_spanner::print (SCM smob) if (!common_y[d]) common_y[d] = me; } - while (flip (&d) != LEFT); Grob *my_common_y = common_y[LEFT]->common_refpoint (common_y[RIGHT], Y_AXIS); if (!simple_y) { - do + for (LEFT_and_RIGHT (d)) span_points[d][Y_AXIS] += common_y[d]->relative_coordinate (my_common_y, Y_AXIS); - while (flip (&d) != LEFT); } Interval normalized_endpoints = robust_scm2interval (me->get_property ("normalized-endpoints"), Interval (0, 1)); @@ -330,7 +326,7 @@ Line_spanner::print (SCM smob) } Stencil line; - do + for (LEFT_and_RIGHT (d)) { span_points[d] += -d * gaps[d] * magstep * dz.direction (); @@ -351,15 +347,13 @@ Line_spanner::print (SCM smob) line.add_stencil (s); } } - while (flip (&d) != LEFT); - do + for (LEFT_and_RIGHT (d)) { if (stencils[d]) span_points[d] += dz_dir * (stencils[d]->extent (X_AXIS)[-d] / dz_dir[X_AXIS]); } - while (flip (&d) != LEFT); Offset adjust = dz.direction () * Staff_symbol_referencer::staff_space (me); @@ -375,6 +369,8 @@ Line_spanner::print (SCM smob) arrows[LEFT], arrows[RIGHT])); } + else + me->warning (_ ("Line spanner's left point is to the right of its right point.")); line.translate (Offset (-me->relative_coordinate (commonx, X_AXIS), simple_y ? 0.0 : -me->relative_coordinate (my_common_y, Y_AXIS)));