new file
[ardour.git] / gtk2_ardour / automation_region_view.cc
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: Dave Robillard
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include "pbd/memento_command.h"
21 #include "ardour/automation_control.h"
22 #include "ardour/event_type_map.h"
23 #include "ardour/session.h"
24 #include "ardour/source.h"
25
26 #include "automation_region_view.h"
27 #include "gui_thread.h"
28 #include "public_editor.h"
29
30 #include "i18n.h"
31
32 AutomationRegionView::AutomationRegionView(ArdourCanvas::Group*                      parent,
33                                            AutomationTimeAxisView&                   time_axis,
34                                            boost::shared_ptr<ARDOUR::Region>         region,
35                                            const Evoral::Parameter&                  param,
36                                            boost::shared_ptr<ARDOUR::AutomationList> list,
37                                            double                                    spu,
38                                            Gdk::Color const &                        basic_color)
39         : RegionView(parent, time_axis, region, spu, basic_color)
40         , _parameter(param)
41 {
42         if (list) {
43                 assert(list->parameter() == param);
44                 create_line(list);
45         }
46
47         group->signal_event().connect (sigc::mem_fun (this, &AutomationRegionView::canvas_event), false);
48         group->raise_to_top();
49 }
50
51 void
52 AutomationRegionView::init (Gdk::Color const & basic_color, bool /*wfd*/)
53 {
54         _enable_display = false;
55
56         RegionView::init(basic_color, false);
57
58         compute_colors (basic_color);
59
60         reset_width_dependent_items ((double) _region->length() / samples_per_unit);
61
62         set_height (trackview.current_height());
63
64         _region->StateChanged.connect (*this, ui_bind (&RegionView::region_changed, this, _1), gui_context());
65
66         set_colors ();
67
68         _enable_display = true;
69 }
70
71 void
72 AutomationRegionView::create_line (boost::shared_ptr<ARDOUR::AutomationList> list)
73 {
74         _line = boost::shared_ptr<AutomationLine>(new AutomationLine(
75                                 ARDOUR::EventTypeMap::instance().to_symbol(list->parameter()),
76                                 trackview, *get_canvas_group(), list, &_time_converter));
77         _line->set_colors();
78         _line->set_interpolation(list->interpolation());
79         _line->set_height ((uint32_t)rint(trackview.current_height() - NAME_HIGHLIGHT_SIZE));
80         _line->show();
81         _line->show_all_control_points();
82 }
83
84 bool
85 AutomationRegionView::canvas_event(GdkEvent* ev)
86 {
87         if (ev->type == GDK_BUTTON_RELEASE) {
88                 const nframes_t when = trackview.editor().pixel_to_frame((nframes_t)ev->button.x)
89                         - _region->position();
90                 add_automation_event(ev, when, ev->button.y);
91         }
92
93         return false;
94 }
95
96 void
97 AutomationRegionView::add_automation_event (GdkEvent* /*event*/, nframes_t when, double y)
98 {
99         if (!_line) {
100                 boost::shared_ptr<Evoral::Control> c = _region->control(_parameter, true);
101                 boost::shared_ptr<ARDOUR::AutomationControl> ac
102                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(c);
103                 assert(ac);
104                 create_line(ac->alist());
105         }
106         assert(_line);
107
108         double x = when;
109         AutomationTimeAxisView* const view = automation_view();
110
111         view->canvas_display()->w2i (x, y);
112
113         /* compute vertical fractional position */
114
115         const double h = trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2;
116         y = 1.0 - (y / h);
117
118         /* map using line */
119
120         _line->view_to_model_coord (x, y);
121
122         view->session()->begin_reversible_command (_("add automation event"));
123         XMLNode& before = _line->the_list()->get_state();
124
125         _line->the_list()->add (x, y);
126
127         XMLNode& after = _line->the_list()->get_state();
128         view->session()->commit_reversible_command (new MementoCommand<ARDOUR::AutomationList>(
129                         *_line->the_list(), &before, &after));
130
131         view->session()->set_dirty ();
132 }
133
134 void
135 AutomationRegionView::set_height (double h)
136 {
137         RegionView::set_height(h);
138
139         if (_line)
140                 _line->set_height ((uint32_t)rint(h - NAME_HIGHLIGHT_SIZE));
141 }
142
143 bool
144 AutomationRegionView::set_position (nframes64_t pos, void* src, double* ignored)
145 {
146         return RegionView::set_position(pos, src, ignored);
147 }
148
149
150 void
151 AutomationRegionView::reset_width_dependent_items (double pixel_width)
152 {
153         RegionView::reset_width_dependent_items(pixel_width);
154
155         if (_line)
156                 _line->reset();
157 }
158
159
160 void
161 AutomationRegionView::region_resized (PBD::Change what_changed)
162 {
163         RegionView::region_resized(what_changed);
164
165         if (_line)
166                 _line->reset();
167 }
168
169
170 void
171 AutomationRegionView::entered()
172 {
173         if (_line)
174                 _line->track_entered();
175 }
176
177
178 void
179 AutomationRegionView::exited()
180 {
181         if (_line)
182                 _line->track_exited();
183 }
184