Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / gregorian-ligature.cc
blobf0606102cb6bea32d3bab9e1844613acfb543aeb
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2003--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
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.
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.
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/>.
20 #include "gregorian-ligature.hh"
22 #include "grob.hh"
24 void check_prefix (string name, int mask, int prefix_set, string *str)
26 if (prefix_set & mask)
28 if (!str->empty ())
29 *str += ", ";
30 *str += name;
34 string
35 Gregorian_ligature::prefixes_to_str (Grob *primitive)
37 string str;
38 int prefix_set
39 = scm_to_int (primitive->get_property ("prefix-set"));
40 check_prefix ("virga", VIRGA, prefix_set, &str);
41 check_prefix ("stropha", STROPHA, prefix_set, &str);
42 check_prefix ("inclinatum", INCLINATUM, prefix_set, &str);
43 check_prefix ("auctum", AUCTUM, prefix_set, &str);
44 check_prefix ("descendens", DESCENDENS, prefix_set, &str);
45 check_prefix ("ascendens", ASCENDENS, prefix_set, &str);
46 check_prefix ("oriscus", ORISCUS, prefix_set, &str);
47 check_prefix ("quilisma", QUILISMA, prefix_set, &str);
48 check_prefix ("deminutum", DEMINUTUM, prefix_set, &str);
49 check_prefix ("cavum", CAVUM, prefix_set, &str);
50 check_prefix ("linea", LINEA, prefix_set, &str);
51 return str;
55 CHECK ME -- does prefix-set come from here ?
57 In a way, yes. Actually, prefix-set is a property that is written
58 by code of GregorianLigatureEngraver that is virtually invoked by a
59 subclass like VaticanaLigatureEngraver. The property is lateron
60 read by the associated item class, such as VaticanaLigature.--jr
62 ADD_INTERFACE (Gregorian_ligature,
63 "A gregorian ligature.",
65 /* properties */
66 "virga "
67 "stropha "
68 "inclinatum "
69 "auctum "
70 "descendens "
71 "ascendens "
72 "oriscus "
73 "quilisma "
74 "deminutum "
75 "cavum "
76 "linea "
77 "pes-or-flexa "
78 "context-info "
79 "prefix-set "