Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / lily / context-specced-music-iterator.cc
blobbb8851f5b2dddee7c2015413db53170033f8f0f0
1 /*
2 context-specced-music-iterator.cc -- implement
3 Context_specced_music_iterator
5 source file of the GNU LilyPond music typesetter
7 (c) 2002--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
8 */
10 #include "music-wrapper-iterator.hh"
11 #include "context.hh"
12 #include "music.hh"
15 class Context_specced_music_iterator : public Music_wrapper_iterator
17 public:
18 DECLARE_SCHEME_CALLBACK (constructor, ());
19 virtual void construct_children ();
22 void
23 Context_specced_music_iterator::construct_children ()
25 SCM ct = get_music ()->get_property ("context-type");
27 string c_id;
28 SCM ci = get_music ()->get_property ("context-id");
29 if (scm_is_string (ci))
30 c_id = ly_scm2string (ci);
31 SCM ops = get_music ()->get_property ("property-operations");
33 Context *a = 0;
35 if (to_boolean (get_music ()->get_property ("create-new")))
36 a = get_outlet ()->create_unique_context (ct, c_id, ops);
37 else
38 a = get_outlet ()->find_create_context (ct, c_id, ops);
40 if (a
41 && to_boolean (get_music ()->get_property ("descend-only"))
42 && !is_child_context (get_outlet (), a))
43 a = 0;
45 if (a)
46 set_context (a);
48 Music_wrapper_iterator::construct_children ();
51 IMPLEMENT_CTOR_CALLBACK (Context_specced_music_iterator);