]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-column.hh
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / include / script-column.hh
1 /*
2   g-script-column.hh -- declare Script_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef Script_COLUMN_HH
10 #define Script_COLUMN_HH
11
12 #include "lily-guile.hh"
13 #include "lily-proto.hh"
14 #include "grob-interface.hh"
15 #include "std-vector.hh"
16
17 class Script_column
18 {
19 public:
20   static void add_side_positioned (Grob *, Grob *);
21   DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
22   DECLARE_SCHEME_CALLBACK (row_before_line_breaking, (SCM));
23   DECLARE_GROB_INTERFACE();
24   static void order_grobs (vector<Grob*> grobs);
25
26 };
27
28 #endif /* Script_COLUMN_HH */
29