]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
release: 1.3.94
[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--2000 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   properties:
18
19   columns -- list of paper-columns
20
21  expand-limit -- int : max number of measures expanded in church rests
22
23  minimum-width -- Real in staffspace
24
25  padding -- staffspace
26 */
27 class Multi_measure_rest
28 {
29 public:
30   static void set_interface (Score_element*);
31   static bool has_interface (Score_element*);
32   DECLARE_SCHEME_CALLBACK(brew_molecule, (SCM ));
33   static  void add_column (Score_element*,Item*);
34   DECLARE_SCHEME_CALLBACK(set_spacing_rods, (SCM ));
35 };
36
37 #endif /* MULTI_MEASURE_REST_HH */
38