2 music.hh -- declare Music
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
14 #include "virtual-methods.hh"
15 #include "minterval.hh"
16 #include "lily-proto.hh"
19 #include "music-constructor.hh"
22 #define get_mus_property(x) internal_get_mus_property(ly_symbol2scm(x))
23 #define set_mus_property(x,y) internal_set_mus_property(ly_symbol2scm (x), y)
24 #define is_mus_type(x) internal_is_music_type(ly_symbol2scm (x))
26 /** Music is anything that has duration and supports both time compression and
29 In Lily, everything that can be thought to have a length and a pitch
30 (which has a duration which can be transposed) is considered "music",
32 Music is hierarchical:
37 TODO: make a equalp function for general music.
41 Input *origin () const;
42 void set_spot (Input);
44 SCM internal_get_mus_property (SCM) const;
45 void internal_set_mus_property (SCM , SCM val);
46 SCM get_property_alist (bool mut) const;
47 bool internal_is_music_type (SCM) const;
49 virtual Pitch to_relative_octave (Pitch);
51 /// The duration of this piece of music
52 virtual Moment get_length () const;
53 virtual Moment start_mom () const;
55 /// Transpose, with the interval central C to #p#
56 virtual void transpose (Pitch p);
58 /// Scale the music in time by #factor#.
59 virtual void compress (Moment factor);
60 VIRTUAL_COPY_CONS (Music);
62 Music (Music const &m);
64 DECLARE_SMOBS (Music,);
65 SCM immutable_property_alist_;
66 SCM mutable_property_alist_;
67 friend SCM ly_extended_make_music(SCM,SCM);
71 DECLARE_UNSMOB(Music,music);
73 Music* make_music_by_name (SCM sym);