]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/gregorian-ligature.hh
Run grand-replace (issue 3765)
[lilypond.git] / lily / include / gregorian-ligature.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2003--2014 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
20 #ifndef GREGORIAN_LIGATURE_HH
21 #define GREGORIAN_LIGATURE_HH
22
23 class Grob;
24 #include "std-string.hh"
25 #include "grob-interface.hh"
26
27 class Gregorian_ligature
28 {
29 public:
30   DECLARE_GROB_INTERFACE ();
31   static string prefixes_to_str (Grob *);
32 };
33
34 /*
35  * Head prefixes: these bit-mask constants are used to represent
36  * attributes immediately derived from user input (e.g. by the user
37  * setting a gregorian ligature grob property or using the "\~"
38  * keyword).  If the according bit of the head prefix value is set,
39  * the attribute applies for this head.  The binary opereator "\~" is
40  * treated like a prefix for the head that follows the operator, but
41  * does not affect the head that precedes the operator, if any.
42  */
43 #define VIRGA 0x0001 // attribute "\virga"
44 #define STROPHA 0x0002 // attribute "\stropha"
45 #define INCLINATUM 0x0004 // attribute "\inclinatum"
46 #define AUCTUM 0x0008 // attribute "\auctum"
47 #define DESCENDENS 0x0010 // attribute "\descendens"
48 #define ASCENDENS 0x0020 // attribute "\ascendens"
49 #define ORISCUS 0x0040 // attribute "\oriscus"
50 #define QUILISMA 0x0080 // attribute "\quilisma"
51 #define DEMINUTUM 0x0100 // attribute "\deminutum"
52 #define CAVUM 0x0200 // attribute "\cavum"
53 #define LINEA 0x0400 // attribute "\linea"
54 #define PES_OR_FLEXA 0x0800 // operator "\~"
55
56 /*
57  * Ligature context info: these attributes are derived from the head
58  * prefixes by considering the current and the two neighbouring heads.
59  *
60  * These definitions may be extended by more specific Gregorian
61  * ligatures such as vaticana-ligature.hh.
62  */
63 #define PES_LOWER 0x0001 // this is a head before "\~" in an ascending melody
64 #define PES_UPPER 0x0002 // this is a head after "\~" in an ascending melody
65 #define FLEXA_LEFT 0x0004 // this is a head before "\~" in a descending melody
66 #define FLEXA_RIGHT 0x0008 // this is a head after "\~" in a descending melody
67 #define AFTER_DEMINUTUM 0x0020 // previous head was a deminutum
68
69 #endif /* GREGORIAN_LIGATURE_HH */