]> git.donarmstrong.com Git - lilypond.git/blob - lily/gregorian-ligature.cc
Run grand-replace (issue 3765)
[lilypond.git] / lily / gregorian-ligature.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2003--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
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 #include "gregorian-ligature.hh"
21
22 #include "grob.hh"
23
24 void check_prefix (const string &name, int mask, int prefix_set, string *str)
25 {
26   if (prefix_set & mask)
27     {
28       if (!str->empty ())
29         *str += ", ";
30       *str += name;
31     }
32 }
33
34 string
35 Gregorian_ligature::prefixes_to_str (Grob *primitive)
36 {
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;
52 }
53
54 /*
55   CHECK ME -- does prefix-set come from here ?
56
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
61 */
62 ADD_INTERFACE (Gregorian_ligature,
63                "A gregorian ligature.",
64
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 "
80               );