X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finstrument-name-engraver.cc;h=a2bf75a777eb767b1dacf6890f59c7540a7317f6;hb=cd586e589daa7a550fa39200a78cb2012e853d99;hp=a42695aa1063489105c02e7d4a1d2a94cedfb451;hpb=df4a7c4a55148e065d878dcc2f7e09ac27ea9c32;p=lilypond.git diff --git a/lily/instrument-name-engraver.cc b/lily/instrument-name-engraver.cc index a42695aa10..a2bf75a777 100644 --- a/lily/instrument-name-engraver.cc +++ b/lily/instrument-name-engraver.cc @@ -1,92 +1,121 @@ -/* - new-staff-margin-engraver.cc -- implement Instrument_name_engraver - +/* + instrument-name-engraver.cc -- implement Instrument_name_engraver + source file of the GNU LilyPond music typesetter - - (c) 2000 Han-Wen Nienhuys - - */ + + (c) 2000--2006 Han-Wen Nienhuys +*/ #include "engraver.hh" -#include "item.hh" -#include "bar.hh" -#include "system-start-delimiter.hh" +#include "spanner.hh" +#include "pointer-group-interface.hh" #include "side-position-interface.hh" +#include "axis-group-interface.hh" #include "align-interface.hh" +#include "text-interface.hh" +#include "system.hh" + +#include "translator.icc" class Instrument_name_engraver : public Engraver { - Item *text_; - Grob * delim_ ; - - void create_text (SCM s); public: - VIRTUAL_COPY_CONS(Translator); - Instrument_name_engraver (); + TRANSLATOR_DECLARATIONS (Instrument_name_engraver); - virtual void acknowledge_grob (Grob_info); - virtual void stop_translation_timestep (); -}; +protected: + Spanner *text_spanner_; -ADD_THIS_TRANSLATOR(Instrument_name_engraver); + virtual void finalize (); + DECLARE_ACKNOWLEDGER (axis_group); + void process_music (); +}; Instrument_name_engraver::Instrument_name_engraver () { - text_ = 0; - delim_ =0; + text_spanner_ = 0; } - void -Instrument_name_engraver::stop_translation_timestep () +Instrument_name_engraver::process_music () { - if (text_) + if (!text_spanner_) { - typeset_grob (text_); - text_ = 0; + SCM long_text = get_property ("instrument"); + SCM short_text = get_property ("instr"); + + if (!(Text_interface::is_markup (long_text) + || Text_interface::is_markup (short_text))) + { + long_text = get_property ("vocalName"); + short_text = get_property ("vocNam"); + } + + if (Text_interface::is_markup (long_text) + || Text_interface::is_markup (short_text)) + { + text_spanner_ = make_spanner ("InstrumentName", SCM_EOL); + + Grob *col = unsmob_grob (get_property ("currentCommandColumn")); + text_spanner_->set_bound (LEFT, col); + text_spanner_->set_property ("text", short_text); + text_spanner_->set_property ("long-text", long_text); + } } } void -Instrument_name_engraver::create_text (SCM txt) +Instrument_name_engraver::acknowledge_axis_group (Grob_info info) { - if(!text_) + if (text_spanner_ + && dynamic_cast (info.grob ()) + && Axis_group_interface::has_axis (info.grob (), Y_AXIS) + && (!Align_interface::has_interface (info.grob ()))) { - text_ = new Item (get_property ("InstrumentName")); - text_->set_grob_property ("text", txt); - - if (delim_) - text_->set_parent (delim_, Y_AXIS); - - announce_grob (text_,0); + Grob *staff = info.grob(); + Pointer_group_interface::add_grob (text_spanner_, ly_symbol2scm ("elements"), staff); + Side_position_interface::add_support (text_spanner_, staff); } } void -Instrument_name_engraver::acknowledge_grob (Grob_info i) +Instrument_name_engraver::finalize () { - SCM s = get_property ("instrument"); - - if (now_mom () > Moment (0)) - s = get_property ("instr"); - - if (gh_string_p (s)) + if (text_spanner_) { - if (Bar::has_interface (i.elem_l_)) - { - create_text (s); - } - } + text_spanner_->set_bound (RIGHT, + unsmob_grob (get_property ("currentCommandColumn"))); - if (Align_interface::has_interface (i.elem_l_) - && Align_interface::axis (i.elem_l_) == Y_AXIS - //System_start_delimiter::has_interface (i.elem_l_) - && i.origin_trans_l_->daddy_trans_l_ == daddy_trans_l_) - { - delim_ = i.elem_l_; + Pointer_group_interface::set_ordered (text_spanner_, ly_symbol2scm ("elements"), false); + + System *system = get_root_system (text_spanner_); + + /* + UGH, should handle this in Score_engraver. + */ + if (system) + Axis_group_interface::add_element (system, text_spanner_); + else + text_spanner_->programming_error ("can't find root system"); } } +#include "translator.icc" + +ADD_ACKNOWLEDGER (Instrument_name_engraver, axis_group); +ADD_TRANSLATOR (Instrument_name_engraver, + /* doc */ + "Creates a system start text for instrument or vocal names.", + + /* create */ + "InstrumentName ", + + /* accept */ + "", + + /* read */ + "vocNam vocalName instrument instr " + "currentCommandColumn", + /* write */ "");