2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1998--2010 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 "rhythmic-head.hh"
21 #include "dot-column.hh"
22 #include "side-position-interface.hh"
23 #include "engraver.hh"
24 #include "translator.icc"
27 class Dot_column_engraver
: public Engraver
31 TRANSLATOR_DECLARATIONS (Dot_column_engraver
);
35 DECLARE_ACKNOWLEDGER (rhythmic_head
);
37 void stop_translation_timestep ();
40 Dot_column_engraver::Dot_column_engraver ()
46 Dot_column_engraver::stop_translation_timestep ()
52 Dot_column_engraver::acknowledge_rhythmic_head (Grob_info info
)
54 Grob
*d
= unsmob_grob (info
.grob ()->get_object ("dot"));
58 dotcol_
= make_item ("DotColumn", SCM_EOL
);
60 Dot_column::add_head (dotcol_
, info
.grob ());
65 ADD_ACKNOWLEDGER (Dot_column_engraver
, rhythmic_head
);
66 ADD_TRANSLATOR (Dot_column_engraver
,
68 "Engrave dots on dotted notes shifted to the right of the"
69 " note. If omitted, then dots appear on top of the notes.",