]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/ligature-engraver.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / ligature-engraver.hh
index 975d0d2f9baa5190f7d49e5f11034040abaf2b6e..f74cf6b6cedfcc2c7ac42a341f45ff442468b6f3 100644 (file)
@@ -1,46 +1,53 @@
-/*   
+/*
   ligature-engraver.hh -- declare Ligature_engraver
-  
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 2002 Juergen Reuter <reuter@ipd.uka.de>
-  
- */
-#ifndef LIGATUREENGRAVER_HH
-#define LIGATUREEENGRAVER_HH
+
+  (c) 2002--2008 Juergen Reuter <reuter@ipd.uka.de>
+*/
+
+#ifndef LIGATURE_ENGRAVER_HH
+#define LIGATURE_ENGRAVER_HH
 
 #include "engraver.hh"
+#include "moment.hh"
 
 class Ligature_engraver : public Engraver
 {
 protected:
-  virtual void stop_translation_timestep ();
-  virtual void start_translation_timestep ();
+  Ligature_engraver ();
+  void stop_translation_timestep ();
   virtual void finalize ();
 
-  virtual void acknowledge_grob (Grob_info);
-  virtual bool try_music (Music*);
-  virtual void process_music ();
-  virtual void try_stop_ligature ();
-  virtual Spanner *create_ligature_spanner ();
-
-  Spanner *finished_ligature_p_;
-  Spanner *ligature_p_;
+  DECLARE_ACKNOWLEDGER (rest);
+  DECLARE_ACKNOWLEDGER (note_head);
+  virtual void listen_ligature (Stream_event *ev);
+  void process_music ();
+  virtual Spanner *create_ligature_spanner () = 0;
+  virtual void typeset_ligature (Spanner *ligature,
+                                vector<Grob_info> primitives) = 0;
+  virtual Spanner *current_ligature ();
   SCM brew_ligature_primitive_proc;
 
 public:
-  TRANSLATOR_DECLARATIONS(Ligature_engraver);
+  // no TRANSLATOR_DECLARATIONS (Ligature_engraver) needed since this
+  // class is abstract
 
 private:
-  Drul_array<Span_req*> reqs_drul_;
-  
-  Span_req *prev_start_req_;
+  Drul_array<Stream_event *> events_drul_;
+
+  Spanner *ligature_;
+  vector<Grob_info> primitives_;
+
+  Spanner *finished_ligature_;
+  vector<Grob_info> finished_primitives_;
+
+  Stream_event *prev_start_event_;
 
   // moment where ligature started.
   Moment ligature_start_mom_;
 
-  Grob *last_bound;
-
+  Grob *last_bound_;
 };
 
-#endif // ENGRAVERGROUP_HH
+#endif // LIGATURE_ENGRAVER_HH