]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-iterator.hh
* The grand 2005-2006 replace.
[lilypond.git] / lily / include / music-iterator.hh
index 7b395e8a2c49c55e9a1d12175a4a5112d7aefee7..601e5404b83d68e97d7fd4decc65089929487ef2 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef MUSIC_ITERATOR_HH
@@ -12,7 +12,7 @@
 #include "array.hh"
 #include "moment.hh"
 #include "virtual-methods.hh"
-#include "interpretation-context-handle.hh"
+#include "context-handle.hh"
 
 /**
    ---
@@ -53,30 +53,17 @@ protected:
   Moment music_length_;
   Moment start_mom_;
 
+  DECLARE_CLASSNAME(Music_iterator);
   DECLARE_SMOBS (Music_iterator, dummy);
   Music_iterator (Music_iterator const &);
-public:
 
+public:
   Moment music_get_length () const;
   Moment music_start_mom () const;
   Music_iterator ();
-
-  /**
-     Do the reporting.  Will try MUSIC_L_ in its own translator first,
-     then its children. Returns the iterator that succeeded
-  */
   Music_iterator *try_music (Music *) const;
-
-  /**
-     The translation unit that we this iterator is reporting  to now.
-  */
   Context *get_outlet () const;
-
   void set_context (Context *);
-
-  /** Get an iterator matching the type of MUS, and use TRANS to find
-      an accompanying translation unit
-  */
   static SCM get_static_get_iterator (Music *mus);
   void init_translator (Music *, Context *);
   void quit ();
@@ -84,22 +71,11 @@ public:
   virtual void derived_substitute (Context *, Context *);
   virtual Moment pending_moment () const;
   virtual bool ok () const;
-
   virtual bool run_always () const;
   virtual void process (Moment until);
   virtual void derived_mark () const;
   virtual void construct_children ();
-
-  /**
-     Construct sub-iterators, and set the translator to
-     report to.
-  */
-
   DECLARE_SCHEME_CALLBACK (constructor, ());
-
-  /**
-     Get an iterator for MUS, inheriting the translation unit from THIS.
-  */
   SCM get_iterator (Music *) const;
 
   virtual Music_iterator *try_music_in_children (Music *) const;
@@ -108,8 +84,9 @@ public:
 protected:
   virtual void do_quit ();
   void descend_to_child (Context *);
+
 private:
-  Interpretation_context_handle handle_;
+  Context_handle handle_;
   Music *music_;
 };
 
@@ -121,9 +98,8 @@ bool is_child_context (Context *me, Context *child);
                             (),                                        \
                             "")                                        \
   {                                                                    \
-    SCM val = (new Class)->self_scm ();                                        \
-    scm_gc_unprotect_object (val);                                     \
-    return val;                                                                \
+    Class *c = (new Class);                                            \
+    return c->unprotect ();                                            \
   }
 
 DECLARE_UNSMOB (Music_iterator, iterator);