]> git.donarmstrong.com Git - lilypond.git/blob - lily/pitch-squash-engraver.cc
90a73ea0eccc577acd7ed76190e539323d02166e
[lilypond.git] / lily / pitch-squash-engraver.cc
1 /*   
2   pitch-squash-grav.cc --  implement Pitch_squash_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9 #include "staff-symbol-referencer.hh"
10 #include "note-head.hh"
11 #include "rhythmic-head.hh"
12 #include "engraver.hh"
13
14 class Pitch_squash_engraver : public Engraver {
15 public:
16   VIRTUAL_COPY_CONS (Translator);
17   virtual void acknowledge_element (Score_element_info);
18 };
19
20
21 void
22 Pitch_squash_engraver::acknowledge_element (Score_element_info i)
23 {
24   SCM newpos = get_property ("squashedPosition");
25   if (Note_head::has_interface (i.elem_l_))
26     {
27       i.elem_l_->set_elt_property ("staff-position", newpos);
28     }
29 }
30
31 ADD_THIS_TRANSLATOR (Pitch_squash_engraver);
32
33