]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/new-slur.hh
* lily/dynamic-engraver.cc (typeset_all):
[lilypond.git] / lily / include / new-slur.hh
1 /* 
2   new-slur.hh -- declare New_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 New_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
27   static void set_interface (Grob *);
28   static bool has_interface (Grob *);
29   static Bezier get_curve (Grob*me);
30 };
31
32 // zught
33 Direction get_slur_dir (Grob *slur);
34
35 #endif /* NEW_SLUR_HH */
36