]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/gregorian-ligature-engraver.hh
a65d54f67bd8f975db35479413fe618d8c54a9e4
[lilypond.git] / lily / include / gregorian-ligature-engraver.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2003--2012 Juergen Reuter <reuter@ipd.uka.de>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 #ifndef GREGORIAN_LIGATURE_ENGRAVER_HH
20 #define GREGORIAN_LIGATURE_ENGRAVER_HH
21
22 #include "coherent-ligature-engraver.hh"
23
24 class Gregorian_ligature_engraver : public Coherent_ligature_engraver
25 {
26   Stream_event *pes_or_flexa_req_;
27
28 public:
29   // no TRANSLATOR_DECLARATIONS (Gregorian_ligature_engraver) needed
30   // since this class is abstract
31
32 protected:
33   Gregorian_ligature_engraver ();
34
35   virtual void listen_pes_or_flexa (Stream_event *ev);
36   virtual void build_ligature (Spanner *ligature,
37                                vector<Grob_info> const &primitives);
38   virtual void transform_heads (Spanner *ligature,
39                                 vector<Grob_info> const &primitives) = 0;
40   void stop_translation_timestep ();
41 };
42
43 #endif // GREGORIAN_LIGATURE_ENGRAVER_HH