2 Copyright (C) 2001-2007 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.
25 #include <gtkmm2ext/gtk_ui.h>
27 #include "ardour/midi_playlist.h"
28 #include "ardour/midi_region.h"
29 #include "ardour/midi_source.h"
30 #include "ardour/midi_diskstream.h"
31 #include "ardour/midi_track.h"
32 #include "ardour/smf_source.h"
33 #include "ardour/region_factory.h"
35 #include "automation_streamview.h"
36 #include "region_view.h"
37 #include "automation_region_view.h"
38 #include "automation_time_axis.h"
39 #include "canvas-simplerect.h"
40 #include "region_selection.h"
41 #include "selection.h"
42 #include "public_editor.h"
43 #include "ardour_ui.h"
44 #include "rgb_macros.h"
45 #include "gui_thread.h"
47 #include "simplerect.h"
48 #include "simpleline.h"
51 using namespace ARDOUR
;
53 using namespace Editing
;
55 AutomationStreamView::AutomationStreamView (AutomationTimeAxisView
& tv
)
56 : StreamView (*dynamic_cast<RouteTimeAxisView
*>(tv
.get_parent()),
57 new ArdourCanvas::Group(*tv
.canvas_background()),
58 new ArdourCanvas::Group(*tv
.canvas_display()))
59 , _controller(tv
.controller())
60 , _automation_view(tv
)
62 //canvas_rect->property_fill_color_rgba() = stream_base_color;
63 canvas_rect
->property_outline_color_rgba() = RGBA_BLACK
;
66 AutomationStreamView::~AutomationStreamView ()
72 AutomationStreamView::add_region_view_internal (boost::shared_ptr
<Region
> region
, bool wfd
, bool /*recording*/)
75 cerr
<< "No region" << endl
;
80 boost::shared_ptr
<MidiRegion
> mr
= boost::dynamic_pointer_cast
<MidiRegion
>(region
);
82 mr
->midi_source()->load_model();
85 const boost::shared_ptr
<AutomationControl
> control
86 = boost::dynamic_pointer_cast
<AutomationControl
>(
87 region
->control(_controller
->controllable()->parameter()));
89 boost::shared_ptr
<AutomationList
> list
;
91 list
= boost::dynamic_pointer_cast
<AutomationList
>(control
->list());
92 assert(!control
->list() || list
);
95 AutomationRegionView
*region_view
;
96 std::list
<RegionView
*>::iterator i
;
98 for (i
= region_views
.begin(); i
!= region_views
.end(); ++i
) {
99 if ((*i
)->region() == region
) {
101 /* great. we already have an AutomationRegionView for this Region. use it again. */
102 AutomationRegionView
* arv
= dynamic_cast<AutomationRegionView
*>(*i
);;
105 arv
->line()->set_list (list
);
106 (*i
)->set_valid (true);
107 (*i
)->enable_display(wfd
);
114 region_view
= new AutomationRegionView (_canvas_group
, _automation_view
, region
,
115 _controller
->controllable()->parameter(), list
,
116 _samples_per_unit
, region_color
);
118 region_view
->init (region_color
, false);
119 region_views
.push_front (region_view
);
121 /* follow global waveform setting */
124 region_view
->enable_display(true);
125 //region_view->midi_region()->midi_source(0)->load_model();
128 display_region(region_view
);
130 /* catch regionview going away */
131 region
->DropReferences
.connect (*this, invalidator (*this), boost::bind (&AutomationStreamView::remove_region_view
, this, boost::weak_ptr
<Region
>(region
)), gui_context());
133 RegionViewAdded (region_view
);
139 AutomationStreamView::display_region(AutomationRegionView
* region_view
)
141 region_view
->line().reset();
145 AutomationStreamView::set_automation_state (AutoState state
)
147 std::list
<RegionView
*>::iterator i
;
148 for (i
= region_views
.begin(); i
!= region_views
.end(); ++i
) {
149 boost::shared_ptr
<AutomationLine
> line
= ((AutomationRegionView
*)(*i
))->line();
150 if (line
&& line
->the_list()) {
151 line
->the_list()->set_automation_state (state
);
157 AutomationStreamView::redisplay_track ()
159 list
<RegionView
*>::iterator i
, tmp
;
161 // Flag region views as invalid and disable drawing
162 for (i
= region_views
.begin(); i
!= region_views
.end(); ++i
) {
163 (*i
)->set_valid (false);
164 (*i
)->enable_display(false);
167 // Add and display region views, and flag them as valid
168 if (_trackview
.is_track()) {
169 _trackview
.track()->playlist()->foreach_region (
170 sigc::hide_return (sigc::mem_fun (*this, &StreamView::add_region_view
))
174 // Stack regions by layer, and remove invalid regions
180 AutomationStreamView::setup_rec_box ()
185 AutomationStreamView::color_handler ()
187 /*if (_trackview.is_midi_track()) {
188 canvas_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiTrackBase.get();
191 if (!_trackview.is_midi_track()) {
192 canvas_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_MidiBusBase.get();;
197 AutomationStreamView::automation_state () const
199 /* XXX: bit of a hack: just return the state of our first RegionView */
201 if (region_views
.empty()) {
205 boost::shared_ptr
<AutomationLine
> line
= ((AutomationRegionView
*) region_views
.front())->line ();
206 if (!line
|| !line
->the_list()) {
210 return line
->the_list()->automation_state ();
214 AutomationStreamView::has_automation () const
216 list
<RegionView
*>::const_iterator i
= region_views
.begin ();
217 while (i
!= region_views
.end()) {
218 AutomationRegionView
* rv
= static_cast<AutomationRegionView
*> (*i
);
219 if (rv
->line() && rv
->line()->npoints() > 0) {
229 AutomationStreamView::set_interpolation (AutomationList::InterpolationStyle s
)
231 for (list
<RegionView
*>::iterator i
= region_views
.begin(); i
!= region_views
.end(); ++i
) {
232 AutomationRegionView
* arv
= dynamic_cast<AutomationRegionView
*> (*i
);
235 arv
->line()->set_interpolation (s
);