]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/paper-column.cc
ignore gcstat files.
[lilypond.git] / lily / paper-column.cc
index fccdba6e7f694d4549f0008438126e17fbc6ba0f..0f01da091e640ce395962b0eeeee7600d06d828c 100644 (file)
@@ -45,6 +45,12 @@ Paper_column::get_system () const
   return system_;
 }
 
+void
+Paper_column::set_system (System *s)
+{
+  system_ = s;
+}
+
 Paper_column *
 Paper_column::get_column () const
 {
@@ -73,6 +79,16 @@ Paper_column::compare (Grob * const &a,
               - dynamic_cast<Paper_column*> (b)->rank_);
 }
 
+bool
+Paper_column::less_than (Grob *const &a,
+                        Grob *const &b)
+{
+  Paper_column *pa = dynamic_cast<Paper_column*> (a);
+  Paper_column *pb = dynamic_cast<Paper_column*> (b);
+  
+  return pa->rank_ < pb->rank_;
+}
+
 Moment
 Paper_column::when_mom (Grob *me)
 {
@@ -206,6 +222,7 @@ ADD_INTERFACE (Paper_column,
               /* properties */
               "between-cols "
               "bounded-by-me "
+              "grace-spacing " 
               "line-break-system-details "
               "line-break-penalty "
               "line-break-permission "
@@ -213,8 +230,10 @@ ADD_INTERFACE (Paper_column,
               "page-break-permission "
               "page-turn-penalty "
               "page-turn-permission "
+              "rhythmic-location "
               "shortest-playing-duration "
               "shortest-starter-duration "
+              "spacing "
               "used "
               "when ");