X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fspan-arpeggio-engraver.cc;h=8495a2f5fecb594beb2942e07d3a26cd5d509dfd;hb=4f4012093e8da9a9be01221b2acfe656ba3812ad;hp=4fd4f1a68e7b43f0903fc6c81fe9aa4213c00acb;hpb=b02bb98ffea2c376ba67eb049b8ba6b04d76e084;p=lilypond.git diff --git a/lily/span-arpeggio-engraver.cc b/lily/span-arpeggio-engraver.cc index 4fd4f1a68e..8495a2f5fe 100644 --- a/lily/span-arpeggio-engraver.cc +++ b/lily/span-arpeggio-engraver.cc @@ -3,30 +3,29 @@ source file of the GNU LilyPond music typesetter - (c) 2000--2002 Jan Nieuwenhuizen + (c) 2000--2005 Jan Nieuwenhuizen + + Han-Wen Nienhuys */ #include "engraver.hh" -#include "lily-guile.hh" -#include "item.hh" #include "arpeggio.hh" #include "group-interface.hh" #include "side-position-interface.hh" #include "staff-symbol-referencer.hh" - -/** - Make arpeggios that span multiple staves. Catch arpeggios, and span a - Span_arpeggio over them if we find more than two arpeggios. - */ +/** + Make arpeggios that span multiple staves. Catch arpeggios, and span a + Span_arpeggio over them if we find more than two arpeggios. +*/ class Span_arpeggio_engraver : public Engraver { public: - TRANSLATOR_DECLARATIONS(Span_arpeggio_engraver); - + TRANSLATOR_DECLARATIONS (Span_arpeggio_engraver); + protected: virtual void acknowledge_grob (Grob_info); - virtual void create_grobs (); + virtual void process_acknowledged_grobs (); virtual void stop_translation_timestep (); private: @@ -34,7 +33,6 @@ private: Link_array arpeggios_; }; - Span_arpeggio_engraver::Span_arpeggio_engraver () { span_arpeggio_ = 0; @@ -43,68 +41,64 @@ Span_arpeggio_engraver::Span_arpeggio_engraver () void Span_arpeggio_engraver::acknowledge_grob (Grob_info info) { - if (info.origin_trans_l_arr (this).size () - && Arpeggio::has_interface (info.grob_l_)) + if (Arpeggio::has_interface (info.grob ()) + && info.origin_contexts (this).size ()) // huh? what's this test for? { - arpeggios_.push (info.grob_l_); + arpeggios_.push (info.grob ()); } } void -Span_arpeggio_engraver::create_grobs () +Span_arpeggio_engraver::process_acknowledged_grobs () { /* - connectArpeggios is slightly brusque; we should really read a elt + connectArpeggios is slightly brusque; we should really read a grob property of the caught non-span arpeggios. That way, we can have both non-connected and connected arps in one pianostaff. - */ if (!span_arpeggio_ && arpeggios_.size () > 1 && to_boolean (get_property ("connectArpeggios"))) { - span_arpeggio_ = new Item (get_property ("Arpeggio")); - announce_grob(span_arpeggio_, SCM_EOL); + span_arpeggio_ = make_item ("Arpeggio", SCM_EOL); } } void Span_arpeggio_engraver::stop_translation_timestep () { - if (span_arpeggio_) + if (span_arpeggio_) { /* we do this very late, to make sure we also catch `extra' side-pos support like accidentals. - */ - for (int i=0; i < arpeggios_.size (); i ++) + */ + for (int i = 0; i < arpeggios_.size (); i++) { - for (SCM s = arpeggios_[i]->get_grob_property ("stems"); - gh_pair_p (s); s = ly_cdr (s)) - Group_interface::add_thing (span_arpeggio_, ly_symbol2scm ("stems"), ly_car (s)); - for (SCM s = arpeggios_[i]->get_grob_property ("side-support-elements"); - gh_pair_p (s); s = ly_cdr (s)) - Group_interface::add_thing (span_arpeggio_, ly_symbol2scm ("side-support-elements"), ly_car (s)); + for (SCM s = arpeggios_[i]->get_property ("stems"); + scm_is_pair (s); s = scm_cdr (s)) + Group_interface::add_thing (span_arpeggio_, ly_symbol2scm ("stems"), scm_car (s)); + for (SCM s = arpeggios_[i]->get_property ("side-support-elements"); + scm_is_pair (s); s = scm_cdr (s)) + Group_interface::add_thing (span_arpeggio_, ly_symbol2scm ("side-support-elements"), scm_car (s)); /* we can't kill the children, since we don't want to the previous note to bump into the span arpeggio; so we make it transparent. */ - arpeggios_[i]->set_grob_property ("molecule-callback", SCM_EOL); + arpeggios_[i]->set_property ("print-function", SCM_EOL); } - - typeset_grob (span_arpeggio_); + span_arpeggio_ = 0; } arpeggios_.clear (); } - - -ENTER_DESCRIPTION(Span_arpeggio_engraver, -/* descr */ "", -/* creats*/ "Arpeggio", -/* acks */ "arpeggio-interface", -/* reads */ "connectArpeggios", -/* write */ ""); +ADD_TRANSLATOR (Span_arpeggio_engraver, + /* descr */ "", + /* creats*/ "Arpeggio", + /* accepts */ "", + /* acks */ "arpeggio-interface", + /* reads */ "connectArpeggios", + /* write */ "");