X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fcrossfade_view.h;h=c283a92b62dae71214043a5080f5d2654bc7c769;hb=378ea3430ff5cb8131ebbd93c8126ba6c46416f0;hp=6154ab088d2691127dfcc6bfbc55caa10c4b6bf5;hpb=4297071b3f7360b17d81ef9cf36b8d75d46d2818;p=ardour.git diff --git a/gtk2_ardour/crossfade_view.h b/gtk2_ardour/crossfade_view.h index 6154ab088d..c283a92b62 100644 --- a/gtk2_ardour/crossfade_view.h +++ b/gtk2_ardour/crossfade_view.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2003 Paul Davis + Copyright (C) 2003 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ #include #include -#include +#include "pbd/signals.h" #include "ardour/crossfade.h" #include "time_axis_view_item.h" @@ -30,54 +30,55 @@ class RouteTimeAxisView; class AudioRegionView; -struct CrossfadeView : public TimeAxisViewItem +class CrossfadeView : public TimeAxisViewItem { - CrossfadeView (ArdourCanvas::Group*, - RouteTimeAxisViewPtr, - boost::shared_ptr, - double initial_samples_per_unit, - Gdk::Color& basic_color, - AudioRegionView& leftview, - AudioRegionView& rightview); - ~CrossfadeView (); - - boost::shared_ptr crossfade; // ok, let 'em have it - - AudioRegionView& left_view; // and these too - AudioRegionView& right_view; - - void set_height (double); - - bool valid() const { return _valid; } - bool visible() const { return _visible; } - void set_valid (bool yn); - - static sigc::signal GoingAway; - - AudioRegionView& upper_regionview () const; - - void fake_hide (); - void hide (); - void show (); - - protected: - void reset_width_dependent_items (double pixel_width); - - private: - bool _valid; - bool _visible; - - double spu; - double _height; - - ArdourCanvas::Item *overlap_rect; - ArdourCanvas::Line *fade_in; - ArdourCanvas::Line *fade_out; - ArdourCanvas::Item *active_button; - - void crossfade_changed (ARDOUR::Change); - void active_changed (); - void redraw_curves (); +public: + CrossfadeView (ArdourCanvas::Group*, + RouteTimeAxisView&, + boost::shared_ptr, + double initial_samples_per_unit, + Gdk::Color& basic_color, + AudioRegionView& leftview, + AudioRegionView& rightview); + + ~CrossfadeView (); + + boost::shared_ptr crossfade; // ok, let 'em have it + + AudioRegionView& left_view; // and these too + AudioRegionView& right_view; + + void set_height (double); + + bool valid() const { return _valid; } + bool visible() const { return _visible; } + void set_valid (bool yn); + + static PBD::Signal1 CatchDeletion; + + AudioRegionView& upper_regionview () const; + + void fake_hide (); + void hide (); + void show (); + void horizontal_position_changed (); + +protected: + void reset_width_dependent_items (double pixel_width); + +private: + bool _valid; + bool _visible; + bool _all_in_view; + + ArdourCanvas::Line *fade_in; + ArdourCanvas::Line *fade_out; + ArdourCanvas::Item *active_button; + + void crossfade_changed (const PBD::PropertyChange&); + void crossfade_fades_changed (); + void active_changed (); + void redraw_curves (); void color_handler (); };