X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmusic-wrapper-iterator.cc;h=c50a64c7c10f97082658bdaff72fada615b789b1;hb=97759ace2c13860488de4e9498607adac8d20963;hp=e282bded8c60b7c1c43635810cfff418e9ee2b31;hpb=28ec8d66e2243ad5bee7591bf8f67d661dd3f125;p=lilypond.git diff --git a/lily/music-wrapper-iterator.cc b/lily/music-wrapper-iterator.cc index e282bded8c..c50a64c7c1 100644 --- a/lily/music-wrapper-iterator.cc +++ b/lily/music-wrapper-iterator.cc @@ -1,62 +1,69 @@ -/* - music-wrapper-iterator.cc -- implement Music_wrapper_iterator - +/* + music-wrapper-iterator.cc -- implement Music_wrapper_iterator + source file of the GNU LilyPond music typesetter - - (c) 1998 Han-Wen Nienhuys - - */ + (c) 1998--2006 Han-Wen Nienhuys +*/ #include "music-wrapper-iterator.hh" #include "music-wrapper.hh" Music_wrapper_iterator::Music_wrapper_iterator () { - child_iter_p_ =0; + child_iter_ = 0; } - - void -Music_wrapper_iterator::do_print () const +Music_wrapper_iterator::do_quit () { - child_iter_p_->print (); + child_iter_->quit (); } void -Music_wrapper_iterator::construct_children () +Music_wrapper_iterator::derived_mark () const { - child_iter_p_ = get_iterator_p (music_wrapper_l ()->element_p_); + if (child_iter_) + scm_gc_mark (child_iter_->self_scm ()); } -Music_wrapper_iterator::~Music_wrapper_iterator () +void +Music_wrapper_iterator::derived_substitute (Context *f, Context *t) { - delete child_iter_p_; + if (child_iter_) + child_iter_->substitute_outlet (f, t); } -Music_wrapper* -Music_wrapper_iterator::music_wrapper_l () const +void +Music_wrapper_iterator::construct_children () { - return (Music_wrapper*) music_l_; + Music *my_music = get_music (); + Music *child = unsmob_music (my_music->get_property ("element")); + child_iter_ = unsmob_iterator (get_iterator (child)); } bool Music_wrapper_iterator::ok () const { - return child_iter_p_->ok (); + return child_iter_ && child_iter_->ok (); } void -Music_wrapper_iterator::do_process_and_next (Moment m) +Music_wrapper_iterator::process (Moment m) { - child_iter_p_->process_and_next (m); - Music_iterator::do_process_and_next (m); + child_iter_->process (m); } Moment -Music_wrapper_iterator::next_moment () const +Music_wrapper_iterator::pending_moment () const { - return child_iter_p_->next_moment (); + return child_iter_->pending_moment (); } +IMPLEMENT_CTOR_CALLBACK (Music_wrapper_iterator); + +bool +Music_wrapper_iterator::run_always () const +{ + return child_iter_->run_always (); +}