2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2000--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "align-interface.hh"
21 #include "axis-group-interface.hh"
22 #include "engraver.hh"
23 #include "page-layout-problem.hh"
24 #include "pointer-group-interface.hh"
25 #include "side-position-interface.hh"
27 #include "text-interface.hh"
29 #include "translator.icc"
31 class Instrument_name_engraver : public Engraver
34 TRANSLATOR_DECLARATIONS (Instrument_name_engraver);
37 Spanner *text_spanner_;
42 vector<Grob *> axis_groups_;
43 vector<Grob *> backup_axis_groups_;
45 virtual void finalize ();
46 DECLARE_ACKNOWLEDGER (axis_group);
47 void process_music ();
48 void start_spanner ();
49 void consider_start_spanner ();
52 virtual void derived_mark () const;
56 Instrument_name_engraver::derived_mark () const
58 scm_gc_mark (long_text_);
59 scm_gc_mark (short_text_);
62 Instrument_name_engraver::Instrument_name_engraver ()
67 short_text_ = SCM_EOL;
71 Instrument_name_engraver::process_music ()
73 consider_start_spanner ();
77 Instrument_name_engraver::consider_start_spanner ()
79 SCM long_text = get_property ("instrumentName");
80 SCM short_text = get_property ("shortInstrumentName");
82 if (!(Text_interface::is_markup (long_text)
83 || Text_interface::is_markup (short_text)))
85 long_text = get_property ("vocalName");
86 short_text = get_property ("shortVocalName");
89 if ((Text_interface::is_markup (long_text)
90 || Text_interface::is_markup (short_text))
92 || short_text_ != short_text
93 || long_text_ != long_text))
98 short_text_ = short_text;
99 long_text_ = long_text;
106 Instrument_name_engraver::start_spanner ()
108 text_spanner_ = make_spanner ("InstrumentName", SCM_EOL);
110 Grob *col = unsmob_grob (get_property ("currentCommandColumn"));
111 text_spanner_->set_bound (LEFT, col);
112 text_spanner_->set_property ("text", short_text_);
113 text_spanner_->set_property ("long-text", long_text_);
116 UGH, should handle this in Score_engraver.
118 Grob *system = unsmob_grob (get_property ("rootSystem"));
120 Axis_group_interface::add_element (system, text_spanner_);
122 text_spanner_->programming_error ("cannot find root system");
126 Instrument_name_engraver::acknowledge_axis_group (Grob_info info)
128 if (dynamic_cast<Spanner *> (info.grob ())
129 && Axis_group_interface::has_axis (info.grob (), Y_AXIS)
133 && !info.grob ()->internal_has_interface (ly_symbol2scm ("dynamic-interface"))
134 && !info.grob ()->internal_has_interface (ly_symbol2scm ("piano-pedal-interface"))
135 && !info.grob ()->internal_has_interface (ly_symbol2scm ("volta-interface"))
136 && (!Align_interface::has_interface (info.grob ())))
138 if (Page_layout_problem::is_spaceable (info.grob ()))
139 axis_groups_.push_back (info.grob ());
141 // By default, don't include non-spaceable staves in the
142 // support of an instrument name. However, if the only staves
143 // are non-spaceable, we'll fall back to using them.
144 backup_axis_groups_.push_back (info.grob ());
149 Instrument_name_engraver::finalize ()
156 Instrument_name_engraver::stop_spanner ()
158 if (axis_groups_.empty ())
159 axis_groups_ = backup_axis_groups_;
161 for (vsize i = 0; i < axis_groups_.size (); i++)
162 Pointer_group_interface::add_grob (text_spanner_,
163 ly_symbol2scm ("elements"),
166 text_spanner_->set_bound (RIGHT,
167 unsmob_grob (get_property ("currentCommandColumn")));
169 Pointer_group_interface::set_ordered (text_spanner_,
170 ly_symbol2scm ("elements"),
176 ADD_ACKNOWLEDGER (Instrument_name_engraver, axis_group);
178 ADD_TRANSLATOR (Instrument_name_engraver,
180 "Create a system start text for instrument or vocal names.",
186 "currentCommandColumn "
188 "shortInstrumentName "