]> git.donarmstrong.com Git - lilypond.git/blob - lily/balloon-engraver.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / balloon-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2006--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
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 "engraver.hh"
21
22 #include "stream-event.hh"
23 #include "item.hh"
24
25 #include "translator.icc"
26
27 using std::vector;
28
29 class Balloon_engraver : public Engraver
30 {
31   TRANSLATOR_DECLARATIONS (Balloon_engraver);
32
33   DECLARE_TRANSLATOR_LISTENER (annotate_output);
34   DECLARE_ACKNOWLEDGER (grob);
35   vector<Stream_event *> events_;
36
37   void stop_translation_timestep ();
38
39   void balloonify (Grob *, Stream_event *);
40 };
41
42 IMPLEMENT_TRANSLATOR_LISTENER (Balloon_engraver, annotate_output);
43 void
44 Balloon_engraver::listen_annotate_output (Stream_event *ev)
45 {
46   events_.push_back (ev);
47 }
48
49 void
50 Balloon_engraver::stop_translation_timestep ()
51 {
52   events_.clear ();
53 }
54
55 Balloon_engraver::Balloon_engraver ()
56 {
57 }
58
59 void
60 Balloon_engraver::balloonify (Grob *g, Stream_event *event)
61 {
62   Grob *b = make_item ("BalloonTextItem", event->self_scm ());
63   b->set_property ("text", event->get_property ("text"));
64   b->set_parent (g, Y_AXIS);
65   b->set_parent (g, X_AXIS);
66 }
67
68 void
69 Balloon_engraver::acknowledge_grob (Grob_info info)
70 {
71   Stream_event *cause = info.event_cause ();
72
73   SCM arts = cause ? cause->get_property ("articulations") : SCM_EOL;
74   for (SCM s = arts; scm_is_pair (s); s = scm_cdr (s))
75     {
76       Stream_event *e = unsmob<Stream_event> (scm_car (s));
77       if (e->in_event_class ("annotate-output-event"))
78         {
79           balloonify (info.grob (), e);
80         }
81     }
82
83   for (vsize i = 0; i < events_.size (); i++)
84     {
85       if (info.grob ()->name () == ly_symbol2string (events_[i]->get_property ("symbol")))
86         balloonify (info.grob (), events_[i]);
87     }
88 }
89
90 ADD_ACKNOWLEDGER (Balloon_engraver, grob);
91
92 ADD_TRANSLATOR (Balloon_engraver,
93                 /* doc */
94                 "Create balloon texts.",
95
96                 /* create */
97                 "BalloonTextItem ",
98
99                 /*read*/
100                 "",
101
102                 /*write*/
103                 ""
104                );