X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flyric-engraver.cc;h=6b63b428b6fb510e0150c1f9be4efe0ee073c8d2;hb=42392675026a0d14bda19d0a279a6762e4e84cf4;hp=60c59e8141d42c7a81cbd0551d0f46f5b37cab4e;hpb=bb36bac02a64770871780231ecc709cb18b20932;p=lilypond.git diff --git a/lily/lyric-engraver.cc b/lily/lyric-engraver.cc index 60c59e8141..6b63b428b6 100644 --- a/lily/lyric-engraver.cc +++ b/lily/lyric-engraver.cc @@ -3,66 +3,85 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2000 Han-Wen Nienhuys + (c) 1997--2003 Han-Wen Nienhuys Jan Nieuwenhuizen */ -#include "lyric-engraver.hh" -#include "musical-request.hh" -#include "text-item.hh" +#include "engraver.hh" +#include "event.hh" +#include "item.hh" #include "paper-def.hh" -#include "lookup.hh" +#include "font-metric.hh" +#include "side-position-interface.hh" + +/** + Generate texts for lyric syllables. We only do one lyric at a time. + Multiple copies of this engraver should be used to do multiple voices. + */ +class Lyric_engraver : public Engraver +{ +protected: + virtual void stop_translation_timestep (); + virtual bool try_music (Music *); + virtual void process_music (); + +public: + TRANSLATOR_DECLARATIONS(Lyric_engraver); +private: + Music * req_; + Item* text_; +}; -ADD_THIS_TRANSLATOR (Lyric_engraver); -Lyric_engraver::Lyric_engraver() + +Lyric_engraver::Lyric_engraver () { - text_p_ =0; - req_l_ =0; + text_ =0; + req_ =0; } bool -Lyric_engraver::do_try_music (Music*r) +Lyric_engraver::try_music (Music*r) { - if (Lyric_req* l = dynamic_cast (r)) + if (r->is_mus_type ("lyric-event")) { - if (req_l_) + if (req_) return false; - req_l_ =l; + req_ =r; return true; } return false; } void -Lyric_engraver::do_process_requests() +Lyric_engraver::process_music () { - if (req_l_) + if (req_) { - text_p_= new Text_item; + text_= make_item ("LyricText"); - text_p_->set_elt_property ("text", - ly_str02scm ((req_l_->text_str_ + " ").ch_C ())); - text_p_->set_elt_property ("non-rhythmic", SCM_BOOL_T); - announce_element (Score_element_info (text_p_, req_l_)); + text_->set_grob_property ("text", req_->get_mus_property ("text")); + announce_grob (text_, req_->self_scm()); } } void -Lyric_engraver::do_pre_move_processing() +Lyric_engraver::stop_translation_timestep () { - if (text_p_) + if (text_) { - typeset_element (text_p_); - text_p_ =0; + typeset_grob (text_); + text_ =0; } -} - -void -Lyric_engraver::do_post_move_processing () -{ - req_l_ =0; + req_ =0; } +ENTER_DESCRIPTION(Lyric_engraver, +/* descr */ "", +/* creats*/ "", +/* accepts */ "lyric-event", +/* acks */ "", +/* reads */ "", +/* write */ "");