X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=inline;f=lily%2Fdefault-bar-line-engraver.cc;h=f3d1d595057499d390e02fe72f76357d3f075816;hb=2bbacb364aa29041af9cbbbd32cfad2e8e387cb3;hp=5c87f7d7b5169ad8e60db2589b908263db243998;hpb=4bb29573149a0ffa1f881c5e38a0fe68e9e76b67;p=lilypond.git diff --git a/lily/default-bar-line-engraver.cc b/lily/default-bar-line-engraver.cc index 5c87f7d7b5..f3d1d59505 100644 --- a/lily/default-bar-line-engraver.cc +++ b/lily/default-bar-line-engraver.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1997--2011 Han-Wen Nienhuys + Copyright (C) 1997--2015 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -37,6 +37,12 @@ public: #include "translator.icc" +void +Default_bar_line_engraver::boot () +{ + +} + ADD_TRANSLATOR (Default_bar_line_engraver, /* doc */ "This engraver determines what kind of automatic bar lines" @@ -52,13 +58,15 @@ ADD_TRANSLATOR (Default_bar_line_engraver, "defaultBarType " "measureLength " "whichBar " - "measurePosition ", + "measurePosition " + "timing ", /* write */ - "automaticBars " + "" ); -Default_bar_line_engraver::Default_bar_line_engraver () +Default_bar_line_engraver::Default_bar_line_engraver (Context *c) + : Engraver (c) { last_moment_.main_part_ = Rational (-1); } @@ -76,7 +84,8 @@ Default_bar_line_engraver::start_translation_timestep () Moment mp = measure_position (context ()); bool start_of_measure = (last_moment_.main_part_ != now.main_part_ - && !mp.main_part_); + && !mp.main_part_ + && to_boolean (get_property ("timing"))); if (!scm_is_string (which) && to_boolean (automatic_bars)) {