]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/clef-item.cc
release: 1.3.6
[lilypond.git] / lily / clef-item.cc
index 234b85fbb4af1963ba0466d896e7f5903255bc42..32a7d932739da3f72ac4ae5478bd42f60fed661a 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include <ctype.h>
 #include "molecule.hh"
 #include "paper-def.hh"
 #include "lookup.hh"
-#include "clef-grav.hh"
 #include "text-item.hh"
+#include "paper-score.hh"
+#include "dimension-cache.hh"
 
 void
 Clef_item::do_pre_processing()
 {
-  change_b_ = ! (break_status_i() == 1);
-
-  if (default_b_)
+  Staff_symbol_referencer::do_pre_processing();
+  SCM style_sym =get_elt_property ("style");
+  String style;
+  if (style_sym != SCM_UNDEFINED)
+    style = ly_scm2string (style_sym);
+  
+  if (break_status_dir() != RIGHT && style != "fullSizeChanges")
+    symbol_ += "_change";
+  if (style == "transparent")
     {
-      set_empty(break_status_i() != 1);
-      transparent_b_ = (break_status_i() != 1);
+      set_elt_property ("transparent", SCM_BOOL_T);
+      set_empty (true, X_AXIS);
     }
 }
 
+/*
+  FIXME
+*/
 Clef_item::Clef_item()
 {
-  breakable_b_ =true;
-  default_b_ = false;
-  change_b_ = true;
-  octave_dir_ = CENTER;
-  read ("violin");
-  // Ugh: This should be const, I guess.
-  octave_marker_td_p_ = new Text_def();
-  octave_marker_td_p_->text_str_ = "8";
-  octave_marker_td_p_->style_str_ = "italic";
+  set_elt_property ("breakable", SCM_BOOL_T);
+
+  symbol_ = "treble";
+  set_position(-2);
 }
 
-/*
- * Convert input clef string to 
- * a clef symbol and a line position.
- * This would be better done in the lexer (more efficient)
- * or as a table-lookup.
- */
 void
-Clef_item::read (String t)
+Clef_item::do_add_processing ()
 {
-  symbol_= t;
-  if (t == "violin") 
-    {
-      y_position_i_ = -2;
-    }
-  else if (t == "bass") 
-    {
-      y_position_i_ = 2;
-    }
-  else if (t == "G" || t == "G2" || t == "treble")
-    {
-      symbol_ = "violin";
-      y_position_i_ = -2;
-    }
-  else if (t == "french" || t == "G1") 
-    {
-      symbol_="violin";
-      y_position_i_ = -4;
-    }
-  else if (t == "soprano" || t == "C1") 
-    {
-      symbol_="alto";
-      y_position_i_ = -4;
-    }
-  else if (t == "mezzosoprano" || t == "C2")
+  if (!break_status_dir ())    // broken stuff takes care of their own texts
     {
-      symbol_ = "alto";
-      y_position_i_ = -2;
-    }
-  else if (t == "alto") 
-    {
-      symbol_ = "alto";
-      y_position_i_ = 0;
-    }
-  else if (t == "C3")
-    {
-      symbol_ = "alto";
-      y_position_i_ = 0;
-  }
-  else if (t == "tenor" || t == "C4") 
-  {
-      symbol_ = "alto";
-      y_position_i_ = 2;
-    }
-  else if (t == "baritone" || t == "C5")
-    {
-      symbol_ = "alto";
-      y_position_i_ = 4;
-    }
-  else if (t == "varbaritone" || t == "F3")
-    {
-      symbol_ = "bass";
-      y_position_i_ = 0;
-    }
-  else if (t == "F" || t == "F4")
-    {
-      symbol_ = "bass";
-      y_position_i_ = 2;
-    }
-  else if (t == "subbass")
-    {
-      symbol_ = "bass";
-      y_position_i_ = 4;
-    }
-  else if (isdigit(t[1]))
-         switch (t[0])
-         { // we've already dealt with plain F, G  or C clef 
-                 // position 0 is line 3.        
-         case 'G':
-         case 'g':
-                 symbol_ = "violin";
-                 y_position_i_ =   2 * (t[1] - '0') - 6;
-                 break;
-         case 'F':
-         case 'f':
-                 symbol_ = "bass";
-                 y_position_i_ = 2 * (t[1] - '0') - 6;
-                 break;
-         }
-}
+      Text_item *g =0;
 
-void
-Clef_item::read (Clef_engraver const &k)
-{
-  read (k.clef_type_str_);
-  octave_dir_ = k.octave_dir_;
+      SCM octave_dir = remove_elt_property ("octave-dir");
+      if (octave_dir != SCM_UNDEFINED)
+       {
+         Direction d = Direction (gh_scm2int (octave_dir));
+         g = new Text_item;
+         pscore_l_->typeset_element (g);
+      
+         g->text_str_ = "8";
+         g->set_elt_property ("style", gh_str02scm ("italic"));
+         g->set_parent (this, Y_AXIS);
+         g->set_parent (this, X_AXIS);   
+
+         add_dependency (g);   // just to be sure.
+
+         Real r = do_height ()[d] - g->extent (Y_AXIS)[-d];
+         g->dim_cache_[Y_AXIS]->set_offset (r);
+
+         SCM my_vis = get_elt_property ("visibility-lambda");
+         if (my_vis != SCM_UNDEFINED)
+           g->set_elt_property ("visibility-lambda", my_vis);
+                       
+       }
+
+    }
 }
 
 Molecule*
-Clef_item::brew_molecule_p() const
+Clef_item::do_brew_molecule_p() const
 {
-  String t = symbol_;
-  if  (change_b_)
-    t += "_change";
-  Atom s = paper()->lookup_l ()->clef (t);
-  Molecule*output = new Molecule (Atom (s));
-  output->translate_axis (paper()->internote_f () * y_position_i_, Y_AXIS);
-  if (octave_dir_)
-    output->add_at_edge (Y_AXIS, 
-                        octave_dir_,
-                        Molecule(octave_marker_td_p_->get_atom(paper(), 
-                                                               CENTER)));
+  Molecule*output = new Molecule (lookup_l ()->afm_find (String ("clefs-" + symbol_)));
+
   return output;
 }
 
 
-IMPLEMENT_IS_TYPE_B1(Clef_item,Item);
+
+