]> git.donarmstrong.com Git - lilypond.git/blob - lily/script-column-engraver.cc
74778be83de33f7273460d7257bf891ebe67dee1
[lilypond.git] / lily / script-column-engraver.cc
1 /*
2   script-column-engraver.cc -- implement Script_column_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "engraver.hh"
10 #include "script-column.hh"
11 #include "side-position-interface.hh"
12
13 #include "translator.icc"
14
15 /**
16    Find potentially colliding scripts, and put them in a
17    Script_column, that will fix the collisions.  */
18 class Script_column_engraver : public Engraver
19 {
20   Grob *scol_;
21   Link_array<Item> scripts_;
22
23 public:
24   TRANSLATOR_DECLARATIONS (Script_column_engraver);
25 protected:
26   DECLARE_ACKNOWLEDGER (side_position);
27   void process_acknowledged ();
28   void stop_translation_timestep ();
29 };
30
31 Script_column_engraver::Script_column_engraver ()
32 {
33   scol_ = 0;
34 }
35
36 void
37 Script_column_engraver::stop_translation_timestep ()
38 {
39   if (scol_)
40     {
41       for (int i = 0; i < scripts_.size (); i++)
42         if (Side_position_interface::get_axis (scripts_[i]) == Y_AXIS)
43           Script_column::add_staff_sided (scol_, scripts_[i]);
44     }
45
46   scol_ = 0;
47   scripts_.clear ();
48 }
49
50 void
51 Script_column_engraver::acknowledge_side_position (Grob_info inf)
52 {
53   Item *thing = dynamic_cast<Item *> (inf.grob ());
54   if (thing)
55     {
56       if (!Item::is_breakable (thing))
57         scripts_.push (thing);
58     }
59 }
60
61 void
62 Script_column_engraver::process_acknowledged ()
63 {
64   if (!scol_ && scripts_.size () > 1)
65     scol_ = make_item ("ScriptColumn", SCM_EOL);
66 }
67
68 ADD_ACKNOWLEDGER (Script_column_engraver, side_position);
69 ADD_TRANSLATOR (Script_column_engraver,
70                 /* doc */ "",
71                 /* create */ "ScriptColumn",
72                 /* accept */ "",
73                 /* read */ "",
74                 /* write */ "");