]> git.donarmstrong.com Git - lilypond.git/blob - lily/music-wrapper-iterator.cc
* flower
[lilypond.git] / lily / music-wrapper-iterator.cc
1 /*
2   music-wrapper-iterator.cc -- implement Music_wrapper_iterator
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "music-wrapper-iterator.hh"
10
11 #include "music-wrapper.hh"
12
13 Music_wrapper_iterator::Music_wrapper_iterator ()
14 {
15   child_iter_ = 0;
16 }
17
18 void
19 Music_wrapper_iterator::do_quit ()
20 {
21   child_iter_->quit ();
22 }
23
24 void
25 Music_wrapper_iterator::derived_mark () const
26 {
27   if (child_iter_)
28     scm_gc_mark (child_iter_->self_scm ());
29 }
30
31 void
32 Music_wrapper_iterator::derived_substitute (Context *f, Context *t)
33 {
34   if (child_iter_)
35     child_iter_->substitute_outlet (f, t);
36 }
37
38 void
39 Music_wrapper_iterator::construct_children ()
40 {
41   Music *m = dynamic_cast < Music_wrapper const *> (get_music ())-> element ();
42   child_iter_ = unsmob_iterator (get_iterator (m));
43 }
44
45 bool
46 Music_wrapper_iterator::ok () const
47 {
48   return child_iter_ && child_iter_->ok ();
49 }
50
51 void
52 Music_wrapper_iterator::process (Moment m)
53 {
54   child_iter_->process (m);
55 }
56
57 Moment
58 Music_wrapper_iterator::pending_moment () const
59 {
60   return child_iter_->pending_moment ();
61 }
62
63 Music_iterator *
64 Music_wrapper_iterator::try_music_in_children (Music *m) const
65 {
66   return child_iter_->try_music (m);
67 }
68
69 IMPLEMENT_CTOR_CALLBACK (Music_wrapper_iterator);
70
71 bool
72 Music_wrapper_iterator::run_always () const
73 {
74   return child_iter_->run_always ();
75 }