X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fslur.hh;h=003fa48083e56d89b9f104527547c2e17b71f5a1;hb=7a42c24ad876cae059e4425331a3b873575c157b;hp=077b5a833eee5a2094dc306878f12810a5c20bf3;hpb=df7d31f879f9b39c2b89390b6e1b1b23d4987e74;p=lilypond.git diff --git a/lily/include/slur.hh b/lily/include/slur.hh index 077b5a833e..003fa48083 100644 --- a/lily/include/slur.hh +++ b/lily/include/slur.hh @@ -1,40 +1,28 @@ /* - slur.hh -- part of GNU LilyPond - - (c) 1996--1998 Han-Wen Nienhuys + slur.hh -- declare Slur + + source file of the GNU LilyPond music typesetter + + (c) 2004 Han-Wen Nienhuys */ #ifndef SLUR_HH #define SLUR_HH -#include "bow.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 Bow +class Slur { public: - Slur (); - VIRTUAL_COPY_CONS(Score_element); - - void add_column (Note_column*); - - Link_array encompass_arr_; - -protected: - virtual Array get_encompass_offset_arr () const; - - virtual void set_default_dir (); - virtual void do_post_processing (); - virtual void do_add_processing (); - virtual void do_pre_processing (); - virtual void do_substitute_dependency (Score_element*, Score_element*); - virtual Interval do_width () const; - Array get_rods () 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 (after_line_breaking, (SCM)); + DECLARE_SCHEME_CALLBACK (height, (SCM,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 */