release commit
[lilypond.git] / lily / dot-column-engraver.cc
blob55956b3eb44659aa0b8c470709df65f3aca4fefa
1 /*
2 dot-column-engraver.cc -- implement Dot_column_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
11 #include "rhythmic-head.hh"
12 #include "dot-column.hh"
13 #include "side-position-interface.hh"
14 #include "engraver.hh"
15 #include "stem.hh"
17 class Dot_column_engraver : public Engraver
19 Grob *dotcol_ ;
20 Grob * stem_;
21 Link_array<Item> heads_;
22 public:
23 TRANSLATOR_DECLARATIONS(
24 Dot_column_engraver );
26 protected:
27 virtual void acknowledge_grob (Grob_info);
28 virtual void stop_translation_timestep ();
32 Dot_column_engraver::Dot_column_engraver ()
34 dotcol_ =0;
35 stem_ = 0;
38 void
39 Dot_column_engraver::stop_translation_timestep ()
41 if (dotcol_)
45 Add the stem to the support so dots stay clear of flags.
47 See [Ross, p 171]
49 if (stem_)
50 dotcol_->set_grob_property ("stem", stem_->self_scm ());
52 typeset_grob (dotcol_);
53 dotcol_ =0;
55 heads_.clear ();
56 stem_ =0;
59 void
60 Dot_column_engraver::acknowledge_grob (Grob_info info)
62 Grob *d = unsmob_grob (info.grob_->get_grob_property ("dot"));
63 if (d)
65 if (!dotcol_)
67 dotcol_ = new Item (get_property ("DotColumn"));
68 announce_grob(dotcol_, SCM_EOL);
71 Dot_column::add_head (dotcol_, info.grob_);
73 else if (Stem::has_interface (info.grob_))
75 stem_ = info.grob_;
82 ENTER_DESCRIPTION(Dot_column_engraver,
83 /* descr */ " Engraves dots on dotted notes shifted to the right of the note.\n"
84 "If omitted, then dots appear on top of the notes.",
85 /* creats*/ "DotColumn",
86 /* accepts */ "",
87 /* acks */ "rhythmic-head-interface dot-column-interface stem-interface",
88 /* reads */ "",
89 /* write */ "");