]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/global-context.hh
* lily/ various: Introduce stream events of types Prepare,
[lilypond.git] / lily / include / global-context.hh
index 720147e03d4e488e97291d5ddc952f37ddb21f82..0ff225c50d38ec96e5385de723a09d6e9e0d5091 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 GLOBAL_CONTEXT_HH
@@ -17,9 +17,11 @@ class Global_context : public virtual Context
   PQueue<Moment> extra_mom_pq_;
   Output_def *output_def_;
 
+  DECLARE_CLASSNAME(Global_context);
+
   friend class Output_def;
 public:
-  Global_context (Output_def *, Moment final, Object_key *key);
+  Global_context (Output_def *, Object_key *key);
   int get_moments_left () const;
   Moment sneaky_insert_extra_moment (Moment);
   void add_moment_to_process (Moment);
@@ -29,17 +31,16 @@ public:
   void apply_finalizations ();
   void add_finalization (SCM);
 
-  virtual SCM get_output ();
-  virtual void prepare (Moment);
+  DECLARE_LISTENER (prepare);
   virtual void one_time_step ();
   virtual void finish ();
+  virtual SCM get_output ();
   virtual Output_def *get_output_def () const;
   virtual Moment now_mom () const;
   virtual Context *get_default_interpreter ();
 
   Moment previous_moment () const;
 protected:
-  Moment final_mom_;
   Moment prev_mom_;
   Moment now_mom_;
 };