]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/translator-scheme.cc
* flower/include/axis.hh: rename from axes.hh
[lilypond.git] / lily / translator-scheme.cc
index f43e6fea3f9596ed6e62f7372cc0493fdfc290c0..6efd36b591955244c208bbfe6191775468a49034 100644 (file)
@@ -1,33 +1,42 @@
-#include "translator.hh"
+/*
+  translator-scheme.cc -- implement Scheme context functions
 
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2002--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
+
+#include "context-def.hh"
 #include "translator-group.hh"
-#include "lily-guile.hh"
+#include "moment.hh"
 
-LY_DEFINE(ly_get_context_property,
-         "ly:get-context-property", 2, 0, 0,
-         (SCM context, SCM name),
-         "retrieve the value of @var{name} from context @var{context}")
+LY_DEFINE (ly_translator_name, "ly:translator-name",
+          1, 0, 0, (SCM trans),
+          "Return the type name of the translator object @var{trans}. "
+          "The name is a symbol.")
 {
-  Translator *t = unsmob_translator (context);
-  Translator_group* tr=   dynamic_cast<Translator_group*> (t);
-  SCM_ASSERT_TYPE(tr, context, SCM_ARG1, __FUNCTION__, "Translator group");
-  SCM_ASSERT_TYPE(gh_symbol_p (name), name, SCM_ARG2, __FUNCTION__, "symbol");
-
-  return tr->internal_get_property (name);
-  
+  Translator *tr = unsmob_translator (trans);
+  SCM_ASSERT_TYPE (tr, trans, SCM_ARG1, __FUNCTION__, "Translator");
+  char const *nm = classname (tr);
+  return ly_symbol2scm (nm);
 }
 
-LY_DEFINE(ly_set_context_property,
-         "ly:set-context-property", 3, 0, 0,
-         (SCM context, SCM name, SCM val),
-         "set value of property @var{name} in context @var{context} to @var{val}.
-")
+LY_DEFINE (ly_translator_description, "ly:translator-description",
+          1, 0, 0, (SCM me),
+          "Return an alist of properties of  translator @var{me}.")
 {
-  Translator *t = unsmob_translator (context);
-  Translator_group* tr=   dynamic_cast<Translator_group*> (t);
-
-  SCM_ASSERT_TYPE(tr, context, SCM_ARG1, __FUNCTION__, "Context");
-  tr->internal_set_property (name, val);
+  Translator *tr = unsmob_translator (me);
+  SCM_ASSERT_TYPE (tr, me, SCM_ARG1, __FUNCTION__, "Translator");
+  return tr->translator_description ();
+}
 
-  return SCM_UNSPECIFIED;
+int
+Translator::print_smob (SCM s, SCM port, scm_print_state *)
+{
+  Translator *me = (Translator *) SCM_CELL_WORD_1 (s);
+  scm_puts ("#<Translator ", port);
+  scm_puts (classname (me), port);
+  scm_puts (" >", port);
+  return 1;
 }
+