]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest.cc
release: 0.1.22
[lilypond.git] / lily / rest.cc
1 /*
2   rest.cc -- implement Rest
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "molecule.hh"
10 #include "paper-def.hh"
11 #include "lookup.hh"
12 #include "rest.hh"
13 #include "dots.hh"
14 #include "axis-group-element.hh"
15 #include "p-score.hh"
16
17 void
18 Rest::do_add_processing ()
19 {
20   if (balltype_i_ != 0 && balltype_i_ != 1)
21     position_i_ -= 4;
22
23   Rhythmic_head::do_add_processing ();
24   if (dots_l_)
25       dots_l_->position_i_ = position_i_;
26 }
27
28 Rest::Rest ()
29 {
30   position_i_ =0;
31 }
32
33 Molecule *
34 Rest::brew_molecule_p () const
35 {
36   int staff_size_i_ = 8;
37   bool streepjes_b = abs(position_i_) > staff_size_i_ /2 &&  (balltype_i_ == 0 || balltype_i_ == 1);
38   
39   Atom s(paper ()->lookup_l()->rest (balltype_i_, streepjes_b));
40   Molecule * m = new Molecule ( Atom (s));
41   m->translate_axis (position_i_ *  paper ()->internote_f (), Y_AXIS);
42   return m;
43 }
44
45 IMPLEMENT_IS_TYPE_B1(Rest, Rhythmic_head);