]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/key-item.cc
release: 1.1.29
[lilypond.git] / lily / key-item.cc
index 80e470f10fd734e9d2416d948a359b8e70223920..695de425afac40ecb11872423276f6812c518e5d 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1996, 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1996, 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
   keyplacement by Mats Bengtsson
 */
@@ -21,37 +21,12 @@ const int SHARP_TOP_PITCH=4; /*  ais and bis typeset in lower octave */
 
 Key_item::Key_item ()
 {
+  multi_octave_b_ = false;
   breakable_b_ =true;
   default_b_ = false;
   set_c_position (0);
 }
 
-void
-Key_item::set (bool multi_octave_b,
-              Array<Musical_pitch> const &idx_arr,
-              Array<Musical_pitch> const &old_idx_arr)
-{
-  multi_octave_b_ =multi_octave_b;
-
-  for (int i = 0; i < idx_arr.size(); i++) 
-    {
-      Musical_pitch m_l =idx_arr[i];
-      if (multi_octave_b_)
-       add (m_l);
-      else
-       add (m_l.notename_i_, m_l.accidental_i_);
-    }
-
-  for (int i = 0 ; i< old_idx_arr.size(); i++) 
-    {
-      Musical_pitch m_l =old_idx_arr[i];
-      if (multi_octave_b_)
-        add_old (m_l);
-      else
-       add_old (m_l.notename_i_, m_l.accidental_i_);
-    }
-}
-
 void 
 Key_item::set_c_position (int c0)
 {
@@ -71,13 +46,6 @@ Key_item::add (int p, int a)
   acc_arr_.push (a);
 }
 
-void
-Key_item::add (const Musical_pitch& pitch_r)
-{
-  pitch_arr_.push (pitch_r.steps());
-  acc_arr_.push (pitch_r.accidental_i_);
-}
-
 void
 Key_item::add_old (int p, int a)
 {
@@ -85,12 +53,6 @@ Key_item::add_old (int p, int a)
   old_acc_arr_.push (a);
 }
 
-void
-Key_item::add_old (const Musical_pitch& pitch_r)
-{
-  old_pitch_arr_.push (pitch_r.steps());
-  old_acc_arr_.push (pitch_r.accidental_i_);
-}
 
 int
 Key_item::calculate_position(int p, int a) const
@@ -111,10 +73,12 @@ Key_item::calculate_position(int p, int a) const
 }
 
 /*
-  TODO space the `natural' signs wider
+  TODO
+  - space the `natural' signs wider
+  - dehair this
  */
 Molecule*
-Key_item::brew_molecule_p() const
+Key_item::do_brew_molecule_p() const
 {
   Molecule*output = new Molecule;
   Real inter = paper()->internote_f ();
@@ -133,10 +97,9 @@ Key_item::brew_molecule_p() const
              || (old_pitch_arr_[i] == pitch_arr_[j]
                  && old_acc_arr_[i] != acc_arr_[j]))
             {
-              Atom a =lookup_l ()->accidental (0);
-              a.translate_axis (calculate_position(old_pitch_arr_[i], old_acc_arr_[i]) * inter, Y_AXIS);
-              Molecule m (a);
-              output->add_at_edge (X_AXIS, RIGHT, m);  
+              Molecule m =lookup_l ()->accidental (0,false);
+              m.translate_axis (calculate_position(old_pitch_arr_[i], old_acc_arr_[i]) * inter, Y_AXIS);
+              output->add_at_edge (X_AXIS, RIGHT, m,0);        
             }
         }
 
@@ -148,15 +111,14 @@ Key_item::brew_molecule_p() const
       Interval x(0, inter);
       Interval y(0,0);
 
-      output->add_at_edge (X_AXIS, RIGHT, lookup_l()->fill (Box(x,y)));
+      output->add_at_edge (X_AXIS, RIGHT, lookup_l()->fill (Box(x,y)),0);
     }
  
   for (int i =0; i < pitch_arr_.size(); i++) 
     {
-      Atom a =lookup_l ()->accidental (acc_arr_[i]);
-      a.translate_axis (calculate_position(pitch_arr_[i], acc_arr_[i]) * inter, Y_AXIS);
-      Molecule m (a);
-      output->add_at_edge (X_AXIS, RIGHT, m);  
+      Molecule m =lookup_l ()->accidental (acc_arr_[i],false);
+      m.translate_axis (calculate_position(pitch_arr_[i], acc_arr_[i]) * inter, Y_AXIS);
+      output->add_at_edge (X_AXIS, RIGHT, m, 0);
     }
   if (pitch_arr_.size()) 
     {
@@ -164,12 +126,12 @@ Key_item::brew_molecule_p() const
                                          Interval (0, paper()->note_width ()),
                                          Interval (0,0))));
       
-      output->add_at_edge (X_AXIS, RIGHT, m);
+      output->add_at_edge (X_AXIS, RIGHT, m,0 );
     }
   return output;
 }
 
-IMPLEMENT_IS_TYPE_B1(Key_item,Item);
+
 
 void 
 Key_item::do_pre_processing()