]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/mensural-ligature.hh
* The grand 2005-2006 replace.
[lilypond.git] / lily / include / mensural-ligature.hh
1 /*
2   mensural-ligature.hh -- part of GNU LilyPond
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2002--2006 Juergen Reuter <reuter@ipd.uka.de>,
7   Pal Benko <benkop@freestart.hu>
8 */
9
10 #ifndef MENSURAL_LIGATURE_HH
11 #define MENSURAL_LIGATURE_HH
12
13 #include "lily-proto.hh"
14 #include "lily-guile.hh"
15
16 /*
17  * These are all possible mensural ligature primitives.
18  */
19 #define MLP_NONE 0x00 // no output
20 #define MLP_UP 0x01 // upward left stem
21 #define MLP_DOWN 0x02 // downward left stem
22 #define MLP_BREVIS 0x04 // mensural brevis head
23 #define MLP_LONGA 0x08 // mensural brevis head with right cauda
24 #define MLP_MAXIMA 0x10 // mensural maxima head without stem
25 #define MLP_FLEXA 0x20 // mensural flexa-like shape
26
27 #define MLP_STEM (MLP_UP | MLP_DOWN)
28 #define MLP_SINGLE_HEAD (MLP_BREVIS | MLP_LONGA | MLP_MAXIMA)
29 #define MLP_ANY (MLP_FLEXA | MLP_SINGLE_HEAD)
30
31 struct Mensural_ligature
32 {
33   DECLARE_SCHEME_CALLBACK (brew_ligature_primitive, (SCM));
34   DECLARE_SCHEME_CALLBACK (print, (SCM));
35   static bool has_interface (Grob *);
36 };
37
38 #endif /* MENSURAL_LIGATURE_HH */