2 rhythmic-head.cc -- implement Rhythmic_head
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "rhythmic-head.hh"
14 #include "staff-symbol-referencer.hh"
18 Rhythmic_head::get_dots (Grob
*me
)
20 SCM s
= me
->get_object ("dot");
21 return unsmob_item (s
);
25 Rhythmic_head::get_stem (Grob
*me
)
27 SCM s
= me
->get_object ("stem");
28 return unsmob_item (s
);
32 Rhythmic_head::dot_count (Grob
*me
)
35 ? scm_to_int (get_dots (me
)->get_property ("dot-count")) : 0;
39 Rhythmic_head::set_dots (Grob
*me
, Item
*dot
)
41 me
->set_object ("dot", dot
->self_scm ());
45 Rhythmic_head::duration_log (Grob
*me
)
47 SCM s
= me
->get_property ("duration-log");
48 return scm_is_number (s
) ? scm_to_int (s
) : 0;
51 ADD_INTERFACE (Rhythmic_head
,