]> git.donarmstrong.com Git - lilypond.git/blob - lily/script-column-engraver.cc
remove
[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--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "engraver.hh"
11 #include "script-column.hh"
12 #include "item.hh"
13 #include "side-position-interface.hh"
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   virtual void acknowledge_grob (Grob_info);
27   virtual void process_acknowledged_grobs ();
28   virtual void stop_translation_timestep ();
29 };
30
31
32 Script_column_engraver::Script_column_engraver ()
33 {
34   scol_ =0;
35 }
36
37 void
38 Script_column_engraver::stop_translation_timestep ()
39 {
40   scol_ =0;
41   scripts_.clear ();
42 }
43
44 void
45 Script_column_engraver::acknowledge_grob (Grob_info inf) 
46 {
47   Item *thing = dynamic_cast<Item*> (inf.grob_);
48   if (thing && Side_position_interface::has_interface (inf.grob_)) // ugh FIXME
49     {
50       if (!Item::is_breakable (thing)
51           && Side_position_interface::get_axis (inf.grob_) == Y_AXIS)
52         {
53           scripts_.push (thing);
54         }
55     }
56 }
57
58 void
59 Script_column_engraver::process_acknowledged_grobs ()
60 {
61   if (!scol_ && scripts_.size () > 1)
62     {
63       scol_ = make_item ("ScriptColumn", SCM_EOL);
64       
65     }
66
67   if (scol_)
68     {
69       for (int i=0; i < scripts_.size (); i++)
70         Script_column::add_staff_sided (scol_, scripts_[i]);
71       scripts_.clear ();
72     }
73
74 }
75
76 ENTER_DESCRIPTION (Script_column_engraver,
77 /* descr */       "",
78 /* creats*/       "ScriptColumn",
79 /* accepts */     "",
80 /* acks  */      "side-position-interface",
81 /* reads */       "",
82 /* write */       "");