2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1997--2011 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 "span-bar.hh"
22 #include "font-interface.hh"
23 #include "dimensions.hh"
24 #include "output-def.hh"
27 #include "axis-group-interface.hh"
28 #include "bar-line.hh"
30 #include "pointer-group-interface.hh"
31 #include "staff-symbol-referencer.hh"
35 Span_bar::add_bar (Grob
*me
, Grob
*b
)
37 Pointer_group_interface::add_grob (me
, ly_symbol2scm ("elements"), b
);
40 MAKE_SCHEME_CALLBACK (Span_bar
, print
, 1);
44 (1) Elements from 'me->get_object ("elements")' must be
45 ordered according to their y coordinates relative to their common
46 axis group parent. Otherwise, the computation goes mad.
48 (2) This method depends on bar_engraver not being removed from
49 staff context. If bar_engraver is removed, the size of the staff
50 lines is evaluated as 0, which results in a solid span bar line
51 with faulty y coordinate. */
53 /* This routine was originally by Juergen Reuter, but it was a on the
54 bulky side. Rewritten by Han-Wen. */
56 Span_bar::print (SCM smobbed_me
)
58 Grob
*me
= unsmob_grob (smobbed_me
);
59 extract_grob_set (me
, "elements", elements
);
60 Grob
*refp
= common_refpoint_of_array (elements
, me
, Y_AXIS
);
62 SCM glyph
= me
->get_property ("glyph-name");
64 /* glyph may not be a string, when ME is killed by Hara Kiri in
66 if (!scm_is_string (glyph
))
69 string glyph_string
= ly_scm2string (glyph
);
71 /* compose span_bar_mol */
72 vector
<Interval
> extents
;
73 vector
<bool> make_span_bar
;
75 for (vsize i
= elements
.size (); i
--;)
77 Grob
*bar
= elements
[i
];
78 Interval ext
= Bar_line::bar_y_extent (bar
, refp
);
79 if (Grob
*staff
= Staff_symbol_referencer::get_staff_symbol (bar
))
80 ext
.unite (staff
->extent (refp
, Y_AXIS
));
84 extents
.push_back (ext
);
85 make_span_bar
.push_back (to_boolean (bar
->get_property ("allow-span-bar")));
92 vector_sort (extents
, Interval::left_less
);
95 for (vsize i
= 1; i
< extents
.size (); i
++)
97 Interval prev_extent
= extents
[i
- 1];
98 Interval ext
= extents
[i
];
99 if (!prev_extent
.is_empty ())
101 Interval
l (prev_extent
[UP
],
104 if (l
.is_empty () || !make_span_bar
[i
])
106 /* There is overlap between the bar lines. Do nothing. */
110 Stencil interbar
= Bar_line::compound_barline (model_bar
,
114 span_bar
.add_stencil (interbar
);
120 span_bar
.translate_axis (- me
->relative_coordinate (refp
, Y_AXIS
),
123 return span_bar
.smobbed_copy ();
126 MAKE_SCHEME_CALLBACK (Span_bar
, width
, 1);
128 Span_bar::width (SCM smob
)
130 Grob
*me
= unsmob_grob (smob
);
131 SCM gn
= me
->get_property ("glyph-name");
133 return ly_interval2scm (Interval ());
135 string gl
= ly_scm2string (gn
);
141 Bar_line::compound_barline (me
, gl
, Interval (-20 PT
, 20 PT
), false);
143 return ly_interval2scm (m
.extent (X_AXIS
));
146 MAKE_SCHEME_CALLBACK (Span_bar
, before_line_breaking
, 1);
148 Span_bar::before_line_breaking (SCM smob
)
150 Grob
*me
= unsmob_grob (smob
);
151 extract_grob_set (me
, "elements", elements
);
152 if (elements
.empty ())
155 return SCM_UNSPECIFIED
;
158 MAKE_SCHEME_CALLBACK (Span_bar
, center_on_spanned_callback
, 1);
161 Span_bar::center_on_spanned_callback (SCM smob
)
163 Grob
*me
= unsmob_grob (smob
);
164 Interval
i (get_spanned_interval (me
));
166 /* Bar_line::print delivers a barline of y-extent (-h/2, h/2), so
167 we have to translate ourselves to be in the center of the
168 interval that we span. */
172 return scm_from_double (0.0);
175 return scm_from_double (i
.center ());
180 MAKE_SCHEME_CALLBACK(Span_bar
, calc_glyph_name
, 1);
182 Span_bar::calc_glyph_name (SCM smob
)
184 Grob
*me
= unsmob_grob (smob
);
185 extract_grob_set (me
, "elements", elements
);
187 for (vsize i
= elements
.size ();
188 i
-- && !scm_is_string (gl
);)
189 gl
= elements
[i
]->get_property ("glyph-name");
191 if (!scm_is_string (gl
))
194 return SCM_UNSPECIFIED
;
197 string type
= ly_scm2string (gl
);
198 if (type
== "|:" || type
== "||:")
200 else if (type
== ":|")
202 else if (type
== ":|:")
204 else if (type
== ":|.|:")
206 else if (type
== ":|.:")
208 else if (type
== "S" || type
== "S|" || type
== "|S")
210 else if (type
== "S|:" || type
== ".S|:")
212 else if (type
== ":|S" || type
== ":|S.")
214 else if (type
== ":|S|:" || type
== ":|S.|:")
216 else if (type
== "'")
219 return ly_string2scm (type
);
223 Span_bar::get_spanned_interval (Grob
*me
)
225 return ly_scm2interval (Axis_group_interface::generic_group_extent (me
, Y_AXIS
));
228 ADD_INTERFACE (Span_bar
,
229 "A bar line that is spanned between other barlines. This"
230 " interface is used for bar lines that connect different"
237 "pure-relevant-grobs "
238 "pure-relevant-items "
239 "pure-relevant-spanners "