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