Rewrote MidiRingBuffer to more efficiently pack data (flat pack stamps, sizes, and...
[ardour.git] / gtk2_ardour / midi_streamview.h
1 /*
2     Copyright (C) 2001, 2006 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_midi_streamview_h__
20 #define __ardour_midi_streamview_h__
21
22 #include <list>
23 #include <cmath>
24
25 #include <ardour/location.h>
26 #include "enums.h"
27 #include "simplerect.h"
28 #include "color.h"
29 #include "streamview.h"
30
31 namespace Gdk {
32         class Color;
33 }
34
35 namespace ARDOUR {
36         class Route;
37         class Diskstream;
38         class Crossfade;
39         class PeakData;
40         class MidiRegion;
41         class Source;
42 }
43
44 class PublicEditor;
45 class Selectable;
46 class MidiTimeAxisView;
47 class MidiRegionView;
48 class RegionSelection;
49 class CrossfadeView;
50 class Selection;
51
52 class MidiStreamView : public StreamView
53 {
54   public:
55         MidiStreamView (MidiTimeAxisView&);
56         ~MidiStreamView ();
57
58         void set_selected_regionviews (RegionSelection&);
59         void get_selectables (jack_nframes_t start, jack_nframes_t end, list<Selectable* >&);
60         void get_inverted_selectables (Selection&, list<Selectable* >& results);
61
62   private:
63         void setup_rec_box ();
64         void rec_data_range_ready (boost::shared_ptr<ARDOUR::MidiBuffer> data, jack_nframes_t start, jack_nframes_t dur, boost::weak_ptr<ARDOUR::Source> src); 
65         void update_rec_regions (boost::shared_ptr<ARDOUR::MidiBuffer> data, jack_nframes_t start, jack_nframes_t dur);
66         
67         RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves);
68
69         void redisplay_diskstream ();
70
71         void color_handler (ColorID id, uint32_t val);
72 };
73
74 #endif /* __ardour_midi_streamview_h__ */