lilypond-1.3.69
[lilypond.git] / lily / timing-engraver.cc
blob68c34aeff62d8ff416a98a32263da37e73c752e6
1 /*
2 timing-grav.cc -- implement Timing_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "score-engraver.hh"
10 #include "timing-engraver.hh"
11 #include "command-request.hh"
12 #include "score-element-info.hh"
13 #include "multi-measure-rest.hh"
15 ADD_THIS_TRANSLATOR(Timing_engraver);
17 void
18 Timing_engraver::do_post_move_processing( )
20 bar_req_l_ = 0;
21 Timing_translator::do_post_move_processing ();
25 bool
26 Timing_engraver::do_try_music (Music*m)
28 if (Bar_req * b= dynamic_cast <Bar_req *> (m))
30 if (bar_req_l_ && !bar_req_l_->equal_b (b)) // huh?
31 return false;
33 bar_req_l_ = b;
34 return true;
37 return Timing_translator::do_try_music (m);
41 TODO make properties of this.
43 String
44 Timing_engraver::which_bar ()
46 if (!bar_req_l_)
48 if (!now_mom ())
49 return "|";
51 SCM nonauto = get_property ("barNonAuto");
52 if (!to_boolean (nonauto))
54 SCM always = get_property ("barAlways");
55 if (!measure_position ()
56 || (to_boolean (always)))
58 SCM def=get_property ("defaultBarType" );
59 return (gh_string_p (def))? ly_scm2string (def) : "";
62 return "";
64 else
66 return bar_req_l_->type_str_;