]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/staff-symbol.cc
tremolo fixes
[lilypond.git] / lily / staff-symbol.cc
index 75bb907c140514249a99f57a561e2f84b9d3d714..c2e2bb0c7f8c6f88163f6a983431934bc19471e7 100644 (file)
@@ -13,6 +13,7 @@
 #include "debug.hh"
 #include "item.hh"
 #include "staff-symbol.hh"
+#include "staff-symbol-referencer.hh"
 #include "spanner.hh"
 
 
@@ -27,23 +28,37 @@ Staff_symbol::brew_molecule (SCM smob)
   Grob * common
     = sp->get_bound (LEFT)->common_refpoint (sp->get_bound (RIGHT), X_AXIS);
   
-  bool ragged = to_boolean (me->paper_l ()->get_scmvar ("raggedright"));
+  bool paper_raggedright = to_boolean (me->paper_l ()->get_scmvar ("raggedright"));
+  bool grob_raggedright = to_boolean (me->get_grob_property ("ragged-right"));
   Real width;
-  if (ragged)
+
+  SCM width_scm = me->get_grob_property ("width");
+  if (gh_number_p (width_scm)) // user-defined width
     {
-      // *prevent* staff symbol from being ragged right
-      width =
-       me->paper_l ()->get_var ("linewidth")
-       - sp->get_bound (LEFT)->relative_coordinate (common, X_AXIS)
-       ;
+      width = gh_scm2double (width_scm) *
+       Staff_symbol_referencer::staff_space (me);
     }
-  else
+  else // determine width automatically
+    {
+      if (paper_raggedright && !grob_raggedright)
+       {
+         // *prevent* staff symbol from being ragged right; instead, use
+         // paper variable "linewidth"
+         width = me->paper_l ()->get_var ("linewidth");
+       }
+      else // determine width from my own bounds
+       {
+         width = sp->get_bound (RIGHT)->relative_coordinate (common , X_AXIS);
+       }
+    }
+
+  // respect indentation, if any
+  width -= sp->get_bound (LEFT)->relative_coordinate (common, X_AXIS);
+
+  if (width < 0)
     {
-      width =
-       // right_shift     - left_shift
-       + sp->get_bound (RIGHT)->relative_coordinate (common , X_AXIS)
-       - sp->get_bound (LEFT)->relative_coordinate (common, X_AXIS)
-       ;
+      warning (_f ("staff symbol: indentation yields beyond end of line"));
+      width = 0;
     }
 
   Real t = me->paper_l ()->get_var ("linethickness");
@@ -102,5 +117,5 @@ ADD_INTERFACE (Staff_symbol,"staff-symbol-interface",
   "This spanner draws the lines of a staff.  The center (i.e. middle line
 or space) is position 0.",
               
-  "staff-space thickness line-count");
+  "ragged-right staff-space thickness line-count");