X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fclef.cc;h=0718f8bd536ac9c2c1c0e3ce59e307284b8faa7e;hb=5c6c8edb1c4997bd3db10d3fd1d79bca2abe3d7e;hp=4f08375f2c0509fcdbfa5c621da26c8025672718;hpb=e24df7c27635dc996c466295eacf2981bddccaf7;p=lilypond.git diff --git a/lily/clef.cc b/lily/clef.cc index 4f08375f2c..0718f8bd53 100644 --- a/lily/clef.cc +++ b/lily/clef.cc @@ -3,41 +3,39 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2005 Han-Wen Nienhuys + (c) 1997--2006 Han-Wen Nienhuys */ #include "clef.hh" -#include "string.hh" -#include "stencil.hh" -#include "item.hh" #include "font-interface.hh" +#include "international.hh" +#include "item.hh" +#include "std-string.hh" +#include "stencil.hh" -/* - FIXME: should use symbol for #'style. -*/ -MAKE_SCHEME_CALLBACK (Clef, before_line_breaking, 1); +MAKE_SCHEME_CALLBACK (Clef, calc_glyph_name, 1); SCM -Clef::before_line_breaking (SCM smob) +Clef::calc_glyph_name (SCM smob) { Item *s = unsmob_item (smob); - SCM glyph = s->get_property ("glyph-name"); + SCM glyph = s->get_property ("glyph"); - if (!scm_is_string (glyph)) - s->suicide (); - else + if (scm_is_string (glyph)) { - 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->set_property ("glyph-name", scm_makfrom0str (str.to_str0 ())); } + + return scm_makfrom0str (str.c_str ()); } + s->suicide (); return SCM_UNSPECIFIED; } @@ -50,15 +48,21 @@ Clef::print (SCM smob) if (!scm_is_string (glyph_scm)) return SCM_EOL; - String glyph = 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.to_str0 ())); + me->warning (_f ("clef `%s' not found", glyph.c_str ())); return out.smobbed_copy (); } ADD_INTERFACE (Clef, "clef-interface", - "A clef sign", - "non-default full-size-change glyph-name"); + "A clef sign", + + /* properties */ + "full-size-change " + "glyph " + "glyph-name " + "non-default " + );