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