]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
05c5a7e5482678d5ade98ab282b85ba27785b774
[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--2004 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 class Grob;
16
17 /**
18   Group dots.  This is needed because, the dots have to be aligned per voice
19  */
20 class Dot_column                // interface
21 {
22 public:
23   static int compare (Grob * const&,Grob * const&);
24   static void add_head (Grob * dotcol, Grob* rh );
25
26   static bool has_interface (Grob*);
27   DECLARE_SCHEME_CALLBACK (force_shift_callback, (SCM ,SCM));
28   DECLARE_SCHEME_CALLBACK (side_position, (SCM ,SCM));  
29   static SCM do_shifts (Grob*);
30 };
31 #endif // DOT_COLUMN_HH