X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fclef-item.cc;h=faf226af33a920089606c7f9c850a90ebd43054f;hb=e0833e924a7b626154c66170d98335c6c4985dfe;hp=6503c3a1d5eb7a744eedc35d020f1ac151a80738;hpb=2b0aa2c5bbb4af4e7d0d3c057de066dc1d6d6b8d;p=lilypond.git diff --git a/lily/clef-item.cc b/lily/clef-item.cc index 6503c3a1d5..faf226af33 100644 --- a/lily/clef-item.cc +++ b/lily/clef-item.cc @@ -3,88 +3,66 @@ source file of the GNU LilyPond music typesetter - (c) 1997--1999 Han-Wen Nienhuys + (c) 1997--2000 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" /* - 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_element (smob)); - symbol_ = "treble"; - set_position(-2); -} + SCM style_sym =s->get_elt_property ("style"); + String style; + if (gh_string_p (style_sym)) + style = ly_scm2string (style_sym); -void -Clef_item::do_add_processing () -{ - if (!break_status_dir ()) // broken stuff takes care of their own texts + SCM glyph = s->get_elt_property ("glyph"); + + 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) + /* + FIXME: should use fontsize property to set clef changes. + */ + if (s->get_elt_property ("non-default") && + s->break_status_dir() != RIGHT && style != "fullSizeChanges") { - 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_elt_property ("glyph", 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 (Score_element* me) { - Molecule*output = new Molecule (lookup_l ()->clef (symbol_)); - return output; + return me->has_interface (ly_symbol2scm ("clef-interface")); } +void +Clef::set_interface (Score_element* me) +{ + me->set_interface (ly_symbol2scm ("clef-interface")); +}