]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix 801 and 1088.
authorJoe Neeman <joeneeman@gmail.com>
Thu, 17 Jun 2010 07:31:56 +0000 (10:31 +0300)
committerJoe Neeman <joeneeman@gmail.com>
Thu, 17 Jun 2010 07:31:56 +0000 (10:31 +0300)
Manually shift the dots on a rest so that the horizontal collision
avoidance sees them (even though they cannot be positioned properly
until after line breaking).

input/regression/dot-rest-horizontal-spacing.ly [new file with mode: 0644]
lily/dot-column.cc

diff --git a/input/regression/dot-rest-horizontal-spacing.ly b/input/regression/dot-rest-horizontal-spacing.ly
new file mode 100644 (file)
index 0000000..b294ba2
--- /dev/null
@@ -0,0 +1,8 @@
+\version "2.13.24"
+
+\header {
+  texidoc = "The dots on a dotted rest are correctly accounted for
+in horizontal spacing."
+}
+
+{ r16. cis'' }
index e36980a92f3bc8d30dafea88c529c931ddece722..2951741fb60536ad783f27fcfb40c572759cbde7 100644 (file)
@@ -128,7 +128,7 @@ Dot_column::calc_positioning_done (SCM smob)
        stems.insert (stem);
     }
 
-  for (set<Grob*>::const_iterator i(stems.begin());
+  for (set<Grob*>::const_iterator i (stems.begin());
        i != stems.end (); i++)
     {
       Grob *stem = (*i);
@@ -148,8 +148,13 @@ Dot_column::calc_positioning_done (SCM smob)
              
   vector_sort (dots, position_less);
   for (vsize i = dots.size (); i--;)
-    if (!dots[i]->is_live ())
-      dots.erase (dots.begin () + i);
+    {
+      if (!dots[i]->is_live ())
+       dots.erase (dots.begin () + i);
+      else
+       // Undo any fake translations that were done in add_head.
+       dots[i]->translate_axis (-dots[i]->relative_coordinate (me, X_AXIS), X_AXIS);
+    }
 
   Dot_formatting_problem problem (boxes, base_x);
 
@@ -210,9 +215,14 @@ Dot_column::add_head (Grob *me, Grob *head)
 
       Pointer_group_interface::add_grob (me, ly_symbol2scm ("dots"), d);
       d->set_property ("Y-offset", Grob::x_parent_positioning_proc);
-      // Dot formatting requests the Y-offset, -which- for rests may
-      // trigger post-linebreak callbacks.
-      if (!Rest::has_interface (head))
+      // Dot formatting requests the Y-offset, which for rests may
+      // trigger post-linebreak callbacks.  On the other hand, we need the
+      // correct X-offset of the dots for horizontal collision avoidance.
+      // The translation here is undone in calc_positioning_done, where we
+      // do the X-offset properly.
+      if (Rest::has_interface (head))
+       d->translate_axis (head->extent (head, X_AXIS).length (), X_AXIS);
+      else
        d->set_property ("X-offset", Grob::x_parent_positioning_proc);
       Axis_group_interface::add_element (me, d);
     }