]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-sequence.hh
2003 -> 2004
[lilypond.git] / lily / include / music-sequence.hh
1 /*   
2   music-sequence.hh -- declare Music_sequence
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2000--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef MUSIC_SEQUENCE_HH
11 #define MUSIC_SEQUENCE_HH
12 #include "music.hh"
13 /**
14   Music can be a list of other "Music" elements
15  */
16 class Music_sequence : public Music
17 {
18 public:
19   Music_sequence (SCM h);
20   Music_sequence ();
21   SCM music_list () const;
22   void append_music (Music *);
23   VIRTUAL_COPY_CONS (Music);
24   
25   Pitch do_relative_octave (Pitch p, bool b);
26   
27   static Moment cumulative_length (SCM) ;
28   static Moment maximum_length (SCM) ;
29   static Moment first_start (SCM list) ;
30   static Moment minimum_start (SCM list);
31 };
32
33 Pitch music_list_to_relative (SCM l,Pitch p, bool ret_first);
34 void transpose_music_list (SCM , Pitch);
35 void compress_music_list (SCM, Moment);
36
37 #endif