Correct left text alignment of DynamicTextSpanner.
[lilypond.git] / lily / include / slur.hh
blob5059bdff9645cdf847ca3050c064c7042823d13f
1 /*
2 slur.hh -- declare Slur
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #ifndef SLUR_HH
10 #define SLUR_HH
12 #include "lily-proto.hh"
13 #include "std-vector.hh"
14 #include "grob-interface.hh"
16 class Slur
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);
36 #endif /* SLUR_HH */