2 Copyright (C) 2003 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __gtk_ardour_crossfade_view_h__
21 #define __gtk_ardour_crossfade_view_h__
24 #include <libgnomecanvasmm.h>
25 #include "pbd/signals.h"
26 #include "ardour/crossfade.h"
28 #include "time_axis_view_item.h"
30 class RouteTimeAxisView
;
31 class AudioRegionView
;
33 struct CrossfadeView
: public TimeAxisViewItem
35 CrossfadeView (ArdourCanvas::Group
*,
37 boost::shared_ptr
<ARDOUR::Crossfade
>,
38 double initial_samples_per_unit
,
39 Gdk::Color
& basic_color
,
40 AudioRegionView
& leftview
,
41 AudioRegionView
& rightview
);
44 boost::shared_ptr
<ARDOUR::Crossfade
> crossfade
; // ok, let 'em have it
46 AudioRegionView
& left_view
; // and these too
47 AudioRegionView
& right_view
;
49 void set_height (double);
51 bool valid() const { return _valid
; }
52 bool visible() const { return _visible
; }
53 void set_valid (bool yn
);
55 static PBD::Signal1
<void,CrossfadeView
*> CatchDeletion
;
57 AudioRegionView
& upper_regionview () const;
64 void reset_width_dependent_items (double pixel_width
);
70 ArdourCanvas::Line
*fade_in
;
71 ArdourCanvas::Line
*fade_out
;
72 ArdourCanvas::Item
*active_button
;
74 void crossfade_changed (const PBD::PropertyChange
&);
75 void active_changed ();
76 void redraw_curves ();
77 void color_handler ();
80 #endif /* __gtk_ardour_crossfade_view_h__ */