2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2000--2012 Jan Nieuwenhuizen <janneke@gnu.org>
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 "engraver.hh"
22 #include "international.hh"
23 #include "note-column.hh"
24 #include "pointer-group-interface.hh"
25 #include "side-position-interface.hh"
27 #include "stream-event.hh"
29 #include "translator.icc"
31 class Text_spanner_engraver : public Engraver
34 TRANSLATOR_DECLARATIONS (Text_spanner_engraver);
36 virtual void finalize ();
37 DECLARE_TRANSLATOR_LISTENER (text_span);
38 DECLARE_ACKNOWLEDGER (note_column);
39 void stop_translation_timestep ();
40 void process_music ();
45 Stream_event *current_event_;
46 Drul_array<Stream_event *> event_drul_;
50 Text_spanner_engraver::Text_spanner_engraver ()
55 event_drul_.set (0, 0);
58 IMPLEMENT_TRANSLATOR_LISTENER (Text_spanner_engraver, text_span);
60 Text_spanner_engraver::listen_text_span (Stream_event *ev)
62 Direction d = to_dir (ev->get_property ("span-direction"));
63 ASSIGN_EVENT_ONCE (event_drul_[d], ev);
67 Text_spanner_engraver::process_music ()
69 if (event_drul_[STOP])
72 event_drul_[STOP]->origin ()->warning (_ ("cannot find start of text spanner"));
76 announce_end_grob (finished_, SCM_EOL);
82 if (event_drul_[START])
85 event_drul_[START]->origin ()->warning (_ ("already have a text spanner"));
88 current_event_ = event_drul_[START];
89 span_ = make_spanner ("TextSpanner", event_drul_[START]->self_scm ());
91 Side_position_interface::set_axis (span_, Y_AXIS);
92 event_drul_[START] = 0;
98 Text_spanner_engraver::typeset_all ()
102 if (!finished_->get_bound (RIGHT))
104 Grob *e = unsmob_grob (get_property ("currentMusicalColumn"));
105 finished_->set_bound (RIGHT, e);
112 Text_spanner_engraver::stop_translation_timestep ()
114 if (span_ && !span_->get_bound (LEFT))
116 Grob *e = unsmob_grob (get_property ("currentMusicalColumn"));
117 span_->set_bound (LEFT, e);
121 event_drul_.set (0, 0);
125 Text_spanner_engraver::finalize ()
130 current_event_->origin ()->warning (_ ("unterminated text spanner"));
137 Text_spanner_engraver::acknowledge_note_column (Grob_info info)
141 Pointer_group_interface::add_grob (span_,
142 ly_symbol2scm ("note-columns"),
144 if (!span_->get_bound (LEFT))
145 add_bound_item (span_, info.grob ());
149 Pointer_group_interface::add_grob (finished_,
150 ly_symbol2scm ("note-columns"),
152 if (!finished_->get_bound (RIGHT))
153 add_bound_item (finished_, info.grob ());
157 ADD_ACKNOWLEDGER (Text_spanner_engraver, note_column);
159 ADD_TRANSLATOR (Text_spanner_engraver,
161 "Create text spanner from an event.",
167 "currentMusicalColumn ",