]> git.donarmstrong.com Git - lilypond.git/blob - lily/rhythmic-head.cc
release: 1.5.28
[lilypond.git] / lily / rhythmic-head.cc
1 /*
2   rhythmic-head.cc -- implement Rhythmic_head
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "rhythmic-head.hh"
10 #include "debug.hh"
11 #include "rest.hh"
12 #include "stem.hh"
13 #include "staff-symbol-referencer.hh"
14 #include "item.hh"
15
16
17 Item*
18 Rhythmic_head::dots_l (Grob*me) 
19 {
20   SCM s = me->get_grob_property ("dot");
21   return unsmob_item (s);
22 }
23
24 int
25 Rhythmic_head::balltype_i (Grob*me) 
26 {
27   SCM s = me->get_grob_property ("duration-log");
28   return gh_number_p (s) ? gh_scm2int (s) <? 2 : 0;
29 }
30
31 Item*
32 Rhythmic_head::stem_l (Grob*me) 
33 {
34   SCM s = me->get_grob_property ("stem");
35   return unsmob_item (s);
36 }
37
38 int
39 Rhythmic_head::dot_count (Grob*me) 
40 {
41   return dots_l (me)
42     ? gh_scm2int (dots_l (me)->get_grob_property ("dot-count")) : 0;
43 }
44
45 void
46 Rhythmic_head::set_dots (Grob*me,Item *dot_l)
47 {
48   me->set_grob_property ("dot", dot_l->self_scm ());
49 }
50
51
52 void
53 Rhythmic_head::set_interface (Grob*me)
54 {
55   me->set_interface (ly_symbol2scm ("rhythmic-head-interface"));
56 }
57
58 bool
59 Rhythmic_head::has_interface (Grob*me)
60 {
61   return me &&  me->has_interface (ly_symbol2scm ("rhythmic-head-interface"));
62 }