X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flyric-hyphen.cc;h=2c3816d1d4f1ce69afa2e68ce240c36a2055408e;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=10e9c645802704036be052792db2d6d8611ec195;hpb=c5d52711febce78e3beff59d635cc7669aa1da2f;p=lilypond.git diff --git a/lily/lyric-hyphen.cc b/lily/lyric-hyphen.cc index 10e9c64580..2c3816d1d4 100644 --- a/lily/lyric-hyphen.cc +++ b/lily/lyric-hyphen.cc @@ -1,30 +1,36 @@ /* - hyphen-spanner.cc -- implement Hyphen_spanner + hyphen-spanner.cc -- implement Lyric_hyphen source file of the GNU LilyPond music typesetter - (c) 2003--2005 Han-Wen Nienhuys + (c) 2003--2008 Han-Wen Nienhuys */ #include "lyric-hyphen.hh" -#include #include "lookup.hh" #include "output-def.hh" #include "paper-column.hh" #include "moment.hh" +#include "spanner.hh" -MAKE_SCHEME_CALLBACK (Hyphen_spanner, print, 1) +/* + TODO: should extract hyphen dimensions or hyphen glyph from the + font. + */ + +MAKE_SCHEME_CALLBACK (Lyric_hyphen, print, 1); SCM -Hyphen_spanner::print (SCM smob) +Lyric_hyphen::print (SCM smob) { Spanner *me = unsmob_spanner (smob); Drul_array bounds (me->get_bound (LEFT), me->get_bound (RIGHT)); if (bounds[LEFT]->break_status_dir () - && Paper_column::when_mom (bounds[LEFT]) == Paper_column::when_mom (bounds[RIGHT]->get_column ())) + && (Paper_column::when_mom (bounds[LEFT]) + == Paper_column::when_mom (bounds[RIGHT]->get_column ()))) return SCM_EOL; Grob *common = bounds[LEFT]->common_refpoint (bounds[RIGHT], X_AXIS); @@ -35,40 +41,41 @@ Hyphen_spanner::print (SCM smob) do { Interval iv = bounds[d]->extent (common, X_AXIS); - + span_points[d] = iv.is_empty () ? bounds[d]->relative_coordinate (common, X_AXIS) : iv[-d]; } while (flip (&d) != LEFT); - Real lt = me->get_layout ()->get_dimension (ly_symbol2scm ("linethickness")); + Real lt = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness")); Real th = robust_scm2double (me->get_property ("thickness"), 1) * lt; - Real h = robust_scm2double (me->get_property ("height"), 0.5); + Real font_size_step = robust_scm2double (me->get_property ("font-size"), 0.0); + Real h = robust_scm2double (me->get_property ("height"), 0.5) + * pow (2.0, font_size_step / 6.0); // interval? Real dash_period = robust_scm2double (me->get_property ("dash-period"), 1.0); Real dash_length = robust_scm2double (me->get_property ("length"), .5); Real padding = robust_scm2double (me->get_property ("padding"), 0.1); - + if (dash_period < dash_length) dash_period = 1.5 * dash_length; - Real l = span_points.length (); int n = int (ceil (l / dash_period - 0.5)); if (n <= 0) n = 1; - if (l < dash_length + 2*padding + if (l < dash_length + 2 * padding && !bounds[RIGHT]->break_status_dir ()) { Real minimum_length = robust_scm2double (me->get_property ("minimum-length"), .3); - dash_length = (l - 2*padding) >? minimum_length; + dash_length = max ((l - 2 * padding), minimum_length); } - + Real space_left = l - dash_length - (n - 1) * dash_period; /* @@ -79,7 +86,7 @@ Hyphen_spanner::print (SCM smob) && !bounds[RIGHT]->break_status_dir ()) return SCM_EOL; - space_left = space_left >? 0.0; + space_left = max (space_left, 0.0); Box b (Interval (0, dash_length), Interval (h, h + th)); Stencil dash_mol (Lookup::round_filled_box (b, 0.8 * lt)); @@ -96,39 +103,43 @@ Hyphen_spanner::print (SCM smob) return total.smobbed_copy (); } -MAKE_SCHEME_CALLBACK (Hyphen_spanner, set_spacing_rods, 1); +MAKE_SCHEME_CALLBACK (Lyric_hyphen, set_spacing_rods, 1); SCM -Hyphen_spanner::set_spacing_rods (SCM smob) +Lyric_hyphen::set_spacing_rods (SCM smob) { Grob *me = unsmob_grob (smob); Rod r; Spanner *sp = dynamic_cast (me); - r.distance_ - = robust_scm2double (me->get_property ("minimum-length"), 0); - if (r.distance_ > 0.0) + r.distance_ = robust_scm2double (me->get_property ("minimum-distance"), 0); + Direction d = LEFT; + do { - Real padding = robust_scm2double (me->get_property ("padding"), 0.1); - r.distance_ += 2*padding; - Direction d = LEFT; - do - { - r.item_drul_[d] = sp->get_bound (d); - if (r.item_drul_[d]) - r.distance_ += r.item_drul_[d]->extent (r.item_drul_[d], X_AXIS)[-d]; - } - while (flip (&d) != LEFT); - - if (r.item_drul_[LEFT] - && r.item_drul_[RIGHT]) - r.add_to_cols (); + r.item_drul_[d] = sp->get_bound (d); + if (r.item_drul_[d]) + r.distance_ += -d * r.item_drul_[d]->extent (r.item_drul_[d], X_AXIS)[-d]; } - + while (flip (&d) != LEFT); + + if (r.item_drul_[LEFT] + && r.item_drul_[RIGHT]) + r.add_to_cols (); + return SCM_UNSPECIFIED; } -ADD_INTERFACE (Hyphen_spanner, "lyric-hyphen-interface", - "A centred hyphen is a simple line between lyrics used to divide syllables", - "padding thickness height dash-period minimum-length length"); +ADD_INTERFACE (Lyric_hyphen, + "A centered hyphen is simply a line between lyrics used to" + " divide syllables.", + + /* properties */ + "dash-period " + "height " + "length " + "minimum-distance " + "minimum-length " + "padding " + "thickness " + );