]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/directional-element-interface.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / directional-element-interface.cc
index b65fe31582de7c95f5d0d0fa77f9f87c44f9e077..4c46118b1f05493c7ac94bce637106598a147d69 100644 (file)
@@ -1,42 +1,32 @@
-/*   
-  directional-element.cc -- implement Directional_element
-  
-  source file of the GNU LilyPond music typesetter
-  
-  (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-  
- */
-
-#include "directional-element-interface.hh"
-
+/*
+  directional-element-interface.cc -- implement Directional_element
 
+  source file of the GNU LilyPond music typesetter
 
+  (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
 
-bool
-Directional_element_interface::has_interface (Grob*me) 
-{
-  return isdir_b (me->get_grob_property ("direction"));
-}
+#include "directional-element-interface.hh"
+#include "warn.hh"
 
 Direction
-Directional_element_interface::get (Grob*me) 
+get_grob_direction (Grob *me)
 {
-  // return dir_;
-  SCM d= me->get_grob_property ("direction");
-  if (!isdir_b (d))
+  SCM d = me->get_property ("direction");
+  if (d == ly_symbol2scm ("calculation-in-progress"))
+    {
+      programming_error ("Grob direction requested while calculation in progress. ");
+      return UP;
+    }
+  if (!is_direction (d))
     return CENTER;
-      
+
   return to_dir (d);
 }
 
 void
-Directional_element_interface::set (Grob*me, Direction d) 
+set_grob_direction (Grob *me, Direction d)
 {
-  SCM sd = gh_int2scm (d);
-
-  /*
-    Vain attempt to save some conses.
-   */
-  if (me->get_grob_property ("direction") != sd)
-    me->set_grob_property ("direction", sd);
+  SCM sd = scm_from_int (d);
+  me->set_property ("direction", sd);
 }