X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fclef-item.cc;h=d7c323ee609b38d463ecbc5e6de38aa6394c2eee;hb=refs%2Ftags%2Frelease%2F1.5.9;hp=6503c3a1d5eb7a744eedc35d020f1ac151a80738;hpb=2b0aa2c5bbb4af4e7d0d3c057de066dc1d6d6b8d;p=lilypond.git diff --git a/lily/clef-item.cc b/lily/clef-item.cc index 6503c3a1d5..d7c323ee60 100644 --- a/lily/clef-item.cc +++ b/lily/clef-item.cc @@ -3,88 +3,73 @@ source file of the GNU LilyPond music typesetter - (c) 1997--1999 Han-Wen Nienhuys + (c) 1997--2001 Han-Wen Nienhuys */ -#include -#include "clef-item.hh" + +#include "clef.hh" #include "string.hh" #include "molecule.hh" -#include "paper-def.hh" -#include "lookup.hh" -#include "text-item.hh" -#include "paper-score.hh" -#include "dimension-cache.hh" - -void -Clef_item::do_pre_processing() -{ - Staff_symbol_referencer::do_pre_processing(); - SCM style_sym =get_elt_property ("style"); - String style; - if (style_sym != SCM_UNDEFINED) - style = ly_scm2string (style_sym); - - if (break_status_dir() != RIGHT && style != "fullSizeChanges") - symbol_ += "_change"; - if (style == "transparent") - { - set_elt_property ("transparent", SCM_BOOL_T); - set_empty (true, X_AXIS); - } -} +#include "item.hh" +#include "font-interface.hh" /* - FIXME + FIXME: should use symbol for #'style. */ -Clef_item::Clef_item() +MAKE_SCHEME_CALLBACK (Clef,before_line_breaking,1); +SCM +Clef::before_line_breaking (SCM smob) { - set_elt_property ("breakable", SCM_BOOL_T); + Item * s = dynamic_cast (unsmob_grob (smob)); - symbol_ = "treble"; - set_position(-2); -} - -void -Clef_item::do_add_processing () -{ - if (!break_status_dir ()) // broken stuff takes care of their own texts + SCM glyph = s->get_grob_property ("glyph-name"); + + if (gh_string_p (glyph)) { - Text_item *g =0; + String str = ly_scm2string (glyph); - SCM octave_dir = remove_elt_property ("octave-dir"); - if (octave_dir != SCM_UNDEFINED) + if (to_boolean (s->get_grob_property ("non-default")) + && s->break_status_dir () != RIGHT + && !to_boolean (s->get_grob_property ("full-size-change"))) { - Direction d = Direction (gh_scm2int (octave_dir)); - g = new Text_item; - pscore_l_->typeset_element (g); - - g->text_str_ = "8"; - g->set_elt_property ("style", gh_str02scm ("italic")); - g->set_parent (this, Y_AXIS); - g->set_parent (this, X_AXIS); - - add_dependency (g); // just to be sure. - - Real r = do_height ()[d] - g->extent (Y_AXIS)[-d]; - g->dim_cache_[Y_AXIS]->set_offset (r); - - SCM my_vis = get_elt_property ("visibility-lambda"); - if (my_vis != SCM_UNDEFINED) - g->set_elt_property ("visibility-lambda", my_vis); - + str += "_change"; + s->set_grob_property ("glyph-name", ly_str02scm (str.ch_C ())); } - } + else + { + s->suicide (); + return SCM_UNSPECIFIED; + } + + return SCM_UNSPECIFIED; } -Molecule* -Clef_item::do_brew_molecule_p() const +bool +Clef::has_interface (Grob* me) { - Molecule*output = new Molecule (lookup_l ()->clef (symbol_)); - return output; + return me->has_interface (ly_symbol2scm ("clef-interface")); } +void +Clef::set_interface (Grob* me) +{ + me->set_interface (ly_symbol2scm ("clef-interface")); +} - +MAKE_SCHEME_CALLBACK (Clef,brew_molecule,1) +SCM +Clef::brew_molecule (SCM smob) +{ + Grob * sc = unsmob_grob (smob); + SCM glyph = sc->get_grob_property ("glyph-name"); + if (gh_string_p (glyph)) + { + return Font_interface::get_default_font (sc)->find_by_name (String (ly_scm2string (glyph))).smobbed_copy (); + } + else + { + return SCM_EOL; + } +}