merge fix
[ardour.git] / gtk2_ardour / region_editor.cc
1 /*
2     Copyright (C) 2001 Paul Davis
3
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.
8
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.
13
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.
17
18 */
19
20 #include <cmath>
21
22 #include <gtkmm/listviewtext.h>
23
24 #include "pbd/memento_command.h"
25 #include "pbd/stateful_diff_command.h"
26
27 #include "ardour/region.h"
28 #include "ardour/session.h"
29 #include "ardour/source.h"
30
31 #include "ardour_ui.h"
32 #include "clock_group.h"
33 #include "main_clock.h"
34 #include "gui_thread.h"
35 #include "region_editor.h"
36 #include "public_editor.h"
37
38 #include "i18n.h"
39
40 using namespace ARDOUR;
41 using namespace PBD;
42 using namespace std;
43 using namespace Gtkmm2ext;
44
45 RegionEditor::RegionEditor (Session* s, boost::shared_ptr<Region> r)
46         : ArdourDialog (_("Region"))
47         , _table (9, 2)
48         , _table_row (0)
49         , _region (r)
50         , name_label (_("Name:"))
51         , audition_button (_("Audition"))
52         , _clock_group (new ClockGroup)
53         , position_clock (X_("regionposition"), true, "", true, false)
54         , end_clock (X_("regionend"), true, "", true, false)
55         , length_clock (X_("regionlength"), true, "", true, false, true)
56         , sync_offset_relative_clock (X_("regionsyncoffsetrelative"), true, "", true, false)
57         , sync_offset_absolute_clock (X_("regionsyncoffsetabsolute"), true, "", true, false)
58           /* XXX cannot file start yet */
59         , start_clock (X_("regionstart"), true, "", false, false)
60         , _sources (1)
61 {
62         set_session (s);
63
64         _clock_group->set_clock_mode (ARDOUR_UI::instance()->secondary_clock->mode());
65         _clock_group->add (position_clock);
66         _clock_group->add (end_clock);
67         _clock_group->add (length_clock);
68         _clock_group->add (sync_offset_relative_clock);
69         _clock_group->add (sync_offset_absolute_clock);
70         _clock_group->add (start_clock);
71
72         position_clock.set_session (_session);
73         end_clock.set_session (_session);
74         length_clock.set_session (_session);
75         sync_offset_relative_clock.set_session (_session);
76         sync_offset_absolute_clock.set_session (_session);
77         start_clock.set_session (_session);
78
79         ARDOUR_UI::instance()->set_tip (audition_button, _("audition this region"));
80
81         audition_button.unset_flags (Gtk::CAN_FOCUS);
82
83         audition_button.set_events (audition_button.get_events() & ~(Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK));
84
85         name_entry.set_name ("RegionEditorEntry");
86         name_label.set_name ("RegionEditorLabel");
87         position_label.set_name ("RegionEditorLabel");
88         position_label.set_text (_("Position:"));
89         end_label.set_name ("RegionEditorLabel");
90         end_label.set_text (_("End:"));
91         length_label.set_name ("RegionEditorLabel");
92         length_label.set_text (_("Length:"));
93         sync_relative_label.set_name ("RegionEditorLabel");
94         sync_relative_label.set_text (_("Sync point (relative to region):"));
95         sync_absolute_label.set_name ("RegionEditorLabel");
96         sync_absolute_label.set_text (_("Sync point (absolute):"));
97         start_label.set_name ("RegionEditorLabel");
98         start_label.set_text (_("File start:"));
99         _sources_label.set_name ("RegionEditorLabel");
100
101         if (_region->n_channels() > 1) {
102                 _sources_label.set_text (_("Sources:"));
103         } else {
104                 _sources_label.set_text (_("Source:"));
105         }
106
107         _table.set_col_spacings (12);
108         _table.set_row_spacings (6);
109         _table.set_border_width (12);
110
111         name_label.set_alignment (1, 0.5);
112         position_label.set_alignment (1, 0.5);
113         end_label.set_alignment (1, 0.5);
114         length_label.set_alignment (1, 0.5);
115         sync_relative_label.set_alignment (1, 0.5);
116         sync_absolute_label.set_alignment (1, 0.5);
117         start_label.set_alignment (1, 0.5);
118         _sources_label.set_alignment (1, 0.5);
119
120         Gtk::HBox* nb = Gtk::manage (new Gtk::HBox);
121         nb->set_spacing (6);
122         nb->pack_start (name_entry);
123         nb->pack_start (audition_button, false, false);
124
125         _table.attach (name_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
126         _table.attach (*nb, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
127         ++_table_row;
128
129         _table.attach (position_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
130         _table.attach (position_clock, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
131         ++_table_row;
132
133         _table.attach (end_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
134         _table.attach (end_clock, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
135         ++_table_row;
136
137         _table.attach (length_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
138         _table.attach (length_clock, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
139         ++_table_row;
140
141         _table.attach (sync_relative_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
142         _table.attach (sync_offset_relative_clock, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
143         ++_table_row;
144
145         _table.attach (sync_absolute_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
146         _table.attach (sync_offset_absolute_clock, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
147         ++_table_row;
148
149         _table.attach (start_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
150         _table.attach (start_clock, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
151         ++_table_row;
152
153         _table.attach (_sources_label, 0, 1, _table_row, _table_row + 1, Gtk::FILL, Gtk::FILL);
154         _table.attach (_sources, 1, 2, _table_row, _table_row + 1, Gtk::FILL | Gtk::EXPAND, Gtk::FILL);
155         ++_table_row;
156
157         get_vbox()->pack_start (_table, true, true);
158
159         add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_ACCEPT);
160
161         set_name ("RegionEditorWindow");
162         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
163
164         signal_response().connect (sigc::mem_fun (*this, &RegionEditor::handle_response));
165
166         set_title (string_compose (_("Region '%1'"), _region->name()));
167
168         for (uint32_t i = 0; i < _region->n_channels(); ++i) {
169                 _sources.append_text (_region->source(i)->name());
170         }
171
172         _sources.set_headers_visible (false);
173         Gtk::CellRendererText* t = dynamic_cast<Gtk::CellRendererText*> (_sources.get_column_cell_renderer(0));
174         assert (t);
175         t->property_ellipsize() = Pango::ELLIPSIZE_END;
176
177         show_all();
178
179         name_changed ();
180
181         PropertyChange change;
182
183         change.add (ARDOUR::Properties::start);
184         change.add (ARDOUR::Properties::length);
185         change.add (ARDOUR::Properties::position);
186         change.add (ARDOUR::Properties::sync_position);
187
188         bounds_changed (change);
189
190         _region->PropertyChanged.connect (state_connection, invalidator (*this), boost::bind (&RegionEditor::region_changed, this, _1), gui_context());
191
192         spin_arrow_grab = false;
193
194         connect_editor_events ();
195 }
196
197 RegionEditor::~RegionEditor ()
198 {
199         delete _clock_group;
200 }
201
202 void
203 RegionEditor::region_changed (const PBD::PropertyChange& what_changed)
204 {
205         if (what_changed.contains (ARDOUR::Properties::name)) {
206                 name_changed ();
207         }
208
209         PropertyChange interesting_stuff;
210
211         interesting_stuff.add (ARDOUR::Properties::position);
212         interesting_stuff.add (ARDOUR::Properties::length);
213         interesting_stuff.add (ARDOUR::Properties::start);
214         interesting_stuff.add (ARDOUR::Properties::sync_position);
215
216         if (what_changed.contains (interesting_stuff)) {
217                 bounds_changed (what_changed);
218         }
219 }
220
221 gint
222 RegionEditor::bpressed (GdkEventButton* ev, Gtk::SpinButton* /*but*/, void (RegionEditor::*/*pmf*/)())
223 {
224         switch (ev->button) {
225         case 1:
226         case 2:
227         case 3:
228                 if (ev->type == GDK_BUTTON_PRESS) { /* no double clicks here */
229                         if (!spin_arrow_grab) {
230                                 // GTK2FIX probably nuke the region editor
231                                 // if ((ev->window == but->gobj()->panel)) {
232                                 // spin_arrow_grab = true;
233                                 // (this->*pmf)();
234                                 // }
235                         }
236                 }
237                 break;
238         default:
239                 break;
240         }
241         return FALSE;
242 }
243
244 gint
245 RegionEditor::breleased (GdkEventButton* /*ev*/, Gtk::SpinButton* /*but*/, void (RegionEditor::*pmf)())
246 {
247         if (spin_arrow_grab) {
248                 (this->*pmf)();
249                 spin_arrow_grab = false;
250         }
251         return FALSE;
252 }
253
254 void
255 RegionEditor::connect_editor_events ()
256 {
257         name_entry.signal_changed().connect (sigc::mem_fun(*this, &RegionEditor::name_entry_changed));
258
259         position_clock.ValueChanged.connect (sigc::mem_fun(*this, &RegionEditor::position_clock_changed));
260         end_clock.ValueChanged.connect (sigc::mem_fun(*this, &RegionEditor::end_clock_changed));
261         length_clock.ValueChanged.connect (sigc::mem_fun(*this, &RegionEditor::length_clock_changed));
262         sync_offset_absolute_clock.ValueChanged.connect (sigc::mem_fun (*this, &RegionEditor::sync_offset_absolute_clock_changed));
263         sync_offset_relative_clock.ValueChanged.connect (sigc::mem_fun (*this, &RegionEditor::sync_offset_relative_clock_changed));
264
265         audition_button.signal_toggled().connect (sigc::mem_fun(*this, &RegionEditor::audition_button_toggled));
266
267         _session->AuditionActive.connect (audition_connection, invalidator (*this), boost::bind (&RegionEditor::audition_state_changed, this, _1), gui_context());
268 }
269
270 void
271 RegionEditor::position_clock_changed ()
272 {
273         bool in_command = false;
274         boost::shared_ptr<Playlist> pl = _region->playlist();
275
276         if (pl) {
277                 PublicEditor::instance().begin_reversible_command (_("change region start position"));
278                 in_command = true;
279
280                 _region->clear_changes ();
281                 _region->set_position (position_clock.current_time());
282                 _session->add_command(new StatefulDiffCommand (_region));
283         }
284
285         if (in_command) {
286                 PublicEditor::instance().commit_reversible_command ();
287         }
288 }
289
290 void
291 RegionEditor::end_clock_changed ()
292 {
293         bool in_command = false;
294         boost::shared_ptr<Playlist> pl = _region->playlist();
295
296         if (pl) {
297                 PublicEditor::instance().begin_reversible_command (_("change region end position"));
298                 in_command = true;
299
300                 _region->clear_changes ();
301                 _region->trim_end (end_clock.current_time());
302                 _session->add_command(new StatefulDiffCommand (_region));
303         }
304
305         if (in_command) {
306                 PublicEditor::instance().commit_reversible_command ();
307         }
308
309         end_clock.set (_region->position() + _region->length() - 1, true);
310 }
311
312 void
313 RegionEditor::length_clock_changed ()
314 {
315         framecnt_t frames = length_clock.current_time();
316         bool in_command = false;
317         boost::shared_ptr<Playlist> pl = _region->playlist();
318
319         if (pl) {
320                 PublicEditor::instance().begin_reversible_command (_("change region length"));
321                 in_command = true;
322
323                 _region->clear_changes ();
324                 _region->trim_end (_region->position() + frames - 1);
325                 _session->add_command(new StatefulDiffCommand (_region));
326         }
327
328         if (in_command) {
329                 PublicEditor::instance().commit_reversible_command ();
330         }
331
332         length_clock.set (_region->length());
333 }
334
335 void
336 RegionEditor::audition_button_toggled ()
337 {
338         if (audition_button.get_active()) {
339                 _session->audition_region (_region);
340         } else {
341                 _session->cancel_audition ();
342         }
343 }
344
345 void
346 RegionEditor::name_changed ()
347 {
348         if (name_entry.get_text() != _region->name()) {
349                 name_entry.set_text (_region->name());
350         }
351 }
352
353 void
354 RegionEditor::bounds_changed (const PropertyChange& what_changed)
355 {
356         if (what_changed.contains (ARDOUR::Properties::position) && what_changed.contains (ARDOUR::Properties::length)) {
357                 position_clock.set (_region->position(), true);
358                 end_clock.set (_region->position() + _region->length() - 1, true);
359                 length_clock.set (_region->length(), true);
360         } else if (what_changed.contains (ARDOUR::Properties::position)) {
361                 position_clock.set (_region->position(), true);
362                 end_clock.set (_region->position() + _region->length() - 1, true);
363         } else if (what_changed.contains (ARDOUR::Properties::length)) {
364                 end_clock.set (_region->position() + _region->length() - 1, true);
365                 length_clock.set (_region->length(), true);
366         }
367
368         if (what_changed.contains (ARDOUR::Properties::sync_position) || what_changed.contains (ARDOUR::Properties::position)) {
369                 int dir;
370                 frameoffset_t off = _region->sync_offset (dir);
371                 if (dir == -1) {
372                         off = -off;
373                 }
374
375                 if (what_changed.contains (ARDOUR::Properties::sync_position)) {
376                         sync_offset_relative_clock.set (off, true);
377                 }
378
379                 sync_offset_absolute_clock.set (off + _region->position (), true);
380         }
381
382         if (what_changed.contains (ARDOUR::Properties::start)) {
383                 start_clock.set (_region->start(), true);
384         }
385 }
386
387 void
388 RegionEditor::activation ()
389 {
390
391 }
392
393 void
394 RegionEditor::name_entry_changed ()
395 {
396         if (name_entry.get_text() != _region->name()) {
397                 _region->set_name (name_entry.get_text());
398         }
399 }
400
401 void
402 RegionEditor::audition_state_changed (bool yn)
403 {
404         ENSURE_GUI_THREAD (*this, &RegionEditor::audition_state_changed, yn)
405
406         if (!yn) {
407                 audition_button.set_active (false);
408         }
409 }
410
411 void
412 RegionEditor::sync_offset_absolute_clock_changed ()
413 {
414         PublicEditor::instance().begin_reversible_command (_("change region sync point"));
415
416         _region->clear_changes ();
417         _region->set_sync_position (sync_offset_absolute_clock.current_time());
418         _session->add_command (new StatefulDiffCommand (_region));
419
420         PublicEditor::instance().commit_reversible_command ();
421 }
422
423 void
424 RegionEditor::sync_offset_relative_clock_changed ()
425 {
426         PublicEditor::instance().begin_reversible_command (_("change region sync point"));
427
428         _region->clear_changes ();
429         _region->set_sync_position (sync_offset_relative_clock.current_time() + _region->position ());
430         _session->add_command (new StatefulDiffCommand (_region));
431
432         PublicEditor::instance().commit_reversible_command ();
433 }
434
435 bool
436 RegionEditor::on_delete_event (GdkEventAny*)
437 {
438         PropertyChange change;
439
440         change.add (ARDOUR::Properties::start);
441         change.add (ARDOUR::Properties::length);
442         change.add (ARDOUR::Properties::position);
443         change.add (ARDOUR::Properties::sync_position);
444
445         bounds_changed (change);
446
447         return true;
448 }
449
450 void
451 RegionEditor::handle_response (int)
452 {
453         hide ();
454 }