* lexer-gcc-3.1.sh: Remove.
[lilypond/patrick.git] / lily / default-bar-line-engraver.cc
blob8d78a2c9484850f147f184ce4a89dca49fea307a
1 /*
2 timing-engraver.cc -- implement Default_bar_line_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2006 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 "This engraver determines what kind of automatic bar "
32 "lines should be produced, "
33 "and sets @code{whichBar} "
34 "accordingly. It should be at the same "
35 "level as @ref{Timing_translator}. ",
37 /* create */ "",
38 /* accept */ "",
40 /* read */
41 "automaticBars "
42 "barAlways "
43 "defaultBarType "
44 "measureLength "
45 "whichBar "
46 "measurePosition ",
48 /* write */ "automaticBars");
50 Default_bar_line_engraver::Default_bar_line_engraver ()
52 last_moment_.main_part_ = Rational (-1);
55 void
56 Default_bar_line_engraver::start_translation_timestep ()
58 SCM automatic_bars = get_property ("automaticBars");
59 Moment now = now_mom ();
60 SCM which = get_property ("whichBar");
62 /* Set the first bar of the score? */
63 if (!scm_is_string (which))
64 which = SCM_EOL;
66 Moment mp = measure_position (context ());
67 bool start_of_measure = (last_moment_.main_part_ != now.main_part_
68 && !mp.main_part_);
70 if (!scm_is_string (which) && to_boolean (automatic_bars))
72 SCM always = get_property ("barAlways");
74 if ((start_of_measure && last_moment_.main_part_ >= Moment (0))
75 || to_boolean (always))
77 /* should this work, or be junked? See input/bugs/no-bars.ly */
78 which = get_property ("defaultBarType");
82 context ()->set_property ("whichBar", which);
85 void
86 Default_bar_line_engraver::stop_translation_timestep ()
88 context ()->set_property ("whichBar", SCM_EOL);
89 last_moment_ = now_mom ();