]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/output-property-engraver.cc
release: 1.3.142
[lilypond.git] / lily / output-property-engraver.cc
index 9f0338afe3065b12c1c0c67221d9ae310bc14a45..7db91b877db2e37e23aa8d2de7d20e45df19f69e 100644 (file)
@@ -3,18 +3,18 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 2000--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #include "engraver.hh"
-#include "score-element.hh"
+#include "grob.hh"
 #include "output-property-music-iterator.hh"
 
 class Output_property_engraver : public Engraver
 {
 public:
-  VIRTUAL_COPY_CONS(Translator);
+  VIRTUAL_COPY_CONS (Translator);
 protected:
 
   /*
@@ -24,23 +24,23 @@ protected:
       \property Voice.outputProperties \push #pred = #modifier
 
       where both MODIFIER and PRED are functions taking a
-      score-element.
+      grob.
       
    */
 
   
   Link_array<Music> props_;
 
-  virtual void do_pre_move_processing ();
-  virtual void acknowledge_element (Score_element_info);
-  virtual bool do_try_music (Music*);
+  virtual void stop_translation_timestep ();
+  virtual void acknowledge_grob (Grob_info);
+  virtual bool try_music (Music*);
 };
 
 
 bool
-Output_property_engraver::do_try_music (Music* m)
+Output_property_engraver::try_music (Music* m)
 {
-  if (m->get_mus_property ("type") ==
+  if (m->get_mus_property ("iterator-ctor") ==
       Output_property_music_iterator::constructor_cxx_function)
     {
       props_.push (m);
@@ -50,9 +50,9 @@ Output_property_engraver::do_try_music (Music* m)
 }
 
 void
-Output_property_engraver::acknowledge_element (Score_element_info inf)
+Output_property_engraver::acknowledge_grob (Grob_info inf)
 {
-  for (int i=props_.size (); i--; )
+  for (int i=props_.size (); i--;)
     {
       Music * o = props_[i];
       SCM pred = o->get_mus_property ("predicate");
@@ -66,15 +66,15 @@ Output_property_engraver::acknowledge_element (Score_element_info inf)
        {
          SCM sym = o->get_mus_property ("symbol");
          SCM val = o->get_mus_property ("value");
-         inf.elem_l_->set_elt_property (sym, val);
+         inf.elem_l_->set_grob_property (sym, val);
        }
     }
 }
 
 void
-Output_property_engraver::do_pre_move_processing ()
+Output_property_engraver::stop_translation_timestep ()
 {
   props_.clear ();
 }
 
-ADD_THIS_TRANSLATOR(Output_property_engraver);
+ADD_THIS_TRANSLATOR (Output_property_engraver);