]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/constrained-breaking.hh
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / lily / include / constrained-breaking.hh
index e6d898e6a0903e7623143a508c17bfe880aab1ce..f29ee6310fef8d9e68257a112230f091285d2639 100644 (file)
 #include "matrix.hh"
 #include "prob.hh"
 
+/*
+ * Begin/rest-of-line hack.  This geometrical shape is a crude approximation
+ * of Skyline, but it is better than a rectangle.
+ */
+struct Line_shape
+{
+  Interval begin_;
+  Interval rest_;
+
+  Line_shape ()
+  {
+  }
+  Line_shape (Interval begin, Interval rest);
+  Line_shape piggyback (Line_shape mount, Real padding) const;
+};
+
 struct Line_details {
   Grob *last_column_;
   Real force_;
-  Interval extent_;   /* Y-extent of the system */
+  Line_shape shape_;
+  Interval refpoint_extent_; /* The refpoints of the first and last
+                               spaceable staff in this line.  min-distance
+                               should be measured from the bottom
+                               refpoint_extent of one line to the
+                               top refpoint_extent of the next. */
+  Real tallness_; /* Y-extent, adjusted according to begin/rest-of-line*/
 
   Real padding_;  /* compulsory space after this system (if we're not
                     last on a page) */
   Real title_padding_;
+  Real min_distance_;
+  Real title_min_distance_;
   Real bottom_padding_;
   Real space_;    /* spring length */
   Real inverse_hooke_;
@@ -54,6 +78,7 @@ struct Line_details {
   int compressed_nontitle_lines_count_;
   bool last_markup_line_;
   bool first_markup_line_;
+  bool tight_spacing_;
 
   Line_details ()
   {
@@ -62,8 +87,11 @@ struct Line_details {
     padding_ = 0;
     title_padding_ = 0;
     bottom_padding_ = 0;
+    min_distance_ = 0;
+    title_min_distance_ = 0;
     space_ = 0;
     inverse_hooke_ = 1;
+    tight_spacing_ = false;
     break_permission_ = ly_symbol2scm ("allow");
     page_permission_ = ly_symbol2scm ("allow");
     turn_permission_ = ly_symbol2scm ("allow");
@@ -75,9 +103,12 @@ struct Line_details {
     compressed_nontitle_lines_count_ = 1;
     last_markup_line_ = false;
     first_markup_line_ = false;
+    tallness_ = 0;
   }
 
   Line_details (Prob *pb, Output_def *paper);
+  Real full_height () const;
+  Real tallness () const;
 };
 
 /*
@@ -128,9 +159,14 @@ private:
   vsize systems_;
   bool ragged_right_;
   bool ragged_last_;
-  Real between_system_space_;
-  Real before_title_padding_;
-  Real between_system_padding_;
+
+  Real system_system_min_distance_;
+  Real system_system_padding_;
+  Real system_system_space_;
+  Real score_system_min_distance_;
+  Real score_system_padding_;
+  Real score_markup_min_distance_;
+  Real score_markup_padding_;
 
   /* the (i,j)th entry is the configuration for breaking between
     columns i and j */