Merge branch 'master' into windows
[ardour.git] / gtk2_ardour / audio_region_view.h
index ee03fdbc8036d2da19fa507b23af7e80a1f0279e..7c6d6b88f24311bbfe53a08b68ac691a7a939dc2 100644 (file)
 #ifndef __gtk_ardour_audio_region_view_h__
 #define __gtk_ardour_audio_region_view_h__
 
+#ifdef interface
+#undef interface
+#endif
+
 #include <vector>
 
 #include <libgnomecanvasmm.h>
@@ -91,11 +95,11 @@ class AudioRegionView : public RegionView
 
        GhostRegion* add_ghost (TimeAxisView&);
 
-       void reset_fade_in_shape_width (framecnt_t);
-       void reset_fade_out_shape_width (framecnt_t);
+       void reset_fade_in_shape_width (boost::shared_ptr<ARDOUR::AudioRegion> ar, framecnt_t);
+       void reset_fade_out_shape_width (boost::shared_ptr<ARDOUR::AudioRegion> ar, framecnt_t);
 
-       void show_fade_line(framepos_t pos);
-       void hide_fade_line();
+       framepos_t get_fade_in_shape_width ();
+       framepos_t get_fade_out_shape_width ();
 
        void set_fade_visibility (bool);
        void update_coverage_frames (LayerDisplay);
@@ -119,7 +123,19 @@ class AudioRegionView : public RegionView
        void redraw_end_xfade ();
        
        void hide_xfades ();
+       void hide_start_xfade ();
+       void hide_end_xfade ();
        void show_xfades ();
+       void show_start_xfade ();
+       void show_end_xfade ();
+
+       bool start_xfade_visible () const {
+               return _start_xfade_visible;
+       }
+
+       bool end_xfade_visible () const {
+               return _end_xfade_visible;
+       }
 
   protected:
 
@@ -144,15 +160,16 @@ class AudioRegionView : public RegionView
        ArdourCanvas::Polygon*           fade_out_shape;
        ArdourCanvas::SimpleRect*        fade_in_handle; ///< fade in handle, or 0
        ArdourCanvas::SimpleRect*        fade_out_handle; ///< fade out handle, or 0
-       ArdourCanvas::SimpleLine*        fade_position_line;
 
        ArdourCanvas::Line *start_xfade_in;
        ArdourCanvas::Line *start_xfade_out;
        ArdourCanvas::SimpleRect* start_xfade_rect;
+       bool _start_xfade_visible;
 
        ArdourCanvas::Line *end_xfade_in;
        ArdourCanvas::Line *end_xfade_out;
        ArdourCanvas::SimpleRect* end_xfade_rect;
+       bool _end_xfade_visible;
 
        boost::shared_ptr<AudioRegionGainLine> gain_line;
 
@@ -203,8 +220,10 @@ private:
         */
        std::vector<PBD::ScopedConnection*> _data_ready_connections;
 
-       /** RegionViews that we hid the xfades for at the start of the current drag */
-       std::list<AudioRegionView*> _hidden_xfades;
+       /** RegionViews that we hid the xfades for at the start of the current drag;
+        *  first list is for start xfades, second list is for end xfades.
+        */
+       std::pair<std::list<AudioRegionView*>, std::list<AudioRegionView*> > _hidden_xfades;
 };
 
 #endif /* __gtk_ardour_audio_region_view_h__ */