X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fbeam-performer.cc;h=0998ef3220d9e0c43adad8d230c42e3ef6c96748;hb=9f3572d98bb948c9689cd1f75401a029451fa001;hp=ba0135f1d093741258641109e052ec3fc4d0673b;hpb=04265f11d1f21416ccebd2dcaa1d903dc781b36e;p=lilypond.git diff --git a/lily/beam-performer.cc b/lily/beam-performer.cc index ba0135f1d0..0998ef3220 100644 --- a/lily/beam-performer.cc +++ b/lily/beam-performer.cc @@ -10,8 +10,8 @@ #include "audio-item.hh" #include "audio-column.hh" #include "global-context.hh" -#include "stream-event.hh" #include "warn.hh" +#include "music.hh" #include "translator.icc" @@ -21,13 +21,13 @@ public: TRANSLATOR_DECLARATIONS (Beam_performer); protected: + virtual bool try_music (Music *ev); void start_translation_timestep (); void process_music (); void set_melisma (bool); - DECLARE_TRANSLATOR_LISTENER (beam); private: - Stream_event *start_ev_; - Stream_event *now_stop_ev_; + Music *start_ev_; + Music *now_stop_ev_; bool beam_; }; @@ -69,16 +69,20 @@ Beam_performer::start_translation_timestep () now_stop_ev_ = 0; } -IMPLEMENT_TRANSLATOR_LISTENER (Beam_performer, beam); -void -Beam_performer::listen_beam (Stream_event *ev) +bool +Beam_performer::try_music (Music *m) { - Direction d = to_dir (ev->get_property ("span-direction")); + if (m->is_mus_type ("beam-event")) + { + Direction d = to_dir (m->get_property ("span-direction")); - if (d == START) - start_ev_ = ev; - else if (d == STOP) - now_stop_ev_ = ev; + if (d == START) + start_ev_ = m; + else if (d == STOP) + now_stop_ev_ = m; + return true; + } + return false; } ADD_TRANSLATOR (Beam_performer, "", "",