]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/slur.hh
use classnames for interface naming; remove inclusion of
[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 #include "grob-interface.hh"
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   static void replace_breakable_encompass_objects (Grob *me);
24   static void auxiliary_acknowledge_extra_object (Grob_info, vector<Grob*>&, vector<Grob*>&);
25   DECLARE_SCHEME_CALLBACK (print, (SCM));
26   DECLARE_SCHEME_CALLBACK (calc_control_points, (SCM));
27   DECLARE_SCHEME_CALLBACK (calc_direction, (SCM));
28   DECLARE_SCHEME_CALLBACK (pure_height, (SCM, SCM, SCM));
29   DECLARE_SCHEME_CALLBACK (height, (SCM));
30   DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM, SCM));
31   DECLARE_SCHEME_CALLBACK (pure_outside_slur_callback, (SCM, SCM, SCM, SCM));
32   DECLARE_GROB_INTERFACE();
33   static Bezier get_curve (Grob *me);
34 };
35
36 #endif /* SLUR_HH */