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"
21 #include "pointer-group-interface.hh"
23 #include "rhythmic-head.hh"
24 #include "side-position-interface.hh"
25 #include "staff-symbol-referencer.hh"
31 Create line-spanner grobs for lines that connect note heads.
33 TODO: have the line commit suicide if the notes are connected with
36 class Note_head_line_engraver : public Engraver
39 TRANSLATOR_DECLARATIONS (Note_head_line_engraver);
42 DECLARE_ACKNOWLEDGER (rhythmic_head);
43 void process_acknowledged ();
44 void stop_translation_timestep ();
54 Note_head_line_engraver::Note_head_line_engraver ()
64 Note_head_line_engraver::acknowledge_rhythmic_head (Grob_info info)
67 Context *tr = context ();
69 while (tr && !tr->is_alias (ly_symbol2scm ("Staff")))
70 tr = tr->get_parent_context ();
73 && tr->is_alias (ly_symbol2scm ("Staff")) && tr != last_staff_
74 && to_boolean (get_property ("followVoice")))
83 Note_head_line_engraver::process_acknowledged ()
85 if (!line_ && follow_ && last_head_ && head_)
87 /* TODO: Don't follow if there's a beam.
89 We can't do beam-stuff here, since beam doesn't exist yet.
90 Should probably store follow_ in line_, and suicide at some
93 line_ = make_spanner ("VoiceFollower", head_->self_scm ());
95 line_->set_bound (LEFT, last_head_);
96 line_->set_bound (RIGHT, head_);
103 Note_head_line_engraver::stop_translation_timestep ()
111 #include "translator.icc"
113 ADD_ACKNOWLEDGER (Note_head_line_engraver, rhythmic_head);
114 ADD_TRANSLATOR (Note_head_line_engraver,
116 "Engrave a line between two note heads, for example a"
117 " glissando. If @code{followVoice} is set, staff switches"
118 " also generate a line.",