]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/clef-item.cc
patch::: 1.3.96.jcn7
[lilypond.git] / lily / clef-item.cc
index f0a8b8566f9d8175ae8bd1b423f2a4798ca33873..faf226af33a920089606c7f9c850a90ebd43054f 100644 (file)
@@ -7,49 +7,62 @@
 */
 
 
-#include "clef-item.hh"
+#include "clef.hh"
 #include "string.hh"
 #include "molecule.hh"
-#include "paper-def.hh"
-#include "lookup.hh"
-#include "text-item.hh"
-#include "paper-score.hh"
-#include "dimension-cache.hh"
-#include "side-position-interface.hh"
-#include "warn.hh"
-#include "line-of-score.hh"
+#include "item.hh"
 
-void
-Clef_item::before_line_breaking ()
+/*
+FIXME: should use symbol for #'style.
+
+*/
+MAKE_SCHEME_CALLBACK(Clef,before_line_breaking,1);
+SCM
+Clef::before_line_breaking (SCM smob)
 {
-  SCM style_sym =get_elt_property ("style");
+  Item * s = dynamic_cast<Item*> (unsmob_element (smob));
+
+  SCM style_sym =s->get_elt_property ("style");
   String style;
   if (gh_string_p (style_sym))
     style = ly_scm2string (style_sym);
 
-  SCM glyph = get_elt_property ("glyph");
+  SCM glyph = s->get_elt_property ("glyph");
+  
   if (gh_string_p (glyph))
     {
-      String s = ly_scm2string (glyph);
-       
-      if (break_status_dir() != RIGHT && style != "fullSizeChanges")
+      String str = ly_scm2string (glyph);
+
+      /*
+       FIXME: should use fontsize property to set clef changes.
+       */
+      if (s->get_elt_property ("non-default") &&
+         s->break_status_dir() != RIGHT && style != "fullSizeChanges")
        {
-         s += "_change";
+         str += "_change";
+         s->set_elt_property ("glyph", ly_str02scm (str.ch_C()));        
        }
-      s = "clefs-" +  s;
-      set_elt_property ("glyph", ly_str02scm (s.ch_C()));
     }
   else
     {
-      set_elt_property ("transparent", SCM_BOOL_T);
-    }
-  
-  if (style == "transparent")  // UGH. JUNKME
-    {
-      set_elt_property ("transparent", SCM_BOOL_T);
-      set_extent_callback (0, X_AXIS);
+      s->suicide ();
+      return SCM_UNSPECIFIED;
     }
+
+  return SCM_UNSPECIFIED;
+}
+
+bool
+Clef::has_interface (Score_element* me)
+{
+  return me->has_interface (ly_symbol2scm ("clef-interface"));
 }
 
 
+void
+Clef::set_interface (Score_element* me)
+{
+  me->set_interface (ly_symbol2scm ("clef-interface"));
+}
+