From: fred Date: Sun, 24 Mar 2002 19:29:40 +0000 (+0000) Subject: lilypond-0.0.32 X-Git-Tag: release/1.5.59~5506 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=381dd58bc1963913cd5900484404588e99f68e96;p=lilypond.git lilypond-0.0.32 --- diff --git a/src/lyricwalker.cc b/src/lyricwalker.cc index 160b83ae9e..960c1e76e0 100644 --- a/src/lyricwalker.cc +++ b/src/lyricwalker.cc @@ -1,42 +1,34 @@ -#include "request.hh" +/* + lyricwalker.cc -- implement Lyric_walker + + source file of the LilyPond music typesetter + + (c) 1997 Jan Nieuwenhuizen +*/ + +#include "musicalrequest.hh" #include "voice.hh" #include "pscore.hh" #include "lyricstaff.hh" #include "lyricwalker.hh" -//#include "sccol.hh" #include "debug.hh" #include "lyricitem.hh" -void -Lyric_walker::do_word(Word_info) -{ -} - -void -Lyric_walker::do_INTERPRET_command(Command* ) -{ -} - -void -Lyric_walker::do_TYPESET_command(Command* ) -{ -} - void Lyric_walker::process_requests() { - Lyric_column* lcol_l = Lyric_walker::lcol_l(); - - for (int i = 0; i < lcol_l->winfo_array_.size(); i++) { - lcol_l->typeset_item(new Lyric_item(lcol_l->winfo_array_[i].lreq_l_, i)); + allow_break(); + for (int i = 0; i < lcol_l()->lreq_l_array_.size(); i++) { + lcol_l()->typeset_item( + new Lyric_item(lcol_l()->lreq_l_array_[i],i) + ); } - } Lyric_walker::Lyric_walker(Lyric_staff* lstaff_l) : Staff_walker(lstaff_l, lstaff_l->pstaff_l_->pscore_l_) { - reset(); + } @@ -52,9 +44,3 @@ Lyric_walker::lcol_l() { return (Lyric_column*) *(*this); } - -void -Lyric_walker::reset() -{ -} -