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>
|
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
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
AudioRegionEditor::AudioRegionEditor (Session* s, boost::shared_ptr<AudioRegion> r)
|
|
|
|
: RegionEditor (s, r)
|
|
|
|
, _audio_region (r)
|
|
|
|
, gain_adjustment(accurate_coefficient_to_dB(_audio_region->scale_amplitude()), -40.0, +40.0, 0.1, 1.0, 0)
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
{
|
2010-04-23 20:29:28 -04:00
|
|
|
gain_label.set_alignment (1, 0.5);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-04-23 20:29:28 -04:00
|
|
|
Gtk::HBox* gb = Gtk::manage (new Gtk::HBox);
|
|
|
|
gb->set_spacing (6);
|
|
|
|
gb->pack_start (gain_entry);
|
|
|
|
gb->pack_start (*Gtk::manage (new Gtk::Label (_("dB"))), false, false);
|
2008-12-12 09:43:24 -05:00
|
|
|
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_label.set_name ("AudioRegionEditorLabel");
|
2010-04-23 20:29:28 -04:00
|
|
|
gain_label.set_text (_("Region gain:"));
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_entry.configure (gain_adjustment, 0.0, 1);
|
2010-04-23 20:29:28 -04:00
|
|
|
_table.attach (gain_label, 0, 1, 7, 8, Gtk::FILL, Gtk::FILL);
|
|
|
|
_table.attach (*gb, 1, 2, 7, 8, Gtk::FILL, Gtk::FILL);
|
2010-02-19 13:09:08 -05:00
|
|
|
|
2009-10-23 19:21:55 -04:00
|
|
|
gain_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
gain_adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &AudioRegionEditor::gain_adjustment_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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-05-21 20:26:26 -04:00
|
|
|
RegionEditor::region_changed (what_changed);
|
|
|
|
|
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-23 19:21:55 -04:00
|
|
|
void
|
|
|
|
AudioRegionEditor::gain_changed ()
|
|
|
|
{
|
2010-05-21 20:26:26 -04:00
|
|
|
float const region_gain_dB = accurate_coefficient_to_dB (_audio_region->scale_amplitude());
|
2009-10-23 19:21:55 -04:00
|
|
|
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());
|
2010-05-21 20:26:26 -04:00
|
|
|
if (_audio_region->scale_amplitude() != gain) {
|
|
|
|
_audio_region->set_scale_amplitude (gain);
|
2009-10-23 19:21:55 -04:00
|
|
|
}
|
|
|
|
}
|