2005-09-25 18:42:24 +00:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
2009-07-21 14:39:21 +00:00
|
|
|
#include "ardour/amp.h"
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/route_group.h"
|
|
|
|
|
#include "ardour/session_route.h"
|
|
|
|
|
#include "ardour/dB.h"
|
2009-12-30 16:48:58 +00:00
|
|
|
#include "ardour/utils.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2013-06-08 11:51:17 +02:00
|
|
|
#include <pangomm.h>
|
2007-05-25 20:29:12 +00:00
|
|
|
#include <gtkmm/style.h>
|
|
|
|
|
#include <gdkmm/color.h>
|
2005-09-25 21:19:23 +00:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
|
#include <gtkmm2ext/fastmeter.h>
|
|
|
|
|
#include <gtkmm2ext/barcontroller.h>
|
2007-06-27 12:12:34 +00:00
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "pbd/fastlog.h"
|
|
|
|
|
#include "pbd/stacktrace.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
|
#include "gain_meter.h"
|
2010-12-02 15:51:42 +00:00
|
|
|
#include "global_signals.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
#include "logmeter.h"
|
|
|
|
|
#include "gui_thread.h"
|
2005-11-24 14:59:36 +00:00
|
|
|
#include "keyboard.h"
|
2007-01-28 17:44:13 +00:00
|
|
|
#include "public_editor.h"
|
2009-12-30 16:48:58 +00:00
|
|
|
#include "utils.h"
|
2013-07-05 13:58:14 +02:00
|
|
|
#include "meter_patterns.h"
|
2015-01-13 15:43:14 +02:00
|
|
|
#include "selection.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/session.h"
|
|
|
|
|
#include "ardour/route.h"
|
|
|
|
|
#include "ardour/meter.h"
|
2013-06-23 14:23:47 +02:00
|
|
|
#include "ardour/audio_track.h"
|
|
|
|
|
#include "ardour/midi_track.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
#include "i18n.h"
|
2014-07-11 10:24:52 +03:00
|
|
|
#include "dbg_msg.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2014-06-25 21:27:37 +02:00
|
|
|
using namespace ARDOUR_UI_UTILS;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 16:01:34 +00:00
|
|
|
using namespace PBD;
|
2005-09-25 21:19:23 +00:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 18:42:24 +00:00
|
|
|
using namespace Gtk;
|
2006-03-12 18:21:48 +00:00
|
|
|
using namespace std;
|
2009-12-04 22:51:32 +00:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2013-07-15 15:04:20 +02:00
|
|
|
using namespace ArdourMeter;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::GainMeter (Session* s, const std::string& layout_script_file)
|
|
|
|
|
: Gtk::VBox ()
|
|
|
|
|
, WavesUI (layout_script_file, *this)
|
|
|
|
|
, gain_slider (get_fader ("gain_slider"))
|
|
|
|
|
, gain_adjustment (get_adjustment ("gain_adjustment"))
|
2014-11-18 22:37:04 +02:00
|
|
|
, gain_display_entry (get_entry ("gain_display_entry"))
|
2014-07-11 10:24:52 +03:00
|
|
|
, gain_display_button (get_waves_button ("gain_display_button"))
|
2014-06-25 14:33:05 +03:00
|
|
|
, peak_display_button (get_waves_button ("peak_display_button"))
|
|
|
|
|
, level_meter_home (get_box ("level_meter_home"))
|
|
|
|
|
, level_meter (_session)
|
|
|
|
|
, _data_type (DataType::AUDIO)
|
2014-07-28 22:55:51 +03:00
|
|
|
, _meter_width (xml_property (*xml_tree ()->root (), "meterwidth", 5))
|
|
|
|
|
, _thin_meter_width (xml_property (*xml_tree ()->root (), "thinmeterwidth", 5))
|
2014-11-18 22:37:04 +02:00
|
|
|
, _gain_slider_double_clicked (false)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2008-12-08 16:07:28 +00:00
|
|
|
using namespace Menu_Helpers;
|
2014-06-25 14:33:05 +03:00
|
|
|
//gain_adjustment (gain_to_slider_position_with_max (1.0, Config->get_max_gain()), 0.0, 1.0, 0.01, 0.1)
|
|
|
|
|
gain_adjustment.set_value (gain_to_slider_position_with_max (1.0, Config->get_max_gain()));
|
|
|
|
|
gain_adjustment.set_lower (0.0);
|
|
|
|
|
gain_adjustment.set_upper (1.0);
|
|
|
|
|
gain_adjustment.set_step_increment (0.01);
|
|
|
|
|
gain_adjustment.set_page_increment (0.1);
|
2009-12-17 18:24:23 +00:00
|
|
|
set_session (s);
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
ignore_toggle = false;
|
|
|
|
|
meter_menu = 0;
|
2007-01-09 23:24:54 +00:00
|
|
|
next_release_selects = false;
|
2015-01-13 15:43:14 +02:00
|
|
|
affected_by_selection = false;
|
|
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter_home.pack_start(level_meter);
|
|
|
|
|
level_meter.ButtonPress.connect_same_thread (_level_meter_connection, boost::bind (&GainMeter::level_meter_button_press, this, _1));
|
2008-04-11 14:06:50 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_slider.signal_button_press_event().connect (sigc::mem_fun(*this, &GainMeter::gain_slider_button_press), false);
|
2014-11-18 22:37:04 +02:00
|
|
|
gain_slider.signal_button_release_event().connect (sigc::mem_fun(*this, &GainMeter::gain_slider_button_release), true);
|
2011-11-13 15:12:34 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_display_entry.signal_activate().connect (sigc::mem_fun (*this, &GainMeter::gain_activated));
|
2014-11-18 22:37:04 +02:00
|
|
|
gain_display_entry.signal_focus_in_event().connect (sigc::mem_fun (*this, &GainMeter::gain_focus_in), false);
|
|
|
|
|
gain_display_entry.signal_focus_out_event().connect (sigc::mem_fun (*this, &GainMeter::gain_focus_out), false);
|
|
|
|
|
gain_display_entry.signal_key_press_event ().connect (sigc::mem_fun(*this, &GainMeter::gain_key_press), false);
|
|
|
|
|
gain_display_entry.signal_button_press_event ().connect (sigc::mem_fun(*this, &GainMeter::gain_display_entry_press), false);
|
|
|
|
|
|
|
|
|
|
gain_display_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
|
gain_display_button.signal_button_press_event ().connect (sigc::mem_fun(*this, &GainMeter::gain_display_button_press), false);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
max_peak = minus_infinity();
|
2014-06-25 14:33:05 +03:00
|
|
|
peak_display_button.set_text (_("-inf"));
|
|
|
|
|
peak_display_button.unset_flags (Gtk::CAN_FOCUS);
|
2006-05-19 17:29:05 +00:00
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
gain_astyle_menu.items().push_back (MenuElem (_("Trim")));
|
|
|
|
|
gain_astyle_menu.items().push_back (MenuElem (_("Abs")));
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
gain_astate_menu.set_name ("ArdourContextMenu");
|
|
|
|
|
gain_astyle_menu.set_name ("ArdourContextMenu");
|
2006-05-21 10:11:59 +00:00
|
|
|
|
2014-11-18 22:37:04 +02:00
|
|
|
gain_adjustment.signal_value_changed ().connect (sigc::mem_fun(*this, &GainMeter::gain_adjusted));
|
|
|
|
|
peak_display_button.signal_button_release_event ().connect (sigc::mem_fun(*this, &GainMeter::peak_button_release), false);
|
2006-05-21 13:21:25 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
ResetAllPeakDisplays.connect (sigc::mem_fun(*this, &GainMeter::reset_peak_display));
|
|
|
|
|
ResetRoutePeakDisplays.connect (sigc::mem_fun(*this, &GainMeter::reset_route_peak_display));
|
|
|
|
|
ResetGroupPeakDisplays.connect (sigc::mem_fun(*this, &GainMeter::reset_group_peak_display));
|
|
|
|
|
RedrawMetrics.connect (sigc::mem_fun(*this, &GainMeter::redraw_metrics));
|
2006-05-22 11:12:26 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
UI::instance()->theme_changed.connect (sigc::mem_fun(*this, &GainMeter::on_theme_changed));
|
|
|
|
|
ColorsChanged.connect (sigc::bind(sigc::mem_fun (*this, &GainMeter::color_handler), false));
|
|
|
|
|
DPIReset.connect (sigc::bind(sigc::mem_fun (*this, &GainMeter::color_handler), true));
|
2008-12-08 16:07:28 +00:00
|
|
|
}
|
|
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::~GainMeter ()
|
2008-12-08 16:07:28 +00:00
|
|
|
{
|
|
|
|
|
delete meter_menu;
|
|
|
|
|
}
|
2006-05-24 22:43:15 +00:00
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::set_controls (boost::shared_ptr<Route> r,
|
2009-10-14 16:10:01 +00:00
|
|
|
boost::shared_ptr<PeakMeter> pm,
|
2009-07-21 14:39:21 +00:00
|
|
|
boost::shared_ptr<Amp> amp)
|
2008-12-08 16:07:28 +00:00
|
|
|
{
|
|
|
|
|
connections.clear ();
|
2009-12-17 18:24:23 +00:00
|
|
|
model_connections.drop_connections ();
|
2009-07-13 00:26:28 +00:00
|
|
|
|
2009-07-21 14:39:21 +00:00
|
|
|
if (!pm && !amp) {
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter.set_meter (0);
|
|
|
|
|
gain_slider.set_controllable (boost::shared_ptr<PBD::Controllable>());
|
2009-06-09 20:21:19 +00:00
|
|
|
_meter.reset ();
|
2009-07-21 14:39:21 +00:00
|
|
|
_amp.reset ();
|
2009-06-09 20:21:19 +00:00
|
|
|
_route.reset ();
|
2009-05-17 02:08:13 +00:00
|
|
|
return;
|
2009-10-14 16:10:01 +00:00
|
|
|
}
|
2009-05-17 02:08:13 +00:00
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
_meter = pm;
|
2009-07-21 14:39:21 +00:00
|
|
|
_amp = amp;
|
2009-06-09 20:21:19 +00:00
|
|
|
_route = r;
|
2006-05-22 11:12:26 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter.set_meter (pm.get());
|
|
|
|
|
gain_slider.set_controllable (amp->gain_control());
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2011-08-19 17:52:32 +00:00
|
|
|
if (amp) {
|
|
|
|
|
amp->ConfigurationChanged.connect (
|
2014-06-25 14:33:05 +03:00
|
|
|
model_connections, invalidator (*this), boost::bind (&GainMeter::setup_gain_adjustment, this), gui_context ()
|
2011-08-19 17:52:32 +00:00
|
|
|
);
|
2009-07-23 03:01:31 +00:00
|
|
|
}
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2011-08-19 17:52:32 +00:00
|
|
|
setup_gain_adjustment ();
|
|
|
|
|
|
2013-04-06 16:04:02 -04:00
|
|
|
if (!_route || !_route->is_auditioner()) {
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
using namespace Menu_Helpers;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
gain_astate_menu.items().clear ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2014-05-27 21:24:16 -04:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (S_("Automation|OFF"),
|
2009-12-11 23:29:48 +00:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2012-02-07 17:43:55 +00:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) ARDOUR::Off)));
|
2014-05-27 21:24:16 -04:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("READ"),
|
2009-12-11 23:29:48 +00:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2009-06-09 20:21:19 +00:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) Play)));
|
2014-05-27 21:24:16 -04:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("WRITE"),
|
2009-12-11 23:29:48 +00:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2009-06-09 20:21:19 +00:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) Write)));
|
2014-05-27 21:24:16 -04:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("TOUCH"),
|
2009-12-11 23:29:48 +00:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2009-06-09 20:21:19 +00:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) Touch)));
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-07-21 14:39:21 +00:00
|
|
|
|
|
|
|
|
boost::shared_ptr<AutomationControl> gc = amp->gain_control();
|
2006-05-21 13:21:25 +00:00
|
|
|
}
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
amp->gain_control()->Changed.connect (model_connections, invalidator (*this), boost::bind (&GainMeter::gain_changed, this), gui_context());
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-06-29 04:02:58 +00:00
|
|
|
gain_changed ();
|
2007-01-09 23:24:54 +00:00
|
|
|
show_gain ();
|
|
|
|
|
update_gain_sensitive ();
|
2014-06-25 14:33:05 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
if (_meter) {
|
|
|
|
|
_meter->ConfigurationChanged.connect (
|
|
|
|
|
model_connections, invalidator (*this), boost::bind (&GainMeter::meter_configuration_changed, this, _1), gui_context()
|
|
|
|
|
);
|
|
|
|
|
_meter->TypeChanged.connect (
|
|
|
|
|
model_connections, invalidator (*this), boost::bind (&GainMeter::meter_type_changed, this, _1), gui_context()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
meter_configuration_changed (_meter->input_streams ());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (_route) {
|
|
|
|
|
_route->active_changed.connect (model_connections, invalidator (*this), boost::bind (&GainMeter::route_active_changed, this), gui_context ());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
if we have a non-hidden route (ie. we're not the click or the auditioner),
|
|
|
|
|
pack some route-dependent stuff.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup_meters ();
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
2011-08-19 17:52:32 +00:00
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::setup_gain_adjustment ()
|
2011-08-19 17:52:32 +00:00
|
|
|
{
|
|
|
|
|
if (!_amp) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_previous_amp_output_streams == _amp->output_streams ()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ignore_toggle = true;
|
|
|
|
|
|
2013-06-08 09:08:31 +02:00
|
|
|
if (_amp->output_streams().n_midi() <= _amp->output_streams().n_audio()) {
|
2011-10-19 09:56:00 +00:00
|
|
|
_data_type = DataType::AUDIO;
|
2011-08-19 17:52:32 +00:00
|
|
|
gain_adjustment.set_lower (0.0);
|
|
|
|
|
gain_adjustment.set_upper (1.0);
|
|
|
|
|
gain_adjustment.set_step_increment (0.01);
|
|
|
|
|
gain_adjustment.set_page_increment (0.1);
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_slider.set_default_value (gain_to_slider_position (1));
|
2011-08-19 17:52:32 +00:00
|
|
|
} else {
|
2011-10-19 09:56:00 +00:00
|
|
|
_data_type = DataType::MIDI;
|
2011-08-19 17:52:32 +00:00
|
|
|
gain_adjustment.set_lower (0.0);
|
2012-11-13 19:23:16 +00:00
|
|
|
gain_adjustment.set_upper (2.0);
|
2012-11-13 17:47:39 +00:00
|
|
|
gain_adjustment.set_step_increment (1.0/128.0);
|
|
|
|
|
gain_adjustment.set_page_increment (10.0/128.0);
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_slider.set_default_value (1.0);
|
2011-08-19 17:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ignore_toggle = false;
|
|
|
|
|
|
|
|
|
|
effective_gain_display ();
|
|
|
|
|
|
|
|
|
|
_previous_amp_output_streams = _amp->output_streams ();
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void
|
|
|
|
|
GainMeter::hide_all_meters ()
|
|
|
|
|
{
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter.hide_meters();
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-08-12 00:50:47 +03:00
|
|
|
GainMeter::setup_meters ()
|
2008-09-10 15:03:30 +00:00
|
|
|
{
|
2014-07-28 22:55:51 +03:00
|
|
|
level_meter.setup_meters (_meter_width, _thin_meter_width);
|
2007-03-18 06:07:08 +00:00
|
|
|
}
|
|
|
|
|
|
2013-07-07 06:17:02 +02:00
|
|
|
void
|
|
|
|
|
GainMeter::set_type (MeterType t)
|
|
|
|
|
{
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter.set_type(t);
|
2013-07-07 06:17:02 +02:00
|
|
|
}
|
|
|
|
|
|
2007-01-09 23:24:54 +00:00
|
|
|
bool
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::gain_key_press (GdkEventKey* ev)
|
2007-01-09 23:24:54 +00:00
|
|
|
{
|
|
|
|
|
/* illegal key for gain entry */
|
2014-11-18 22:37:04 +02:00
|
|
|
switch (ev->keyval) {
|
|
|
|
|
case GDK_Escape:
|
|
|
|
|
show_gain();
|
|
|
|
|
gain_display_entry.hide();
|
|
|
|
|
gain_display_button.show();
|
|
|
|
|
return true;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return !key_is_legal_for_numeric_entry (ev->keyval);
|
2007-01-09 23:24:54 +00:00
|
|
|
}
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2014-09-23 17:46:46 +03:00
|
|
|
bool
|
2014-11-18 22:37:04 +02:00
|
|
|
GainMeter::gain_display_button_press (GdkEventButton* ev)
|
2014-09-23 17:46:46 +03:00
|
|
|
{
|
2014-11-18 22:37:04 +02:00
|
|
|
switch (ev->type) {
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
2014-11-19 08:26:35 -05:00
|
|
|
/* MOD1 == "Alt" */
|
|
|
|
|
if (Keyboard::modifier_state_contains (ev->state, GDK_MOD1_MASK)) {
|
2014-11-18 22:37:04 +02:00
|
|
|
_amp->set_gain (dB_to_coefficient(0.0), this);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case GDK_2BUTTON_PRESS:
|
|
|
|
|
start_gain_level_editing();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2014-09-23 17:46:46 +03:00
|
|
|
|
2014-11-18 22:37:04 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
GainMeter::gain_display_entry_press (GdkEventButton* ev)
|
|
|
|
|
{
|
|
|
|
|
return ev->button == 3;
|
2014-09-23 17:46:46 +03:00
|
|
|
}
|
|
|
|
|
|
2007-01-09 23:24:54 +00:00
|
|
|
bool
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::peak_button_release (GdkEventButton* ev)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
|
|
|
|
/* reset peak label */
|
|
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
if (ev->button == 1 && Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier|Keyboard::TertiaryModifier)) {
|
2005-09-25 18:42:24 +00:00
|
|
|
ResetAllPeakDisplays ();
|
2008-01-10 21:20:59 +00:00
|
|
|
} else if (ev->button == 1 && Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
2009-06-09 20:21:19 +00:00
|
|
|
if (_route) {
|
2009-06-21 19:59:56 +00:00
|
|
|
ResetGroupPeakDisplays (_route->route_group());
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
2013-07-05 17:42:47 +02:00
|
|
|
ResetRoutePeakDisplays (_route.get());
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
2007-01-09 23:24:54 +00:00
|
|
|
|
2014-10-02 16:25:59 +03:00
|
|
|
return false;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::reset_peak_display ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2009-06-09 20:21:19 +00:00
|
|
|
_meter->reset_max();
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter.clear_meters();
|
2007-01-09 23:24:54 +00:00
|
|
|
max_peak = -INFINITY;
|
2014-06-25 14:33:05 +03:00
|
|
|
peak_display_button.set_text (_("-inf"));
|
2014-07-04 18:04:39 +03:00
|
|
|
peak_display_button.set_active_state(Gtkmm2ext::Off);
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
2013-07-05 17:42:47 +02:00
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::reset_route_peak_display (Route* route)
|
2013-07-05 17:42:47 +02:00
|
|
|
{
|
|
|
|
|
if (_route && _route.get() == route) {
|
|
|
|
|
reset_peak_display ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::reset_group_peak_display (RouteGroup* group)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2009-06-21 19:59:56 +00:00
|
|
|
if (_route && group == _route->route_group()) {
|
2009-06-09 20:21:19 +00:00
|
|
|
reset_peak_display ();
|
2011-05-18 07:05:30 +00:00
|
|
|
}
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::popup_meter_menu (GdkEventButton *ev)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
|
|
if (meter_menu == 0) {
|
|
|
|
|
meter_menu = new Gtk::Menu;
|
|
|
|
|
MenuList& items = meter_menu->items();
|
|
|
|
|
|
|
|
|
|
items.push_back (MenuElem ("-inf .. +0dBFS"));
|
|
|
|
|
items.push_back (MenuElem ("-10dB .. +0dBFS"));
|
|
|
|
|
items.push_back (MenuElem ("-4 .. +0dBFS"));
|
|
|
|
|
items.push_back (SeparatorElem());
|
|
|
|
|
items.push_back (MenuElem ("-inf .. -2dBFS"));
|
|
|
|
|
items.push_back (MenuElem ("-10dB .. -2dBFS"));
|
|
|
|
|
items.push_back (MenuElem ("-4 .. -2dBFS"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
meter_menu->popup (1, ev->time);
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-09 23:24:54 +00:00
|
|
|
bool
|
2014-11-18 22:37:04 +02:00
|
|
|
GainMeter::gain_focus_in (GdkEventFocus* ev)
|
2007-01-09 23:24:54 +00:00
|
|
|
{
|
|
|
|
|
if (ev->in) {
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_display_entry.select_region (0, -1);
|
2007-01-09 23:24:54 +00:00
|
|
|
} else {
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_display_entry.select_region (0, 0);
|
2007-01-09 23:24:54 +00:00
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-18 22:37:04 +02:00
|
|
|
bool
|
|
|
|
|
GainMeter::gain_focus_out (GdkEventFocus* ev)
|
|
|
|
|
{
|
|
|
|
|
gain_activated ();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-07-11 10:24:52 +03:00
|
|
|
|
|
|
|
|
void
|
2014-11-18 22:37:04 +02:00
|
|
|
GainMeter::start_gain_level_editing ()
|
2014-07-11 10:24:52 +03:00
|
|
|
{
|
|
|
|
|
gain_display_button.hide();
|
|
|
|
|
gain_display_entry.show();
|
|
|
|
|
gain_display_entry.grab_focus();
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::gain_activated ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2007-01-09 23:24:54 +00:00
|
|
|
float f;
|
|
|
|
|
|
2012-11-13 17:47:39 +00:00
|
|
|
{
|
|
|
|
|
// Switch to user's preferred locale so that
|
|
|
|
|
// if they use different LC_NUMERIC conventions,
|
|
|
|
|
// we will honor them.
|
2007-01-09 23:24:54 +00:00
|
|
|
|
2012-11-13 17:47:39 +00:00
|
|
|
PBD::LocaleGuard lg ("");
|
2014-06-25 14:33:05 +03:00
|
|
|
if (sscanf (gain_display_entry.get_text().c_str(), "%f", &f) != 1) {
|
2012-11-13 17:47:39 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-01-09 23:24:54 +00:00
|
|
|
|
2012-11-13 17:47:39 +00:00
|
|
|
/* clamp to displayable values */
|
|
|
|
|
if (_data_type == DataType::AUDIO) {
|
2007-01-09 23:24:54 +00:00
|
|
|
f = min (f, 6.0f);
|
2015-01-13 15:43:14 +02:00
|
|
|
|
|
|
|
|
if (_route && _route->amp() == _amp) {
|
|
|
|
|
|
|
|
|
|
Selection& selection = ARDOUR_UI::instance()->the_editor().get_selection();
|
|
|
|
|
TimeAxisView* tv = ARDOUR_UI::instance()->the_editor().get_route_view_by_route_id (_route->id() );
|
|
|
|
|
|
|
|
|
|
// if route is a part of selection and affected_by_selection is set
|
|
|
|
|
if (affected_by_selection && selection.selected(tv) && selection.tracks.size() > 1 ) {
|
|
|
|
|
|
|
|
|
|
RouteList routes;
|
|
|
|
|
TrackViewList track_list = selection.tracks;
|
|
|
|
|
TrackViewList::const_iterator iter = track_list.begin ();
|
|
|
|
|
for (; iter != track_list.end(); ++iter) {
|
|
|
|
|
RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*iter);
|
|
|
|
|
|
|
|
|
|
if (rtv) {
|
|
|
|
|
rtv->route()->set_gain (dB_to_coefficient(f), this);;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
_route->set_gain (dB_to_coefficient(f), this);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
_amp->set_gain (dB_to_coefficient(f), this);
|
|
|
|
|
}
|
2012-11-13 17:47:39 +00:00
|
|
|
} else {
|
2012-11-13 19:23:16 +00:00
|
|
|
f = min (fabs (f), 2.0f);
|
2012-11-13 17:47:39 +00:00
|
|
|
_amp->set_gain (f, this);
|
|
|
|
|
}
|
2007-01-28 17:44:13 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
if (gain_display_entry.has_focus()) {
|
|
|
|
|
Gtk::Widget* w = gain_display_entry.get_toplevel();
|
2012-12-10 02:03:45 +00:00
|
|
|
if (w) {
|
|
|
|
|
Gtk::Window* win = dynamic_cast<Gtk::Window*> (w);
|
|
|
|
|
|
|
|
|
|
/* sigh. gtkmm doesn't wrap get_default_widget() */
|
|
|
|
|
|
|
|
|
|
if (win) {
|
|
|
|
|
GtkWidget* f = gtk_window_get_default_widget (win->gobj());
|
|
|
|
|
if (f) {
|
|
|
|
|
gtk_widget_grab_focus (f);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-01-09 23:24:54 +00:00
|
|
|
}
|
2014-11-18 22:37:04 +02:00
|
|
|
gain_display_entry.hide();
|
2014-07-11 10:24:52 +03:00
|
|
|
gain_display_button.show();
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::show_gain ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2007-01-09 23:24:54 +00:00
|
|
|
char buf[32];
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2007-01-09 23:24:54 +00:00
|
|
|
float v = gain_adjustment.get_value();
|
2009-08-22 10:21:39 +00:00
|
|
|
|
2011-10-19 09:56:00 +00:00
|
|
|
switch (_data_type) {
|
|
|
|
|
case DataType::AUDIO:
|
2009-07-23 03:01:31 +00:00
|
|
|
if (v == 0.0) {
|
2013-07-10 00:02:35 +02:00
|
|
|
strcpy (buf, _("-inf"));
|
2009-07-23 03:01:31 +00:00
|
|
|
} else {
|
2011-06-19 23:02:55 +00:00
|
|
|
snprintf (buf, sizeof (buf), "%.1f", accurate_coefficient_to_dB (slider_position_to_gain_with_max (v, Config->get_max_gain())));
|
2009-07-23 03:01:31 +00:00
|
|
|
}
|
2011-10-19 09:56:00 +00:00
|
|
|
break;
|
|
|
|
|
case DataType::MIDI:
|
2012-11-13 19:23:16 +00:00
|
|
|
snprintf (buf, sizeof (buf), "%.1f", v);
|
2011-10-19 09:56:00 +00:00
|
|
|
break;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
2009-08-22 10:21:39 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_display_entry.set_text (buf);
|
2014-07-11 10:24:52 +03:00
|
|
|
gain_display_button.set_text (buf);
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::gain_adjusted ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2012-11-13 17:47:39 +00:00
|
|
|
gain_t value;
|
2011-10-19 10:01:37 +00:00
|
|
|
|
2012-11-13 17:47:39 +00:00
|
|
|
/* convert from adjustment range (0..1) to gain coefficient */
|
|
|
|
|
|
|
|
|
|
if (_data_type == DataType::AUDIO) {
|
2011-10-19 10:01:37 +00:00
|
|
|
value = slider_position_to_gain_with_max (gain_adjustment.get_value(), Config->get_max_gain());
|
2012-11-13 17:47:39 +00:00
|
|
|
} else {
|
2012-11-13 19:23:16 +00:00
|
|
|
value = gain_adjustment.get_value();
|
2011-10-19 10:01:37 +00:00
|
|
|
}
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
if (!ignore_toggle) {
|
2011-06-23 00:05:25 +00:00
|
|
|
if (_route && _route->amp() == _amp) {
|
2015-01-13 15:43:14 +02:00
|
|
|
|
|
|
|
|
Selection& selection = ARDOUR_UI::instance()->the_editor().get_selection();
|
|
|
|
|
TimeAxisView* tv = ARDOUR_UI::instance()->the_editor().get_route_view_by_route_id (_route->id() );
|
|
|
|
|
|
|
|
|
|
// if route is a part of selection and affected_by_selection is set
|
|
|
|
|
if (affected_by_selection && selection.selected(tv) && selection.tracks.size() > 1 ) {
|
|
|
|
|
|
|
|
|
|
RouteList routes;
|
|
|
|
|
TrackViewList track_list = selection.tracks;
|
|
|
|
|
TrackViewList::const_iterator iter = track_list.begin ();
|
|
|
|
|
for (; iter != track_list.end(); ++iter) {
|
|
|
|
|
RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*iter);
|
|
|
|
|
|
|
|
|
|
if (rtv) {
|
|
|
|
|
routes.push_back(rtv->route() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
adjust_gain_relatively(value, routes, this);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
_route->set_gain (value, this);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-13 19:43:31 +00:00
|
|
|
} else {
|
2011-10-19 10:01:37 +00:00
|
|
|
_amp->set_gain (value, this);
|
2009-07-21 14:39:21 +00:00
|
|
|
}
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
2009-06-23 20:02:15 +00:00
|
|
|
|
2007-01-09 23:24:54 +00:00
|
|
|
show_gain ();
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
2015-01-13 15:43:14 +02:00
|
|
|
gain_t
|
2015-01-14 01:54:34 +02:00
|
|
|
GainMeter::get_relative_gain_factor (gain_t val, const RouteList& routes)
|
2015-01-13 15:43:14 +02:00
|
|
|
{
|
|
|
|
|
gain_t usable_gain = _amp->gain();
|
|
|
|
|
|
|
|
|
|
// avoid "devide by 0" situation
|
|
|
|
|
if (usable_gain < 0.000001) {
|
|
|
|
|
usable_gain = 0.000001;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gain_t delta = val;
|
|
|
|
|
if (delta < 0.0f) {
|
|
|
|
|
delta = 0.0f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
delta -= usable_gain;
|
|
|
|
|
|
|
|
|
|
if (delta == 0.0f)
|
|
|
|
|
return 0.0f;
|
|
|
|
|
|
|
|
|
|
gain_t factor = delta / usable_gain;
|
|
|
|
|
|
|
|
|
|
if (factor > 0.0f) { // get max factor for selected tracks
|
|
|
|
|
|
|
|
|
|
// we are already on top
|
|
|
|
|
if (abs(usable_gain - Amp::max_gain_coefficient) < Amp::min_gain_coefficient_gap) {
|
|
|
|
|
return 0.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-14 01:54:34 +02:00
|
|
|
for (RouteList::const_iterator i = routes.begin(); i != routes.end(); ++i) {
|
2015-01-13 15:43:14 +02:00
|
|
|
gain_t g = (*i)->amp()->gain();
|
|
|
|
|
|
|
|
|
|
// we are close anough to count this route's on max
|
|
|
|
|
if (abs(g - Amp::max_gain_coefficient) < Amp::min_gain_coefficient_gap ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if the current factor woulnd't raise this route above maximum
|
|
|
|
|
if ((g + g * factor) < Amp::max_gain_coefficient) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// factor is calculated so that it would raise current route to max
|
|
|
|
|
factor = Amp::max_gain_coefficient / g - 1.0f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else { // get min factor for selected tracks
|
|
|
|
|
|
2015-01-14 01:54:34 +02:00
|
|
|
for (RouteList::const_iterator i = routes.begin(); i != routes.end(); ++i) {
|
2015-01-13 15:43:14 +02:00
|
|
|
gain_t g = (*i)->amp()->gain();
|
|
|
|
|
|
|
|
|
|
// we are close anough to count this on min
|
|
|
|
|
if (g <= Amp::min_gain_coefficient) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((g + g * factor) > Amp::min_gain_coefficient) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// factor is calculated so that it would lower current route to min
|
|
|
|
|
factor = Amp::min_gain_coefficient / g - 1.0f;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return factor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2015-01-14 01:54:34 +02:00
|
|
|
GainMeter::adjust_gain_relatively(gain_t val, const RouteList& routes, void* src)
|
2015-01-13 15:43:14 +02:00
|
|
|
{
|
|
|
|
|
gain_t factor = get_relative_gain_factor(val, routes);
|
|
|
|
|
|
2015-01-14 01:54:34 +02:00
|
|
|
for (RouteList::const_iterator i = routes.begin(); i != routes.end(); ++i) {
|
2015-01-13 15:43:14 +02:00
|
|
|
(*i)->inc_gain(factor, src);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::effective_gain_display ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2011-10-20 11:42:55 +00:00
|
|
|
float value = 0.0;
|
2009-07-23 03:01:31 +00:00
|
|
|
|
2011-10-19 09:56:00 +00:00
|
|
|
switch (_data_type) {
|
|
|
|
|
case DataType::AUDIO:
|
2011-06-19 23:02:55 +00:00
|
|
|
value = gain_to_slider_position_with_max (_amp->gain(), Config->get_max_gain());
|
2011-10-19 09:56:00 +00:00
|
|
|
break;
|
|
|
|
|
case DataType::MIDI:
|
2012-11-13 19:23:16 +00:00
|
|
|
value = _amp->gain ();
|
2011-10-19 09:56:00 +00:00
|
|
|
break;
|
2009-07-23 03:01:31 +00:00
|
|
|
}
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
if (gain_adjustment.get_value() != value) {
|
2009-10-14 16:10:01 +00:00
|
|
|
ignore_toggle = true;
|
2005-09-25 18:42:24 +00:00
|
|
|
gain_adjustment.set_value (value);
|
|
|
|
|
ignore_toggle = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::gain_changed ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2014-06-25 14:33:05 +03:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&GainMeter::effective_gain_display, this));
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::set_fader_name (const char * name)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2014-06-25 14:33:05 +03:00
|
|
|
// gain_slider.set_name (name);
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::update_gain_sensitive ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2009-07-21 14:39:21 +00:00
|
|
|
bool x = !(_amp->gain_control()->alist()->automation_state() & Play);
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_slider.set_sensitive (x);
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static MeterPoint
|
|
|
|
|
next_meter_point (MeterPoint mp)
|
|
|
|
|
{
|
|
|
|
|
switch (mp) {
|
|
|
|
|
case MeterInput:
|
|
|
|
|
return MeterPreFader;
|
|
|
|
|
break;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
case MeterPreFader:
|
|
|
|
|
return MeterPostFader;
|
|
|
|
|
break;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
case MeterPostFader:
|
2011-02-22 17:04:06 +00:00
|
|
|
return MeterOutput;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MeterOutput:
|
2009-11-18 20:01:37 +00:00
|
|
|
return MeterCustom;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MeterCustom:
|
2011-06-01 17:00:29 +00:00
|
|
|
return MeterInput;
|
2005-09-25 18:42:24 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2009-11-18 20:01:37 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
/*NOTREACHED*/
|
|
|
|
|
return MeterInput;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gint
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::meter_press(GdkEventButton* ev)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
|
|
|
|
wait_for_release = false;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
if (!_route) {
|
2005-09-25 18:42:24 +00:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!ignore_toggle) {
|
|
|
|
|
|
|
|
|
|
if (Keyboard::is_context_menu_event (ev)) {
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
// no menu at this time.
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
2008-12-12 14:43:24 +00:00
|
|
|
if (Keyboard::is_button2_event(ev)) {
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
// Primary-button2 click is the midi binding click
|
2005-09-25 18:42:24 +00:00
|
|
|
// button2-click is "momentary"
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
if (!Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier))) {
|
2005-09-25 18:42:24 +00:00
|
|
|
wait_for_release = true;
|
|
|
|
|
old_meter_point = _route->meter_point ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
if (_route && (ev->button == 1 || Keyboard::is_button2_event (ev))) {
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
if (Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::TertiaryModifier))) {
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
/* Primary+Tertiary-click applies change to all routes */
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
_session->foreach_route (this, &GainMeter::set_meter_point, next_meter_point (_route->meter_point()));
|
2009-10-14 16:10:01 +00:00
|
|
|
|
|
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2008-01-10 21:20:59 +00:00
|
|
|
/* Primary-click: solo mix group.
|
|
|
|
|
NOTE: Primary-button2 is MIDI learn.
|
2005-09-25 18:42:24 +00:00
|
|
|
*/
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
if (ev->button == 1) {
|
2011-01-09 15:10:59 +00:00
|
|
|
set_route_group_meter_point (*_route, next_meter_point (_route->meter_point()));
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
} else {
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-01-09 23:24:54 +00:00
|
|
|
/* click: change just this route */
|
|
|
|
|
|
|
|
|
|
// XXX no undo yet
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-04-03 13:40:34 +00:00
|
|
|
_route->set_meter_point (next_meter_point (_route->meter_point()));
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-12 18:21:48 +00:00
|
|
|
return true;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gint
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::meter_release(GdkEventButton*)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2011-02-20 00:55:32 +00:00
|
|
|
if (!ignore_toggle) {
|
|
|
|
|
if (wait_for_release) {
|
2005-09-25 18:42:24 +00:00
|
|
|
wait_for_release = false;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
if (_route) {
|
|
|
|
|
set_meter_point (*_route, old_meter_point);
|
2008-09-10 15:03:30 +00:00
|
|
|
}
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-09-10 15:03:30 +00:00
|
|
|
|
2006-03-12 18:21:48 +00:00
|
|
|
return true;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::set_meter_point (Route& route, MeterPoint mp)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2010-04-03 13:40:34 +00:00
|
|
|
route.set_meter_point (mp);
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::set_route_group_meter_point (Route& route, MeterPoint mp)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2011-01-09 15:10:59 +00:00
|
|
|
RouteGroup* route_group;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2011-01-09 15:10:59 +00:00
|
|
|
if ((route_group = route.route_group ()) != 0) {
|
|
|
|
|
route_group->foreach_route (boost::bind (&Route::set_meter_point, _1, mp, false));
|
2005-09-25 18:42:24 +00:00
|
|
|
} else {
|
2010-04-03 13:40:34 +00:00
|
|
|
route.set_meter_point (mp);
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::meter_point_clicked ()
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2009-06-09 20:21:19 +00:00
|
|
|
if (_route) {
|
2008-09-10 15:03:30 +00:00
|
|
|
/* WHAT? */
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-10 23:33:26 +00:00
|
|
|
bool
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::gain_slider_button_press (GdkEventButton* ev)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2011-01-10 23:33:26 +00:00
|
|
|
switch (ev->type) {
|
2014-11-18 22:37:04 +02:00
|
|
|
case GDK_BUTTON_PRESS:
|
2014-11-19 08:26:35 -05:00
|
|
|
if (Keyboard::modifier_state_contains (ev->state, GDK_MOD1_MASK)) {
|
2015-01-13 15:43:14 +02:00
|
|
|
if (_route && _route->amp() == _amp) {
|
|
|
|
|
Selection& selection = ARDOUR_UI::instance()->the_editor().get_selection();
|
|
|
|
|
TimeAxisView* tv = ARDOUR_UI::instance()->the_editor().get_route_view_by_route_id (_route->id() );
|
|
|
|
|
|
|
|
|
|
// if route is a part of selection and affected_by_selection is set
|
|
|
|
|
if (affected_by_selection && selection.selected(tv) && selection.tracks.size() > 1 ) {
|
|
|
|
|
|
|
|
|
|
RouteList routes;
|
|
|
|
|
TrackViewList track_list = selection.tracks;
|
|
|
|
|
TrackViewList::const_iterator iter = track_list.begin ();
|
|
|
|
|
for (; iter != track_list.end(); ++iter) {
|
|
|
|
|
RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*iter);
|
|
|
|
|
|
|
|
|
|
if (rtv) {
|
|
|
|
|
rtv->route()->set_gain (dB_to_coefficient(0.0), this);;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
_route->set_gain (dB_to_coefficient(0.0), this);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
_amp->set_gain (dB_to_coefficient(0.0), this);
|
|
|
|
|
}
|
2014-11-18 22:37:04 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
_amp->gain_control()->start_touch (_amp->session().transport_frame());
|
|
|
|
|
break;
|
|
|
|
|
case GDK_2BUTTON_PRESS:
|
|
|
|
|
if (ev->state == 0) {
|
|
|
|
|
_gain_slider_double_clicked = true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
2011-01-10 23:33:26 +00:00
|
|
|
}
|
|
|
|
|
|
2012-11-14 20:39:27 +00:00
|
|
|
return false;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
2011-01-10 23:33:26 +00:00
|
|
|
bool
|
2014-11-18 22:37:04 +02:00
|
|
|
GainMeter::gain_slider_button_release (GdkEventButton* ev)
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2010-08-19 21:09:40 +00:00
|
|
|
_amp->gain_control()->stop_touch (false, _amp->session().transport_frame());
|
2014-11-18 22:37:04 +02:00
|
|
|
if (_gain_slider_double_clicked) {
|
|
|
|
|
start_gain_level_editing ();
|
|
|
|
|
_gain_slider_double_clicked = false;
|
|
|
|
|
}
|
2012-11-14 20:39:27 +00:00
|
|
|
return false;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
2006-05-19 17:29:05 +00:00
|
|
|
|
|
|
|
|
string
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::astate_string (AutoState state)
|
2006-05-19 17:29:05 +00:00
|
|
|
{
|
|
|
|
|
return _astate_string (state, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::short_astate_string (AutoState state)
|
2006-05-19 17:29:05 +00:00
|
|
|
{
|
|
|
|
|
return _astate_string (state, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::_astate_string (AutoState state, bool shrt)
|
2006-05-19 17:29:05 +00:00
|
|
|
{
|
|
|
|
|
string sstr;
|
|
|
|
|
|
|
|
|
|
switch (state) {
|
2012-02-07 17:43:55 +00:00
|
|
|
case ARDOUR::Off:
|
2014-05-27 21:24:16 -04:00
|
|
|
sstr = (shrt ? "OFF" : _("OFF"));
|
2006-05-19 17:29:05 +00:00
|
|
|
break;
|
|
|
|
|
case Play:
|
2014-05-27 21:24:16 -04:00
|
|
|
sstr = (shrt ? "READ" : _("READ"));
|
2006-05-19 17:29:05 +00:00
|
|
|
break;
|
|
|
|
|
case Touch:
|
2014-05-27 21:24:16 -04:00
|
|
|
sstr = (shrt ? "TOUCH" : _("TOUCH"));
|
2006-05-19 17:29:05 +00:00
|
|
|
break;
|
|
|
|
|
case Write:
|
2014-05-27 21:24:16 -04:00
|
|
|
sstr = (shrt ? "WRITE" : _("WRITE"));
|
2006-05-19 17:29:05 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sstr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::astyle_string (AutoStyle style)
|
2006-05-19 17:29:05 +00:00
|
|
|
{
|
|
|
|
|
return _astyle_string (style, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::short_astyle_string (AutoStyle style)
|
2006-05-19 17:29:05 +00:00
|
|
|
{
|
|
|
|
|
return _astyle_string (style, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::_astyle_string (AutoStyle style, bool shrt)
|
2006-05-19 17:29:05 +00:00
|
|
|
{
|
|
|
|
|
if (style & Trim) {
|
|
|
|
|
return _("Trim");
|
|
|
|
|
} else {
|
|
|
|
|
/* XXX it might different in different languages */
|
|
|
|
|
|
|
|
|
|
return (shrt ? _("Abs") : _("Abs"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::update_meters()
|
2008-01-10 21:20:59 +00:00
|
|
|
{
|
2008-04-11 14:06:50 +00:00
|
|
|
char buf[32];
|
2014-06-25 14:33:05 +03:00
|
|
|
float mpeak = level_meter.update_meters();
|
2008-04-11 14:06:50 +00:00
|
|
|
|
|
|
|
|
if (mpeak > max_peak) {
|
|
|
|
|
max_peak = mpeak;
|
|
|
|
|
if (mpeak <= -200.0f) {
|
2014-06-25 14:33:05 +03:00
|
|
|
peak_display_button.set_text (_("-inf"));
|
2008-04-11 14:06:50 +00:00
|
|
|
} else {
|
|
|
|
|
snprintf (buf, sizeof(buf), "%.1f", mpeak);
|
2014-06-25 14:33:05 +03:00
|
|
|
peak_display_button.set_text (buf);
|
2008-04-11 14:06:50 +00:00
|
|
|
}
|
2013-07-06 16:09:38 +02:00
|
|
|
}
|
|
|
|
|
if (mpeak >= Config->get_meter_peak()) {
|
2014-07-04 18:04:39 +03:00
|
|
|
//peak_display_button.set_name ("MixerStripPeakDisplayPeak");
|
|
|
|
|
peak_display_button.set_active_state(Gtkmm2ext::ExplicitActive);
|
2008-01-10 21:20:59 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
void GainMeter::color_handler(bool /*dpi*/)
|
2008-01-10 21:20:59 +00:00
|
|
|
{
|
|
|
|
|
setup_meters();
|
|
|
|
|
}
|
2008-09-10 15:03:30 +00:00
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::on_theme_changed()
|
2008-09-10 15:03:30 +00:00
|
|
|
{
|
2013-07-05 22:18:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::redraw_metrics()
|
2013-07-05 22:18:04 +02:00
|
|
|
{
|
2008-09-10 15:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
GainMeter::get_gm_width ()
|
|
|
|
|
{
|
2014-06-25 14:33:05 +03:00
|
|
|
//rework it
|
|
|
|
|
|
2008-09-10 15:03:30 +00:00
|
|
|
Gtk::Requisition sz;
|
2013-07-10 17:13:45 +02:00
|
|
|
int min_w = 0;
|
2014-04-18 04:21:54 -05:00
|
|
|
sz.width = 0;
|
2014-06-25 14:33:05 +03:00
|
|
|
level_meter.size_request (sz);
|
2013-07-10 17:13:45 +02:00
|
|
|
min_w += sz.width;
|
2013-07-05 14:55:07 +02:00
|
|
|
|
2014-06-25 14:33:05 +03:00
|
|
|
gain_slider.size_request (sz);
|
|
|
|
|
return sz.width + min_w + 6;
|
2013-07-05 14:55:07 +02:00
|
|
|
}
|
|
|
|
|
|
2009-01-30 20:18:31 +00:00
|
|
|
boost::shared_ptr<PBD::Controllable>
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::get_controllable()
|
2009-01-30 20:18:31 +00:00
|
|
|
{
|
2009-07-21 14:39:21 +00:00
|
|
|
if (_amp) {
|
|
|
|
|
return _amp->gain_control();
|
|
|
|
|
} else {
|
|
|
|
|
return boost::shared_ptr<PBD::Controllable>();
|
|
|
|
|
}
|
2009-01-30 20:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
2011-11-13 15:12:34 +00:00
|
|
|
bool
|
2014-06-25 14:33:05 +03:00
|
|
|
GainMeter::level_meter_button_press (GdkEventButton* ev)
|
2011-11-13 15:12:34 +00:00
|
|
|
{
|
|
|
|
|
return LevelMeterButtonPress (ev); /* EMIT SIGNAL */
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-29 00:55:25 +00:00
|
|
|
void
|
|
|
|
|
GainMeter::meter_configuration_changed (ChanCount c)
|
|
|
|
|
{
|
2013-06-23 14:23:47 +02:00
|
|
|
int type = 0;
|
2010-12-29 00:55:25 +00:00
|
|
|
_types.clear ();
|
2009-01-30 20:18:31 +00:00
|
|
|
|
2010-12-29 00:55:25 +00:00
|
|
|
for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
|
|
|
|
|
if (c.get (*i) > 0) {
|
|
|
|
|
_types.push_back (*i);
|
2013-06-23 14:23:47 +02:00
|
|
|
type |= 1 << (*i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-19 10:37:00 +02:00
|
|
|
setup_meters();
|
2013-07-14 11:34:31 +02:00
|
|
|
meter_clear_pattern_cache(4);
|
2010-12-29 00:55:25 +00:00
|
|
|
}
|
2011-11-13 15:12:34 +00:00
|
|
|
|
2013-07-18 09:00:24 +02:00
|
|
|
void
|
|
|
|
|
GainMeter::route_active_changed ()
|
|
|
|
|
{
|
|
|
|
|
if (_meter) {
|
|
|
|
|
meter_configuration_changed (_meter->input_streams ());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 14:39:26 +02:00
|
|
|
void
|
|
|
|
|
GainMeter::meter_type_changed (MeterType t)
|
|
|
|
|
{
|
|
|
|
|
_route->set_meter_type(t);
|
2013-07-22 18:45:08 +02:00
|
|
|
RedrawMetrics();
|
2013-07-07 14:39:26 +02:00
|
|
|
}
|