]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.128
authorfred <fred>
Wed, 27 Mar 2002 00:48:46 +0000 (00:48 +0000)
committerfred <fred>
Wed, 27 Mar 2002 00:48:46 +0000 (00:48 +0000)
input/features/beam-position.ly
lily/beam.cc
scm/beam.scm
scm/generic-property.scm
scm/grob-property-description.scm
scm/interface-description.scm

index bf14a7fee8c92c256eb78358cf3c9704aa531b0e..b581904761dc6d9614ba360df9759db3094ac754 100644 (file)
@@ -1,7 +1,7 @@
 
 fragment = \notes {
-  \property Voice.Beam \set #'y-position-hs = #4
-  \property Voice.Beam \set #'height-hs = #-4
+  \property Voice.Beam \set #'staff-position = #2
+  \property Voice.Beam \set #'height = #-2
   [c'8 c]
 }
 
index 8ac599334a73c9bf6e8a2a9f0e55bcc4f486c46e..d58054aa8f3c13c095ca3120c0f3490457504a1d 100644 (file)
 
 /*
   [TODO]
-  * shorter! (now +- 1000 lines)
-    * less hairy code
-    * move paper vars to scm
 
-  remove *-hs variables, and do all y-position stuff in staff-space.
-*/
+  * shorter! (now +- 1000 lines)
+  * less hairy code
+  */
 
 
 #include <math.h> // tanh.
@@ -202,7 +200,7 @@ Beam::consider_auto_knees (Grob *me)
          
          Real left = Stem::extremal_heads (stems[l])[d]
            ->relative_coordinate (common, Y_AXIS);
-         Real right = Stem::extremal_heads (stems[i])[d]
+         Real right = Stem::extremal_heads (stems[i])[-d]
            ->relative_coordinate (common, Y_AXIS);
 
          Real dy = right - left;
@@ -277,141 +275,109 @@ Beam::set_stem_shorten (Grob*m)
 }
 
 /*
-  Set elt properties height and y-position if not set.
-  Adjust stem lengths to reach beam.
+  Call list of y-dy-callbacks, that handle setting of
+  grob-properties y, dy.
+
+  User may set grob-properties: y-position-hs and height-hs
+  (to be fixed) that override the calculated y and dy.
+
+  Because y and dy cannot be calculated and quanted separately, we
+  always calculate both, then check for user override.
  */
-MAKE_SCHEME_CALLBACK(Beam,after_line_breaking,1);
+MAKE_SCHEME_CALLBACK (Beam, after_line_breaking, 1);
 SCM
 Beam::after_line_breaking (SCM smob)
 {
   Grob * me =  unsmob_grob (smob);
-
-  /* first, calculate y, dy */
-  Real y, dy;
-  calc_default_position_and_height (me, &y, &dy);
-  if (visible_stem_count (me))
-    {
-      if (suspect_slope_b (me, y, dy))
-       dy = 0;
-
-      Real damped_dy = calc_slope_damping_f (me, dy);
-      Real quantised_dy = quantise_dy_f (me, damped_dy);
-
-      y += (dy - quantised_dy) / 2;
-      dy = quantised_dy;
-    }
-  /*
-    until here, we used only stem_info, which acts as if dir=up
-   */
-  y *= Directional_element_interface::get (me);
-  dy *= Directional_element_interface::get (me);
-
-
-  Real half_space = Staff_symbol_referencer::staff_space (me) / 2;
-
-  /* weird: why do we do calc_position_and_height () ? regardless of
-     this setting?
-
-     If the user sets height, we still need to calculate the y-position.
-     If the user sets height-hs, we still need to calculate and
-     quantise y-position.
-
-     We use least squares to calculate y-position and height, so we
-     inherently always calculate both.  */
   
-  /* check for user-override of dy */
-  SCM s = me->remove_grob_property ("height-hs");
-  if (gh_number_p (s))
-    {
-      dy = gh_scm2double (s) * half_space;
-    }
-  me->set_grob_property ("height", gh_double2scm (dy));
+  me->set_grob_property ("y", gh_double2scm (0));
+  me->set_grob_property ("dy", gh_double2scm (0));
 
-  /* check for user-override of y */
-  s = me->remove_grob_property ("y-position-hs");
-  if (gh_number_p (s))
-    {
-      y = gh_scm2double (s) * half_space;
-    }
-  else
-    { 
-      /* we can modify y, so we should quantise y */
-      Real y_shift = check_stem_length_f (me, y, dy);
-      y += y_shift;
-      y = quantise_y_f (me,y, dy, 0);
-      set_stem_length (me, y, dy);
-      y_shift = check_stem_length_f (me, y, dy);
+  /* Hmm, callbacks should be called by, a eh, callback mechanism
+    somewhere(?), I guess, not by looping here. */
+  
+  SCM list = me->get_grob_property ("y-dy-callbacks");
+  for (SCM i = list; gh_pair_p (i); i = gh_cdr (i))
+    gh_call1 (gh_car (i), smob);
 
-      if (y_shift > half_space / 4)
-       {
-         y += y_shift;
-
-         /*
-           for significantly lengthened or shortened stems,
-           request quanting the other way.
-         */
-         int quant_dir = 0;
-         if (abs (y_shift) > half_space / 2)
-           quant_dir = sign (y_shift) * Directional_element_interface::get (me);
-         y = quantise_y_f (me, y, dy, quant_dir);
-       }
-    }
   // UGH. Y is not in staff position unit?
   // Ik dacht datwe daar juist van weg wilden?
-  set_stem_length (me, y, dy);
-  me->set_grob_property ("y-position", gh_double2scm (y));
+  
+  // Hmm, nu hebben we 3 dimensies, want inmiddels zijn we daar
+  // weer terug, maar dan / 2
+  // (staff-space iso staff-position)
+  
+  set_stem_lengths (me);
 
   return SCM_UNSPECIFIED;
 }
 
-/*
-  See Documentation/tex/fonts.doc
- */
-void
-Beam::calc_default_position_and_height (Grob*me,Real* y, Real* dy) 
+
+MAKE_SCHEME_CALLBACK (Beam, least_squares, 1);
+SCM
+Beam::least_squares (SCM smob)
 {
 *y = 0;
-  *dy = 0;  
 if (visible_stem_count (me) <= 1)
-    return;
Grob *me = unsmob_grob (smob);
+
+ if (visible_stem_count (me) <= 1)
+   return SCM_UNSPECIFIED;
 
+  Real y = 0;
+  Real dy = 0;
+
+  /* Stem_info, and thus y,dy in this function are corrected for beam-dir */
   Real first_ideal = Stem::calc_stem_info (first_visible_stem (me)).idealy_f_;
   if (first_ideal == Stem::calc_stem_info (last_visible_stem (me)).idealy_f_)
     {
-      *dy = 0;
-      *y = first_ideal;
-      return;
+      y = first_ideal;
+      dy = 0;
     }
+  else
+    {
+      Array<Offset> ideals;
 
-  Array<Offset> ideals;
+      // ugh -> use commonx
+      Real x0 = first_visible_stem (me)->relative_coordinate (0, X_AXIS);
+      Link_array<Item> stems=
+       Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
 
-  // ugh -> use commonx
-  Real x0 = first_visible_stem (me)->relative_coordinate (0, X_AXIS);
-  Link_array<Item> stems=
-    Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
+      for (int i=0; i < stems.size (); i++)
+       {
+         Item* s = stems[i];
+         if (Stem::invisible_b (s))
+           continue;
+         ideals.push (Offset (s->relative_coordinate (0, X_AXIS) - x0, 
+                              Stem::calc_stem_info (s).idealy_f_));
+       }
+      Real dydx;
+      minimise_least_squares (&dydx, &y, ideals);
 
-  for (int i=0; i < stems.size (); i++)
-    {
-      Item* s = stems[i];
-      if (Stem::invisible_b (s))
-        continue;
-      ideals.push (Offset (s->relative_coordinate (0, X_AXIS) - x0, 
-                          Stem::calc_stem_info (s).idealy_f_));
+      Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS) - x0;
+      dy = dydx * dx;
     }
-  Real dydx;
-  minimise_least_squares (&dydx, y, ideals); // duh, takes references
 
-  Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS) - x0;
-  *dy = dydx * dx;
+  /* Store true, not dir-corrected values */
+  Direction dir = Directional_element_interface::get (me);
+  me->set_grob_property ("y", gh_double2scm (y * dir));
+  me->set_grob_property ("dy", gh_double2scm (dy * dir));
+  return SCM_UNSPECIFIED;
 }
 
-bool
-Beam::suspect_slope_b (Grob*me, Real y, Real dy) 
+MAKE_SCHEME_CALLBACK (Beam, cancel_suspect_slope, 1);
+SCM
+Beam::cancel_suspect_slope (SCM smob)
 {
-  /* first, calculate y, dy */
-  /*
-    steep slope running against lengthened stem is suspect
-  */
+  Grob *me = unsmob_grob (smob);
+  
+  if (visible_stem_count (me) <= 1)
+    return SCM_UNSPECIFIED;
+  
+  /* Stem_info, and thus y,dy in this function are corrected for beam-dir */
+  Direction dir = Directional_element_interface::get (me);
+  Real y = gh_scm2double (me->get_grob_property ("y")) * dir;
+  Real dy = gh_scm2double (me->get_grob_property ("dy")) * dir;
+  
+ /* steep slope running against lengthened stem is suspect */
   Real first_ideal = Stem::calc_stem_info (first_visible_stem (me)).idealy_f_;
   Real last_ideal = Stem::calc_stem_info (last_visible_stem (me)).idealy_f_;
   Real lengthened = gh_scm2double (me->get_grob_property ("outer-stem-length-limit"));
@@ -424,9 +390,12 @@ Beam::suspect_slope_b (Grob*me, Real y, Real dy)
   if (((y - first_ideal > lengthened) && (dydx > steep))
       || ((y + dy - last_ideal > lengthened) && (dydx < -steep)))
     {
-      return true;
+      Real adjusted_y = y + dy / 2;
+      /* Store true, not dir-corrected values */
+      me->set_grob_property ("y", gh_double2scm (adjusted_y * dir));
+      me->set_grob_property ("dy", gh_double2scm (0)); 
     }
-  return false;
+  return SCM_UNSPECIFIED;
 }
 
 /*
@@ -434,24 +403,168 @@ Beam::suspect_slope_b (Grob*me, Real y, Real dy)
   damped = tanh (slope)
   corresponds with some tables in [Wanske]
 */
-Real
-Beam::calc_slope_damping_f (Grob*me,Real dy) 
+MAKE_SCHEME_CALLBACK (Beam, slope_damping, 1);
+SCM
+Beam::slope_damping (SCM smob)
 {
-  SCM damp = me->get_grob_property ("damping"); 
-  int damping = gh_scm2int (damp);
+  Grob *me = unsmob_grob (smob);
+
+  if (visible_stem_count (me) <= 1)
+    return SCM_UNSPECIFIED;
+
+  SCM s = me->get_grob_property ("damping"); 
+  int damping = gh_scm2int (s);
 
   if (damping)
     {
-  // ugh -> use commonx
+      /* y,dy in this function are corrected for beam-dir */
+      Direction dir = Directional_element_interface::get (me);
+      Real y = gh_scm2double (me->get_grob_property ("y")) * dir;
+      Real dy = gh_scm2double (me->get_grob_property ("dy")) * dir;
+      
+      // ugh -> use commonx
       Real dx = last_visible_stem (me)->relative_coordinate (0, X_AXIS)
        - first_visible_stem (me)->relative_coordinate (0, X_AXIS);
       Real dydx = dy && dx ? dy/dx : 0;
       dydx = 0.6 * tanh (dydx) / damping;
-      return dydx * dx;
+
+      Real damped_dy = dydx * dx;
+      Real adjusted_y = y + (dy - damped_dy) / 2;
+      /* Store true, not dir-corrected values */
+      me->set_grob_property ("y", gh_double2scm (adjusted_y * dir));
+      me->set_grob_property ("dy", gh_double2scm (damped_dy * dir));
     }
-  return dy;
+    return SCM_UNSPECIFIED;
 }
 
+/*
+  Quantise dy (height) of beam.
+  Generalisation of [Ross].
+  */
+MAKE_SCHEME_CALLBACK (Beam, quantise_dy, 1);
+SCM
+Beam::quantise_dy (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
+
+  if (visible_stem_count (me) <= 1)
+    return SCM_UNSPECIFIED;
+
+  Array<Real> a;
+  SCM proc = me->get_grob_property ("height-quants");
+  SCM quants = gh_call2 (proc, me->self_scm (),
+                        gh_double2scm (me->paper_l ()->get_var ("stafflinethickness")
+                                       / 1.0));
+  
+  for (SCM s = quants; gh_pair_p (s); s = gh_cdr (s))
+    a.push (gh_scm2double (gh_car (s)));
+  
+  if (a.size () > 1)
+    {
+      /* y,dy in this function are corrected for beam-dir */
+      Direction dir = Directional_element_interface::get (me);
+      Real y = gh_scm2double (me->get_grob_property ("y")) * dir;
+      Real dy = gh_scm2double (me->get_grob_property ("dy")) * dir;
+
+      Real staff_space = Staff_symbol_referencer::staff_space (me);
+      
+      Interval iv = quantise_iv (a, abs (dy)/staff_space) * staff_space;
+      Real q = (abs (dy) - iv[SMALLER] <= iv[BIGGER] - abs (dy))
+       ? iv[SMALLER]
+       : iv[BIGGER];
+      
+      Real quantised_dy = q * sign (dy);
+      Real adjusted_y = y + (dy - quantised_dy) / 2;
+      /* Store true, not dir-corrected values */
+      me->set_grob_property ("y", gh_double2scm (adjusted_y * dir));
+      me->set_grob_property ("dy", gh_double2scm (quantised_dy * dir));
+    }
+  return SCM_UNSPECIFIED;
+}
+
+/* It's tricky to have the user override y,dy directly, so we use this
+   translation func.  Also, if our staff_space != 1 (smaller staff, eg),
+   user will expect staff-position to be discrete values. */
+MAKE_SCHEME_CALLBACK (Beam, user_override, 1);
+SCM
+Beam::user_override (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
+  Real staff_space = Staff_symbol_referencer::staff_space (me);
+
+  SCM s = me->get_grob_property ("staff-position");
+  if (gh_number_p (s))
+    {
+      Real y = gh_scm2double (s) * staff_space;
+      me->set_grob_property ("y", gh_double2scm (y));
+    }
+
+  /* Name suggestions? Tilt, slope, vertical-* ? */
+  s = me->get_grob_property ("height");
+  if (gh_number_p (s))
+    {
+      Real dy = gh_scm2double (s) * staff_space;
+      me->set_grob_property ("dy", gh_double2scm (dy));
+    }
+  
+  return SCM_UNSPECIFIED;
+}
+
+/*
+  Ugh, this must be last, after user_override
+  Assumes directionised y/dy.
+ */
+MAKE_SCHEME_CALLBACK (Beam, do_quantise_y, 1);
+SCM
+Beam::do_quantise_y (SCM smob)
+{
+  Grob *me = unsmob_grob (smob);
+
+  /*
+    If the user set y-position, we shouldn't do quanting.
+   */
+  if (gh_number_p (me->get_grob_property ("y-position-hs")))
+    return SCM_UNSPECIFIED;
+
+  Real y = gh_scm2double (me->get_grob_property ("y"));
+  Real dy = gh_scm2double (me->get_grob_property ("dy"));
+      
+  /* we can modify y, so we should quantise y */
+  Real half_space = Staff_symbol_referencer::staff_space (me) / 2;
+  Real y_shift = check_stem_length_f (me, y, dy);
+  y += y_shift;
+  y = quantise_y_f (me, y, dy, 0);
+
+  /*
+    Hmm, this is a bit keyhole operation: we're passing `this' as a
+    parameter, and member vars as SCM properties.  We should decide on
+    SCM/C/C++ boundary */
+  me->set_grob_property ("y", gh_double2scm (y));
+  set_stem_lengths (me);
+  y = gh_scm2double (me->get_grob_property ("y"));
+  
+  y_shift = check_stem_length_f (me, y, dy);
+
+  if (y_shift > half_space / 4)
+    {
+      y += y_shift;
+
+      /*
+       for significantly lengthened or shortened stems,
+       request quanting the other way.
+      */
+      int quant_dir = 0;
+      if (abs (y_shift) > half_space / 2)
+       quant_dir = sign (y_shift) * Directional_element_interface::get (me);
+      y = quantise_y_f (me, y, dy, quant_dir);
+    }
+  
+  me->set_grob_property ("y", gh_double2scm (y));
+  // me->set_grob_property ("dy", gh_double2scm (dy));
+  return SCM_UNSPECIFIED;
+}
+
+
 Real
 Beam::calc_stem_y_f (Grob*me,Item* s, Real y, Real dy) 
 {
@@ -530,15 +643,18 @@ Beam::check_stem_length_f (Grob*me,Real y, Real dy)
   stem directions and length should set to relative to the chord's
   position of the beam.  */
 void
-Beam::set_stem_length (Grob*me,Real y, Real dy)
+Beam::set_stem_lengths (Grob *me)
 {
+  if (visible_stem_count (me) <= 1)
+    return;
+  
+  Real y = gh_scm2double (me->get_grob_property ("y"));
+  Real dy = gh_scm2double (me->get_grob_property ("dy"));
+
   Real half_space = Staff_symbol_referencer::staff_space (me)/2;
   Link_array<Item> stems=
     Pointer_group_interface__extract_elements (me, (Item*)0, "stems");
 
-  if (stems.size () < 1)
-    return;
-  
   Grob *common = me->common_refpoint (stems[0], Y_AXIS);
   for (int i=1; i < stems.size (); i++)
     if (!Stem::invisible_b (stems[i]))
@@ -559,46 +675,10 @@ Beam::set_stem_length (Grob*me,Real y, Real dy)
     }
 }
 
-/*
-  [Ross] (simplification of)
-  Set dy complying with:
-    - zero
-    - thick / 2 + staffline_f / 2
-    - thick + staffline_f
-  + n * staff_space
-*/
-Real
-Beam::quantise_dy_f (Grob*me,Real dy) 
-{
-  Array<Real> a;
-
-  SCM proc = me->get_grob_property ("height-quants");
-  SCM quants = gh_call2 (proc, me->self_scm (),
-                        gh_double2scm (me->paper_l ()->get_var ("stafflinethickness")
-                                       / 1.0));
-  
-  
-  for (SCM s = quants; gh_pair_p (s); s = gh_cdr (s))
-    a.push (gh_scm2double (gh_car (s)));
-  
-  if (a.size () <= 1)
-    return dy;
-
-  Real staff_space = Staff_symbol_referencer::staff_space (me);
-  
-  Interval iv = quantise_iv (a, abs (dy)/staff_space) * staff_space;
-  Real q = (abs (dy) - iv[SMALLER] <= iv[BIGGER] - abs (dy))
-    ? iv[SMALLER]
-    : iv[BIGGER];
-  
-  return q * sign (dy);
-}
-
 /*
   Prevent interference from stafflines and beams.
-  See Documentation/tex/fonts.doc
 
-  We only need to quantise the (left) y-position of the beam,
+  We only need to quantise the (left) y of the beam,
   since dy is quantised too.
   if extend_b then stems must *not* get shorter
  */
@@ -694,7 +774,7 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
   Real dx = visible_stem_count (me) ?
     last_visible_stem (me)->relative_coordinate (0, X_AXIS) - first_visible_stem (me)->relative_coordinate (0, X_AXIS)
     : 0.0;
-  Real dy = gh_scm2double (me->get_grob_property ("height"));
+  Real dy = gh_scm2double (me->get_grob_property ("dy"));
   Real dydx = dy && dx ? dy/dx : 0;
 
   Molecule leftbeams;
@@ -794,10 +874,6 @@ Beam::stem_beams (Grob*me,Item *here, Item *next, Item *prev)
   return leftbeams;
 }
 
-/*
-  TODO: it would be nice to introduce y-position via callbacks.
- */
-
 MAKE_SCHEME_CALLBACK(Beam,brew_molecule,1);
 SCM
 Beam::brew_molecule (SCM smob)
@@ -823,9 +899,9 @@ Beam::brew_molecule (SCM smob)
     }
   
   
-  Real dy = gh_scm2double (me->get_grob_property ("height"));
+  Real dy = gh_scm2double (me->get_grob_property ("dy"));
   Real dydx = dy && dx ? dy/dx : 0;
-  Real y = gh_scm2double (me->get_grob_property ("y-position"));
+  Real y = gh_scm2double (me->get_grob_property ("y"));
 
 
   for (int j=0; j <stems.size  (); j++)
@@ -945,11 +1021,11 @@ Beam::rest_collision_callback (SCM element_smob, SCM axis)
 
 
   // todo: make sure this calced already.
-  SCM s = beam->get_grob_property ("height");
+  SCM s = beam->get_grob_property ("dy");
   if (gh_number_p (s))
     beam_dy = gh_scm2double (s);
   
-  s = beam->get_grob_property ("y-position");
+  s = beam->get_grob_property ("y");
   if (gh_number_p (s))
     beam_y = gh_scm2double (s);
   
@@ -993,10 +1069,12 @@ Beam::has_interface (Grob*me)
 void
 Beam::set_interface (Grob*me)
 {
+#if 0
   /*
     why the init? No way to tell difference between default and user
     override.  */
-  me->set_grob_property ("height", gh_int2scm (0)); // ugh.
-  me->set_grob_property ("y-position" ,gh_int2scm (0));
+  me->set_grob_property ("y" ,gh_double2scm (0));
+  me->set_grob_property ("dy", gh_double2scm (0));
   me->set_interface (ly_symbol2scm("beam-interface"));
+#endif
 }
index 8ae7f3004472b6ea86acaa7eefff4a10954e2513..3fa8fc33ce8d415ceccd27cc0d64bef05aef21c7 100644 (file)
 
 ;; TODO
 ;;  - take #forced stems into account (now done in C++)?
-;;  - take y-position of chord or beam into account
+;;  - take staff-position of chord or beam into account
 
index f7256676a6346fc9930d7b6f8a9a17b9a0f4f5bf..81b181683dadab4a2b60e9245bd5cf5d21fdd5e6 100644 (file)
@@ -25,8 +25,8 @@
         (list 'autoKneeGap number? 'auto-knee-gap)
         (list 'autoInterstaffKneeGap number? 'auto-interstaff-knee-gap)
         (list 'beamDirAlgorithm symbol? 'beam-dir-algorithm)
-        (list 'beamHeight number? 'height-hs)
-        (list 'beamVerticalPosition number? 'y-position-hs)
+        (list 'beamHeight number? 'height)
+        (list 'beamVerticalPosition number? 'staff-position)
         )
        )
   )
index cc6de9985d8801f58dd49e8399856fa6c6db8aa9..6de59927dae6f4d96d4048eb7bce5a984628112b 100644 (file)
@@ -41,11 +41,8 @@ This procedure is called (using dependency resolution) after line breaking. Retu
 '(LEFT-offset . RIGHT-offset).  This offset is added to the
 attachments to prevent ugly slurs.  [fixme: we need more documentation here].
 .")
-(grob-property-description 'auto-interstaff-knee-gap number? ".")
-(grob-property-description 'auto-knee-gap number? ".")
-
+(grob-property-description 'auto-knee-gap number-or-boolean? "the minimal smallest gap between two adjacent beamed chords for which beam will create auto-knees.  Set to false for no auto knees." )
 (grob-property-description 'axes list? "list of axis numbers.
-
 In the case of alignment grobs, this should contain only one number.")
 (grob-property-description 'bar-size number? "size of a bar line.")
 (grob-property-description 'bars list? "list of barline pointers.")
@@ -110,6 +107,7 @@ Align_interface::center_on_element). .")
 (grob-property-description 'dot-count integer? "number of dots.")
 (grob-property-description 'duration-log integer? "2-log of the notehead duration.")
 (grob-property-description 'duration-log integer? "log of the duration, ie. 0=whole note, 1 = half note, etc.")
+(grob-property-description 'dy number? "set by beam: vertical travel height")
 (grob-property-description 'edge-height pair? "a cons that specifies the heights of the vertical egdes '(LEFT-height . RIGHT-height).")
 (grob-property-description 'edge-text pair? "a cons that specifies the texts to be set at the edges '(LEFT-text . RIGHT-text).")
 (grob-property-description 'elements list? "list of grobs, type depending on the Grob where this is set in.")
@@ -159,8 +157,7 @@ is used by @ref{note-collision-interface}.")
 FIXME: in Tie this is a pair of grob pointers, pointing to the two heads of the  tie.
 
 .")
-(grob-property-description 'height number? "in staffspace .")
-(grob-property-description 'height-hs number? "in halfspace.  Only used by Beam.") ; Remove-me 
+(grob-property-description 'height number? "in staffspace.")
 (grob-property-description 'height-quants procedure? "function of type (beam staff-line-thickness) -> list of quants.  Default value: default-beam-dy-quants.
 .")
 (grob-property-description 'horizontal-shift integer? "integer that identifies ranking of note-column for horizontal shifting. This is used by @ref{note-collision-interface}.")
@@ -321,5 +318,4 @@ function of type (beam multiplicity dy staff-line-thickness) -> real.  Default v
 (grob-property-description 'word-space number? "elongate left by this much (FIXME: cumbersome semantics).")
 (grob-property-description 'x-gap number? "horizontal gap between notehead and tie.")
 (grob-property-description 'y-free number? "minimal vertical gap between slur and noteheads or stems.")
-(grob-property-description 'y-position number? "position of left edge.")
-(grob-property-description 'y-position-hs number? "in half space, position of left edge.  Only used by @ref{Beam}.") ;FXIME
+(grob-property-description 'y number? "set by beam: position of left edge.")
index 0f40e133705958d5058e851e6af20b9b67f671c9..60f0a19779dd09aef08e0f041f48a4a23dc6fb76 100644 (file)
@@ -70,7 +70,7 @@
 #'thickness= weight of beams, in staffspace
   "
    '(
-    y-position 
+     staff-position
     height 
     flag-width-function 
     damping 
@@ -711,8 +711,9 @@ Calc dimensions for the Separating_group_spanner; this has to be
   (lily-interface
    'system-start-delimiter-interface
    "#'style can be bar-line, bracket or brace"
-   '(thickness arch-height arch-angle arch-thick
-                    arch-width bracket-thick glyph )))
+   '(bar-line-collapse-height brace-collapse-height bracket-collapse-height
+                             thickness arch-height arch-angle arch-thick
+                             arch-width bracket-thick glyph )))
 
 (define text-spanner-interface
   (lily-interface