X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fchord-name.cc;h=620075396f4cc924be6c0a710319ea0a175a7a4c;hb=b55303a78f027962dbebf62dbe396325f3b6e1a5;hp=2b17c561b35a2af5f3d8e15a739d07b9b910ffe6;hpb=a0f4b682135cf77e168a7201adbb4d083a1972d4;p=lilypond.git diff --git a/lily/chord-name.cc b/lily/chord-name.cc index 2b17c561b3..620075396f 100644 --- a/lily/chord-name.cc +++ b/lily/chord-name.cc @@ -3,16 +3,16 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2000 Jan Nieuwenhuizen + (c) 1999--2002 Jan Nieuwenhuizen */ #include "chord-name.hh" #include "molecule.hh" #include "paper-def.hh" #include "font-interface.hh" -#include "score-element.hh" +#include "grob.hh" #include "paper-column.hh" -#include "line-of-score.hh" +#include "system.hh" #include "staff-symbol-referencer.hh" #include "text-item.hh" @@ -20,18 +20,13 @@ MAKE_SCHEME_CALLBACK (Chord_name,after_line_breaking,1); SCM Chord_name::after_line_breaking (SCM smob) { - Item* me = dynamic_cast (unsmob_element (smob)); + Item* me = unsmob_item (smob); assert (me); - SCM s = me->get_elt_property ("begin-of-line-visible"); + SCM s = me->get_grob_property ("begin-of-line-visible"); if (to_boolean (s)) { if (Paper_column::rank_i (me->column_l ()) - - /* - hmm, what's my column number in this line? - why doesn't this work? - me->line_l ()->rank_i_ > 2) - */ me->line_l ()->spanned_rank_iv ()[LEFT] > 1) me->suicide (); } @@ -42,28 +37,20 @@ MAKE_SCHEME_CALLBACK (Chord_name,brew_molecule,1); SCM Chord_name::brew_molecule (SCM smob) { - Score_element *me = unsmob_element (smob); - SCM style = me->get_elt_property ("style"); + Grob *me = unsmob_grob (smob); + SCM style = me->get_grob_property ("style"); - if (!gh_string_p (style)) - style = ly_str02scm ("banter"); + if (!gh_symbol_p (style)) + style = ly_symbol2scm ("banter"); - SCM inversion = me-> get_elt_property ("inversion"); - if (inversion == SCM_EOL) - inversion = SCM_BOOL_F; + SCM chord = me->get_grob_property ("chord"); + SCM func = me->get_grob_property ("chord-name-function"); + SCM text = gh_call2 (func, style, chord); - SCM bass = me->get_elt_property ("bass"); - if (bass == SCM_EOL) - bass = SCM_BOOL_F; - - SCM pitches = me->get_elt_property ("pitches"); - SCM func = me->get_elt_property (ly_symbol2scm ("chord-name-function")); - SCM text = gh_call3 (func, style, pitches, gh_cons (inversion, bass)); - - SCM properties = gh_list (me->mutable_property_alist_, me->immutable_property_alist_, SCM_UNDEFINED); + SCM properties = Font_interface::font_alist_chain (me); Molecule mol = Text_item::text2molecule (me, text, properties); - SCM space = me->get_elt_property ("word-space"); + SCM space = me->get_grob_property ("word-space"); if (gh_number_p (space)) { Molecule m; @@ -72,5 +59,11 @@ Chord_name::brew_molecule (SCM smob) Staff_symbol_referencer::staff_space (me)); } - return mol.create_scheme (); + return mol.smobbed_copy (); } + + +ADD_INTERFACE (Chord_name, "chord-name-interface", + "generate a chord name", + "pitches chord chord-name-function inversion bass begin-of-line-visible"); +