]> git.donarmstrong.com Git - lilypond.git/blob - lily/clef.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / clef.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 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 "clef.hh"
21
22 #include "font-interface.hh"
23 #include "international.hh"
24 #include "item.hh"
25 #include "stencil.hh"
26
27 using std::string;
28
29 MAKE_SCHEME_CALLBACK (Clef, calc_glyph_name, 1);
30 SCM
31 Clef::calc_glyph_name (SCM smob)
32 {
33   Item *s = unsmob<Item> (smob);
34   SCM glyph = s->get_property ("glyph");
35
36   if (scm_is_string (glyph))
37     {
38       string str = ly_scm2string (glyph);
39
40       if (to_boolean (s->get_property ("non-default"))
41           && s->break_status_dir () != RIGHT
42           && !to_boolean (s->get_property ("full-size-change")))
43         {
44           str += "_change";
45         }
46
47       return ly_string2scm (str);
48     }
49
50   s->suicide ();
51   return SCM_UNSPECIFIED;
52 }
53
54 MAKE_SCHEME_CALLBACK (Clef, print, 1)
55 SCM
56 Clef::print (SCM smob)
57 {
58   Grob *me = unsmob<Grob> (smob);
59   SCM glyph_scm = me->get_property ("glyph-name");
60   if (!scm_is_string (glyph_scm))
61     return SCM_EOL;
62
63   string glyph = string (ly_scm2string (glyph_scm));
64   Font_metric *fm = Font_interface::get_default_font (me);
65   Stencil out = fm->find_by_name (glyph);
66   if (out.is_empty ())
67     me->warning (_f ("clef `%s' not found", glyph.c_str ()));
68
69   return out.smobbed_copy ();
70 }
71
72 ADD_INTERFACE (Clef,
73                "A clef sign.",
74
75                /* properties */
76                "full-size-change "
77                "glyph "
78                "glyph-name "
79                "non-default "
80               );
81