]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
e812875e99da32328b45a0b9064f39c88e173fd6
[lilypond.git] / lily / include / dot-column.hh
1 /*
2   dot-column.hh -- declare Dot_column Dot_column
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 DOT_COLUMN_HH
11 #define DOT_COLUMN_HH
12
13 #include "item.hh"
14
15
16 /**
17   Group dots.  This is needed because, the dots have to be aligned per voice
18  */
19 class Dot_column : public Item
20 {
21   static int compare (Score_element * const&,Score_element * const&);
22 public:
23   VIRTUAL_COPY_CONS (Score_element);
24   void add_head (Rhythmic_head*);
25   Dot_column (SCM);
26   
27   static Real force_shift_callback (Score_element const* , Axis);
28   static SCM do_shifts (SCM dotlist);
29 };
30 #endif // DOT_COLUMN_HH