]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
65eb4c5a7559f19b3daa4bf3e8a73f0629dceb72
[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--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef DOT_COLUMN_HH
11 #define DOT_COLUMN_HH
12
13 #include "lily-guile.hh"
14
15 /**
16   Group dots.  This is needed because, the dots have to be aligned per voice
17  */
18 class Dot_column                // interface
19 {
20 public:
21   static int compare (Grob * const&,Grob * const&);
22   static void add_head (Grob * dotcol, Grob* rh );
23
24   static bool has_interface (Grob*);
25   DECLARE_SCHEME_CALLBACK (force_shift_callback, (SCM ,SCM));
26   DECLARE_SCHEME_CALLBACK (side_position, (SCM ,SCM));  
27   static SCM do_shifts (SCM dotlist);
28 };
29 #endif // DOT_COLUMN_HH