X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fclef.cc;h=6f9062190ef46f91b37ffbbc6b99f3cf01dd70f4;hb=90e4d7057f3857da049dfda3d130017d4719bd6b;hp=59d9375c007829534bb90f98869fc396708ef2cf;hpb=b37e3f652677ae0298423db9fa0e552e5fce0c92;p=lilypond.git diff --git a/lily/clef.cc b/lily/clef.cc index 59d9375c00..6f9062190e 100644 --- a/lily/clef.cc +++ b/lily/clef.cc @@ -1,9 +1,20 @@ /* - clef.cc -- implement Clef_item + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2015 Han-Wen Nienhuys - (c) 1997--2006 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 "clef.hh" @@ -11,28 +22,27 @@ #include "font-interface.hh" #include "international.hh" #include "item.hh" -#include "std-string.hh" #include "stencil.hh" MAKE_SCHEME_CALLBACK (Clef, calc_glyph_name, 1); SCM Clef::calc_glyph_name (SCM smob) { - Item *s = unsmob_item (smob); + Item *s = unsmob (smob); SCM glyph = s->get_property ("glyph"); if (scm_is_string (glyph)) { - std::string str = ly_scm2string (glyph); + string str = ly_scm2string (glyph); if (to_boolean (s->get_property ("non-default")) - && s->break_status_dir () != RIGHT - && !to_boolean (s->get_property ("full-size-change"))) - { - str += "_change"; - } + && s->break_status_dir () != RIGHT + && !to_boolean (s->get_property ("full-size-change"))) + { + str += "_change"; + } - return scm_makfrom0str (str.c_str ()); + return ly_string2scm (str); } s->suicide (); @@ -43,26 +53,27 @@ MAKE_SCHEME_CALLBACK (Clef, print, 1) SCM Clef::print (SCM smob) { - Grob *me = unsmob_grob (smob); + Grob *me = unsmob (smob); SCM glyph_scm = me->get_property ("glyph-name"); if (!scm_is_string (glyph_scm)) return SCM_EOL; - std::string glyph = std::string (ly_scm2string (glyph_scm)); + string glyph = string (ly_scm2string (glyph_scm)); Font_metric *fm = Font_interface::get_default_font (me); Stencil out = fm->find_by_name (glyph); if (out.is_empty ()) me->warning (_f ("clef `%s' not found", glyph.c_str ())); + return out.smobbed_copy (); } -ADD_INTERFACE (Clef, "clef-interface", - "A clef sign", +ADD_INTERFACE (Clef, + "A clef sign.", - /* properties */ - "full-size-change " - "glyph " - "glyph-name " - "non-default " - ); + /* properties */ + "full-size-change " + "glyph " + "glyph-name " + "non-default " + );