]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/multi-measure-rest.hh
* configure.in: Test for and accept lmodern if EC fonts not found.
[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--2004 Jan Nieuwenhuizen <janneke@gnu.org>
7   
8  */
9
10 #ifndef MULTI_MEASURE_REST_HH
11 #define MULTI_MEASURE_REST_HH
12
13 #include "lily-guile.hh"
14 #include "rod.hh"
15
16 class Multi_measure_rest
17 {
18 public:
19   static bool has_interface (Grob*);
20   DECLARE_SCHEME_CALLBACK (print, (SCM ));
21   DECLARE_SCHEME_CALLBACK (percent, (SCM));
22   static  void add_column (Grob*,Item*);
23   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM ));
24   DECLARE_SCHEME_CALLBACK (centered_stencil, (SCM ));
25   
26   static Stencil big_rest (Grob*,Real);
27   static Stencil symbol_stencil (Grob*,Real);  
28   static Stencil church_rest (Grob*, Font_metric*, int,Real);
29 };
30
31 #endif /* MULTI_MEASURE_REST_HH */
32