2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2006-2011 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2006-2013 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2013 John Emmas <john@creativepost.co.uk>
|
|
|
|
* Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
#ifndef __gtk_ardour_audio_region_edit_h__
|
|
|
|
#define __gtk_ardour_audio_region_edit_h__
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
2005-11-28 23:41:15 -05:00
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/entry.h>
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/togglebutton.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/arrow.h>
|
|
|
|
#include <gtkmm/frame.h>
|
|
|
|
#include <gtkmm/table.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/separator.h>
|
|
|
|
#include <gtkmm/spinbutton.h>
|
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
|
|
|
|
#include "pbd/signals.h"
|
2011-04-04 08:21:26 -04:00
|
|
|
#include "pbd/crossthread.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "audio_clock.h"
|
|
|
|
#include "ardour_dialog.h"
|
2006-07-31 23:23:35 -04:00
|
|
|
#include "region_editor.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class AudioRegion;
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
|
|
|
class AudioRegionView;
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
class AudioRegionEditor : public RegionEditor
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2010-05-21 20:26:26 -04:00
|
|
|
AudioRegionEditor (ARDOUR::Session*, boost::shared_ptr<ARDOUR::AudioRegion>);
|
2010-10-28 16:01:26 -04:00
|
|
|
~AudioRegionEditor ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-10-28 16:01:26 -04:00
|
|
|
void peak_amplitude_thread ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
void region_changed (PBD::PropertyChange const &);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
void gain_changed ();
|
|
|
|
void gain_adjustment_changed ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AudioRegion> _audio_region;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-10-23 19:21:55 -04:00
|
|
|
Gtk::Label gain_label;
|
|
|
|
Gtk::Adjustment gain_adjustment;
|
|
|
|
Gtk::SpinButton gain_entry;
|
2010-10-28 16:01:26 -04:00
|
|
|
|
|
|
|
Gtk::Label _peak_amplitude_label;
|
|
|
|
Gtk::Entry _peak_amplitude;
|
|
|
|
|
2013-07-13 08:27:56 -04:00
|
|
|
void signal_peak_thread ();
|
2010-10-28 16:01:26 -04:00
|
|
|
pthread_t _peak_amplitude_thread_handle;
|
|
|
|
void peak_amplitude_found (double);
|
|
|
|
PBD::Signal1<void, double> PeakAmplitudeFound;
|
|
|
|
PBD::ScopedConnection _peak_amplitude_connection;
|
2011-04-04 08:21:26 -04:00
|
|
|
CrossThreadChannel _peak_channel;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
#endif /* __gtk_ardour_audio_region_edit_h__ */
|