]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-head.hh
release: 1.3.95
[lilypond.git] / lily / include / rhythmic-head.hh
1 /*
2   rhythmic-head.hh -- declare Rhythmic_head
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
10 #ifndef RHYTHMIC_HEAD_HH
11 #define RHYTHMIC_HEAD_HH
12
13 #include "lily-guile.hh"
14 #include "lily-proto.hh"
15
16 /*
17   Properties
18   
19   dot -- reference to Dots object.
20
21   stem -- pointer to Stem object
22
23   Read-only
24
25   duration-log -- 2-log of the notehead duration
26
27 */
28 class Rhythmic_head
29 {
30 public:
31   static int balltype_i (Score_element*) ;
32   static void set_dots (Score_element*,Item *);
33   static Item * stem_l (Score_element*) ;
34   static Item * dots_l (Score_element*) ;
35   static int dot_count (Score_element*) ;
36   DECLARE_SCHEME_CALLBACK(after_line_breaking, (SCM ));
37   static bool has_interface (Score_element*);
38   static void set_interface (Score_element*);
39 };
40
41 #endif // RHYTHMIC_HEAD_HH