]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-heads-engraver.cc
reformat prop list
[lilypond.git] / lily / note-heads-engraver.cc
index 93fb8feb4d620bc9946830809d2e70cf39ff1b44..6c065af4f6f50f9b44503ecc97203cb7d20c9f24 100644 (file)
@@ -14,6 +14,7 @@ using namespace std;
 #include "duration.hh"
 #include "item.hh"
 #include "output-def.hh"
+#include "pitch.hh"
 #include "rhythmic-head.hh"
 #include "staff-symbol-referencer.hh"
 #include "stream-event.hh"
@@ -24,7 +25,6 @@ using namespace std;
 class Note_heads_engraver : public Engraver
 {
   vector<Item*> notes_;
-  vector<Item*> dots_;
   vector<Stream_event*> note_evs_;
 
 public:
@@ -55,23 +55,6 @@ Note_heads_engraver::process_music ()
       Stream_event *ev = note_evs_[i];
       Item *note = make_item ("NoteHead", ev->self_scm ());
 
-      Duration dur = *unsmob_duration (ev->get_property ("duration"));
-
-      note->set_property ("duration-log", scm_from_int (dur.duration_log ()));
-      if (dur.dot_count ())
-       {
-         Item *d = make_item ("Dots", note->self_scm ());
-         Rhythmic_head::set_dots (note, d);
-
-         if (dur.dot_count ()
-             != robust_scm2int (d->get_property ("dot-count"), 0))
-           d->set_property ("dot-count", scm_from_int (dur.dot_count ()));
-
-         d->set_parent (note, Y_AXIS);
-
-         dots_.push_back (d);
-       }
-
       Pitch *pit = unsmob_pitch (ev->get_property ("pitch"));
 
 #if 0 /* TODO: should have a mechanism to switch off these warnings. */
@@ -116,16 +99,12 @@ void
 Note_heads_engraver::stop_translation_timestep ()
 {
   notes_.clear ();
-  dots_.clear ();
   note_evs_.clear ();
 }
 
 ADD_TRANSLATOR (Note_heads_engraver,
                /* doc */ "Generate noteheads.",
                /* create */
-               "NoteHead "
-               "Dots",
-               /* accept */
-               "note-event",
+               "NoteHead ",
                /* read */ "middleCPosition",
                /* write */ "");