]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/time-signature-engraver.cc
Run `make grand-replace'.
[lilypond.git] / lily / time-signature-engraver.cc
index 78f795eaedf4c41a6419dbbcf4733b673aff56fa..ec4ff28efc58ea7e8bc2dcb216b7d21b233fc08a 100644 (file)
@@ -3,11 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "engraver-group.hh"
 
+#include "item.hh"
 #include "international.hh"
 #include "misc.hh"
 #include "time-signature.hh"
@@ -61,13 +62,18 @@ Time_signature_engraver::process_music ()
            OTOH, Tristan Keuris writes 8/20 in his Intermezzi.
          */
          warning (_f ("strange time signature found: %d/%d",
-                      den,
-                      int (scm_to_int (scm_car (fr)))));
+                      int (scm_to_int (scm_car (fr))),
+                      den));
        }
 
-      last_time_fraction_ = fr;
       time_signature_ = make_item ("TimeSignature", SCM_EOL);
       time_signature_->set_property ("fraction", fr);
+
+      if (last_time_fraction_ == SCM_BOOL_F)
+       time_signature_->set_property ("break-visibility",
+                                      get_property ("implicitTimeSignatureVisibility"));
+      
+      last_time_fraction_ = fr;
     }
 }
 
@@ -80,7 +86,17 @@ Time_signature_engraver::stop_translation_timestep ()
 #include "translator.icc"
 
 ADD_TRANSLATOR (Time_signature_engraver,
-               /* doc */ "Create a TimeSignature whenever @code{timeSignatureFraction} changes",
-               /* create */ "TimeSignature",
-               /* read */ "",
-               /* write */ "");
+               /* doc */
+               "Create a @ref{TimeSignature} whenever"
+               " @code{timeSignatureFraction} changes.",
+
+               /* create */
+               "TimeSignature ",
+               
+               /* read */
+               "implicitTimeSignatureVisibility "
+               "timeSignatureFraction ",
+
+               /* write */
+               ""
+               );