]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/gregorian-ligature.hh
* lily/gregorian-ligature-engraver.cc,
[lilypond.git] / lily / include / gregorian-ligature.hh
1 /*
2   gregorian-ligature.hh -- part of GNU LilyPond
3
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2003 Juergen Reuter <reuter@ipd.uka.de>
7 */
8
9 #ifndef GREGORIAN_LIGATURE_HH
10 #define GREGORIAN_LIGATURE_HH
11
12 /*
13  * Head prefixes: these bit-mask constants are used to represent
14  * attributes immediately derived from user input (e.g. by the user
15  * setting a gregorian ligature grob property or using the "\~"
16  * keyword).  If the according bit of the head prefix value is set,
17  * the attribute applies for this head.  The binary opereator "\~" is
18  * marked only upon the second head (i.e. the note that comes after
19  * the operator).
20  */
21 #define VIRGA        0x0001 // attribute "\virga"
22 #define STROPHA      0x0002 // attribute "\stropha"
23 #define INCLINATUM   0x0004 // attribute "\inclinatum"
24 #define AUCTUM       0x0008 // attribute "\auctum"
25 #define DESCENDENS   0x0010 // attribute "\descendens"
26 #define ASCENDENS    0x0020 // attribute "\ascendens"
27 #define ORISCUS      0x0040 // attribute "\oriscus"
28 #define QUILISMA     0x0080 // attribute "\quilisma"
29 #define DEMINUTUM    0x0100 // attribute "\deminutum"
30 #define CAVUM        0x0200 // attribute "\cavum"
31 #define LINEA        0x0400 // attribute "\linea"
32 #define PES_OR_FLEXA 0x0800 // operator "\~"
33
34 /*
35  * Ligature context info: these attributes are derived from the head
36  * prefixes by considering the current and the following head.
37  */
38 #define PES_LOWER    0x0001 // this is a head before "\~" in an ascending melody
39 #define PES_UPPER    0x0002 // this is a head after "\~" in an ascending melody
40 #define FLEXA_LEFT   0x0004 // this is a head before "\~" in a descending melody
41 #define FLEXA_RIGHT  0x0008 // this is a head after "\~" in a descending melody
42 #define AFTER_VIRGA  0x0010 // previous head was a virga
43
44 #endif /* GREGORIAN_LIGATURE_HH */