]> git.donarmstrong.com Git - lilypond.git/blob - lily/rest.cc
release: 1.3.61
[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--2000 Han-Wen Nienhuys <hanwen@cs.uu.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 "paper-score.hh"
15 #include "staff-symbol-referencer.hh"
16
17 // -> offset callback
18 void
19 Rest::after_line_breaking ()
20 {
21   if (balltype_i () == 0)
22     {
23       Staff_symbol_referencer_interface si (this);
24       si.set_position (si.position_f () + 2);
25     }
26   
27   Dots * d = dots_l ();
28   if (d && balltype_i () > 4) // UGH.
29     {
30       /*
31         UGH. 
32        */
33       staff_symbol_referencer (d)
34         .set_position ((balltype_i () == 7) ? 4 : 3);
35     }
36 }
37
38
39 MAKE_SCHEME_SCORE_ELEMENT_NON_DEFAULT_CALLBACKS(Rest)
40
41 SCM 
42 Rest::scheme_molecule (SCM smob) 
43 {
44   Score_element* sc = unsmob_element (smob);
45   
46   bool ledger_b =false;
47
48   SCM balltype = sc->get_elt_property ("duration-log");
49   
50   if (balltype == gh_int2scm (0) || balltype == gh_int2scm (1))
51     {
52       Staff_symbol_referencer_interface si(sc);
53       ledger_b = abs(si.position_f ()  - (2* gh_scm2int (balltype) - 1))
54         > si.line_count (); 
55     }
56   
57   String style; 
58   SCM style_sym =sc->get_elt_property ("style");
59   if (gh_scm2int (balltype) >= 2 && gh_string_p (style_sym))
60     {
61       style = ly_scm2string (style_sym);
62     }
63
64   String idx =  ("rests-") + to_str (gh_scm2int (balltype))
65     + (ledger_b ? "o" : "") + style;
66
67   return sc-> lookup_l ()->afm_find (idx).create_scheme();
68 }
69
70
71
72 Rest::Rest (SCM s)
73   : Rhythmic_head (s)
74 {
75 }
76