]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/col-info.hh
release: 1.0.15
[lilypond.git] / lily / include / col-info.hh
index 46f6cf20c3d4f87734246c30796bf9c8bae40fb1..3b412a321f4f128db6ba897b641b567f78ebe92f 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  col-info.hh -- declare 
+  col-info.hh -- declare Column_info
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "lily-proto.hh"
 #include "pointer.hh"
 #include "interval.hh"
+#include "drul-array.hh"
+
+struct Spacer_rod {
+  Real distance_f_;
+  int other_idx_;
+  void print () const;
+};
+
 
 /// helper struct for #Spacing_problem#
-struct Colinfo {
-    Paper_column *pcol_l_;
-    P<Real> fixpos_p_;
-    Interval width_;
-    int rank_i_;
-    /// did some tricks to make this column come out.
-    bool ugh_b_;               
-    /* *************** */
-    Colinfo();
-    Colinfo (Paper_column *,Real const *);
-
-    void print() const;
-    bool fixed() const { return fixpos_p_.get_C();}
-    Real fixed_position() const { return *fixpos_p_; }
+struct Column_info {
+  Paper_column *pcol_l_;
+  P<Real> fixpos_p_;
+
+  Interval width_;
+  int rank_i_;
+  /// did some tricks to make this column come out.
+  bool ugh_b_;         
+
+  Drul_array< Array<Spacer_rod> > rods_;
+  
+  Column_info();
+  Column_info (Paper_column *,Real const *);
+
+  int rank_i () const;
+  void print() const;
+  bool fixed_b() const ;
+  Real fixed_position() const ;
 };
 
 #endif // COL_INFO_HH