]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/rest.cc
release: 1.1.43
[lilypond.git] / lily / rest.cc
index 0a7dc7419a8b8cfe7b847a910743b7eaf94f904f..2c9c91eff56083e1af632ca54b2e0ce00b6cb32d 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  rest.cc -- implement 
+  rest.cc -- implement Rest
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "molecule.hh"
@@ -18,12 +18,15 @@ void
 Rest::do_add_processing ()
 {
   if (balltype_i_ == 0)
-    position_i_ += 6;
-  else if (balltype_i_ == 1)
-    position_i_ += 4;
+    position_i_ += 2;
+
   Rhythmic_head::do_add_processing ();
-  if (dots_l_)
-      dots_l_->position_i_ = position_i_;
+  if (dots_l_ && balltype_i_ > 4)
+    {
+      dots_l_->position_i_ = position_i_ + 3;
+      if (balltype_i_ == 7)
+       dots_l_->position_i_++;
+    }
 }
 
 Rest::Rest ()
@@ -32,15 +35,26 @@ Rest::Rest ()
 }
 
 Molecule *
-Rest::brew_molecule_p () const
+Rest::do_brew_molecule_p () const
 {
-  int staff_size_i_ =8;
-  bool streepjes_b = (position_i_<-1) || (position_i_ > staff_size_i_+1);
+  bool ledger_b =false;
+
+  if (balltype_i_ == 0 || balltype_i_ == 1)
+    ledger_b = abs(position_i_  - (2* balltype_i_ - 1)) > lines_i (); 
+      
+
   
-  Atom s(paper ()->lookup_l()->rest (balltype_i_, streepjes_b));
-  Molecule * m = new Molecule ( Atom (s));
-  m->translate (position_i_ *  paper ()->internote_f (), Y_AXIS);
+  String style; 
+  SCM style_sym =get_elt_property (style_scm_sym);
+  if (style_sym != SCM_BOOL_F)
+    {
+      style = ly_scm2string (SCM_CDR(style_sym));
+    }
+  
+  Molecule s(lookup_l ()->rest (balltype_i_, ledger_b, style));
+  Molecule * m = new Molecule ( Molecule (s));
+  m->translate_axis (position_i_ *  staff_line_leading_f ()/2.0, Y_AXIS);
   return m;
 }
 
-IMPLEMENT_IS_TYPE_B1(Rest, Rhythmic_head);
+