2 gregorian-ligature.hh -- part of GNU LilyPond
4 source file of the GNU LilyPond music typesetter
6 (c) 2003--2006 Juergen Reuter <reuter@ipd.uka.de>
9 #ifndef GREGORIAN_LIGATURE_HH
10 #define GREGORIAN_LIGATURE_HH
13 #include "std-string.hh"
15 class Gregorian_ligature
18 static bool has_interface (Grob *);
19 static string prefixes_to_str (Grob *);
23 * Head prefixes: these bit-mask constants are used to represent
24 * attributes immediately derived from user input (e.g. by the user
25 * setting a gregorian ligature grob property or using the "\~"
26 * keyword). If the according bit of the head prefix value is set,
27 * the attribute applies for this head. The binary opereator "\~" is
28 * treated like a prefix for the head that follows the operator, but
29 * does not affect the head that precedes the operator, if any.
31 #define VIRGA 0x0001 // attribute "\virga"
32 #define STROPHA 0x0002 // attribute "\stropha"
33 #define INCLINATUM 0x0004 // attribute "\inclinatum"
34 #define AUCTUM 0x0008 // attribute "\auctum"
35 #define DESCENDENS 0x0010 // attribute "\descendens"
36 #define ASCENDENS 0x0020 // attribute "\ascendens"
37 #define ORISCUS 0x0040 // attribute "\oriscus"
38 #define QUILISMA 0x0080 // attribute "\quilisma"
39 #define DEMINUTUM 0x0100 // attribute "\deminutum"
40 #define CAVUM 0x0200 // attribute "\cavum"
41 #define LINEA 0x0400 // attribute "\linea"
42 #define PES_OR_FLEXA 0x0800 // operator "\~"
45 * Ligature context info: these attributes are derived from the head
46 * prefixes by considering the current and the two neighbouring heads.
48 * These definitions may be extended by more specific Gregorian
49 * ligatures such as vaticana-ligature.hh.
51 #define PES_LOWER 0x0001 // this is a head before "\~" in an
53 #define PES_UPPER 0x0002 // this is a head after "\~" in an
55 #define FLEXA_LEFT 0x0004 // this is a head before "\~" in a
57 #define FLEXA_RIGHT 0x0008 // this is a head after "\~" in a
59 #define AFTER_DEMINUTUM 0x0020 // previous head was a deminutum
61 #endif /* GREGORIAN_LIGATURE_HH */