]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/gregorian-ligature-engraver.hh
* flower
[lilypond.git] / lily / include / gregorian-ligature-engraver.hh
1 /*
2   gregorian-ligature-engraver.hh -- declare Gregorian_ligature_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2003--2005 Juergen Reuter <reuter@ipd.uka.de>
7 */
8 #ifndef GREGORIAN_LIGATURE_ENGRAVER_HH
9 #define GREGORIAN_LIGATURE_ENGRAVER_HH
10
11 #include "coherent-ligature-engraver.hh"
12
13 class Gregorian_ligature_engraver : public Coherent_ligature_engraver
14 {
15   Music *pes_or_flexa_req_;
16
17 public:
18   TRANSLATOR_DECLARATIONS (Gregorian_ligature_engraver);
19
20 protected:
21   virtual bool try_music (Music *);
22   virtual void build_ligature (Spanner *ligature, Array<Grob_info> primitives);
23   virtual void transform_heads (Spanner *ligature,
24                                 Array<Grob_info> primitives); /* abstract method */
25   virtual void stop_translation_timestep ();
26 };
27
28 #endif // GREGORIAN_LIGATURE_ENGRAVER_HH