]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/slur.hh
* input/regression/slur-stem-broken.ly: remove.
[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 #define DEBUG_SLUR_QUANTING 1
17
18 class Slur
19 {
20 public:
21   static void add_column (Grob *me, Grob *col);
22   static void add_extra_encompass (Grob *me, Grob *col);
23   DECLARE_SCHEME_CALLBACK (print, (SCM));
24   DECLARE_SCHEME_CALLBACK (after_line_breaking, (SCM));
25   DECLARE_SCHEME_CALLBACK (height, (SCM,SCM));
26   DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM,SCM));
27   static bool has_interface (Grob *);
28   static Bezier get_curve (Grob*me);
29 };
30
31 #endif /* NEW_SLUR_HH */
32