2 context-specced-music-iterator.cc -- implement
3 Context_specced_music_iterator
5 source file of the GNU LilyPond music typesetter
7 (c) 2002--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
10 #include "music-wrapper-iterator.hh"
13 class Context_specced_music_iterator : public Music_wrapper_iterator
16 DECLARE_SCHEME_CALLBACK (constructor, ());
17 virtual void construct_children ();
21 Context_specced_music_iterator::construct_children ()
23 SCM ct = get_music ()->get_property ("context-type");
26 SCM ci = get_music ()->get_property ("context-id");
27 if (scm_is_string (ci))
28 c_id = ly_scm2string (ci);
29 SCM ops = get_music ()->get_property ("property-operations");
33 if (to_boolean (get_music()->get_property ("create-new")))
34 a = get_outlet ()->create_unique_context (ct, c_id, ops);
36 a = get_outlet ()->find_create_context (ct, c_id, ops);
39 && to_boolean (get_music ()->get_property ("descend-only"))
40 && !is_child_context (get_outlet (), a))
46 Music_wrapper_iterator::construct_children ();
49 IMPLEMENT_CTOR_CALLBACK (Context_specced_music_iterator);