]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/slur.hh
Run `make grand-replace'.
[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--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef SLUR_HH
10 #define SLUR_HH
11
12 #include "lily-proto.hh"
13 #include "std-vector.hh"
14 #include "grob-interface.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   static void replace_breakable_encompass_objects (Grob *me);
22   static void auxiliary_acknowledge_extra_object (Grob_info const &, 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 (pure_height, (SCM, SCM, SCM));
27   DECLARE_SCHEME_CALLBACK (height, (SCM));
28   DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM, SCM));
29   DECLARE_SCHEME_CALLBACK (pure_outside_slur_callback, (SCM, SCM, SCM, SCM));
30   DECLARE_SCHEME_CALLBACK (outside_slur_cross_staff, (SCM, SCM));
31   DECLARE_SCHEME_CALLBACK (calc_cross_staff, (SCM));
32   DECLARE_GROB_INTERFACE();
33   static Bezier get_curve (Grob *me);
34 };
35
36 #endif /* SLUR_HH */