2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/memento_command.h"
|
2010-03-02 13:05:26 -05:00
|
|
|
#include "pbd/stateful_diff_command.h"
|
2006-11-12 19:50:28 -05:00
|
|
|
|
2009-10-30 11:30:22 -04:00
|
|
|
#include "ardour/session.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/audioregion.h"
|
|
|
|
#include "ardour/playlist.h"
|
|
|
|
#include "ardour/utils.h"
|
2009-10-23 19:21:55 -04:00
|
|
|
#include "ardour/dB.h"
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/stop_signal.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <cmath>
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
#include "audio_region_editor.h"
|
|
|
|
#include "audio_region_view.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "utils.h"
|
2006-01-03 09:16:27 -05:00
|
|
|
#include "gui_thread.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace std;
|
2007-03-18 12:45:43 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
AudioRegionEditor::AudioRegionEditor (Session* s, boost::shared_ptr<AudioRegion> r, AudioRegionView& rv)
|
2006-07-31 23:23:35 -04:00
|
|
|
: RegionEditor (s),
|
2005-09-25 14:42:24 -04:00
|
|
|
_region (r),
|
|
|
|
_region_view (rv),
|
2009-10-19 21:05:33 -04:00
|
|
|
name_label (_("Name:")),
|
|
|
|
audition_button (_("Play")),
|
|
|
|
time_table (6, 2),
|
2009-11-25 21:15:44 -05:00
|
|
|
position_clock (X_("regionposition"), true, X_("AudioRegionEditorClock"), true, false),
|
|
|
|
end_clock (X_("regionend"), true, X_("AudioRegionEditorClock"), true, false),
|
|
|
|
length_clock (X_("regionlength"), true, X_("AudioRegionEditorClock"), true, false, true),
|
|
|
|
sync_offset_relative_clock (X_("regionsyncoffsetrelative"), true, X_("AudioRegionEditorClock"), true, false),
|
|
|
|
sync_offset_absolute_clock (X_("regionsyncoffsetabsolute"), true, X_("AudioRegionEditorClock"), true, false),
|
2009-10-19 21:05:33 -04:00
|
|
|
/* XXX cannot file start yet */
|
2009-11-25 21:15:44 -05:00
|
|
|
start_clock (X_("regionstart"), true, X_("AudioRegionEditorClock"), false, false),
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_adjustment(accurate_coefficient_to_dB(_region->scale_amplitude()), -40.0, +40.0, 0.1, 1.0, 0)
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
position_clock.set_session (_session);
|
|
|
|
end_clock.set_session (_session);
|
|
|
|
length_clock.set_session (_session);
|
|
|
|
sync_offset_relative_clock.set_session (_session);
|
|
|
|
sync_offset_absolute_clock.set_session (_session);
|
|
|
|
start_clock.set_session (_session);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
name_entry.set_name ("AudioRegionEditorEntry");
|
|
|
|
name_label.set_name ("AudioRegionEditorLabel");
|
|
|
|
|
|
|
|
name_hbox.set_spacing (5);
|
|
|
|
name_hbox.pack_start (name_label, false, false);
|
|
|
|
name_hbox.pack_start (name_entry, false, false);
|
|
|
|
|
2010-02-08 19:50:24 -05:00
|
|
|
ARDOUR_UI::instance()->set_tip (audition_button, _("audition this region"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
audition_button.unset_flags (Gtk::CAN_FOCUS);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-10-06 00:59:20 -04:00
|
|
|
audition_button.set_events (audition_button.get_events() & ~(Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
top_row_button_hbox.set_border_width (5);
|
|
|
|
top_row_button_hbox.set_spacing (5);
|
|
|
|
top_row_button_hbox.set_homogeneous (false);
|
|
|
|
top_row_button_hbox.pack_end (audition_button, false, false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
top_row_hbox.pack_start (name_hbox, true, true);
|
|
|
|
top_row_hbox.pack_end (top_row_button_hbox, true, true);
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
position_label.set_name ("AudioRegionEditorLabel");
|
2009-10-19 21:05:33 -04:00
|
|
|
position_label.set_text (_("Position"));
|
2005-09-25 14:42:24 -04:00
|
|
|
end_label.set_name ("AudioRegionEditorLabel");
|
2009-10-19 21:05:33 -04:00
|
|
|
end_label.set_text (_("End"));
|
2005-09-25 14:42:24 -04:00
|
|
|
length_label.set_name ("AudioRegionEditorLabel");
|
2009-10-19 21:05:33 -04:00
|
|
|
length_label.set_text (_("Length"));
|
|
|
|
sync_relative_label.set_name ("AudioRegionEditorLabel");
|
|
|
|
sync_relative_label.set_text (_("Sync point (relative to region position)"));
|
|
|
|
sync_absolute_label.set_name ("AudioRegionEditorLabel");
|
|
|
|
sync_absolute_label.set_text (_("Sync point (absolute)"));
|
2008-12-12 09:43:24 -05:00
|
|
|
start_label.set_name ("AudioRegionEditorLabel");
|
2009-10-19 21:05:33 -04:00
|
|
|
start_label.set_text (_("File start"));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
time_table.set_col_spacings (2);
|
|
|
|
time_table.set_row_spacings (5);
|
|
|
|
time_table.set_border_width (5);
|
|
|
|
|
2009-10-19 21:05:33 -04:00
|
|
|
position_label.set_alignment (1, 0.5);
|
|
|
|
time_table.attach (position_label, 0, 1, 0, 1, Gtk::FILL, Gtk::FILL);
|
2008-12-12 09:43:24 -05:00
|
|
|
time_table.attach (position_clock, 1, 2, 0, 1, Gtk::FILL, Gtk::FILL);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-10-19 21:05:33 -04:00
|
|
|
end_label.set_alignment (1, 0.5);
|
|
|
|
time_table.attach (end_label, 0, 1, 1, 2, Gtk::FILL, Gtk::FILL);
|
2005-10-06 00:59:20 -04:00
|
|
|
time_table.attach (end_clock, 1, 2, 1, 2, Gtk::FILL, Gtk::FILL);
|
2009-10-19 21:05:33 -04:00
|
|
|
|
|
|
|
length_label.set_alignment (1, 0.5);
|
|
|
|
time_table.attach (length_label, 0, 1, 2, 3, Gtk::FILL, Gtk::FILL);
|
2005-10-06 00:59:20 -04:00
|
|
|
time_table.attach (length_clock, 1, 2, 2, 3, Gtk::FILL, Gtk::FILL);
|
2009-10-19 21:05:33 -04:00
|
|
|
|
|
|
|
sync_relative_label.set_alignment (1, 0.5);
|
|
|
|
time_table.attach (sync_relative_label, 0, 1, 3, 4, Gtk::FILL, Gtk::FILL);
|
|
|
|
time_table.attach (sync_offset_relative_clock, 1, 2, 3, 4, Gtk::FILL, Gtk::FILL);
|
|
|
|
|
|
|
|
sync_absolute_label.set_alignment (1, 0.5);
|
|
|
|
time_table.attach (sync_absolute_label, 0, 1, 4, 5, Gtk::FILL, Gtk::FILL);
|
|
|
|
time_table.attach (sync_offset_absolute_clock, 1, 2, 4, 5, Gtk::FILL, Gtk::FILL);
|
|
|
|
|
|
|
|
start_label.set_alignment (1, 0.5);
|
|
|
|
time_table.attach (start_label, 0, 1, 5, 6, Gtk::FILL, Gtk::FILL);
|
|
|
|
time_table.attach (start_clock, 1, 2, 5, 6, Gtk::FILL, Gtk::FILL);
|
2008-12-12 09:43:24 -05:00
|
|
|
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_label.set_name ("AudioRegionEditorLabel");
|
|
|
|
gain_label.set_text (_("Scale amplitude:"));
|
|
|
|
gain_label.set_alignment (1, 0.5);
|
|
|
|
gain_entry.configure (gain_adjustment, 0.0, 1);
|
|
|
|
time_table.attach (gain_label, 0, 1, 6, 7, Gtk::FILL, Gtk::FILL);
|
|
|
|
time_table.attach (gain_entry, 1, 2, 6, 7, Gtk::FILL, Gtk::FILL);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
lower_hbox.pack_start (time_table, true, true);
|
|
|
|
lower_hbox.pack_start (sep1, false, false);
|
|
|
|
lower_hbox.pack_start (sep2, false, false);
|
|
|
|
|
2006-01-03 09:16:27 -05:00
|
|
|
get_vbox()->pack_start (top_row_hbox, true, true);
|
|
|
|
get_vbox()->pack_start (sep3, false, false);
|
|
|
|
get_vbox()->pack_start (lower_hbox, true, true);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
set_name ("AudioRegionEditorWindow");
|
2005-09-25 16:33:00 -04:00
|
|
|
add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), static_cast<Window *> (this)));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-10-19 13:25:37 -04:00
|
|
|
set_title (string_compose (_("Region %1"), _region->name()));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-01-03 09:16:27 -05:00
|
|
|
show_all();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
name_changed ();
|
2010-02-19 13:09:08 -05:00
|
|
|
|
|
|
|
PropertyChange change;
|
|
|
|
|
|
|
|
change.add (ARDOUR::Properties::start);
|
|
|
|
change.add (ARDOUR::Properties::length);
|
|
|
|
change.add (ARDOUR::Properties::position);
|
|
|
|
change.add (ARDOUR::Properties::sync_position);
|
|
|
|
|
|
|
|
bounds_changed (change);
|
|
|
|
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
_region->PropertyChanged.connect (state_connection, ui_bind (&AudioRegionEditor::region_changed, this, _1), gui_context());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
spin_arrow_grab = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
connect_editor_events ();
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioRegionEditor::~AudioRegionEditor ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-02-19 13:09:08 -05:00
|
|
|
AudioRegionEditor::region_changed (const PBD::PropertyChange& what_changed)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-02-19 13:09:08 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::name)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
name_changed ();
|
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
PropertyChange interesting_stuff;
|
|
|
|
|
|
|
|
interesting_stuff.add (ARDOUR::Properties::position);
|
|
|
|
interesting_stuff.add (ARDOUR::Properties::length);
|
|
|
|
interesting_stuff.add (ARDOUR::Properties::start);
|
|
|
|
interesting_stuff.add (ARDOUR::Properties::sync_position);
|
|
|
|
|
|
|
|
if (what_changed.contains (interesting_stuff)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
bounds_changed (what_changed);
|
|
|
|
}
|
2009-10-23 19:21:55 -04:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::scale_amplitude)) {
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_changed ();
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
gint
|
2009-07-21 11:55:17 -04:00
|
|
|
AudioRegionEditor::bpressed (GdkEventButton* ev, Gtk::SpinButton* /*but*/, void (AudioRegionEditor::*/*pmf*/)())
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
if (ev->type == GDK_BUTTON_PRESS) { /* no double clicks here */
|
|
|
|
if (!spin_arrow_grab) {
|
2005-11-25 19:06:46 -05:00
|
|
|
// GTK2FIX probably nuke the region editor
|
|
|
|
// if ((ev->window == but->gobj()->panel)) {
|
|
|
|
// spin_arrow_grab = true;
|
|
|
|
// (this->*pmf)();
|
2009-10-14 12:10:01 -04:00
|
|
|
// }
|
|
|
|
}
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
gint
|
2009-07-21 11:55:17 -04:00
|
|
|
AudioRegionEditor::breleased (GdkEventButton* /*ev*/, Gtk::SpinButton* /*but*/, void (AudioRegionEditor::*pmf)())
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
if (spin_arrow_grab) {
|
|
|
|
(this->*pmf)();
|
|
|
|
spin_arrow_grab = false;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::connect_editor_events ()
|
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
name_entry.signal_changed().connect (sigc::mem_fun(*this, &AudioRegionEditor::name_entry_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
position_clock.ValueChanged.connect (sigc::mem_fun(*this, &AudioRegionEditor::position_clock_changed));
|
|
|
|
end_clock.ValueChanged.connect (sigc::mem_fun(*this, &AudioRegionEditor::end_clock_changed));
|
|
|
|
length_clock.ValueChanged.connect (sigc::mem_fun(*this, &AudioRegionEditor::length_clock_changed));
|
|
|
|
sync_offset_absolute_clock.ValueChanged.connect (sigc::mem_fun (*this, &AudioRegionEditor::sync_offset_absolute_clock_changed));
|
|
|
|
sync_offset_relative_clock.ValueChanged.connect (sigc::mem_fun (*this, &AudioRegionEditor::sync_offset_relative_clock_changed));
|
|
|
|
gain_adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &AudioRegionEditor::gain_adjustment_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
audition_button.signal_toggled().connect (sigc::mem_fun(*this, &AudioRegionEditor::audition_button_toggled));
|
2009-12-21 13:23:07 -05:00
|
|
|
|
|
|
|
_session->AuditionActive.connect (audition_connection, ui_bind (&AudioRegionEditor::audition_state_changed, this, _1), gui_context());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-12-12 09:43:24 -05:00
|
|
|
AudioRegionEditor::position_clock_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->begin_reversible_command (_("change region start position"));
|
2006-11-12 19:50:28 -05:00
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
boost::shared_ptr<Playlist> pl = _region->playlist();
|
2006-11-12 19:50:28 -05:00
|
|
|
|
|
|
|
if (pl) {
|
2010-03-02 13:05:26 -05:00
|
|
|
_region->clear_history ();
|
2008-12-12 09:43:24 -05:00
|
|
|
_region->set_position (position_clock.current_time(), this);
|
2010-03-02 13:05:26 -05:00
|
|
|
_session->add_command(new StatefulDiffCommand (_region));
|
2006-11-12 19:50:28 -05:00
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->commit_reversible_command ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::end_clock_changed ()
|
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->begin_reversible_command (_("change region end position"));
|
2006-11-12 19:50:28 -05:00
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
boost::shared_ptr<Playlist> pl = _region->playlist();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-11-12 19:50:28 -05:00
|
|
|
if (pl) {
|
2010-03-02 13:05:26 -05:00
|
|
|
_region->clear_history ();
|
2006-11-12 19:50:28 -05:00
|
|
|
_region->trim_end (end_clock.current_time(), this);
|
2010-03-02 13:05:26 -05:00
|
|
|
_session->add_command(new StatefulDiffCommand (_region));
|
2006-11-12 19:50:28 -05:00
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->commit_reversible_command ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-10-19 21:05:33 -04:00
|
|
|
end_clock.set (_region->position() + _region->length() - 1, true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::length_clock_changed ()
|
|
|
|
{
|
2006-09-28 13:23:52 -04:00
|
|
|
nframes_t frames = length_clock.current_time();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->begin_reversible_command (_("change region length"));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
boost::shared_ptr<Playlist> pl = _region->playlist();
|
2006-11-12 19:50:28 -05:00
|
|
|
|
|
|
|
if (pl) {
|
2010-03-02 13:05:26 -05:00
|
|
|
_region->clear_history ();
|
2009-10-19 21:05:33 -04:00
|
|
|
_region->trim_end (_region->position() + frames - 1, this);
|
2010-03-02 13:05:26 -05:00
|
|
|
_session->add_command(new StatefulDiffCommand (_region));
|
2006-11-12 19:50:28 -05:00
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->commit_reversible_command ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
length_clock.set (_region->length());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-10-23 19:21:55 -04:00
|
|
|
void
|
|
|
|
AudioRegionEditor::gain_changed ()
|
|
|
|
{
|
|
|
|
float const region_gain_dB = accurate_coefficient_to_dB (_region->scale_amplitude());
|
|
|
|
if (region_gain_dB != gain_adjustment.get_value()) {
|
|
|
|
gain_adjustment.set_value(region_gain_dB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::gain_adjustment_changed ()
|
|
|
|
{
|
|
|
|
float const gain = dB_to_coefficient (gain_adjustment.get_value());
|
|
|
|
if (_region->scale_amplitude() != gain) {
|
|
|
|
_region->set_scale_amplitude (gain);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
|
|
|
AudioRegionEditor::audition_button_toggled ()
|
|
|
|
{
|
|
|
|
if (audition_button.get_active()) {
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->audition_region (_region);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->cancel_audition ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::name_changed ()
|
|
|
|
{
|
2006-08-24 21:07:15 -04:00
|
|
|
if (name_entry.get_text() != _region->name()) {
|
|
|
|
name_entry.set_text (_region->name());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-02-19 13:09:08 -05:00
|
|
|
AudioRegionEditor::bounds_changed (const PropertyChange& what_changed)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-02-19 13:09:08 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::position) && what_changed.contains (ARDOUR::Properties::length)) {
|
2008-12-12 09:43:24 -05:00
|
|
|
position_clock.set (_region->position(), true);
|
2009-10-19 21:05:33 -04:00
|
|
|
end_clock.set (_region->position() + _region->length() - 1, true);
|
2008-12-12 09:43:24 -05:00
|
|
|
length_clock.set (_region->length(), true);
|
2010-02-19 13:09:08 -05:00
|
|
|
} else if (what_changed.contains (ARDOUR::Properties::position)) {
|
2008-12-12 09:43:24 -05:00
|
|
|
position_clock.set (_region->position(), true);
|
2009-10-19 21:05:33 -04:00
|
|
|
end_clock.set (_region->position() + _region->length() - 1, true);
|
2010-02-19 13:09:08 -05:00
|
|
|
} else if (what_changed.contains (ARDOUR::Properties::length)) {
|
2009-10-19 21:05:33 -04:00
|
|
|
end_clock.set (_region->position() + _region->length() - 1, true);
|
2006-08-24 21:07:15 -04:00
|
|
|
length_clock.set (_region->length(), true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::sync_position) || what_changed.contains (ARDOUR::Properties::position)) {
|
2009-10-19 21:05:33 -04:00
|
|
|
int dir;
|
|
|
|
nframes_t off = _region->sync_offset (dir);
|
|
|
|
if (dir == -1) {
|
|
|
|
off = -off;
|
|
|
|
}
|
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::sync_position)) {
|
2009-10-19 21:05:33 -04:00
|
|
|
sync_offset_relative_clock.set (off, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
sync_offset_absolute_clock.set (off + _region->position (), true);
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
if (what_changed.contains (ARDOUR::Properties::start)) {
|
2008-12-12 09:43:24 -05:00
|
|
|
start_clock.set (_region->start(), true);
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::activation ()
|
|
|
|
{
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::name_entry_changed ()
|
|
|
|
{
|
2006-08-24 21:07:15 -04:00
|
|
|
if (name_entry.get_text() != _region->name()) {
|
|
|
|
_region->set_name (name_entry.get_text());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-03 09:16:27 -05:00
|
|
|
void
|
|
|
|
AudioRegionEditor::audition_state_changed (bool yn)
|
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &AudioRegionEditor::audition_state_changed, yn)
|
2006-01-03 09:16:27 -05:00
|
|
|
|
|
|
|
if (!yn) {
|
|
|
|
audition_button.set_active (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-19 21:05:33 -04:00
|
|
|
void
|
|
|
|
AudioRegionEditor::sync_offset_absolute_clock_changed ()
|
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->begin_reversible_command (_("change region sync point"));
|
2009-10-19 21:05:33 -04:00
|
|
|
|
2010-03-02 13:05:26 -05:00
|
|
|
_region->clear_history ();
|
2009-10-19 21:05:33 -04:00
|
|
|
_region->set_sync_position (sync_offset_absolute_clock.current_time());
|
2010-03-02 13:05:26 -05:00
|
|
|
_session->add_command (new StatefulDiffCommand (_region));
|
2009-10-19 21:05:33 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->commit_reversible_command ();
|
2009-10-19 21:05:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioRegionEditor::sync_offset_relative_clock_changed ()
|
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->begin_reversible_command (_("change region sync point"));
|
2009-10-19 21:05:33 -04:00
|
|
|
|
2010-03-02 13:05:26 -05:00
|
|
|
_region->clear_history ();
|
2009-10-19 21:05:33 -04:00
|
|
|
_region->set_sync_position (sync_offset_relative_clock.current_time() + _region->position ());
|
2010-03-02 13:05:26 -05:00
|
|
|
_session->add_command (new StatefulDiffCommand (_region));
|
2009-10-19 21:05:33 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->commit_reversible_command ();
|
2009-10-19 21:05:33 -04:00
|
|
|
}
|
2009-12-01 08:25:07 -05:00
|
|
|
|
|
|
|
bool
|
|
|
|
AudioRegionEditor::on_delete_event (GdkEventAny* ev)
|
|
|
|
{
|
2010-02-19 13:09:08 -05:00
|
|
|
PropertyChange change;
|
|
|
|
|
|
|
|
change.add (ARDOUR::Properties::start);
|
|
|
|
change.add (ARDOUR::Properties::length);
|
|
|
|
change.add (ARDOUR::Properties::position);
|
|
|
|
change.add (ARDOUR::Properties::sync_position);
|
|
|
|
|
|
|
|
bounds_changed (change);
|
|
|
|
|
2009-12-01 08:25:07 -05:00
|
|
|
return RegionEditor::on_delete_event (ev);
|
|
|
|
}
|