]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/context-specced-music-iterator.cc
*** empty log message ***
[lilypond.git] / lily / context-specced-music-iterator.cc
index c6751227bb90da0b3cef758d3d67cfb02a56a408..2f7445fd6760fa34bf96b8f65f93df2eab471d30 100644 (file)
@@ -4,38 +4,43 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2002--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 2002--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
 */
 
 #include "music-wrapper-iterator.hh"
-#include "translator-group.hh"
+#include "context.hh"
 
 class Context_specced_music_iterator : public Music_wrapper_iterator
 {
 public:
-  VIRTUAL_COPY_CONS(Music_iterator);
-  DECLARE_SCHEME_CALLBACK(constructor,());
+  DECLARE_SCHEME_CALLBACK (constructor,());
   virtual void construct_children ();
 };
 
 void
 Context_specced_music_iterator::construct_children ()
 {
-  SCM ct = get_music ()->get_mus_property ("context-type");
+  SCM ct = get_music ()->get_property ("context-type");
 
   String c_id;
-  SCM ci = get_music ()->get_mus_property ("context-id");
+  SCM ci = get_music ()->get_property ("context-id");
   if (gh_string_p (ci))
     c_id = ly_scm2string (ci);
-  SCM ops = get_music ()->get_mus_property ("property-operations");
+  SCM ops = get_music ()->get_property ("property-operations");
   
-  Translator_group* a
-    = report_to ()->find_create_translator (ct, c_id, ops);
+  Context * a
+    = get_outlet ()->find_create_context (ct, c_id, ops);
 
+  if (a
+      && to_boolean (get_music ()->get_property ("descend-only"))
+      && !is_child_context (get_outlet (), a))
+    a = 0;
+  
   if (a)
     set_translator (a);
 
-  Music_wrapper_iterator::construct_children();
+  Music_wrapper_iterator::construct_children ();
 }
-IMPLEMENT_CTOR_CALLBACK(Context_specced_music_iterator);
+
+IMPLEMENT_CTOR_CALLBACK (Context_specced_music_iterator);