]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/output-property-engraver.cc
release: 1.5.29
[lilypond.git] / lily / output-property-engraver.cc
index 9f0338afe3065b12c1c0c67221d9ae310bc14a45..25c156f539ccb1d3626bfb0f262349e10d6f1deb 100644 (file)
@@ -3,18 +3,17 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 2000--2002 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);
+TRANSLATOR_DECLARATIONS(Output_property_engraver);
 protected:
 
   /*
@@ -24,23 +23,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 +49,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");
@@ -61,20 +60,30 @@ Output_property_engraver::acknowledge_element (Score_element_info inf)
        should typecheck pred. 
        */
       SCM result=gh_apply (pred,
-                          gh_list (inf.elem_l_->self_scm (), SCM_UNDEFINED));
+                          scm_list_n (inf.grob_l_->self_scm (), SCM_UNDEFINED));
       if (to_boolean (result))
        {
-         SCM sym = o->get_mus_property ("symbol");
-         SCM val = o->get_mus_property ("value");
-         inf.elem_l_->set_elt_property (sym, val);
+         SCM sym = o->get_mus_property ("grob-property");
+         SCM val = o->get_mus_property ("grob-value");
+         inf.grob_l_->internal_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);
+Output_property_engraver::Output_property_engraver()
+{
+}
+
+ENTER_DESCRIPTION(Output_property_engraver,
+/* descr */       "Interpret Music of Output_property type, and apply a function
+to any Graphic objects that satisfies the predicate.",
+/* creats*/       "",
+/* acks  */       "grob-interface",
+/* reads */       "",
+/* write */       "");