]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/spaceable-grob.cc
(Vertical spacing):
[lilypond.git] / lily / spaceable-grob.cc
index 5be0e8ded7179c8f93842e4f9cd309b2339d9308..5477f624ade6ab2a732bff15b9484c1339e5aca5 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2000--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 2000--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 #include <stdio.h> 
@@ -18,7 +18,7 @@
 SCM
 Spaceable_grob::get_minimum_distances (Grob*me)
 {
-  return me->get_grob_property ("minimum-distances");
+  return me->get_property ("minimum-distances");
 }
 
 /*todo: merge code of spring & rod?
@@ -30,20 +30,20 @@ Spaceable_grob::add_rod (Grob *me , Grob * p, Real d)
 
   
   SCM mins = get_minimum_distances (me);
-  SCM newdist = gh_double2scm (d);
-  for (SCM s = mins; gh_pair_p (s); s = ly_cdr (s))
+  SCM newdist = scm_make_real (d);
+  for (SCM s = mins; ly_c_pair_p (s); s = ly_cdr (s))
     {
       SCM dist = ly_car (s);
       if (ly_car (dist) == p->self_scm ())
        {
-         gh_set_cdr_x (dist, scm_max (ly_cdr (dist),
+         scm_set_cdr_x (dist, scm_max (ly_cdr (dist),
                                       newdist));
          return ;
        }
     }
 
-  mins = gh_cons (gh_cons (p->self_scm (), newdist), mins);
-  me->set_grob_property ("minimum-distances", mins);
+  mins = scm_cons (scm_cons (p->self_scm (), newdist), mins);
+  me->set_property ("minimum-distances", mins);
 }
 
 void
@@ -69,8 +69,8 @@ Spaceable_grob::add_spring (Grob*me, Grob * p, Real d, Real strength, bool expan
     }
     
 #ifndef NDEBUG
-  SCM mins = me->get_grob_property ("ideal-distances");
-  for (SCM s = mins; gh_pair_p (s); s = ly_cdr (s))
+  SCM mins = me->get_property ("ideal-distances");
+  for (SCM s = mins; ly_c_pair_p (s); s = ly_cdr (s))
     {
       Spring_smob * sp = unsmob_spring(ly_car (s));
       if (sp->other_ == p)
@@ -94,16 +94,16 @@ Spaceable_grob::add_spring (Grob*me, Grob * p, Real d, Real strength, bool expan
 void
 Spaceable_grob::remove_interface (Grob*me)
 {
-  me->remove_grob_property ("minimum-distances");
-  me->remove_grob_property ("spacing-wishes");
-  me->remove_grob_property ("ideal-distances");
+  me->set_property ("minimum-distances" , SCM_EOL);
+  me->set_property ("spacing-wishes", SCM_EOL);
+  me->set_property ("ideal-distances", SCM_EOL);
 }
 
 
 
 ADD_INTERFACE (Spaceable_grob,"spaceable-grob-interface",
-  "A grob (a Paper_column) that takes part in the
-spacing problem. ",
-  "measure-length spacing-wishes penalty minimum-distances ideal-distances
-left-neighbors right-neighbors");
+              "A layout object that takes part in the spacing problem. "
+              ,
+              "measure-length spacing-wishes penalty minimum-distances ideal-distances "
+              "left-neighbors right-neighbors");