]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-column.hh
150c690c1753f50c706e55c97ed2a08323be39ce
[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--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef Script_COLUMN_HH
10 #define Script_COLUMN_HH
11
12 #include "lily-proto.hh"
13 #include "grob-interface.hh"
14 #include "std-vector.hh"
15
16 class Script_column
17 {
18 public:
19   static void add_side_positioned (Grob *, Grob *);
20   DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM));
21   DECLARE_SCHEME_CALLBACK (row_before_line_breaking, (SCM));
22   DECLARE_GROB_INTERFACE();
23   static void order_grobs (vector<Grob*> grobs);
24
25 };
26
27 #endif /* Script_COLUMN_HH */
28