]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-engraver.cc
* lily/engraver-group-engraver.cc (do_announces): rename
[lilypond.git] / lily / lyric-engraver.cc
index 929ebf819172910baca6953dfaa9a7ccee5af495..dca8de3e89f845d47d898a5a091f97b189064a4f 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -23,19 +23,17 @@ class Lyric_engraver : public Engraver
 protected:
   virtual void stop_translation_timestep ();
   virtual bool try_music (Music *);
-  virtual void create_grobs ();
+  virtual void process_acknowledged_grobs ();
   virtual void start_translation_timestep ();
   
 public:
-  Lyric_engraver ();
-  VIRTUAL_COPY_CONS (Translator);
-
+  TRANSLATOR_DECLARATIONS(Lyric_engraver);
 private:
   Lyric_req * req_l_;
   Item* text_p_;
 };
 
-ADD_THIS_TRANSLATOR (Lyric_engraver);
+
 
 
 Lyric_engraver::Lyric_engraver ()
@@ -58,7 +56,7 @@ Lyric_engraver::try_music (Music*r)
 }
 
 void
-Lyric_engraver::create_grobs ()
+Lyric_engraver::process_acknowledged_grobs ()
 {
   if (req_l_)
     {
@@ -75,7 +73,7 @@ Lyric_engraver::create_grobs ()
       
       text_p_->translate_axis (0.66, X_AXIS);
       
-      announce_grob (text_p_, req_l_);
+      announce_grob(text_p_, req_l_->self_scm());
       req_l_ = 0;
     }
 }
@@ -97,3 +95,9 @@ Lyric_engraver::start_translation_timestep ()
 }
 
 
+ENTER_DESCRIPTION(Lyric_engraver,
+/* descr */       "",
+/* creats*/       "",
+/* acks  */       "",
+/* reads */       "",
+/* write */       "");