2005-09-25 14:42:24 -04: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 10:39:21 -04:00
|
|
|
#include "ardour/amp.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/route_group.h"
|
|
|
|
#include "ardour/session_route.h"
|
|
|
|
#include "ardour/dB.h"
|
2009-12-30 11:48:58 -05:00
|
|
|
#include "ardour/utils.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-06-08 05:51:17 -04:00
|
|
|
#include <pangomm.h>
|
2007-05-25 16:29:12 -04:00
|
|
|
#include <gtkmm/style.h>
|
|
|
|
#include <gdkmm/color.h>
|
2005-09-25 17:19:23 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/fastmeter.h>
|
2007-06-27 08:12:34 -04:00
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/fastlog.h"
|
|
|
|
#include "pbd/stacktrace.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "gain_meter.h"
|
2010-12-02 10:51:42 -05:00
|
|
|
#include "global_signals.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "logmeter.h"
|
|
|
|
#include "gui_thread.h"
|
2005-11-24 09:59:36 -05:00
|
|
|
#include "keyboard.h"
|
2007-01-28 12:44:13 -05:00
|
|
|
#include "public_editor.h"
|
2009-12-30 11:48:58 -05:00
|
|
|
#include "utils.h"
|
2013-07-05 07:58:14 -04:00
|
|
|
#include "meter_patterns.h"
|
2014-12-25 10:02:00 -05:00
|
|
|
#include "timers.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/route.h"
|
|
|
|
#include "ardour/meter.h"
|
2013-06-23 08:23:47 -04:00
|
|
|
#include "ardour/audio_track.h"
|
|
|
|
#include "ardour/midi_track.h"
|
2014-12-04 00:29:28 -05:00
|
|
|
#include "ardour/dB.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2014-06-25 15:27:37 -04: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 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 17:19:23 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2006-03-12 13:21:48 -05:00
|
|
|
using namespace std;
|
2009-12-04 17:51:32 -05:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2013-07-15 09:04:20 -04:00
|
|
|
using namespace ArdourMeter;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-10-28 20:30:57 -04:00
|
|
|
static void
|
|
|
|
reset_cursor_to_default (Gtk::Entry* widget)
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Window> win = widget->get_text_window ();
|
|
|
|
if (win) {
|
|
|
|
/* C++ doesn't provide a pointer argument version of this
|
|
|
|
(i.e. you cannot set to NULL to get the default/parent
|
|
|
|
cursor)
|
|
|
|
*/
|
|
|
|
gdk_window_set_cursor (win->gobj(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reset_cursor_to_default_state (Gtk::StateType, Gtk::Entry* widget)
|
|
|
|
{
|
|
|
|
reset_cursor_to_default (widget);
|
|
|
|
}
|
|
|
|
|
2013-01-11 13:33:57 -05:00
|
|
|
GainMeterBase::GainMeterBase (Session* s, bool horizontal, int fader_length, int fader_girth)
|
2014-12-04 00:29:28 -05:00
|
|
|
: gain_adjustment (gain_to_slider_position_with_max (1.0, Config->get_max_gain()), // value
|
|
|
|
0.0, // lower
|
|
|
|
1.0, // upper
|
|
|
|
dB_coeff_step(Config->get_max_gain()) / 10.0, // step increment
|
|
|
|
dB_coeff_step(Config->get_max_gain())) // page increment
|
2009-07-22 23:01:31 -04:00
|
|
|
, gain_automation_style_button ("")
|
|
|
|
, gain_automation_state_button ("")
|
2011-10-19 05:56:00 -04:00
|
|
|
, _data_type (DataType::AUDIO)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-08 11:07:28 -05:00
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
set_session (s);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
ignore_toggle = false;
|
|
|
|
meter_menu = 0;
|
2007-01-09 18:24:54 -05:00
|
|
|
next_release_selects = false;
|
2008-09-10 11:03:30 -04:00
|
|
|
_width = Wide;
|
2007-01-09 18:24:54 -05:00
|
|
|
|
2015-04-22 15:34:27 -04:00
|
|
|
fader_length = rint (fader_length * ARDOUR_UI::ui_scale);
|
|
|
|
fader_girth = rint (fader_girth * ARDOUR_UI::ui_scale);
|
2015-04-19 23:35:23 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
if (horizontal) {
|
2014-11-01 13:22:29 -04:00
|
|
|
gain_slider = manage (new HSliderController (&gain_adjustment, boost::shared_ptr<PBD::Controllable>(), fader_length, fader_girth));
|
2008-09-10 11:03:30 -04:00
|
|
|
} else {
|
2014-11-01 13:22:29 -04:00
|
|
|
gain_slider = manage (new VSliderController (&gain_adjustment, boost::shared_ptr<PBD::Controllable>(), fader_length, fader_girth));
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-07-25 08:18:39 -04:00
|
|
|
level_meter = new LevelMeterHBox(_session);
|
2008-04-11 10:06:50 -04:00
|
|
|
|
2011-11-13 10:12:34 -05:00
|
|
|
level_meter->ButtonPress.connect_same_thread (_level_meter_connection, boost::bind (&GainMeterBase::level_meter_button_press, this, _1));
|
|
|
|
meter_metric_area.signal_button_press_event().connect (sigc::mem_fun (*this, &GainMeterBase::level_meter_button_press));
|
|
|
|
meter_metric_area.add_events (Gdk::BUTTON_PRESS_MASK);
|
|
|
|
|
2014-09-04 20:38:24 -04:00
|
|
|
gain_slider->set_tweaks (PixFader::Tweaks(PixFader::NoButtonForward | PixFader::NoVerticalScroll));
|
|
|
|
gain_slider->StartGesture.connect (sigc::mem_fun (*this, &GainMeter::amp_start_touch));
|
|
|
|
gain_slider->StopGesture.connect (sigc::mem_fun (*this, &GainMeter::amp_stop_touch));
|
2007-01-09 18:24:54 -05:00
|
|
|
gain_slider->set_name ("GainFader");
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
gain_display.set_name ("MixerStripGainDisplay");
|
|
|
|
set_size_request_to_display_given_text (gain_display, "-80.g", 2, 6); /* note the descender */
|
2009-12-11 18:29:48 -05:00
|
|
|
gain_display.signal_activate().connect (sigc::mem_fun (*this, &GainMeter::gain_activated));
|
|
|
|
gain_display.signal_focus_in_event().connect (sigc::mem_fun (*this, &GainMeter::gain_focused), false);
|
|
|
|
gain_display.signal_focus_out_event().connect (sigc::mem_fun (*this, &GainMeter::gain_focused), false);
|
2014-08-27 12:55:32 -04:00
|
|
|
gain_display.set_alignment(0.5);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-10-28 10:12:01 -04:00
|
|
|
peak_display.set_name ("MixerStripPeakDisplay");
|
|
|
|
set_size_request_to_display_given_text (peak_display, "-80.g", 2, 6); /* note the descender */
|
2005-09-25 14:42:24 -04:00
|
|
|
max_peak = minus_infinity();
|
2014-07-30 13:30:15 -04:00
|
|
|
peak_display.set_text (_("-inf"));
|
2014-10-28 10:12:01 -04:00
|
|
|
peak_display.set_alignment(0.5);
|
2014-10-28 20:30:57 -04:00
|
|
|
|
|
|
|
/* stuff related to the fact that the peak display is not, in
|
|
|
|
fact, supposed to be a text entry.
|
|
|
|
*/
|
|
|
|
peak_display.set_events (peak_display.get_events() & ~(Gdk::EventMask (Gdk::LEAVE_NOTIFY_MASK|Gdk::ENTER_NOTIFY_MASK|Gdk::POINTER_MOTION_MASK)));
|
|
|
|
peak_display.signal_map().connect (sigc::bind (sigc::ptr_fun (reset_cursor_to_default), &peak_display));
|
|
|
|
peak_display.signal_state_changed().connect (sigc::bind (sigc::ptr_fun (reset_cursor_to_default_state), &peak_display));
|
|
|
|
peak_display.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
peak_display.set_editable (false);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-12-07 17:38:49 -05:00
|
|
|
gain_automation_style_button.set_name ("mixer strip button");
|
|
|
|
gain_automation_state_button.set_name ("mixer strip button");
|
2006-05-19 13:29:05 -04:00
|
|
|
|
2010-02-08 19:50:24 -05:00
|
|
|
ARDOUR_UI::instance()->set_tip (gain_automation_state_button, _("Fader automation mode"));
|
|
|
|
ARDOUR_UI::instance()->set_tip (gain_automation_style_button, _("Fader automation type"));
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
gain_automation_style_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
gain_automation_state_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
|
2006-05-22 07:12:26 -04:00
|
|
|
gain_automation_state_button.set_size_request(15, 15);
|
|
|
|
gain_automation_style_button.set_size_request(15, 15);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
gain_astyle_menu.items().push_back (MenuElem (_("Trim")));
|
|
|
|
gain_astyle_menu.items().push_back (MenuElem (_("Abs")));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
gain_astate_menu.set_name ("ArdourContextMenu");
|
|
|
|
gain_astyle_menu.set_name ("ArdourContextMenu");
|
2006-05-21 06:11:59 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
gain_adjustment.signal_value_changed().connect (sigc::mem_fun(*this, &GainMeterBase::gain_adjusted));
|
|
|
|
peak_display.signal_button_release_event().connect (sigc::mem_fun(*this, &GainMeterBase::peak_button_release), false);
|
|
|
|
gain_display.signal_key_press_event().connect (sigc::mem_fun(*this, &GainMeterBase::gain_key_press), false);
|
2006-05-21 09:21:25 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
ResetAllPeakDisplays.connect (sigc::mem_fun(*this, &GainMeterBase::reset_peak_display));
|
2013-07-05 11:42:47 -04:00
|
|
|
ResetRoutePeakDisplays.connect (sigc::mem_fun(*this, &GainMeterBase::reset_route_peak_display));
|
2009-12-11 18:29:48 -05:00
|
|
|
ResetGroupPeakDisplays.connect (sigc::mem_fun(*this, &GainMeterBase::reset_group_peak_display));
|
2013-07-05 16:18:04 -04:00
|
|
|
RedrawMetrics.connect (sigc::mem_fun(*this, &GainMeterBase::redraw_metrics));
|
2006-05-22 07:12:26 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
UI::instance()->theme_changed.connect (sigc::mem_fun(*this, &GainMeterBase::on_theme_changed));
|
|
|
|
ColorsChanged.connect (sigc::bind(sigc::mem_fun (*this, &GainMeterBase::color_handler), false));
|
|
|
|
DPIReset.connect (sigc::bind(sigc::mem_fun (*this, &GainMeterBase::color_handler), true));
|
2008-12-08 11:07:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
GainMeterBase::~GainMeterBase ()
|
|
|
|
{
|
|
|
|
delete meter_menu;
|
|
|
|
delete level_meter;
|
|
|
|
}
|
2006-05-24 18:43:15 -04:00
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
void
|
2009-06-09 16:21:19 -04:00
|
|
|
GainMeterBase::set_controls (boost::shared_ptr<Route> r,
|
2009-10-14 12:10:01 -04:00
|
|
|
boost::shared_ptr<PeakMeter> pm,
|
2009-07-21 10:39:21 -04:00
|
|
|
boost::shared_ptr<Amp> amp)
|
2008-12-08 11:07:28 -05:00
|
|
|
{
|
|
|
|
connections.clear ();
|
2009-12-17 13:24:23 -05:00
|
|
|
model_connections.drop_connections ();
|
2009-07-12 20:26:28 -04:00
|
|
|
|
2009-07-21 10:39:21 -04:00
|
|
|
if (!pm && !amp) {
|
2009-05-16 22:08:13 -04:00
|
|
|
level_meter->set_meter (0);
|
|
|
|
gain_slider->set_controllable (boost::shared_ptr<PBD::Controllable>());
|
2009-06-09 16:21:19 -04:00
|
|
|
_meter.reset ();
|
2009-07-21 10:39:21 -04:00
|
|
|
_amp.reset ();
|
2009-06-09 16:21:19 -04:00
|
|
|
_route.reset ();
|
2009-05-16 22:08:13 -04:00
|
|
|
return;
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2009-05-16 22:08:13 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
_meter = pm;
|
2009-07-21 10:39:21 -04:00
|
|
|
_amp = amp;
|
2009-06-09 16:21:19 -04:00
|
|
|
_route = r;
|
2006-05-22 07:12:26 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
level_meter->set_meter (pm.get());
|
2009-07-21 10:39:21 -04:00
|
|
|
gain_slider->set_controllable (amp->gain_control());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-08-19 13:52:32 -04:00
|
|
|
if (amp) {
|
|
|
|
amp->ConfigurationChanged.connect (
|
2012-04-25 08:58:19 -04:00
|
|
|
model_connections, invalidator (*this), boost::bind (&GainMeterBase::setup_gain_adjustment, this), gui_context ()
|
2011-08-19 13:52:32 -04:00
|
|
|
);
|
2009-07-22 23:01:31 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-08-19 13:52:32 -04:00
|
|
|
setup_gain_adjustment ();
|
|
|
|
|
2013-04-06 16:04:02 -04:00
|
|
|
if (!_route || !_route->is_auditioner()) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
using namespace Menu_Helpers;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
gain_astate_menu.items().clear ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-11-20 19:04:44 -05:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (S_("Automation|Manual"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2012-02-07 12:43:55 -05:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) ARDOUR::Off)));
|
2009-06-09 16:21:19 -04:00
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Play"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2009-06-09 16:21:19 -04:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) Play)));
|
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Write"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2009-06-09 16:21:19 -04:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) Write)));
|
|
|
|
gain_astate_menu.items().push_back (MenuElem (_("Touch"),
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::bind (sigc::mem_fun (*(amp.get()), &Automatable::set_parameter_automation_state),
|
2009-06-09 16:21:19 -04:00
|
|
|
Evoral::Parameter(GainAutomation), (AutoState) Touch)));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
connections.push_back (gain_automation_style_button.signal_button_press_event().connect (sigc::mem_fun(*this, &GainMeterBase::gain_automation_style_button_event), false));
|
|
|
|
connections.push_back (gain_automation_state_button.signal_button_press_event().connect (sigc::mem_fun(*this, &GainMeterBase::gain_automation_state_button_event), false));
|
2009-07-21 10:39:21 -04:00
|
|
|
|
|
|
|
boost::shared_ptr<AutomationControl> gc = amp->gain_control();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
gc->alist()->automation_state_changed.connect (model_connections, invalidator (*this), boost::bind (&GainMeter::gain_automation_state_changed, this), gui_context());
|
|
|
|
gc->alist()->automation_style_changed.connect (model_connections, invalidator (*this), boost::bind (&GainMeter::gain_automation_style_changed, this), gui_context());
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
gain_automation_state_changed ();
|
2006-05-21 09:21:25 -04:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
amp->gain_control()->Changed.connect (model_connections, invalidator (*this), boost::bind (&GainMeterBase::gain_changed, this), gui_context());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
gain_changed ();
|
2007-01-09 18:24:54 -05:00
|
|
|
show_gain ();
|
|
|
|
update_gain_sensitive ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2011-08-19 13:52:32 -04:00
|
|
|
void
|
|
|
|
GainMeterBase::setup_gain_adjustment ()
|
|
|
|
{
|
|
|
|
if (!_amp) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_previous_amp_output_streams == _amp->output_streams ()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ignore_toggle = true;
|
|
|
|
|
2013-06-08 03:08:31 -04:00
|
|
|
if (_amp->output_streams().n_midi() <= _amp->output_streams().n_audio()) {
|
2011-10-19 05:56:00 -04:00
|
|
|
_data_type = DataType::AUDIO;
|
2015-03-25 17:47:25 -04:00
|
|
|
gain_adjustment.set_lower (GAIN_COEFF_ZERO);
|
|
|
|
gain_adjustment.set_upper (GAIN_COEFF_UNITY);
|
2014-12-04 00:29:28 -05:00
|
|
|
gain_adjustment.set_step_increment (dB_coeff_step(Config->get_max_gain()) / 10.0);
|
|
|
|
gain_adjustment.set_page_increment (dB_coeff_step(Config->get_max_gain()));
|
2015-03-25 17:47:25 -04:00
|
|
|
gain_slider->set_default_value (gain_to_slider_position (GAIN_COEFF_UNITY));
|
2011-08-19 13:52:32 -04:00
|
|
|
} else {
|
2011-10-19 05:56:00 -04:00
|
|
|
_data_type = DataType::MIDI;
|
2011-08-19 13:52:32 -04:00
|
|
|
gain_adjustment.set_lower (0.0);
|
2012-11-13 14:23:16 -05:00
|
|
|
gain_adjustment.set_upper (2.0);
|
2012-11-13 12:47:39 -05:00
|
|
|
gain_adjustment.set_step_increment (1.0/128.0);
|
|
|
|
gain_adjustment.set_page_increment (10.0/128.0);
|
|
|
|
gain_slider->set_default_value (1.0);
|
2011-08-19 13:52:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ignore_toggle = false;
|
|
|
|
|
|
|
|
effective_gain_display ();
|
|
|
|
|
|
|
|
_previous_amp_output_streams = _amp->output_streams ();
|
|
|
|
}
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
void
|
|
|
|
GainMeterBase::hide_all_meters ()
|
|
|
|
{
|
|
|
|
level_meter->hide_meters();
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
|
|
|
GainMeter::hide_all_meters ()
|
|
|
|
{
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::hide_all_meters ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::setup_meters (int len)
|
|
|
|
{
|
2013-07-02 12:28:59 -04:00
|
|
|
int meter_width = 5;
|
2014-02-19 12:32:00 -05:00
|
|
|
uint32_t meter_channels = 0;
|
|
|
|
if (_meter) {
|
|
|
|
meter_channels = _meter->input_streams().n_total();
|
|
|
|
} else if (_route) {
|
|
|
|
meter_channels = _route->shared_peak_meter()->input_streams().n_total();
|
|
|
|
}
|
2013-07-05 08:55:07 -04:00
|
|
|
|
|
|
|
switch (_width) {
|
2013-07-10 09:11:51 -04:00
|
|
|
case Wide:
|
2013-09-11 12:32:39 -04:00
|
|
|
//meter_ticks1_area.show();
|
|
|
|
//meter_ticks2_area.show();
|
2013-09-09 12:31:50 -04:00
|
|
|
meter_metric_area.show();
|
2014-02-19 12:32:00 -05:00
|
|
|
if (meter_channels == 1) {
|
2013-07-10 09:11:51 -04:00
|
|
|
meter_width = 10;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Narrow:
|
2014-02-19 12:32:00 -05:00
|
|
|
if (meter_channels > 1) {
|
2013-09-11 12:32:39 -04:00
|
|
|
meter_width = 4;
|
|
|
|
}
|
|
|
|
//meter_ticks1_area.hide();
|
|
|
|
//meter_ticks2_area.hide();
|
2013-09-09 12:31:50 -04:00
|
|
|
meter_metric_area.hide();
|
2013-07-10 09:11:51 -04:00
|
|
|
break;
|
2013-07-05 08:55:07 -04:00
|
|
|
}
|
2013-07-10 09:11:51 -04:00
|
|
|
level_meter->setup_meters(len, meter_width);
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
2013-07-07 00:17:02 -04:00
|
|
|
void
|
|
|
|
GainMeterBase::set_type (MeterType t)
|
|
|
|
{
|
|
|
|
level_meter->set_type(t);
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
void
|
2007-12-20 18:25:19 -05:00
|
|
|
GainMeter::setup_meters (int len)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-07-10 12:38:25 -04:00
|
|
|
switch (_width) {
|
|
|
|
case Wide:
|
2014-09-02 13:33:58 -04:00
|
|
|
{
|
|
|
|
uint32_t meter_channels = 0;
|
|
|
|
if (_meter) {
|
|
|
|
meter_channels = _meter->input_streams().n_total();
|
|
|
|
} else if (_route) {
|
|
|
|
meter_channels = _route->shared_peak_meter()->input_streams().n_total();
|
|
|
|
}
|
|
|
|
hbox.set_homogeneous(meter_channels < 7 ? true : false);
|
|
|
|
}
|
2013-07-10 12:38:25 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
|
|
|
hbox.set_homogeneous(false);
|
|
|
|
break;
|
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::setup_meters (len);
|
2007-03-18 02:07:08 -04:00
|
|
|
}
|
|
|
|
|
2013-07-07 00:17:02 -04:00
|
|
|
void
|
|
|
|
GainMeter::set_type (MeterType t)
|
|
|
|
{
|
|
|
|
GainMeterBase::set_type (t);
|
|
|
|
}
|
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
bool
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_key_press (GdkEventKey* ev)
|
2007-01-09 18:24:54 -05:00
|
|
|
{
|
|
|
|
if (key_is_legal_for_numeric_entry (ev->keyval)) {
|
|
|
|
/* drop through to normal handling */
|
|
|
|
return false;
|
2006-03-12 13:21:48 -05:00
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
/* illegal key for gain entry */
|
|
|
|
return true;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
bool
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::peak_button_release (GdkEventButton* ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
/* reset peak label */
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
if (ev->button == 1 && Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier|Keyboard::TertiaryModifier)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
ResetAllPeakDisplays ();
|
2008-01-10 16:20:59 -05:00
|
|
|
} else if (ev->button == 1 && Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
2009-06-09 16:21:19 -04:00
|
|
|
if (_route) {
|
2009-06-21 15:59:56 -04:00
|
|
|
ResetGroupPeakDisplays (_route->route_group());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
} else {
|
2013-07-05 11:42:47 -04:00
|
|
|
ResetRoutePeakDisplays (_route.get());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
|
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::reset_peak_display ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-06-09 16:21:19 -04:00
|
|
|
_meter->reset_max();
|
2008-04-11 10:06:50 -04:00
|
|
|
level_meter->clear_meters();
|
2007-01-09 18:24:54 -05:00
|
|
|
max_peak = -INFINITY;
|
2014-07-30 13:30:15 -04:00
|
|
|
peak_display.set_text (_("-inf"));
|
2014-10-28 10:12:01 -04:00
|
|
|
peak_display.set_name ("MixerStripPeakDisplay");
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2013-07-05 11:42:47 -04:00
|
|
|
void
|
|
|
|
GainMeterBase::reset_route_peak_display (Route* route)
|
|
|
|
{
|
|
|
|
if (_route && _route.get() == route) {
|
|
|
|
reset_peak_display ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::reset_group_peak_display (RouteGroup* group)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-06-21 15:59:56 -04:00
|
|
|
if (_route && group == _route->route_group()) {
|
2009-06-09 16:21:19 -04:00
|
|
|
reset_peak_display ();
|
2011-05-18 03:05:30 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::popup_meter_menu (GdkEventButton *ev)
|
2005-09-25 14:42:24 -04: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 18:24:54 -05:00
|
|
|
bool
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_focused (GdkEventFocus* ev)
|
2007-01-09 18:24:54 -05:00
|
|
|
{
|
|
|
|
if (ev->in) {
|
|
|
|
gain_display.select_region (0, -1);
|
|
|
|
} else {
|
|
|
|
gain_display.select_region (0, 0);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_activated ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-01-09 18:24:54 -05:00
|
|
|
float f;
|
|
|
|
|
2012-11-13 12:47:39 -05:00
|
|
|
{
|
|
|
|
// Switch to user's preferred locale so that
|
|
|
|
// if they use different LC_NUMERIC conventions,
|
|
|
|
// we will honor them.
|
2007-01-09 18:24:54 -05:00
|
|
|
|
2012-11-13 12:47:39 -05:00
|
|
|
PBD::LocaleGuard lg ("");
|
|
|
|
if (sscanf (gain_display.get_text().c_str(), "%f", &f) != 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
|
2012-11-13 12:47:39 -05:00
|
|
|
/* clamp to displayable values */
|
|
|
|
if (_data_type == DataType::AUDIO) {
|
2007-01-09 18:24:54 -05:00
|
|
|
f = min (f, 6.0f);
|
2009-07-21 10:39:21 -04:00
|
|
|
_amp->set_gain (dB_to_coefficient(f), this);
|
2012-11-13 12:47:39 -05:00
|
|
|
} else {
|
2012-11-13 14:23:16 -05:00
|
|
|
f = min (fabs (f), 2.0f);
|
2012-11-13 12:47:39 -05:00
|
|
|
_amp->set_gain (f, this);
|
|
|
|
}
|
2007-01-28 12:44:13 -05:00
|
|
|
|
2012-11-13 12:47:39 -05:00
|
|
|
if (gain_display.has_focus()) {
|
2012-12-09 21:03:45 -05:00
|
|
|
Gtk::Widget* w = gain_display.get_toplevel();
|
|
|
|
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);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::show_gain ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-01-09 18:24:54 -05:00
|
|
|
char buf[32];
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
float v = gain_adjustment.get_value();
|
2009-08-22 06:21:39 -04:00
|
|
|
|
2011-10-19 05:56:00 -04:00
|
|
|
switch (_data_type) {
|
|
|
|
case DataType::AUDIO:
|
2009-07-22 23:01:31 -04:00
|
|
|
if (v == 0.0) {
|
2013-07-09 18:02:35 -04:00
|
|
|
strcpy (buf, _("-inf"));
|
2009-07-22 23:01:31 -04:00
|
|
|
} else {
|
2011-06-19 19:02:55 -04:00
|
|
|
snprintf (buf, sizeof (buf), "%.1f", accurate_coefficient_to_dB (slider_position_to_gain_with_max (v, Config->get_max_gain())));
|
2009-07-22 23:01:31 -04:00
|
|
|
}
|
2011-10-19 05:56:00 -04:00
|
|
|
break;
|
|
|
|
case DataType::MIDI:
|
2012-11-13 14:23:16 -05:00
|
|
|
snprintf (buf, sizeof (buf), "%.1f", v);
|
2011-10-19 05:56:00 -04:00
|
|
|
break;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-08-22 06:21:39 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
gain_display.set_text (buf);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_adjusted ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2012-11-13 12:47:39 -05:00
|
|
|
gain_t value;
|
2011-10-19 06:01:37 -04:00
|
|
|
|
2012-11-13 12:47:39 -05:00
|
|
|
/* convert from adjustment range (0..1) to gain coefficient */
|
|
|
|
|
|
|
|
if (_data_type == DataType::AUDIO) {
|
2011-10-19 06:01:37 -04:00
|
|
|
value = slider_position_to_gain_with_max (gain_adjustment.get_value(), Config->get_max_gain());
|
2012-11-13 12:47:39 -05:00
|
|
|
} else {
|
2012-11-13 14:23:16 -05:00
|
|
|
value = gain_adjustment.get_value();
|
2011-10-19 06:01:37 -04:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (!ignore_toggle) {
|
2011-06-22 20:05:25 -04:00
|
|
|
if (_route && _route->amp() == _amp) {
|
2011-10-19 06:01:37 -04:00
|
|
|
_route->set_gain (value, this);
|
2011-01-13 14:43:31 -05:00
|
|
|
} else {
|
2011-10-19 06:01:37 -04:00
|
|
|
_amp->set_gain (value, this);
|
2009-07-21 10:39:21 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-06-23 16:02:15 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
show_gain ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::effective_gain_display ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2015-03-25 17:47:25 -04:00
|
|
|
float value = GAIN_COEFF_ZERO;
|
2009-07-22 23:01:31 -04:00
|
|
|
|
2011-10-19 05:56:00 -04:00
|
|
|
switch (_data_type) {
|
|
|
|
case DataType::AUDIO:
|
2011-06-19 19:02:55 -04:00
|
|
|
value = gain_to_slider_position_with_max (_amp->gain(), Config->get_max_gain());
|
2011-10-19 05:56:00 -04:00
|
|
|
break;
|
|
|
|
case DataType::MIDI:
|
2012-11-13 14:23:16 -05:00
|
|
|
value = _amp->gain ();
|
2011-10-19 05:56:00 -04:00
|
|
|
break;
|
2009-07-22 23:01:31 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (gain_adjustment.get_value() != value) {
|
2009-10-14 12:10:01 -04:00
|
|
|
ignore_toggle = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
gain_adjustment.set_value (value);
|
|
|
|
ignore_toggle = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-03-30 11:18:43 -04:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&GainMeterBase::effective_gain_display, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::set_meter_strip_name (const char * name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-07-28 16:34:28 -04:00
|
|
|
char tmp[256];
|
2005-09-25 14:42:24 -04:00
|
|
|
meter_metric_area.set_name (name);
|
2013-07-28 16:34:28 -04:00
|
|
|
sprintf(tmp, "Mark%sLeft", name);
|
|
|
|
meter_ticks1_area.set_name (tmp);
|
|
|
|
sprintf(tmp, "Mark%sRight", name);
|
|
|
|
meter_ticks2_area.set_name (tmp);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::set_fader_name (const char * name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-01-11 13:33:57 -05:00
|
|
|
gain_slider->set_name (name);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::update_gain_sensitive ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-07-21 10:39:21 -04:00
|
|
|
bool x = !(_amp->gain_control()->alist()->automation_state() & Play);
|
2009-07-12 20:26:28 -04:00
|
|
|
static_cast<Gtkmm2ext::SliderController*>(gain_slider)->set_sensitive (x);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static MeterPoint
|
|
|
|
next_meter_point (MeterPoint mp)
|
|
|
|
{
|
|
|
|
switch (mp) {
|
|
|
|
case MeterInput:
|
|
|
|
return MeterPreFader;
|
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case MeterPreFader:
|
|
|
|
return MeterPostFader;
|
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case MeterPostFader:
|
2011-02-22 12:04:06 -05:00
|
|
|
return MeterOutput;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MeterOutput:
|
2009-11-18 15:01:37 -05:00
|
|
|
return MeterCustom;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MeterCustom:
|
2011-06-01 13:00:29 -04:00
|
|
|
return MeterInput;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
2009-11-18 15:01:37 -05:00
|
|
|
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2005-09-25 14:42:24 -04:00
|
|
|
return MeterInput;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::meter_press(GdkEventButton* ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
wait_for_release = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
if (!_route) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ignore_toggle) {
|
|
|
|
|
|
|
|
if (Keyboard::is_context_menu_event (ev)) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// no menu at this time.
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (Keyboard::is_button2_event(ev)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
// Primary-button2 click is the midi binding click
|
2005-09-25 14:42:24 -04:00
|
|
|
// button2-click is "momentary"
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
if (!Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier))) {
|
2005-09-25 14:42:24 -04:00
|
|
|
wait_for_release = true;
|
|
|
|
old_meter_point = _route->meter_point ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
if (_route && (ev->button == 1 || Keyboard::is_button2_event (ev))) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
if (Keyboard::modifier_state_equals (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::TertiaryModifier))) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
/* Primary+Tertiary-click applies change to all routes */
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->foreach_route (this, &GainMeterBase::set_meter_point, next_meter_point (_route->meter_point()));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
} else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
/* Primary-click: solo mix group.
|
|
|
|
NOTE: Primary-button2 is MIDI learn.
|
2005-09-25 14:42:24 -04:00
|
|
|
*/
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (ev->button == 1) {
|
2011-01-09 10:10:59 -05:00
|
|
|
set_route_group_meter_point (*_route, next_meter_point (_route->meter_point()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
/* click: change just this route */
|
|
|
|
|
|
|
|
// XXX no undo yet
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-04-03 09:40:34 -04:00
|
|
|
_route->set_meter_point (next_meter_point (_route->meter_point()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2009-07-21 11:55:17 -04:00
|
|
|
GainMeterBase::meter_release(GdkEventButton*)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2011-02-19 19:55:32 -05:00
|
|
|
if (!ignore_toggle) {
|
|
|
|
if (wait_for_release) {
|
2005-09-25 14:42:24 -04:00
|
|
|
wait_for_release = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
if (_route) {
|
|
|
|
set_meter_point (*_route, old_meter_point);
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2006-03-12 13:21:48 -05:00
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::set_meter_point (Route& route, MeterPoint mp)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-04-03 09:40:34 -04:00
|
|
|
route.set_meter_point (mp);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-01-09 10:10:59 -05:00
|
|
|
GainMeterBase::set_route_group_meter_point (Route& route, MeterPoint mp)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2011-01-09 10:10:59 -05:00
|
|
|
RouteGroup* route_group;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2011-01-09 10:10:59 -05:00
|
|
|
if ((route_group = route.route_group ()) != 0) {
|
|
|
|
route_group->foreach_route (boost::bind (&Route::set_meter_point, _1, mp, false));
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2010-04-03 09:40:34 -04:00
|
|
|
route.set_meter_point (mp);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::meter_point_clicked ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-06-09 16:21:19 -04:00
|
|
|
if (_route) {
|
2008-09-10 11:03:30 -04:00
|
|
|
/* WHAT? */
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-04 20:38:24 -04:00
|
|
|
void
|
|
|
|
GainMeterBase::amp_start_touch ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2014-09-04 20:38:24 -04:00
|
|
|
_amp->gain_control()->start_touch (_amp->session().transport_frame());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2014-09-04 20:38:24 -04:00
|
|
|
void
|
|
|
|
GainMeterBase::amp_stop_touch ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-08-19 17:09:40 -04:00
|
|
|
_amp->gain_control()->stop_touch (false, _amp->session().transport_frame());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
gint
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_automation_state_button_event (GdkEventButton *ev)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
if (ev->type == GDK_BUTTON_RELEASE) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
gain_astate_menu.popup (1, ev->time);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_automation_style_button_event (GdkEventButton *ev)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
if (ev->type == GDK_BUTTON_RELEASE) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
gain_astyle_menu.popup (1, ev->time);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::astate_string (AutoState state)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
return _astate_string (state, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::short_astate_string (AutoState state)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
return _astate_string (state, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::_astate_string (AutoState state, bool shrt)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
string sstr;
|
|
|
|
|
|
|
|
switch (state) {
|
2012-02-07 12:43:55 -05:00
|
|
|
case ARDOUR::Off:
|
2007-03-18 02:07:08 -04:00
|
|
|
sstr = (shrt ? "M" : _("M"));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Play:
|
|
|
|
sstr = (shrt ? "P" : _("P"));
|
|
|
|
break;
|
|
|
|
case Touch:
|
|
|
|
sstr = (shrt ? "T" : _("T"));
|
|
|
|
break;
|
|
|
|
case Write:
|
|
|
|
sstr = (shrt ? "W" : _("W"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::astyle_string (AutoStyle style)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
return _astyle_string (style, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::short_astyle_string (AutoStyle style)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
return _astyle_string (style, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
string
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::_astyle_string (AutoStyle style, bool shrt)
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
if (style & Trim) {
|
|
|
|
return _("Trim");
|
|
|
|
} else {
|
|
|
|
/* XXX it might different in different languages */
|
|
|
|
|
|
|
|
return (shrt ? _("Abs") : _("Abs"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_automation_style_changed ()
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
|
|
|
switch (_width) {
|
|
|
|
case Wide:
|
2012-12-07 17:38:49 -05:00
|
|
|
gain_automation_style_button.set_text (astyle_string(_amp->gain_control()->alist()->automation_style()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
2012-12-07 17:38:49 -05:00
|
|
|
gain_automation_style_button.set_text (short_astyle_string(_amp->gain_control()->alist()->automation_style()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::gain_automation_state_changed ()
|
2006-05-19 13:29:05 -04:00
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &GainMeterBase::gain_automation_state_changed)
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
bool x;
|
|
|
|
|
|
|
|
switch (_width) {
|
|
|
|
case Wide:
|
2012-12-07 17:38:49 -05:00
|
|
|
gain_automation_state_button.set_text (astate_string(_amp->gain_control()->alist()->automation_state()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
2012-12-07 17:38:49 -05:00
|
|
|
gain_automation_state_button.set_text (short_astate_string(_amp->gain_control()->alist()->automation_state()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-02-07 12:43:55 -05:00
|
|
|
x = (_amp->gain_control()->alist()->automation_state() != ARDOUR::Off);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
if (gain_automation_state_button.get_active() != x) {
|
|
|
|
ignore_toggle = true;
|
|
|
|
gain_automation_state_button.set_active (x);
|
|
|
|
ignore_toggle = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
update_gain_sensitive ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
/* start watching automation so that things move */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
gain_watching.disconnect();
|
|
|
|
|
|
|
|
if (x) {
|
2014-12-25 10:02:00 -05:00
|
|
|
gain_watching = Timers::rapid_connect (sigc::mem_fun (*this, &GainMeterBase::effective_gain_display));
|
2006-05-19 13:29:05 -04:00
|
|
|
}
|
|
|
|
}
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2014-10-23 08:25:05 -04:00
|
|
|
const ChanCount
|
|
|
|
GainMeterBase::meter_channels() const
|
|
|
|
{
|
|
|
|
if (_meter) { return _meter->input_streams(); }
|
|
|
|
else { return ChanCount(); }
|
|
|
|
}
|
2008-04-11 10:06:50 -04:00
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::update_meters()
|
2008-01-10 16:20:59 -05:00
|
|
|
{
|
2008-04-11 10:06:50 -04:00
|
|
|
char buf[32];
|
|
|
|
float mpeak = level_meter->update_meters();
|
|
|
|
|
|
|
|
if (mpeak > max_peak) {
|
|
|
|
max_peak = mpeak;
|
|
|
|
if (mpeak <= -200.0f) {
|
2014-07-30 13:30:15 -04:00
|
|
|
peak_display.set_text (_("-inf"));
|
2008-04-11 10:06:50 -04:00
|
|
|
} else {
|
|
|
|
snprintf (buf, sizeof(buf), "%.1f", mpeak);
|
2014-07-30 13:30:15 -04:00
|
|
|
peak_display.set_text (buf);
|
2008-04-11 10:06:50 -04:00
|
|
|
}
|
2013-07-06 10:09:38 -04:00
|
|
|
}
|
2014-12-22 13:39:41 -05:00
|
|
|
if (mpeak >= ARDOUR_UI::config()->get_meter_peak()) {
|
2014-10-28 10:12:01 -04:00
|
|
|
peak_display.set_name ("MixerStripPeakDisplayPeak");
|
2008-01-10 16:20:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 23:26:46 -04:00
|
|
|
void GainMeterBase::color_handler(bool /*dpi*/)
|
2008-01-10 16:20:59 -05:00
|
|
|
{
|
|
|
|
setup_meters();
|
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
GainMeterBase::set_width (Width w, int len)
|
|
|
|
{
|
|
|
|
_width = w;
|
2013-07-02 12:28:59 -04:00
|
|
|
int meter_width = 5;
|
2013-07-02 19:07:50 -04:00
|
|
|
if (_width == Wide && _route && _route->shared_peak_meter()->input_streams().n_total() == 1) {
|
2013-07-02 12:28:59 -04:00
|
|
|
meter_width = 10;
|
|
|
|
}
|
|
|
|
level_meter->setup_meters(len, meter_width);
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeterBase::on_theme_changed()
|
|
|
|
{
|
2013-07-05 16:18:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeterBase::redraw_metrics()
|
|
|
|
{
|
2013-07-05 07:58:14 -04:00
|
|
|
meter_metric_area.queue_draw ();
|
2013-07-05 08:55:07 -04:00
|
|
|
meter_ticks1_area.queue_draw ();
|
|
|
|
meter_ticks2_area.queue_draw ();
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
2015-04-22 15:34:27 -04:00
|
|
|
#define PX_SCALE(pxmin, dflt) rint(std::max((double)pxmin, (double)dflt * ARDOUR_UI::ui_scale))
|
2015-04-19 23:35:23 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
GainMeter::GainMeter (Session* s, int fader_length)
|
2013-01-11 13:33:57 -05:00
|
|
|
: GainMeterBase (s, false, fader_length, 24)
|
2011-05-18 03:05:30 -04:00
|
|
|
, gain_display_box(true, 0)
|
2011-05-18 02:53:24 -04:00
|
|
|
, hbox(true, 2)
|
2008-09-10 11:03:30 -04:00
|
|
|
{
|
2013-01-21 09:24:57 -05:00
|
|
|
if (gain_display.get_parent()) {
|
|
|
|
gain_display.get_parent()->remove (gain_display);
|
|
|
|
}
|
|
|
|
gain_display_box.pack_start (gain_display, true, true);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2014-01-18 07:50:23 -05:00
|
|
|
if (peak_display.get_parent()) {
|
|
|
|
peak_display.get_parent()->remove (gain_display);
|
|
|
|
}
|
|
|
|
gain_display_box.pack_start (peak_display, true, true);
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
meter_metric_area.set_name ("AudioTrackMetrics");
|
2015-04-19 23:35:23 -04:00
|
|
|
meter_metric_area.set_size_request(PX_SCALE(24, 24), -1);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2012-12-07 17:38:49 -05:00
|
|
|
gain_automation_style_button.set_name ("mixer strip button");
|
|
|
|
gain_automation_state_button.set_name ("mixer strip button");
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2010-02-08 19:50:24 -05:00
|
|
|
ARDOUR_UI::instance()->set_tip (gain_automation_state_button, _("Fader automation mode"));
|
|
|
|
ARDOUR_UI::instance()->set_tip (gain_automation_style_button, _("Fader automation type"));
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
gain_automation_style_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
gain_automation_state_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
|
2015-04-19 23:35:23 -04:00
|
|
|
gain_automation_state_button.set_size_request (PX_SCALE(12, 15), PX_SCALE(12, 15));
|
|
|
|
gain_automation_style_button.set_size_request (PX_SCALE(12, 15), PX_SCALE(12, 15));
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
fader_vbox = manage (new Gtk::VBox());
|
|
|
|
fader_vbox->set_spacing (0);
|
2011-05-18 02:53:24 -04:00
|
|
|
fader_vbox->pack_start (*gain_slider, true, true);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2011-05-18 02:53:24 -04:00
|
|
|
fader_alignment.set (0.5, 0.5, 0.0, 1.0);
|
|
|
|
fader_alignment.add (*fader_vbox);
|
|
|
|
|
|
|
|
hbox.pack_start (fader_alignment, true, true);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2015-04-19 23:35:23 -04:00
|
|
|
set_spacing (PX_SCALE(2, 2));
|
2008-12-08 11:07:28 -05:00
|
|
|
|
|
|
|
pack_start (gain_display_box, Gtk::PACK_SHRINK);
|
|
|
|
pack_start (hbox, Gtk::PACK_SHRINK);
|
|
|
|
|
2011-05-18 02:53:24 -04:00
|
|
|
meter_alignment.set (0.5, 0.5, 0.0, 1.0);
|
|
|
|
meter_alignment.add (*level_meter);
|
|
|
|
|
|
|
|
meter_metric_area.signal_expose_event().connect (
|
|
|
|
sigc::mem_fun(*this, &GainMeter::meter_metrics_expose));
|
2013-07-05 08:55:07 -04:00
|
|
|
|
2015-04-19 23:35:23 -04:00
|
|
|
meter_ticks1_area.set_size_request (PX_SCALE(3, 3), -1);
|
|
|
|
meter_ticks2_area.set_size_request (PX_SCALE(3, 3), -1);
|
2013-07-05 08:55:07 -04:00
|
|
|
|
|
|
|
meter_ticks1_area.signal_expose_event().connect (
|
|
|
|
sigc::mem_fun(*this, &GainMeter::meter_ticks1_expose));
|
|
|
|
meter_ticks2_area.signal_expose_event().connect (
|
|
|
|
sigc::mem_fun(*this, &GainMeter::meter_ticks2_expose));
|
|
|
|
|
|
|
|
meter_hbox.pack_start (meter_ticks1_area, false, false);
|
2013-07-10 09:11:51 -04:00
|
|
|
meter_hbox.pack_start (meter_alignment, false, false);
|
2013-07-05 08:55:07 -04:00
|
|
|
meter_hbox.pack_start (meter_ticks2_area, false, false);
|
2013-07-17 17:33:23 -04:00
|
|
|
meter_hbox.pack_start (meter_metric_area, false, false);
|
2008-12-08 11:07:28 -05:00
|
|
|
}
|
2015-04-19 23:35:23 -04:00
|
|
|
#undef PX_SCALE
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2013-07-18 03:00:24 -04:00
|
|
|
GainMeter::~GainMeter () { }
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
void
|
2009-06-09 16:21:19 -04:00
|
|
|
GainMeter::set_controls (boost::shared_ptr<Route> r,
|
|
|
|
boost::shared_ptr<PeakMeter> meter,
|
2009-07-21 10:39:21 -04:00
|
|
|
boost::shared_ptr<Amp> amp)
|
2008-12-08 11:07:28 -05:00
|
|
|
{
|
2013-07-10 09:13:08 -04:00
|
|
|
if (meter_hbox.get_parent()) {
|
2013-07-05 08:55:07 -04:00
|
|
|
hbox.remove (meter_hbox);
|
2008-12-08 11:07:28 -05:00
|
|
|
}
|
|
|
|
|
2012-12-07 17:38:49 -05:00
|
|
|
// if (gain_automation_state_button.get_parent()) {
|
|
|
|
// fader_vbox->remove (gain_automation_state_button);
|
|
|
|
// }
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2009-07-21 10:39:21 -04:00
|
|
|
GainMeterBase::set_controls (r, meter, amp);
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
if (_meter) {
|
|
|
|
_meter->ConfigurationChanged.connect (
|
2012-04-25 08:58:19 -04:00
|
|
|
model_connections, invalidator (*this), boost::bind (&GainMeter::meter_configuration_changed, this, _1), gui_context()
|
2010-12-28 19:55:25 -05:00
|
|
|
);
|
2013-07-07 08:39:26 -04:00
|
|
|
_meter->TypeChanged.connect (
|
|
|
|
model_connections, invalidator (*this), boost::bind (&GainMeter::meter_type_changed, this, _1), gui_context()
|
|
|
|
);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
meter_configuration_changed (_meter->input_streams ());
|
|
|
|
}
|
|
|
|
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2013-07-18 03:00:24 -04:00
|
|
|
if (_route) {
|
|
|
|
_route->active_changed.connect (model_connections, invalidator (*this), boost::bind (&GainMeter::route_active_changed, this), gui_context ());
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
/*
|
|
|
|
if we have a non-hidden route (ie. we're not the click or the auditioner),
|
2009-06-09 16:21:19 -04:00
|
|
|
pack some route-dependent stuff.
|
|
|
|
*/
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2013-07-05 08:55:07 -04:00
|
|
|
hbox.pack_start (meter_hbox, true, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2013-04-06 16:04:02 -04:00
|
|
|
// if (r && !r->is_auditioner()) {
|
2012-12-07 17:38:49 -05:00
|
|
|
// fader_vbox->pack_start (gain_automation_state_button, false, false, 0);
|
|
|
|
// }
|
2009-07-12 20:26:28 -04:00
|
|
|
|
|
|
|
hbox.show_all ();
|
2013-07-05 08:55:07 -04:00
|
|
|
setup_meters ();
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
GainMeter::get_gm_width ()
|
|
|
|
{
|
|
|
|
Gtk::Requisition sz;
|
2013-07-10 11:13:45 -04:00
|
|
|
int min_w = 0;
|
2014-03-18 17:51:44 -04:00
|
|
|
sz.width = 0;
|
2013-07-10 11:13:45 -04:00
|
|
|
meter_metric_area.size_request (sz);
|
|
|
|
min_w += sz.width;
|
|
|
|
level_meter->size_request (sz);
|
|
|
|
min_w += sz.width;
|
|
|
|
|
|
|
|
fader_alignment.size_request (sz);
|
2013-07-10 12:38:25 -04:00
|
|
|
if (_width == Wide)
|
|
|
|
return max(sz.width * 2, min_w * 2) + 6;
|
|
|
|
else
|
2013-07-17 17:33:23 -04:00
|
|
|
return sz.width + min_w + 6;
|
2013-07-10 12:38:25 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_metrics_expose (GdkEventExpose *ev)
|
|
|
|
{
|
2013-07-24 18:06:12 -04:00
|
|
|
if (!_route) {
|
|
|
|
if (_types.empty()) { _types.push_back(DataType::AUDIO); }
|
|
|
|
return meter_expose_metrics(ev, MeterPeak, _types, &meter_metric_area);
|
|
|
|
}
|
2013-07-22 12:45:08 -04:00
|
|
|
return meter_expose_metrics(ev, _route->meter_type(), _types, &meter_metric_area);
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
2013-07-05 08:55:07 -04:00
|
|
|
gint
|
|
|
|
GainMeter::meter_ticks1_expose (GdkEventExpose *ev)
|
|
|
|
{
|
2013-07-24 18:06:12 -04:00
|
|
|
if (!_route) {
|
|
|
|
if (_types.empty()) { _types.push_back(DataType::AUDIO); }
|
|
|
|
return meter_expose_ticks(ev, MeterPeak, _types, &meter_ticks1_area);
|
|
|
|
}
|
2013-07-22 12:45:08 -04:00
|
|
|
return meter_expose_ticks(ev, _route->meter_type(), _types, &meter_ticks1_area);
|
2013-07-05 08:55:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_ticks2_expose (GdkEventExpose *ev)
|
|
|
|
{
|
2013-07-24 18:06:12 -04:00
|
|
|
if (!_route) {
|
|
|
|
if (_types.empty()) { _types.push_back(DataType::AUDIO); }
|
|
|
|
return meter_expose_ticks(ev, MeterPeak, _types, &meter_ticks2_area);
|
|
|
|
}
|
2013-07-22 12:45:08 -04:00
|
|
|
return meter_expose_ticks(ev, _route->meter_type(), _types, &meter_ticks2_area);
|
2013-07-05 08:55:07 -04:00
|
|
|
}
|
|
|
|
|
2014-08-29 22:17:10 -04:00
|
|
|
void
|
|
|
|
GainMeter::on_style_changed (const Glib::RefPtr<Gtk::Style>&)
|
|
|
|
{
|
|
|
|
gain_display.queue_draw();
|
|
|
|
peak_display.queue_draw();
|
|
|
|
}
|
|
|
|
|
2009-01-30 15:18:31 -05:00
|
|
|
boost::shared_ptr<PBD::Controllable>
|
|
|
|
GainMeterBase::get_controllable()
|
|
|
|
{
|
2009-07-21 10:39:21 -04:00
|
|
|
if (_amp) {
|
|
|
|
return _amp->gain_control();
|
|
|
|
} else {
|
|
|
|
return boost::shared_ptr<PBD::Controllable>();
|
|
|
|
}
|
2009-01-30 15:18:31 -05:00
|
|
|
}
|
|
|
|
|
2011-11-13 10:12:34 -05:00
|
|
|
bool
|
|
|
|
GainMeterBase::level_meter_button_press (GdkEventButton* ev)
|
|
|
|
{
|
2015-04-28 08:32:59 -04:00
|
|
|
return static_cast<bool>(LevelMeterButtonPress (ev)); /* EMIT SIGNAL */
|
2011-11-13 10:12:34 -05:00
|
|
|
}
|
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
void
|
|
|
|
GainMeter::meter_configuration_changed (ChanCount c)
|
|
|
|
{
|
2013-06-23 08:23:47 -04:00
|
|
|
int type = 0;
|
2010-12-28 19:55:25 -05:00
|
|
|
_types.clear ();
|
2009-01-30 15:18:31 -05:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
|
|
|
|
if (c.get (*i) > 0) {
|
|
|
|
_types.push_back (*i);
|
2013-06-23 08:23:47 -04:00
|
|
|
type |= 1 << (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 11:19:49 -04:00
|
|
|
if (_route
|
|
|
|
&& boost::dynamic_pointer_cast<AudioTrack>(_route) == 0
|
2013-06-23 08:23:47 -04:00
|
|
|
&& boost::dynamic_pointer_cast<MidiTrack>(_route) == 0
|
|
|
|
) {
|
|
|
|
if (_route->active()) {
|
|
|
|
set_meter_strip_name ("AudioBusMetrics");
|
|
|
|
} else {
|
|
|
|
set_meter_strip_name ("AudioBusMetricsInactive");
|
|
|
|
}
|
|
|
|
}
|
2013-07-18 03:00:24 -04:00
|
|
|
else if (
|
|
|
|
(type == (1 << DataType::MIDI))
|
|
|
|
|| (_route && boost::dynamic_pointer_cast<MidiTrack>(_route))
|
|
|
|
) {
|
2013-06-29 11:19:49 -04:00
|
|
|
if (!_route || _route->active()) {
|
2013-07-18 03:00:24 -04:00
|
|
|
set_meter_strip_name ("MidiTrackMetrics");
|
2013-06-23 08:23:47 -04:00
|
|
|
} else {
|
2013-07-18 03:00:24 -04:00
|
|
|
set_meter_strip_name ("MidiTrackMetricsInactive");
|
2013-06-23 08:23:47 -04:00
|
|
|
}
|
|
|
|
}
|
2013-07-18 03:00:24 -04:00
|
|
|
else if (type == (1 << DataType::AUDIO)) {
|
2013-06-29 11:19:49 -04:00
|
|
|
if (!_route || _route->active()) {
|
2013-07-18 03:00:24 -04:00
|
|
|
set_meter_strip_name ("AudioTrackMetrics");
|
2013-06-23 08:23:47 -04:00
|
|
|
} else {
|
2013-07-18 03:00:24 -04:00
|
|
|
set_meter_strip_name ("AudioTrackMetricsInactive");
|
2013-06-23 08:23:47 -04:00
|
|
|
}
|
|
|
|
} else {
|
2013-06-29 11:19:49 -04:00
|
|
|
if (!_route || _route->active()) {
|
2013-06-23 08:23:47 -04:00
|
|
|
set_meter_strip_name ("AudioMidiTrackMetrics");
|
|
|
|
} else {
|
|
|
|
set_meter_strip_name ("AudioMidiTrackMetricsInactive");
|
2010-12-28 19:55:25 -05:00
|
|
|
}
|
|
|
|
}
|
2013-07-19 04:37:00 -04:00
|
|
|
|
|
|
|
setup_meters();
|
2013-07-14 05:34:31 -04:00
|
|
|
meter_clear_pattern_cache(4);
|
2014-08-29 22:17:10 -04:00
|
|
|
on_style_changed(Glib::RefPtr<Gtk::Style>());
|
2010-12-28 19:55:25 -05:00
|
|
|
}
|
2011-11-13 10:12:34 -05:00
|
|
|
|
2013-07-18 03:00:24 -04:00
|
|
|
void
|
|
|
|
GainMeter::route_active_changed ()
|
|
|
|
{
|
|
|
|
if (_meter) {
|
|
|
|
meter_configuration_changed (_meter->input_streams ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-07 08:39:26 -04:00
|
|
|
void
|
|
|
|
GainMeter::meter_type_changed (MeterType t)
|
|
|
|
{
|
|
|
|
_route->set_meter_type(t);
|
2013-07-22 12:45:08 -04:00
|
|
|
RedrawMetrics();
|
2013-07-07 08:39:26 -04:00
|
|
|
}
|