X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgregorian-ligature.cc;h=a0f54ed162f3ec2c75a73195bc4d1b37f1557e1d;hb=c4c2d414d41f8a83d777e3a61cb2f0e9f18c28bb;hp=8df805e3608aa36cd94ca074df881ca82db30c80;hpb=545092a25d8ca41dc90b87482474b3719f7130a9;p=lilypond.git diff --git a/lily/gregorian-ligature.cc b/lily/gregorian-ligature.cc index 8df805e360..a0f54ed162 100644 --- a/lily/gregorian-ligature.cc +++ b/lily/gregorian-ligature.cc @@ -1,30 +1,40 @@ /* - gregorian-ligature.cc -- implement Gregorian_ligature + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2003--2012 Han-Wen Nienhuys - (c) 2003--2005 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "gregorian-ligature.hh" #include "grob.hh" -#include "string.hh" -void check_prefix (String name, int mask, int prefix_set, String *str) +void check_prefix (const string &name, int mask, int prefix_set, string *str) { if (prefix_set & mask) { - if (!str->is_empty ()) - *str += ", "; + if (!str->empty ()) + *str += ", "; *str += name; } } -String +string Gregorian_ligature::prefixes_to_str (Grob *primitive) { - String str; + string str; int prefix_set = scm_to_int (primitive->get_property ("prefix-set")); check_prefix ("virga", VIRGA, prefix_set, &str); @@ -49,8 +59,22 @@ Gregorian_ligature::prefixes_to_str (Grob *primitive) subclass like VaticanaLigatureEngraver. The property is lateron read by the associated item class, such as VaticanaLigature.--jr */ -ADD_INTERFACE (Gregorian_ligature, "gregorian-ligature-interface", - "A gregorian ligature", - "virga stropha inclinatum auctum descendens ascendens " - "oriscus quilisma deminutum cavum linea pes-or-flexa " - "context-info prefix-set"); +ADD_INTERFACE (Gregorian_ligature, + "A gregorian ligature.", + + /* properties */ + "virga " + "stropha " + "inclinatum " + "auctum " + "descendens " + "ascendens " + "oriscus " + "quilisma " + "deminutum " + "cavum " + "linea " + "pes-or-flexa " + "context-info " + "prefix-set " + );