]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
0d46900ec7264eedacc564a33f31b749e5dcfe25
[lilypond.git] / lily / include / multi-measure-rest.hh
1 /*   
2   multi-measure-rest.hh -- declare Multi_measure_rest
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2002 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #ifndef MULTI_MEASURE_REST_HH
11 #define MULTI_MEASURE_REST_HH
12
13 #include "lily-proto.hh"
14 #include "lily-guile.hh"
15 #include "rod.hh"
16
17 class Multi_measure_rest
18 {
19 public:
20   static void set_interface (Grob*);
21   static bool has_interface (Grob*);
22   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
23   DECLARE_SCHEME_CALLBACK (percent, (SCM));
24   static  void add_column (Grob*,Item*);
25   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM ));
26
27   static Molecule big_rest (Grob*,Real);
28   static Molecule symbol_molecule (Grob*);  
29   static Molecule church_rest (Font_metric*, int,Real, Real);
30 };
31
32 #endif /* MULTI_MEASURE_REST_HH */
33