]> git.donarmstrong.com Git - lilypond.git/blob - lily/script-column-engraver.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / script-column-engraver.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1999--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 "engraver.hh"
21 #include "script-column.hh"
22 #include "side-position-interface.hh"
23 #include "item.hh"
24
25 #include "translator.icc"
26
27 using std::vector;
28
29 /**
30    Find potentially colliding scripts, and put them in a
31    Script_column, that will fix the collisions.  */
32 class Script_column_engraver : public Engraver
33 {
34   Grob *script_column_;
35   vector<Grob *> scripts_;
36
37 public:
38   TRANSLATOR_DECLARATIONS (Script_column_engraver);
39 protected:
40   DECLARE_ACKNOWLEDGER (side_position);
41   void process_acknowledged ();
42   void stop_translation_timestep ();
43 };
44
45 Script_column_engraver::Script_column_engraver ()
46 {
47   script_column_ = 0;
48 }
49
50 void
51 Script_column_engraver::stop_translation_timestep ()
52 {
53   if (script_column_)
54     {
55       for (vsize i = 0; i < scripts_.size (); i++)
56         if (Side_position_interface::get_axis (scripts_[i]) == Y_AXIS)
57           Script_column::add_side_positioned (script_column_, scripts_[i]);
58     }
59
60   script_column_ = 0;
61   scripts_.clear ();
62 }
63
64 void
65 Script_column_engraver::acknowledge_side_position (Grob_info inf)
66 {
67   Item *thing = dynamic_cast<Item *> (inf.grob ());
68   if (thing)
69     {
70       if (!Item::is_non_musical (thing))
71         scripts_.push_back (thing);
72     }
73 }
74
75 void
76 Script_column_engraver::process_acknowledged ()
77 {
78   if (!script_column_ && scripts_.size () > 1)
79     script_column_ = make_item ("ScriptColumn", SCM_EOL);
80 }
81
82 ADD_ACKNOWLEDGER (Script_column_engraver, side_position);
83 ADD_TRANSLATOR (Script_column_engraver,
84                 /* doc */
85                 "Find potentially colliding scripts and put them into a"
86                 " @code{ScriptColumn} object; that will fix the collisions.",
87
88                 /* create */
89                 "ScriptColumn ",
90
91                 /* read */
92                 "",
93
94                 /* write */
95                 ""
96                );