add note onset detection to the ferret, c/o the aubio-based Onset VAMP plugin (REQUIR...
[ardour.git] / gtk2_ardour / streamview.h
index 4df00d84a54e28766a87b7c1d950319bb9c5d8ef..da44a7a2f082c2509bb2d16abfb5570e70c692c5 100644 (file)
@@ -27,7 +27,6 @@
 #include "enums.h"
 #include "simplerect.h"
 #include "canvas.h"
-#include "color.h"
 
 namespace Gdk {
        class Color;
@@ -108,7 +107,7 @@ protected:
        void         update_rec_box ();
        virtual void update_rec_regions () = 0;
        
-       virtual void add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves) = 0;
+       virtual void add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves, bool recording = false) = 0;
        virtual void remove_region_view (boost::weak_ptr<ARDOUR::Region> );
        //void         remove_rec_region (boost::shared_ptr<ARDOUR::Region>); (unused)
 
@@ -120,7 +119,7 @@ protected:
        virtual void playlist_changed (boost::weak_ptr<ARDOUR::Diskstream>);
        virtual void playlist_modified ();
        
-       virtual void color_handler (ColorID, uint32_t) = 0;
+       virtual void color_handler () = 0;
 
 
        RouteTimeAxisView&        _trackview;