]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/slur.hh
Fix some bugs in the dynamic engraver and PostScript backend
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SLUR_HH
10 #define SLUR_HH
11
12 #include "grob-info.hh"
13 #include "lily-proto.hh"
14 #include "lily-guile.hh"
15 #include "std-vector.hh"
16
17 class Slur
18 {
19 public:
20   static void add_column (Grob *me, Grob *col);
21   static void add_extra_encompass (Grob *me, Grob *col);
22   static void auxiliary_acknowledge_extra_object (Grob_info, vector<Grob*>&, vector<Grob*>&);
23   DECLARE_SCHEME_CALLBACK (print, (SCM));
24   DECLARE_SCHEME_CALLBACK (calc_control_points, (SCM));
25   DECLARE_SCHEME_CALLBACK (calc_direction, (SCM));
26   DECLARE_SCHEME_CALLBACK (height, (SCM));
27   DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM, SCM));
28   static bool has_interface (Grob *);
29   static Bezier get_curve (Grob *me);
30 };
31
32 #endif /* SLUR_HH */