X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fcrossfade_view.h;h=af33cb7296dd76222da9cca6767efee1984449d2;hb=25eb9f406960aa8e36ccd90e2cd4397f372bd0fa;hp=ef137bef78058df475ac1080ec2de846ed09ea33;hpb=bac3c6bc0f36623e200fe30fc8cc4137ab96fba7;p=ardour.git diff --git a/gtk2_ardour/crossfade_view.h b/gtk2_ardour/crossfade_view.h index ef137bef78..af33cb7296 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 @@ -15,70 +15,69 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __gtk_ardour_crossfade_view_h__ #define __gtk_ardour_crossfade_view_h__ #include -#include -#include -#include -#include +#include +#include "pbd/signals.h" +#include "ardour/crossfade.h" #include "time_axis_view_item.h" -class AudioTimeAxisView; +class RouteTimeAxisView; class AudioRegionView; -struct CrossfadeView : public TimeAxisViewItem +class CrossfadeView : public TimeAxisViewItem { - CrossfadeView (Gnome::Canvas::Group*, - AudioTimeAxisView&, - ARDOUR::Crossfade&, - double initial_samples_per_unit, - Gdk::Color& basic_color, - AudioRegionView& leftview, - AudioRegionView& rightview); - ~CrossfadeView (); - - ARDOUR::Crossfade& crossfade; // ok, let 'em have it - AudioRegionView& left_view; // and these too - AudioRegionView& right_view; - - std::string get_item_name(); - 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; - - Gnome::Canvas::Item *overlap_rect; - Gnome::Canvas::Line *fade_in; - Gnome::Canvas::Line *fade_out; - Gnome::Canvas::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_heights (double, double); + + bool valid() const { return _valid; } + bool visible() const { return _visible; } + void set_valid (bool yn); + + static PBD::Signal1 CatchDeletion; + + 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; + double _child_height; + + ArdourCanvas::Line *fade_in; + ArdourCanvas::Line *fade_out; + + void crossfade_changed (const PBD::PropertyChange&); + void crossfade_fades_changed (); + void active_changed (); + void redraw_curves (); + void color_handler (); }; #endif /* __gtk_ardour_crossfade_view_h__ */