X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fhairpin.cc;h=6a98e55bf9bd4b3964787b4b0267220e366febcd;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=891baf0e0cad504dd06ca15b5909b24cc0a02dee;hpb=73e2023b7c9073c1745e3f23471c55a5dff8c250;p=lilypond.git diff --git a/lily/hairpin.cc b/lily/hairpin.cc index 891baf0e0c..6a98e55bf9 100644 --- a/lily/hairpin.cc +++ b/lily/hairpin.cc @@ -3,22 +3,21 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2006 Han-Wen Nienhuys + (c) 1997--2008 Han-Wen Nienhuys */ #include "hairpin.hh" #include "dimensions.hh" -#include "font-interface.hh" #include "international.hh" #include "line-interface.hh" -#include "lookup.hh" #include "output-def.hh" #include "paper-column.hh" #include "pointer-group-interface.hh" #include "spanner.hh" #include "staff-symbol-referencer.hh" #include "text-interface.hh" +#include "note-column.hh" #include "warn.hh" MAKE_SCHEME_CALLBACK (Hairpin, after_line_breaking, 1); @@ -48,7 +47,6 @@ Hairpin::consider_suicide (Spanner*me) && ly_is_equal (bounds[RIGHT]->get_column ()->get_property ("when"), bounds[LEFT]->get_property ("when"))) me->suicide (); - } MAKE_SCHEME_CALLBACK (Hairpin, print, 1); @@ -167,7 +165,12 @@ Hairpin::print (SCM smob) } else { - x_points[d] = e[d]; + if (Note_column::has_interface (b) + && Note_column::has_rests (b)) + x_points[d] = e[-d]; + else + x_points[d] = e[d]; + Item *bound = me->get_bound (d); if (bound->is_non_musical (bound)) x_points[d] -= d * padding; @@ -203,7 +206,6 @@ Hairpin::print (SCM smob) /* should do relative to staff-symbol staff-space? */ - Stencil mol; Real x = 0.0; @@ -232,7 +234,7 @@ Hairpin::print (SCM smob) Box extent (Interval (-rad, rad), Interval (-rad, rad)); /* Hmmm, perhaps we should have a Lookup::circle () method? */ - Stencil circle(extent, + Stencil circle (extent, scm_list_4 (ly_symbol2scm ("circle"), scm_from_double (rad), scm_from_double (thick), @@ -242,7 +244,7 @@ Hairpin::print (SCM smob) don't add another circle the hairpin is broken */ if (!broken[tip_dir]) - mol.add_at_edge (X_AXIS, tip_dir, Stencil (circle), 0, 0); + mol.add_at_edge (X_AXIS, tip_dir, Stencil (circle), 0); } mol.translate_axis (x_points[LEFT] @@ -251,10 +253,10 @@ Hairpin::print (SCM smob) return mol.smobbed_copy (); } -ADD_INTERFACE (Hairpin, "hairpin-interface", - "A hairpin crescendo/decrescendo.", +ADD_INTERFACE (Hairpin, + "A hairpin crescendo or decrescendo.", - /* props */ + /* properties */ "adjacent-hairpins " "circled-tip " "bound-padding "