Add menu option to insert program changes.
[ardour.git] / gtk2_ardour / midi_streamview.h
index ae2b907d1eaf158891a9ea30b106cf5d6e64482c..0774fd61bd08385f754525eb44a9b1d4a1d83109 100644 (file)
@@ -35,7 +35,6 @@ namespace Gdk {
 
 namespace ARDOUR {
        class Route;
-       class Diskstream;
        class Crossfade;
        class PeakData;
        class MidiRegion;
@@ -58,7 +57,6 @@ class MidiStreamView : public StreamView
        ~MidiStreamView ();
 
        void set_selected_regionviews (RegionSelection&);
-       void get_selectables (nframes_t start, nframes_t end, std::list<Selectable* >&);
        void get_inverted_selectables (Selection&, std::list<Selectable* >& results);
 
        enum VisibleNoteRange {
@@ -76,10 +74,10 @@ class MidiStreamView : public StreamView
 
        void update_note_range(uint8_t note_num);
 
-       void redisplay_diskstream ();
+       void redisplay_track ();
 
        inline double contents_height() const
-       { return (_trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2); }
+       { return (child_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2); }
 
        inline double note_to_y(uint8_t note) const
                { return contents_height()
@@ -100,30 +98,23 @@ class MidiStreamView : public StreamView
 
        RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool);
 
+       void apply_note_range(uint8_t lowest, uint8_t highest, bool to_region_views);
+
   private:
        void setup_rec_box ();
-
-       void rec_data_range_ready (
-                       nframes_t start,
-                       nframes_t dur,
-                       boost::weak_ptr<ARDOUR::Source> src);
-
-       void update_rec_regions (
-                       boost::shared_ptr<ARDOUR::MidiModel> data,
-                       nframes_t start,
-                       nframes_t dur);
+       void update_rec_box ();
 
        RegionView* add_region_view_internal (
-                       boost::shared_ptr<ARDOUR::Region>,
-                       bool wait_for_waves,
-                       bool recording = false);
+               boost::shared_ptr<ARDOUR::Region>,
+               bool wait_for_waves,
+               bool recording = false);
 
        void display_region(MidiRegionView* region_view, bool load_model);
-       void display_diskstream (boost::shared_ptr<ARDOUR::Diskstream> ds);
+       void display_track (boost::shared_ptr<ARDOUR::Track> tr);
 
        void update_contents_height ();
+
        void draw_note_lines();
-       void apply_note_range(uint8_t lowest, uint8_t highest, bool to_region_views);
        bool update_data_note_range(uint8_t min, uint8_t max);
        void update_contents_metrics(boost::shared_ptr<ARDOUR::Region> r);