]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-head.hh
release: 1.3.94
[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   duration-log -- 2-log of the notehead duration
20
21   dot -- reference to Dots object.
22
23 */
24 class Rhythmic_head
25 {
26 public:
27   static int balltype_i (Score_element*) ;
28   static void set_dots (Score_element*,Item *);
29   static Item * stem_l (Score_element*) ;
30   static Item * dots_l (Score_element*) ;
31   static int dot_count (Score_element*) ;
32   DECLARE_SCHEME_CALLBACK(after_line_breaking, (SCM ));
33   static bool has_interface (Score_element*);
34   static void set_interface (Score_element*);
35 };
36
37 #endif // RHYTHMIC_HEAD_HH