2 timing-engraver.cc -- implement Default_bar_line_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
11 #include "multi-measure-rest.hh"
15 class Default_bar_line_engraver
: public Engraver
18 /* Need to know whether we're advancing in grace notes, or not. */
21 void start_translation_timestep ();
22 void stop_translation_timestep ();
25 TRANSLATOR_DECLARATIONS (Default_bar_line_engraver
);
28 #include "translator.icc"
30 ADD_TRANSLATOR (Default_bar_line_engraver
,
32 "This engraver determines what kind of automatic bar lines"
33 " should be produced, and sets @code{whichBar} accordingly."
34 " It should be at the same level as @ref{Timing_translator}.",
51 Default_bar_line_engraver::Default_bar_line_engraver ()
53 last_moment_
.main_part_
= Rational (-1);
57 Default_bar_line_engraver::start_translation_timestep ()
59 SCM automatic_bars
= get_property ("automaticBars");
60 Moment now
= now_mom ();
61 SCM which
= get_property ("whichBar");
63 /* Set the first bar of the score? */
64 if (!scm_is_string (which
))
67 Moment mp
= measure_position (context ());
68 bool start_of_measure
= (last_moment_
.main_part_
!= now
.main_part_
71 if (!scm_is_string (which
) && to_boolean (automatic_bars
))
73 SCM always
= get_property ("barAlways");
75 if ((start_of_measure
&& last_moment_
.main_part_
>= Moment (0))
76 || to_boolean (always
))
78 /* should this work, or be junked? See input/bugs/no-bars.ly */
79 which
= get_property ("defaultBarType");
83 context ()->set_property ("whichBar", which
);
87 Default_bar_line_engraver::stop_translation_timestep ()
89 context ()->set_property ("whichBar", SCM_EOL
);
90 last_moment_
= now_mom ();