Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / lily / default-bar-line-engraver.cc
blobf36c18f68717dc7c77ca31a5513fd8278ca5aa71
1 /*
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>
7 */
9 #include "engraver.hh"
10 #include "context.hh"
11 #include "multi-measure-rest.hh"
12 #include "grob.hh"
13 #include "warn.hh"
15 class Default_bar_line_engraver : public Engraver
17 protected:
18 /* Need to know whether we're advancing in grace notes, or not. */
19 Moment last_moment_;
21 void start_translation_timestep ();
22 void stop_translation_timestep ();
24 public:
25 TRANSLATOR_DECLARATIONS (Default_bar_line_engraver);
28 #include "translator.icc"
30 ADD_TRANSLATOR (Default_bar_line_engraver,
31 /* doc */
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}.",
36 /* create */
37 "",
39 /* read */
40 "automaticBars "
41 "barAlways "
42 "defaultBarType "
43 "measureLength "
44 "whichBar "
45 "measurePosition ",
47 /* write */
48 "automaticBars "
51 Default_bar_line_engraver::Default_bar_line_engraver ()
53 last_moment_.main_part_ = Rational (-1);
56 void
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))
65 which = SCM_EOL;
67 Moment mp = measure_position (context ());
68 bool start_of_measure = (last_moment_.main_part_ != now.main_part_
69 && !mp.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);
86 void
87 Default_bar_line_engraver::stop_translation_timestep ()
89 context ()->set_property ("whichBar", SCM_EOL);
90 last_moment_ = now_mom ();