]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-hyphen.cc
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / lily / lyric-hyphen.cc
index 86ae8cdc659a85345f436740d057a1d9ef86c1e8..a76ed9b2fa0f930c1b525a0eeab2b290929c083a 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2003--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2003--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -19,6 +19,7 @@
 
 #include "lyric-hyphen.hh"
 
+#include "axis-group-interface.hh"
 #include "lookup.hh"
 #include "output-def.hh"
 #include "paper-column.hh"
@@ -34,7 +35,7 @@ MAKE_SCHEME_CALLBACK (Lyric_hyphen, print, 1);
 SCM
 Lyric_hyphen::print (SCM smob)
 {
-  Spanner *me = unsmob_spanner (smob);
+  Spanner *me = unsmob<Spanner> (smob);
   Drul_array<Item *> bounds (me->get_bound (LEFT),
                              me->get_bound (RIGHT));
 
@@ -46,17 +47,14 @@ Lyric_hyphen::print (SCM smob)
   Grob *common = bounds[LEFT]->common_refpoint (bounds[RIGHT], X_AXIS);
 
   Interval span_points;
-  Direction d = LEFT;
-  Drul_array<bool> broken;
-  do
+  for (LEFT_and_RIGHT (d))
     {
-      Interval iv = bounds[d]->extent (common, X_AXIS);
+      Interval iv = Axis_group_interface::generic_bound_extent (bounds[d], common, X_AXIS);
 
       span_points[d] = iv.is_empty ()
                        ? bounds[d]->relative_coordinate (common, X_AXIS)
                        : iv[-d];
     }
-  while (flip (&d) != LEFT);
 
   Real lt = me->layout ()->get_dimension (ly_symbol2scm ("line-thickness"));
   Real th = robust_scm2double (me->get_property ("thickness"), 1) * lt;
@@ -69,6 +67,7 @@ Lyric_hyphen::print (SCM smob)
   Real dash_period = robust_scm2double (me->get_property ("dash-period"), 1.0);
   Real dash_length = robust_scm2double (me->get_property ("length"), .5);
   Real padding = robust_scm2double (me->get_property ("padding"), 0.1);
+  Real whiteout = robust_scm2double (me->get_property ("whiteout"), -1);
 
   if (dash_period < dash_length)
     dash_period = 1.5 * dash_length;
@@ -105,8 +104,20 @@ Lyric_hyphen::print (SCM smob)
   for (int i = 0; i < n; i++)
     {
       Stencil m (dash_mol);
-      m.translate_axis (span_points[LEFT] + i * dash_period + space_left / 2, X_AXIS);
+      m = m.in_color (0.0, 0.0, 0.0);
+      m.translate_axis (span_points[LEFT] + i * dash_period +
+                        space_left / 2, X_AXIS);
       total.add_stencil (m);
+      if (whiteout > 0.0 )
+        {
+          Box c (Interval (0, dash_length + 2 * whiteout * lt),
+                 Interval (h - whiteout * lt, h + th + whiteout * lt));
+          Stencil w (Lookup::round_filled_box (c, 0.8 * lt));
+          w = w.in_color (1.0, 1.0, 1.0);
+          w.translate_axis (span_points[LEFT] + i * dash_period +
+                            space_left / 2 - whiteout * lt, X_AXIS);
+          total.add_stencil (w);
+        }
     }
 
   total.translate_axis (-me->relative_coordinate (common, X_AXIS), X_AXIS);
@@ -117,20 +128,18 @@ MAKE_SCHEME_CALLBACK (Lyric_hyphen, set_spacing_rods, 1);
 SCM
 Lyric_hyphen::set_spacing_rods (SCM smob)
 {
-  Grob *me = unsmob_grob (smob);
+  Grob *me = unsmob<Grob> (smob);
 
   Rod r;
   Spanner *sp = dynamic_cast<Spanner *> (me);
 
   r.distance_ = robust_scm2double (me->get_property ("minimum-distance"), 0);
-  Direction d = LEFT;
-  do
+  for (LEFT_and_RIGHT (d))
     {
       r.item_drul_[d] = sp->get_bound (d);
       if (r.item_drul_[d])
         r.distance_ += -d * r.item_drul_[d]->extent (r.item_drul_[d], X_AXIS)[-d];
     }
-  while (flip (&d) != LEFT);
 
   if (r.item_drul_[LEFT]
       && r.item_drul_[RIGHT])
@@ -152,4 +161,3 @@ ADD_INTERFACE (Lyric_hyphen,
                "padding "
                "thickness "
               );
-