X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Frepeated-music.hh;h=92a278e90ce519d2b3a728d15041c1e33aa26c41;hb=9c4b0d53715d94ee923729eb40416ea90f71516c;hp=4b84bb140ecb4dbc35b019e403716ecd3a2bf544;hpb=ebd181bdf74b864a670d12a0a8cc8392595f3408;p=lilypond.git diff --git a/lily/include/repeated-music.hh b/lily/include/repeated-music.hh index 4b84bb140e..92a278e90c 100644 --- a/lily/include/repeated-music.hh +++ b/lily/include/repeated-music.hh @@ -1,17 +1,15 @@ -/* +/* repeated-music.hh -- declare Repeated_music - + source file of the GNU LilyPond music typesetter - - (c) 1999--2001 Han-Wen Nienhuys - - */ -#ifndef RepEATED_MUSIC_HH -#define RepEATED_MUSIC_HH + (c) 1999--2007 Han-Wen Nienhuys +*/ -#include "music.hh" +#ifndef REPEATED_MUSIC_HH +#define REPEATED_MUSIC_HH +#include "music.hh" /** Musical repeats. @@ -25,12 +23,12 @@ There are three modes of representing this music: BODY A - B - C + B + C is called "folded". Mostly used for lyrics. - + BODY A B C is called volta. This is common notation @@ -44,35 +42,26 @@ If the number of repeats is bigger than the number of alternatives, then the first alternative is assumed to be repeated. - */ -class Repeated_music : public Music +class Repeated_music { public: - Music * body () const; - SCM alternatives () const; + static Music *body (Music *); + static SCM alternatives (Music *); - /// how often do we repeat? - int repeat_count ( ) const; - virtual Pitch to_relative_octave (Pitch); + /* How often do we repeat? */ + static int repeat_count (Music *); + DECLARE_SCHEME_CALLBACK (relative_callback, (SCM, SCM)); - Moment body_length_mom () const; - Moment alternatives_length_mom (bool fold) const; - Moment alternatives_volta_length_mom () const; + static Moment body_get_length (Music *); + static Moment alternatives_get_length (Music *, bool fold); + static Moment alternatives_volta_get_length (Music *); DECLARE_SCHEME_CALLBACK (unfolded_music_length, (SCM)); DECLARE_SCHEME_CALLBACK (volta_music_length, (SCM)); - DECLARE_SCHEME_CALLBACK (folded_music_length, (SCM)); - - /// Transpose, with the interval central C to #p# - virtual void transpose (Pitch p); - - /// Scale the music in time by #factor#. - virtual void compress (Moment factor); - VIRTUAL_COPY_CONS (Music); - Repeated_music (); - Repeated_music (SCM); + DECLARE_SCHEME_CALLBACK (folded_music_length, (SCM)); + DECLARE_SCHEME_CALLBACK (minimum_start, (SCM)); + DECLARE_SCHEME_CALLBACK (first_start, (SCM)); }; - -#endif /* RepEATED_MUSIC_HH */ +#endif /* REPEATED_MUSIC_HH */