]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/stem-tremolo.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / stem-tremolo.hh
1 /*
2   stem-tremolo.hh -- declare Abbreviation
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef ABBREV_HH
10 #define ABBREV_HH
11
12 #include "lily-proto.hh"
13 #include "grob-interface.hh"
14
15 class Stem_tremolo
16 {
17 public:
18
19   DECLARE_GROB_INTERFACE();
20   DECLARE_SCHEME_CALLBACK (calc_slope, (SCM));
21   DECLARE_SCHEME_CALLBACK (calc_width, (SCM));
22   DECLARE_SCHEME_CALLBACK (print, (SCM));
23   DECLARE_SCHEME_CALLBACK (height, (SCM));
24   DECLARE_SCHEME_CALLBACK (width, (SCM));
25   DECLARE_SCHEME_CALLBACK (calc_style, (SCM));
26   static Stencil raw_stencil (Grob *, Real slope, Direction stemdir);
27   static Stencil translated_stencil (Grob*, Real slope);
28   static Stencil untranslated_stencil (Grob*, Real slope);
29   static Real get_beam_translation (Grob *me);
30   static Real vertical_length (Grob *me);
31 };
32
33 #endif /* ABBREV_HH */
34