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