]> git.donarmstrong.com Git - lilypond.git/blob - lily/dot-column-engraver.cc
Doc-es: various updates.
[lilypond.git] / lily / dot-column-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1998--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
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.
10
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.
15
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/>.
18 */
19
20 #include "rhythmic-head.hh"
21 #include "dot-column.hh"
22 #include "side-position-interface.hh"
23 #include "engraver.hh"
24 #include "translator.icc"
25 #include "item.hh"
26
27 class Dot_column_engraver : public Engraver
28 {
29   Grob *dotcol_;
30 public:
31   TRANSLATOR_DECLARATIONS (Dot_column_engraver);
32
33 protected:
34
35   void acknowledge_rhythmic_head (Grob_info);
36
37   void stop_translation_timestep ();
38 };
39
40 Dot_column_engraver::Dot_column_engraver (Context *c)
41   : Engraver (c)
42 {
43   dotcol_ = 0;
44 }
45
46 void
47 Dot_column_engraver::stop_translation_timestep ()
48 {
49   dotcol_ = 0;
50 }
51
52 void
53 Dot_column_engraver::acknowledge_rhythmic_head (Grob_info info)
54 {
55   Grob *d = unsmob<Grob> (info.grob ()->get_object ("dot"));
56   if (d)
57     {
58       if (!dotcol_)
59         dotcol_ = make_item ("DotColumn", SCM_EOL);
60
61       Dot_column::add_head (dotcol_, info.grob ());
62     }
63 }
64
65 void
66 Dot_column_engraver::boot ()
67 {
68   ADD_ACKNOWLEDGER (Dot_column_engraver, rhythmic_head);
69 }
70
71 ADD_TRANSLATOR (Dot_column_engraver,
72                 /* doc */
73                 "Engrave dots on dotted notes shifted to the right of the"
74                 " note.  If omitted, then dots appear on top of the notes.",
75
76                 /* create */
77                 "DotColumn ",
78
79                 /* read */
80                 "",
81
82                 /* write */
83                 ""
84                );