]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/clef-item.cc
release: 1.5.29
[lilypond.git] / lily / clef-item.cc
index 7e399f37c32e3c7dba5287d68a99415d0130cb3c..b1cde0874f7693228643c2e26d565469804e2ed7 100644 (file)
@@ -3,65 +3,73 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
-#include "clef-item.hh"
+
+#include "clef.hh"
 #include "string.hh"
 #include "molecule.hh"
-#include "paper-def.hh"
-#include "lookup.hh"
-#include "clef-grav.hh"
-
+#include "item.hh"
+#include "font-interface.hh"
 
-void
-Clef_item::do_pre_processing()
+/*
+ FIXME: should use symbol for #'style.
+*/
+MAKE_SCHEME_CALLBACK (Clef,before_line_breaking,1);
+SCM
+Clef::before_line_breaking (SCM smob)
 {
-    change_b_ = ! (break_status_i() == 1);
+  Item * s = unsmob_item (smob);
+
+  SCM glyph = s->get_grob_property ("glyph-name");
+  
+  if (gh_string_p (glyph))
+    {
+      String str = ly_scm2string (glyph);
 
-    if (default_b_){
-       empty_b_ = (break_status_i() != 1);
-       transparent_b_ = (break_status_i() != 1);
+      if (to_boolean (s->get_grob_property ("non-default"))
+         && s->break_status_dir () != RIGHT
+         && !to_boolean (s->get_grob_property ("full-size-change")))
+       {
+         str += "_change";
+         s->set_grob_property ("glyph-name", ly_str02scm (str.ch_C ()));         
+       }
+    }
+  else
+    {
+      s->suicide ();
+      return SCM_UNSPECIFIED;
     }
-}
 
-Clef_item::Clef_item()
-{
-    default_b_ = false;
-    change_b_ = true;
-    read("violin");
+  return SCM_UNSPECIFIED;
 }
 
-void
-Clef_item::read(String t)
+bool
+Clef::has_interface (Grob* me)
 {
-    type_= t;
-    if (type_ == "violin")
-       y_off = 2;
-    if (type_ == "alto")
-       y_off = 4;
-    if (type_ == "tenor")
-       y_off = 6;
-    if (type_ == "bass")
-       y_off = 6;
+  return me->has_interface (ly_symbol2scm ("clef-interface"));
 }
+
+
 void
-Clef_item::read(Clef_engraver const &k)
+Clef::set_interface (Grob* me)
 {
-    read(k.clef_type_str_);
+  me->set_interface (ly_symbol2scm ("clef-interface"));
 }
 
-Molecule*
-Clef_item::brew_molecule_p()const
+MAKE_SCHEME_CALLBACK (Clef,brew_molecule,1)
+SCM
+Clef::brew_molecule (SCM smob) 
 {
-    String t = type_;
-    if  (change_b_)
-       t += "_change";
-    Symbol s = paper()->lookup_l()->clef(t);
-    Molecule*output = new Molecule(Atom(s));
-    output->translate_y( paper()->internote_f() * y_off);
-    return output;
+  Grob * sc = unsmob_grob (smob);
+  SCM glyph = sc->get_grob_property ("glyph-name");
+  if (gh_string_p (glyph))
+    {
+      return Font_interface::get_default_font (sc)->find_by_name (String (ly_scm2string (glyph))).smobbed_copy ();
+    }
+  else
+    {
+      return SCM_EOL;
+    }
 }
-
-IMPLEMENT_STATIC_NAME(Clef_item);
-IMPLEMENT_IS_TYPE_B1(Clef_item,Item);