]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/metronome-engraver.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / metronome-engraver.cc
index 19049500b878f656ebc45f581c5de2ee61b02442..21eb711a24636c21f8c480c8238ead3397b5f8fa 100644 (file)
@@ -3,21 +3,22 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1998--2004 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1998--2006 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include <cctype>
+using namespace std;
+
+#include "engraver.hh"
 
 #include "note-column.hh"
-#include "bar-line.hh"
-#include "time-signature.hh"
-#include "engraver-group-engraver.hh"
 #include "context.hh"
+#include "grob-array.hh"
 
 /**
-  put stuff over or next to  bars.  Examples: bar numbers, marginal notes,
-  rehearsal marks.
- */
+   put stuff over or next to  bars.  Examples: bar numbers, marginal notes,
+   rehearsal marks.
+*/
 class Metronome_mark_engraver : public Engraver
 {
 public:
@@ -26,48 +27,46 @@ protected:
   Item *text_;
   Grob *bar_line_;
   Music *mark_ev_;
-  
-  void create_items (Music*);
+
+  void create_items (Music *);
 protected:
-  virtual void stop_translation_timestep ();
+  void stop_translation_timestep ();
   virtual bool try_music (Music *ev);
-  virtual void process_music ();
+  void process_music ();
 };
 
 Metronome_mark_engraver::Metronome_mark_engraver ()
 {
-  text_ =0;
+  text_ = 0;
   mark_ev_ = 0;
 }
 
-void 
+void
 Metronome_mark_engraver::stop_translation_timestep ()
 {
   if (text_)
     {
-      Grob*mc = unsmob_grob (get_property( "currentMusicalColumn"));
+      Grob *mc = unsmob_grob (get_property ("currentMusicalColumn"));
       text_->set_parent (mc, X_AXIS);
-      text_->set_property ("side-support-elements" , get_property ("stavesFound"));
-      
-      text_ =0;
+      text_->set_object ("side-support-elements",
+                        grob_list_to_grob_array (get_property ("stavesFound")));
+
+      text_ = 0;
     }
   mark_ev_ = 0;
 }
 
-
 void
 Metronome_mark_engraver::create_items (Music *rq)
 {
   if (text_)
     return;
 
-  text_ = make_item ("MetronomeMark", rq->self_scm () );
-
+  text_ = make_item ("MetronomeMark", rq->self_scm ());
 }
 
-
 bool
-Metronome_mark_engraver::try_music (Musicr)
+Metronome_mark_engraver::try_music (Music *r)
 {
   mark_ev_ = r;
   return true;
@@ -81,23 +80,22 @@ Metronome_mark_engraver::process_music ()
       create_items (mark_ev_);
 
       SCM proc = get_property ("metronomeMarkFormatter");
-      SCM result= scm_call_2 (proc, mark_ev_->self_scm (),
-                             context ()->self_scm ()); 
-      
+      SCM result = scm_call_2 (proc, mark_ev_->self_scm (),
+                              context ()->self_scm ());
+
       text_->set_property ("text", result);
     }
 }
 
-ENTER_DESCRIPTION (Metronome_mark_engraver,
-/* descr */       "Engrave metro nome marking. This delegates the formatting work "
-                  "to the function in the metronomeMarkFormatter property. "
-                  "The mark is put over all staves. "
-                  "The staves are taken from the @code{stavesFound} property, "
-                  "which is maintained by @code{@ref{Staff_collecting_engraver}}. "
-       
-                  ,
-/* creats*/       "MetronomeMark",
-/* accepts */     "metronome-change-event",
-                  /* acks  */       "",
-/* reads */       "stavesFound metronomeMarkFormatter",
-/* write */       "");
+#include "translator.icc"
+
+ADD_TRANSLATOR (Metronome_mark_engraver,
+               /* doc */ "Engrave metro nome marking. This delegates the formatting work "
+               "to the function in the metronomeMarkFormatter property. "
+               "The mark is put over all staves. "
+               "The staves are taken from the @code{stavesFound} property, "
+               "which is maintained by @code{@ref{Staff_collecting_engraver}}. ",
+               /* create */ "MetronomeMark",
+               /* accept */ "metronome-change-event",
+               /* read */ "stavesFound metronomeMarkFormatter",
+               /* write */ "");