X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fslur.hh;h=390bde5c6f27975aa16250f49760c30fa6c78f96;hb=9e752ec70a160d6c3d7632036de75630438c4142;hp=c9f6052d5a6a4d13507fb83d3e91d8740267fd08;hpb=0af2486a28f1c60b9de929a9101964d880927e54;p=lilypond.git diff --git a/lily/include/slur.hh b/lily/include/slur.hh index c9f6052d5a..390bde5c6f 100644 --- a/lily/include/slur.hh +++ b/lily/include/slur.hh @@ -1,42 +1,29 @@ /* slur.hh -- declare Slur - (c) 1996--2000 Han-Wen Nienhuys + source file of the GNU LilyPond music typesetter + + (c) 2004--2006 Han-Wen Nienhuys */ #ifndef SLUR_HH #define SLUR_HH -#include "spanner.hh" -#include "rod.hh" +#include "lily-proto.hh" +#include "lily-guile.hh" -/** - A #Bow# which tries to drape itself around the stems too. - */ -class Slur : public Spanner +class Slur { public: - Slur (SCM); - VIRTUAL_COPY_CONS(Score_element); - - void add_column (Note_column*); - static SCM brew_molecule (SCM); - - Array get_encompass_offset_arr () const; - Bezier get_curve () const; - - Direction get_default_dir () const; - static SCM after_line_breaking (SCM); - Array get_rods () const; - Offset get_attachment (Direction dir, Score_element**common) const; - -private: - void de_uglyfy (Slur_bezier_bow* bb, Real default_height); - void set_extremities (); - void set_control_points (); - Offset encompass_offset (Score_element *col,Score_element**common)const; + static void add_column (Grob *me, Grob *col); + static void add_extra_encompass (Grob *me, Grob *col); + DECLARE_SCHEME_CALLBACK (print, (SCM)); + DECLARE_SCHEME_CALLBACK (calc_control_points, (SCM)); + DECLARE_SCHEME_CALLBACK (calc_direction, (SCM)); + DECLARE_SCHEME_CALLBACK (height, (SCM)); + DECLARE_SCHEME_CALLBACK (outside_slur_callback, (SCM, SCM)); + static bool has_interface (Grob *); + static Bezier get_curve (Grob *me); }; -#endif // SLUR_HH - - +#endif /* SLUR_HH */