MIDI branch becomes trunk
[ardour.git] / libs / ardour / ardour / midi_playlist.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3         Written by Dave Robillard, 2006
4  
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9  
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14  
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __ardour_midi_playlist_h__
21 #define __ardour_midi_playlist_h__
22
23 #include <vector>
24 #include <list>
25
26 #include <ardour/ardour.h>
27 #include <ardour/playlist.h>
28
29 namespace ARDOUR
30 {
31
32 class Session;
33 class Region;
34 class MidiRegion;
35 class Source;
36 class MidiRingBuffer;
37
38 class MidiPlaylist : public ARDOUR::Playlist
39 {
40 public:
41         MidiPlaylist (Session&, const XMLNode&, bool hidden = false);
42         MidiPlaylist (Session&, string name, bool hidden = false);
43         MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, string name, bool hidden = false);
44         MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, nframes_t start, nframes_t cnt,
45                       string name, bool hidden = false);
46
47         ~MidiPlaylist ();
48
49         nframes_t read (MidiRingBuffer& buf,
50                         nframes_t start, nframes_t cnt, uint32_t chan_n=0);
51
52         int set_state (const XMLNode&);
53         UndoAction get_memento() const;
54
55         bool destroy_region (boost::shared_ptr<Region>);
56
57 protected:
58
59         /* playlist "callbacks" */
60         void flush_notifications ();
61
62         void finalize_split_region (boost::shared_ptr<Region> original, boost::shared_ptr<Region> left, boost::shared_ptr<Region> right);
63         
64         void check_dependents (boost::shared_ptr<Region> region, bool norefresh);
65         void refresh_dependents (boost::shared_ptr<Region> region);
66         void remove_dependents (boost::shared_ptr<Region> region);
67
68 private:
69         XMLNode& state (bool full_state);
70         void dump () const;
71
72         bool region_changed (Change, boost::shared_ptr<Region>);
73 };
74
75 } /* namespace ARDOUR */
76
77 #endif  /* __ardour_midi_playlist_h__ */
78
79