]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/coherent-ligature-engraver.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / coherent-ligature-engraver.hh
1 /*
2   coherent-ligature-engraver.hh -- declare Coherent_ligature_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2003--2008 Juergen Reuter <reuter@ipd.uka.de>
7 */
8 #ifndef COHERENT_LIGATURE_ENGRAVER_HH
9 #define COHERENT_LIGATURE_ENGRAVER_HH
10
11 #include "ligature-engraver.hh"
12
13 class Coherent_ligature_engraver : public Ligature_engraver
14 {
15 public:
16   // no TRANSLATOR_DECLARATIONS (Coherent_ligature_engraver) needed
17   // since this class is abstract
18
19 protected:
20   virtual void build_ligature (Spanner *ligature,
21                                vector<Grob_info> primitives) = 0;
22   virtual void typeset_ligature (Spanner *ligature,
23                                  vector<Grob_info> primitives);
24   virtual void move_related_items_to_column (Item *, Paper_column *, Real);
25 private:
26   void collect_accidentals (Spanner *, vector<Grob_info>);
27 };
28
29 #endif // COHERENT_LIGATURE_ENGRAVER_HH