Add editor selection state to session history via a SelectionMemento, which
[ardour.git] / gtk2_ardour / automation_region_view.cc
1 /*
2     Copyright (C) 2007 Paul Davis
3     Author: David 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 <utility>
21
22 #include "pbd/memento_command.h"
23
24 #include "ardour/automation_control.h"
25 #include "ardour/event_type_map.h"
26 #include "ardour/midi_automation_list_binder.h"
27 #include "ardour/midi_region.h"
28 #include "ardour/session.h"
29
30 #include "gtkmm2ext/keyboard.h"
31
32 #include "automation_region_view.h"
33 #include "editing.h"
34 #include "editor.h"
35 #include "editor_drag.h"
36 #include "gui_thread.h"
37 #include "midi_automation_line.h"
38 #include "public_editor.h"
39
40 #include "i18n.h"
41
42 AutomationRegionView::AutomationRegionView (ArdourCanvas::Container*                  parent,
43                                             AutomationTimeAxisView&                   time_axis,
44                                             boost::shared_ptr<ARDOUR::Region>         region,
45                                             const Evoral::Parameter&                  param,
46                                             boost::shared_ptr<ARDOUR::AutomationList> list,
47                                             double                                    spu,
48                                             uint32_t                                  basic_color)
49         : RegionView(parent, time_axis, region, spu, basic_color, true)
50         , _region_relative_time_converter(region->session().tempo_map(), region->position())
51         , _source_relative_time_converter(region->session().tempo_map(), region->position() - region->start())
52         , _parameter(param)
53 {
54         if (list) {
55                 assert(list->parameter() == param);
56                 create_line(list);
57         }
58
59         group->raise_to_top();
60 }
61
62 AutomationRegionView::~AutomationRegionView ()
63 {
64         RegionViewGoingAway (this); /* EMIT_SIGNAL */
65 }
66
67 void
68 AutomationRegionView::init (bool /*wfd*/)
69 {
70         _enable_display = false;
71
72         RegionView::init (false);
73
74         reset_width_dependent_items ((double) _region->length() / samples_per_pixel);
75
76         set_height (trackview.current_height());
77
78         _fill_color_name = "midi frame base";
79         set_colors ();
80
81         _enable_display = true;
82 }
83
84 void
85 AutomationRegionView::create_line (boost::shared_ptr<ARDOUR::AutomationList> list)
86 {
87         _line = boost::shared_ptr<AutomationLine> (new MidiAutomationLine(
88                                 ARDOUR::EventTypeMap::instance().to_symbol(list->parameter()),
89                                 trackview, *get_canvas_group(), list,
90                                 boost::dynamic_pointer_cast<ARDOUR::MidiRegion> (_region),
91                                 _parameter,
92                                 &_source_relative_time_converter));
93         _line->set_colors();
94         _line->set_height ((uint32_t)rint(trackview.current_height() - NAME_HIGHLIGHT_SIZE));
95         _line->set_visibility (AutomationLine::VisibleAspects (AutomationLine::Line|AutomationLine::ControlPoints));
96         _line->set_maximum_time (_region->length());
97         _line->set_offset (_region->start ());
98 }
99
100 bool
101 AutomationRegionView::canvas_group_event (GdkEvent* ev)
102 {
103         if (in_destructor) {
104                 return false;
105         }
106
107         PublicEditor& e = trackview.editor ();
108
109         if (!trackview.editor().internal_editing() &&
110             e.current_mouse_mode() != Editing::MouseDraw) {
111                 // not in internal edit mode, so just act like a normal region
112                 return RegionView::canvas_group_event (ev);
113         }
114
115         if (ev->type == GDK_BUTTON_PRESS && e.current_mouse_mode() == Editing::MouseObject) {
116
117                 /* XXX: icky dcast to Editor */
118                 e.drags()->set (new EditorRubberbandSelectDrag (dynamic_cast<Editor*> (&e), group), ev);
119                 e.drags()->start_grab (ev);
120                 return true;
121
122         } else if (ev->type == GDK_MOTION_NOTIFY && e.drags()->active()) {
123                 /* we probably shouldn't have to handle this here, but... */
124                 e.drags()->motion_handler(ev, false);
125                 return true;
126
127         } else if (ev->type == GDK_BUTTON_RELEASE && e.current_mouse_mode() == Editing::MouseDraw) {
128                 if (e.drags()->end_grab (ev)) {
129                         return true;
130                 } else if (e.current_mouse_mode() != Editing::MouseDraw &&
131                            e.current_mouse_mode() != Editing::MouseObject) {
132                         return RegionView::canvas_group_event (ev);
133                 }
134
135                 double x = ev->button.x;
136                 double y = ev->button.y;
137
138                 /* convert to item coordinates in the time axis view */
139                 automation_view()->canvas_display()->canvas_to_item (x, y);
140
141                 /* clamp y */
142                 y = std::max (y, 0.0);
143                 y = std::min (y, _height - NAME_HIGHLIGHT_SIZE);
144
145                 /* guard points only if primary modifier is used */
146                 bool with_guard_points = Gtkmm2ext::Keyboard::modifier_state_equals (ev->button.state, Gtkmm2ext::Keyboard::PrimaryModifier);
147                 add_automation_event (ev, e.pixel_to_sample (x) - _region->position() + _region->start(), y, with_guard_points);
148                 return true;
149         }
150
151         return RegionView::canvas_group_event (ev);
152 }
153
154 /** @param when Position in frames, where 0 is the start of the region.
155  *  @param y y position, relative to our TimeAxisView.
156  */
157 void
158 AutomationRegionView::add_automation_event (GdkEvent *, framepos_t when, double y, bool with_guard_points)
159 {
160         if (!_line) {
161                 boost::shared_ptr<Evoral::Control> c = _region->control(_parameter, true);
162                 boost::shared_ptr<ARDOUR::AutomationControl> ac
163                                 = boost::dynamic_pointer_cast<ARDOUR::AutomationControl>(c);
164                 assert(ac);
165                 create_line(ac->alist());
166         }
167         assert(_line);
168
169         AutomationTimeAxisView* const view = automation_view ();
170
171         /* compute vertical fractional position */
172
173         const double h = trackview.current_height() - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2;
174         y = 1.0 - (y / h);
175
176         /* snap frame */
177
178         when = snap_frame_to_frame (when - _region->start ()) + _region->start ();
179
180         /* map using line */
181
182         double when_d = when;
183         _line->view_to_model_coord (when_d, y);
184
185         view->editor().begin_reversible_command (_("add automation event"));
186         XMLNode& before = _line->the_list()->get_state();
187
188         _line->the_list()->add (when_d, y, with_guard_points, false);
189
190         XMLNode& after = _line->the_list()->get_state();
191
192         view->session()->add_command (new MementoCommand<ARDOUR::AutomationList> (_line->memento_command_binder(), &before, &after));
193         view->editor().commit_reversible_command ();
194
195         view->session()->set_dirty ();
196 }
197
198 bool
199 AutomationRegionView::paste (framepos_t                                      pos,
200                              unsigned                                        paste_count,
201                              float                                           times,
202                              boost::shared_ptr<const ARDOUR::AutomationList> slist)
203 {
204         AutomationTimeAxisView* const             view    = automation_view();
205         boost::shared_ptr<ARDOUR::AutomationList> my_list = _line->the_list();
206
207         if (view->session()->transport_rolling() && my_list->automation_write()) {
208                 /* do not paste if this control is in write mode and we're rolling */
209                 return false;
210         }
211
212         /* add multi-paste offset if applicable */
213         pos += view->editor().get_paste_offset(
214                 pos, paste_count, _source_relative_time_converter.to(slist->length()));
215
216         const double model_pos = _source_relative_time_converter.from(
217                 pos - _source_relative_time_converter.origin_b());
218
219         XMLNode& before = my_list->get_state();
220         my_list->paste(*slist, model_pos, times);
221         view->session()->add_command(
222                 new MementoCommand<ARDOUR::AutomationList>(_line->memento_command_binder(), &before, &my_list->get_state()));
223
224         return true;
225 }
226
227 void
228 AutomationRegionView::set_height (double h)
229 {
230         RegionView::set_height(h);
231
232         if (_line) {
233                 _line->set_height ((uint32_t)rint(h - NAME_HIGHLIGHT_SIZE));
234         }
235 }
236
237 bool
238 AutomationRegionView::set_position (framepos_t pos, void* src, double* ignored)
239 {
240         if (_line) {
241                 _line->set_maximum_time (_region->length ());
242         }
243
244         return RegionView::set_position(pos, src, ignored);
245 }
246
247
248 void
249 AutomationRegionView::reset_width_dependent_items (double pixel_width)
250 {
251         RegionView::reset_width_dependent_items(pixel_width);
252
253         if (_line) {
254                 _line->reset();
255         }
256 }
257
258
259 void
260 AutomationRegionView::region_resized (const PBD::PropertyChange& what_changed)
261 {
262         RegionView::region_resized (what_changed);
263
264         if (what_changed.contains (ARDOUR::Properties::position)) {
265                 _region_relative_time_converter.set_origin_b(_region->position());
266         }
267
268         if (what_changed.contains (ARDOUR::Properties::start) ||
269             what_changed.contains (ARDOUR::Properties::position)) {
270                 _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
271         }
272
273         if (!_line) {
274                 return;
275         }
276
277         if (what_changed.contains (ARDOUR::Properties::start)) {
278                 _line->set_offset (_region->start ());
279         }
280
281         if (what_changed.contains (ARDOUR::Properties::length)) {
282                 _line->set_maximum_time (_region->length());
283         }
284 }
285
286
287 void
288 AutomationRegionView::entered (bool)
289 {
290         if (_line) {
291                 _line->track_entered();
292         }
293 }
294
295
296 void
297 AutomationRegionView::exited ()
298 {
299         if (_line) {
300                 _line->track_exited();
301         }
302 }