]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/score-column.hh
release: 1.0.15
[lilypond.git] / lily / include / score-column.hh
index 396fc0312b93841a216e0261d7e03185e4c23d39..dfe944c5a589ccd7588959ddca8ff9ae24a29e37 100644 (file)
@@ -3,7 +3,7 @@
 
   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>
 */
 
 
 #define SCORE_COLUMN_HH
 
 #include "lily-proto.hh"
-#include "varray.hh"
+#include "array.hh"
 #include "moment.hh"
 #include "p-col.hh"
 
 /**
+  Column with durational info.
+  
+  The columns which contain data have a rhythmical
+  position. Score_column is the type with a rhythmical time attached
+  to it. The calculation of idealspacing is done with data in these
+  columns. (notably: the #durations# field)
 
-    When typesetting hasn't started on PScore yet, the columns which
-    contain data have a rhythmical position. Score_column is the type
-    with a rhythmical time attached to it. The calculation of
-    idealspacing is done with data in these columns. (notably: the
-    #durations# field)
+  */
 
-    */
+class Score_column : public Paper_column {
+  friend class Score;
+  friend class Score_engraver;
 
-class Score_column : public PCol {
-    friend class Score;
-    friend class Score_engraver;
+  bool musical_b_;
+  int break_penalty_i_;
+  Moment when_;
 
-    bool musical_b_;
-    Moment when_;
 public:
-    /// length of notes/rests in this column
-    Array<Moment> durations;
+  int break_penalty_i () { return break_penalty_i_; }
+  DECLARE_MY_RUNTIME_TYPEINFO;
+  SCORE_ELEMENT_CLONE(Score_column);
+  /// length of notes/rests in this column
+  Array<Moment> durations;
     
-    /* *************** */
-
-    Moment when() {  return when_; }
-    Score_column(Moment when);       
-    void add_duration(Moment );
-    void preprocess();
-    bool musical_b() { return musical_b_; }
-    void print() const;
-    virtual void do_set_breakable();
-
 
+  Moment when() {  return when_; }
+  Score_column (Moment when);       
+  void add_duration (Moment);
+  void preprocess();
+  bool musical_b() { return musical_b_; }
+  void do_print() const;
 };
 
 #endif // SCORE_COLUMN_HH