]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/arpeggio.hh
373045bfca740cbf80023aad6c64a5a55e4e59f6
[lilypond.git] / lily / include / arpeggio.hh
1 /*
2   arpegio.hh -- declare Arpeggio
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef ARPEGGIO_HH
10 #define ARPEGGIO_HH
11
12 #include "lily-proto.hh"
13 #include "grob-interface.hh"
14
15
16 class Arpeggio
17 {
18 public:
19   static Grob *get_common_y (Grob *);
20   DECLARE_SCHEME_CALLBACK (print, (SCM));
21   DECLARE_SCHEME_CALLBACK (calc_positions, (SCM));
22   DECLARE_SCHEME_CALLBACK (brew_chord_bracket, (SCM));
23   DECLARE_SCHEME_CALLBACK (brew_chord_slur, (SCM));
24   DECLARE_SCHEME_CALLBACK (width, (SCM));
25   DECLARE_SCHEME_CALLBACK (height, (SCM));
26   DECLARE_SCHEME_CALLBACK (pure_height, (SCM, SCM, SCM));
27   DECLARE_GROB_INTERFACE();
28 };
29
30 #endif /* ARPEGGIO_HH */
31