]> git.donarmstrong.com Git - lilypond.git/blob - lily/clef-modifier.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / clef-modifier.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2014--2015 Janek WarchoĊ‚ <lemniskata.bernoullego@gmail.com>
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 "item.hh"
21
22 using std::string;
23
24 struct Clef_modifier
25 {
26   DECLARE_SCHEME_CALLBACK (calc_parent_alignment, (SCM));
27 };
28
29 MAKE_SCHEME_CALLBACK (Clef_modifier, calc_parent_alignment, 1)
30 SCM
31 Clef_modifier::calc_parent_alignment (SCM smob)
32 {
33   Grob *me = unsmob<Grob> (smob);
34   Grob *clef = me->get_parent (X_AXIS);
35   string full_clef_name = ly_scm2string (clef->get_property ("glyph"));
36   string clef_name = replace_all(&full_clef_name, "clefs.", "");
37
38   // find entry with keyname clef_type in clef-alignments
39   SCM alist_entry = scm_assq (ly_symbol2scm (clef_name.c_str ()),
40                               me->get_property ("clef-alignments"));
41
42   if (scm_is_pair (alist_entry))
43     {
44       SCM entry_value = scm_cdr (alist_entry);
45       // the value should be a pair of numbers - first is the alignment
46       // for modifiers below the clef, second for those above.
47       if (scm_is_pair (entry_value))
48         if (robust_scm2dir (me->get_property ("direction"), DOWN) == DOWN)
49           return scm_car (entry_value);
50         else
51           return scm_cdr (entry_value);
52
53       else // default alignment = centered
54         return scm_from_double (0);
55     }
56   else // default alignment = centered
57     return scm_from_double (0);
58 }
59
60 ADD_INTERFACE (Clef_modifier,
61                "The number describing transposition of the clef, placed below\n"
62                "or above clef sign. Usually this is 8 (octave transposition)\n"
63                "or 15 (two octaves), but LilyPond allows any integer here.",
64
65                /* properties */
66                "clef-alignments "
67               );
68