]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/grob-interface.cc
* lily/font-select.cc (get_font_by_design_size): revert
[lilypond.git] / lily / grob-interface.cc
index 19b88d8a6403d3798317b1f323ed72323478d617..7e1641016395d2d722fe8e4902e69fbf41155a5a 100644 (file)
@@ -3,17 +3,15 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2002--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 2002--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "protected-scm.hh"
 #include "grob-interface.hh"
-#include "lily-guile.hh"
+
+#include "protected-scm.hh"
 #include "grob.hh"
 #include "warn.hh"
 
-Protected_scm all_ifaces;
-
 void add_interface (const char * symbol,
                    const char * descr,
                    const char * vars)
@@ -22,34 +20,10 @@ void add_interface (const char * symbol,
   SCM d = scm_makfrom0str (descr);
   SCM l = parse_symbol_list (vars);
 
-  ly_add_interface (s,d,l);
-}
-
-
-LY_DEFINE (ly_add_interface, "ly:add-interface", 3,0,0, (SCM a, SCM b, SCM c),
-         "Add an interface description.")
-{
-  SCM_ASSERT_TYPE (scm_is_symbol (a), a, SCM_ARG1, __FUNCTION__, "symbol");
-  SCM_ASSERT_TYPE (scm_is_string (b), b, SCM_ARG2, __FUNCTION__, "string");  
-  SCM_ASSERT_TYPE (ly_c_list_p (c), c, SCM_ARG3, __FUNCTION__, "list of syms");    
-  if (!ly_c_vector_p (all_ifaces))
-    all_ifaces = scm_make_vector (scm_int2num (40), SCM_EOL);
-
-  SCM entry = scm_list_n (a, b, c, SCM_UNDEFINED);
-
-  scm_hashq_set_x (all_ifaces, a, entry);
-
-  return SCM_UNSPECIFIED;
+  ly_add_interface (s, d, l);
 }
 
 
-LY_DEFINE (ly_all_grob_interfaces, "ly:all-grob-interfaces",
-         0,0,0, (),
-         "Get a hash table with all interface descriptions.")
-{
-  return all_ifaces;
-}
-
 
 void
 check_interfaces_for_property (Grob const *me, SCM sym)
@@ -64,8 +38,9 @@ check_interfaces_for_property (Grob const *me, SCM sym)
     }
   SCM ifs = me->get_property ("interfaces");
 
+  SCM all_ifaces = ly_all_grob_interfaces ();
   bool found = false;
-  for (; !found && scm_is_pair (ifs); ifs =scm_cdr (ifs))
+  for (; !found && scm_is_pair (ifs); ifs = scm_cdr (ifs))
     {
       SCM iface = scm_hashq_ref (all_ifaces , scm_car (ifs), SCM_BOOL_F);
       if (iface == SCM_BOOL_F)
@@ -76,7 +51,7 @@ check_interfaces_for_property (Grob const *me, SCM sym)
          continue;
        }
 
-      found= found || (scm_c_memq (sym, scm_caddr (iface)) != SCM_BOOL_F);
+      found = found || (scm_c_memq (sym, scm_caddr (iface)) != SCM_BOOL_F);
     }
 
   if (!found)