]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/slur.hh
* lily/include/slur-scoring.hh (struct Slur_score_state): new file
[lilypond.git] / lily / include / slur.hh
1 /* 
2   slur.hh -- declare Slur
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
7   
8 */
9
10 #ifndef NEW_SLUR_HH
11 #define NEW_SLUR_HH
12
13 #include "lily-proto.hh"
14 #include "lily-guile.hh"
15
16 class Slur
17 {
18 public:
19   static void add_column (Grob *me, Grob *col);
20   static void add_extra_encompass (Grob *me, Grob *col);
21   DECLARE_SCHEME_CALLBACK (print, (SCM));
22   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
23   DECLARE_SCHEME_CALLBACK (height, (SCM,SCM));
24   DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM,SCM));
25   static bool has_interface (Grob *);
26   static Bezier get_curve (Grob*me);
27 };
28
29 #endif /* NEW_SLUR_HH */
30