]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/collision.hh
release: 1.3.51
[lilypond.git] / lily / include / collision.hh
index 6ab5db3fad20db9ca5b41ff6b083921b772fa774..4cb7b615ec8d8cec906e466999c0f6260881055c 100644 (file)
@@ -3,31 +3,48 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef COLLISION_HH
 #define COLLISION_HH
 #include "lily-proto.hh"
-#include "elem-group-item.hh"
+#include "item.hh"
+
 
 /**
   Resolve conflicts between various Note_columns (chords).
   
   TODO 
 
-  multistaff support (see Chlapik: equal noteheads should be on the
+  multistaff support (see Chlapik: equal noteheads should be on the
   same hpos.)  
+
+  * Make interface of this, similar to align-interface.
+  
+  Properties:
+
+  elements -- (see Axis_group_interface)
+
+  merge-differently-dotted -- merge black noteheads with differing dot count.
+
+  horizontal-shift -- integer that identifies ranking of note-column for horizontal shifting.
+  
+  force-hshift -- amount of collision_note_width that overides automatic collision settings.
+  Read and removed from elements.
+  
 */
-class Collision : public Horizontal_vertical_group_item {
+class Collision : public Item
+{
 protected:
-    virtual void do_substitute_dependency (Score_elem*,Score_elem*);
-    virtual void do_pre_processing();
+  SCM automatic_shift ();
+  SCM forced_shift ();
+  void do_shifts ();  
+  virtual void before_line_breaking ();
 public:
-    Link_array<Note_column> clash_l_arr_;
-    DECLARE_MY_RUNTIME_TYPEINFO;
-    void add (Note_column*ncol_l);
-    Collision();
+    
+  void add_column (Note_column*ncol_l);
+  Collision();
 };
 #endif // COLLISION_HH