2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2003--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "lyric-hyphen.hh"
22 #include "axis-group-interface.hh"
24 #include "output-def.hh"
25 #include "paper-column.hh"
30 TODO: should extract hyphen dimensions or hyphen glyph from the
34 MAKE_SCHEME_CALLBACK (Lyric_hyphen, print, 1);
36 Lyric_hyphen::print (SCM smob)
38 Spanner *me = unsmob_spanner (smob);
39 Drul_array<Item *> bounds (me->get_bound (LEFT),
40 me->get_bound (RIGHT));
42 if (bounds[LEFT]->break_status_dir ()
43 && (Paper_column::when_mom (bounds[LEFT])
44 == Paper_column::when_mom (bounds[RIGHT]->get_column ())))
47 Grob *common = bounds[LEFT]->common_refpoint (bounds[RIGHT], X_AXIS);
50 for (LEFT_and_RIGHT (d))
52 Interval iv = Axis_group_interface::generic_bound_extent (bounds[d], common, X_AXIS);
54 span_points[d] = iv.is_empty ()
55 ? bounds[d]->relative_coordinate (common, X_AXIS)
59 Real lt = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
60 Real th = robust_scm2double (me->get_property ("thickness"), 1) * lt;
61 Real font_size_step = robust_scm2double (me->get_property ("font-size"), 0.0);
62 Real h = robust_scm2double (me->get_property ("height"), 0.5)
63 * pow (2.0, font_size_step / 6.0);
67 Real dash_period = robust_scm2double (me->get_property ("dash-period"), 1.0);
68 Real dash_length = robust_scm2double (me->get_property ("length"), .5);
69 Real padding = robust_scm2double (me->get_property ("padding"), 0.1);
71 if (dash_period < dash_length)
72 dash_period = 1.5 * dash_length;
74 Real l = span_points.length ();
76 int n = int (ceil (l / dash_period - 0.5));
80 if (l < dash_length + 2 * padding
81 && !bounds[RIGHT]->break_status_dir ())
83 Real minimum_length = robust_scm2double (me->get_property ("minimum-length"), .3);
84 dash_length = max ((l - 2 * padding), minimum_length);
87 Real space_left = l - dash_length - (n - 1) * dash_period;
90 If there is not enough space, the hyphen should disappear, but not
91 at the end of the line.
94 && !bounds[RIGHT]->break_status_dir ())
97 space_left = max (space_left, 0.0);
99 Box b (Interval (0, dash_length), Interval (h, h + th));
100 Stencil dash_mol (Lookup::round_filled_box (b, 0.8 * lt));
103 for (int i = 0; i < n; i++)
105 Stencil m (dash_mol);
106 m.translate_axis (span_points[LEFT] + i * dash_period + space_left / 2, X_AXIS);
107 total.add_stencil (m);
110 total.translate_axis (-me->relative_coordinate (common, X_AXIS), X_AXIS);
111 return total.smobbed_copy ();
114 MAKE_SCHEME_CALLBACK (Lyric_hyphen, set_spacing_rods, 1);
116 Lyric_hyphen::set_spacing_rods (SCM smob)
118 Grob *me = unsmob_grob (smob);
121 Spanner *sp = dynamic_cast<Spanner *> (me);
123 r.distance_ = robust_scm2double (me->get_property ("minimum-distance"), 0);
124 for (LEFT_and_RIGHT (d))
126 r.item_drul_[d] = sp->get_bound (d);
128 r.distance_ += -d * r.item_drul_[d]->extent (r.item_drul_[d], X_AXIS)[-d];
131 if (r.item_drul_[LEFT]
132 && r.item_drul_[RIGHT])
135 return SCM_UNSPECIFIED;
138 ADD_INTERFACE (Lyric_hyphen,
139 "A centered hyphen is simply a line between lyrics used to"
140 " divide syllables.",