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
|
|
|
|
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>
|
|
|
|
#include <gtkmm2ext/barcontroller.h>
|
2007-06-27 08:12:34 -04:00
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "midi++/manager.h"
|
|
|
|
#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"
|
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"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
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;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
sigc::signal<void> GainMeterBase::ResetAllPeakDisplays;
|
|
|
|
sigc::signal<void,RouteGroup*> GainMeterBase::ResetGroupPeakDisplays;
|
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
GainMeter::MetricPatterns GainMeter::metric_patterns;
|
2008-09-10 11:03:30 -04:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf> GainMeter::slider;
|
2012-05-31 20:41:28 -04:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf> GainMeter::slider_desensitised;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
void
|
2005-09-25 14:42:24 -04:00
|
|
|
GainMeter::setup_slider_pix ()
|
|
|
|
{
|
2008-09-10 11:03:30 -04:00
|
|
|
if ((slider = ::get_icon ("fader_belt")) == 0) {
|
|
|
|
throw failed_constructor();
|
|
|
|
}
|
2012-05-31 20:41:28 -04:00
|
|
|
|
|
|
|
if ((slider_desensitised = ::get_icon ("fader_belt_desensitised")) == 0) {
|
|
|
|
throw failed_constructor();
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
GainMeterBase::GainMeterBase (Session* s,
|
2008-09-10 11:03:30 -04:00
|
|
|
const Glib::RefPtr<Gdk::Pixbuf>& pix,
|
2012-05-31 20:41:28 -04:00
|
|
|
const Glib::RefPtr<Gdk::Pixbuf>& pix_desensitised,
|
2009-12-04 12:45:11 -05:00
|
|
|
bool horizontal,
|
|
|
|
int fader_length)
|
2011-06-19 19:02:55 -04:00
|
|
|
: gain_adjustment (gain_to_slider_position_with_max (1.0, Config->get_max_gain()), 0.0, 1.0, 0.01, 0.1)
|
2009-07-22 23:01:31 -04:00
|
|
|
, gain_automation_style_button ("")
|
|
|
|
, gain_automation_state_button ("")
|
2010-12-09 16:35:25 -05:00
|
|
|
, style_changed (false)
|
2009-07-22 23:01:31 -04:00
|
|
|
, dpi_changed (false)
|
2011-10-19 05:56:00 -04:00
|
|
|
, _data_type (DataType::AUDIO)
|
2009-10-14 12:10:01 -04:00
|
|
|
|
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
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
if (horizontal) {
|
2011-06-01 13:00:29 -04:00
|
|
|
gain_slider = manage (new HSliderController (pix,
|
2012-05-31 20:41:28 -04:00
|
|
|
pix_desensitised,
|
2008-09-10 11:03:30 -04:00
|
|
|
&gain_adjustment,
|
2009-12-04 12:45:11 -05:00
|
|
|
fader_length,
|
2008-09-10 11:03:30 -04:00
|
|
|
false));
|
|
|
|
} else {
|
|
|
|
gain_slider = manage (new VSliderController (pix,
|
2012-05-31 20:41:28 -04:00
|
|
|
pix_desensitised,
|
2008-09-10 11:03:30 -04:00
|
|
|
&gain_adjustment,
|
2009-12-04 12:45:11 -05:00
|
|
|
fader_length,
|
2008-09-10 11:03:30 -04:00
|
|
|
false));
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
level_meter = new LevelMeter(_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);
|
|
|
|
|
2011-01-10 18:33:26 -05:00
|
|
|
gain_slider->signal_button_press_event().connect (sigc::mem_fun(*this, &GainMeter::gain_slider_button_press));
|
|
|
|
gain_slider->signal_button_release_event().connect (sigc::mem_fun(*this, &GainMeter::gain_slider_button_release));
|
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);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
peak_display.set_name ("MixerStripPeakDisplay");
|
2011-05-18 03:05:30 -04:00
|
|
|
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();
|
2007-03-18 02:07:08 -04:00
|
|
|
peak_display.set_label (_("-inf"));
|
2007-01-09 18:24:54 -05:00
|
|
|
peak_display.unset_flags (Gtk::CAN_FOCUS);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-05-19 13:29:05 -04:00
|
|
|
gain_automation_style_button.set_name ("MixerAutomationModeButton");
|
|
|
|
gain_automation_state_button.set_name ("MixerAutomationPlaybackButton");
|
|
|
|
|
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));
|
|
|
|
ResetGroupPeakDisplays.connect (sigc::mem_fun(*this, &GainMeterBase::reset_group_peak_display));
|
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 ();
|
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
if (!_route || !_route->is_hidden()) {
|
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;
|
|
|
|
|
|
|
|
if (_amp->output_streams().n_midi() == 0) {
|
2011-10-19 05:56:00 -04:00
|
|
|
_data_type = DataType::AUDIO;
|
2011-08-19 13:52:32 -04: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);
|
|
|
|
gain_slider->set_default_value (gain_to_slider_position (1));
|
|
|
|
} 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);
|
|
|
|
gain_adjustment.set_upper (2.0);
|
|
|
|
gain_adjustment.set_step_increment (0.05);
|
|
|
|
gain_adjustment.set_page_increment (0.1);
|
|
|
|
gain_slider->set_default_value (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 ()
|
|
|
|
{
|
|
|
|
bool remove_metric_area = false;
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::hide_all_meters ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (remove_metric_area) {
|
|
|
|
if (meter_metric_area.get_parent()) {
|
2008-04-11 10:06:50 -04:00
|
|
|
level_meter->remove (meter_metric_area);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::setup_meters (int len)
|
|
|
|
{
|
|
|
|
level_meter->setup_meters(len, 5);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-04-11 10:06:50 -04:00
|
|
|
if (!meter_metric_area.get_parent()) {
|
|
|
|
level_meter->pack_end (meter_metric_area, false, false);
|
|
|
|
meter_metric_area.show_all ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::setup_meters (len);
|
2007-03-18 02:07:08 -04:00
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
reset_peak_display ();
|
|
|
|
}
|
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;
|
2007-03-18 02:07:08 -04:00
|
|
|
peak_display.set_label (_("-Inf"));
|
2006-08-30 22:28:42 -04:00
|
|
|
peak_display.set_name ("MixerStripPeakDisplay");
|
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;
|
|
|
|
|
|
|
|
if (sscanf (gain_display.get_text().c_str(), "%f", &f) == 1) {
|
|
|
|
|
|
|
|
/* clamp to displayable values */
|
|
|
|
|
|
|
|
f = min (f, 6.0f);
|
|
|
|
|
2009-07-21 10:39:21 -04:00
|
|
|
_amp->set_gain (dB_to_coefficient(f), this);
|
2007-01-28 12:44:13 -05:00
|
|
|
|
|
|
|
if (gain_display.has_focus()) {
|
|
|
|
PublicEditor::instance().reset_focus();
|
|
|
|
}
|
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) {
|
|
|
|
strcpy (buf, _("-inf"));
|
|
|
|
} 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:
|
2009-07-22 23:01:31 -04: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
|
|
|
{
|
2011-10-19 06:01:37 -04:00
|
|
|
gain_t value = 0;
|
|
|
|
|
|
|
|
switch (_data_type) {
|
|
|
|
case DataType::AUDIO:
|
|
|
|
value = slider_position_to_gain_with_max (gain_adjustment.get_value(), Config->get_max_gain());
|
|
|
|
break;
|
|
|
|
case DataType::MIDI:
|
|
|
|
value = gain_adjustment.get_value ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2011-10-20 07:42:55 -04:00
|
|
|
float value = 0.0;
|
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:
|
2009-07-22 23:01:31 -04: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
|
|
|
{
|
|
|
|
meter_metric_area.set_name (name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase::set_fader_name (const char * name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2011-02-08 14:19:55 -05:00
|
|
|
uint32_t rgb_active = rgba_from_style (name, 0xff, 0, 0xff, 0, "bg", STATE_ACTIVE, false);
|
|
|
|
uint32_t rgb_normal = rgba_from_style (name, 0xff, 0xff, 0, 0, "bg", STATE_NORMAL, false);
|
|
|
|
|
|
|
|
gain_slider->set_border_colors (rgb_normal, rgb_active);
|
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
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/*NOTREACHED*/
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-10 18:33:26 -05:00
|
|
|
bool
|
|
|
|
GainMeterBase::gain_slider_button_press (GdkEventButton* ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2011-01-10 18:33:26 -05:00
|
|
|
switch (ev->type) {
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
_amp->gain_control()->start_touch (_amp->session().transport_frame());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2011-01-10 18:33:26 -05:00
|
|
|
bool
|
2011-09-30 13:55:14 -04:00
|
|
|
GainMeterBase::gain_slider_button_release (GdkEventButton*)
|
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());
|
2011-01-10 18:33:26 -05:00
|
|
|
return true;
|
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:
|
2009-07-21 10:39:21 -04:00
|
|
|
gain_automation_style_button.set_label (astyle_string(_amp->gain_control()->alist()->automation_style()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
2009-07-21 10:39:21 -04:00
|
|
|
gain_automation_style_button.set_label (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:
|
2009-07-21 10:39:21 -04:00
|
|
|
gain_automation_state_button.set_label (astate_string(_amp->gain_control()->alist()->automation_state()));
|
2006-05-19 13:29:05 -04:00
|
|
|
break;
|
|
|
|
case Narrow:
|
2009-07-21 10:39:21 -04:00
|
|
|
gain_automation_state_button.set_label (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) {
|
2009-12-11 18:29:48 -05:00
|
|
|
gain_watching = ARDOUR_UI::RapidScreenUpdate.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
|
|
|
|
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) {
|
|
|
|
peak_display.set_label (_("-inf"));
|
|
|
|
} else {
|
|
|
|
snprintf (buf, sizeof(buf), "%.1f", mpeak);
|
|
|
|
peak_display.set_label (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mpeak >= 0.0f) {
|
|
|
|
peak_display.set_name ("MixerStripPeakDisplayPeak");
|
|
|
|
}
|
2008-01-10 16:20:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
void GainMeterBase::color_handler(bool dpi)
|
2008-01-10 16:20:59 -05:00
|
|
|
{
|
|
|
|
color_changed = true;
|
2008-03-17 16:54:03 -04:00
|
|
|
dpi_changed = (dpi) ? true : false;
|
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;
|
|
|
|
level_meter->setup_meters (len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
GainMeterBase::on_theme_changed()
|
|
|
|
{
|
|
|
|
style_changed = true;
|
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
GainMeter::GainMeter (Session* s, int fader_length)
|
2012-05-31 20:41:28 -04:00
|
|
|
: GainMeterBase (s, slider, slider_desensitised, false, fader_length)
|
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
|
|
|
{
|
|
|
|
gain_display_box.pack_start (gain_display, true, true);
|
|
|
|
|
|
|
|
meter_metric_area.set_name ("AudioTrackMetrics");
|
2010-12-28 19:55:25 -05:00
|
|
|
set_size_request_to_display_given_text (meter_metric_area, "-127", 0, 0);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
gain_automation_style_button.set_name ("MixerAutomationModeButton");
|
|
|
|
gain_automation_state_button.set_name ("MixerAutomationPlaybackButton");
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
gain_automation_state_button.set_size_request(15, 15);
|
|
|
|
gain_automation_style_button.set_size_request(15, 15);
|
|
|
|
|
|
|
|
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
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
set_spacing (2);
|
|
|
|
|
|
|
|
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));
|
2008-12-08 11:07:28 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2011-05-18 02:53:24 -04:00
|
|
|
if (meter_alignment.get_parent()) {
|
|
|
|
hbox.remove (meter_alignment);
|
2008-12-08 11:07:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (peak_display.get_parent()) {
|
|
|
|
gain_display_box.remove (peak_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gain_automation_state_button.get_parent()) {
|
|
|
|
fader_vbox->remove (gain_automation_state_button);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
);
|
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
|
|
|
|
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
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
gain_display_box.pack_end (peak_display, true, true);
|
2011-05-18 02:53:24 -04:00
|
|
|
hbox.pack_start (meter_alignment, true, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-11-25 11:16:54 -05:00
|
|
|
if (r && !r->is_hidden()) {
|
2009-05-16 22:08:13 -04:00
|
|
|
fader_vbox->pack_start (gain_automation_state_button, false, false, 0);
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
2009-07-12 20:26:28 -04:00
|
|
|
|
|
|
|
setup_meters ();
|
|
|
|
hbox.show_all ();
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
GainMeter::get_gm_width ()
|
|
|
|
{
|
|
|
|
Gtk::Requisition sz;
|
|
|
|
hbox.size_request (sz);
|
|
|
|
return sz.width;
|
|
|
|
}
|
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_pattern_t*
|
2010-12-28 19:55:25 -05:00
|
|
|
GainMeter::render_metrics (Gtk::Widget& w, vector<DataType> types)
|
2008-09-10 11:03:30 -04:00
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Window> win (w.get_window());
|
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
gint width, height;
|
2008-09-10 11:03:30 -04:00
|
|
|
win->get_size (width, height);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_surface_t* surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, height);
|
|
|
|
cairo_t* cr = cairo_create (surface);
|
|
|
|
PangoLayout* layout = gtk_widget_create_pango_layout (w.gobj(), "");
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_move_to (cr, 0, 0);
|
|
|
|
cairo_rectangle (cr, 0, 0, width, height);
|
|
|
|
{
|
|
|
|
Gdk::Color c = w.get_style()->get_bg (Gtk::STATE_NORMAL);
|
|
|
|
cairo_set_source_rgb (cr, c.get_red_p(), c.get_green_p(), c.get_blue_p());
|
|
|
|
}
|
|
|
|
cairo_fill (cr);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
for (vector<DataType>::const_iterator i = types.begin(); i != types.end(); ++i) {
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2011-07-22 18:15:30 -04:00
|
|
|
Gdk::Color c;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
if (types.size() > 1) {
|
|
|
|
/* we're overlaying more than 1 set of marks, so use different colours */
|
|
|
|
Gdk::Color c;
|
|
|
|
switch (*i) {
|
|
|
|
case DataType::AUDIO:
|
2011-07-22 18:15:30 -04:00
|
|
|
c = w.get_style()->get_fg (Gtk::STATE_NORMAL);
|
|
|
|
cairo_set_source_rgb (cr, c.get_red_p(), c.get_green_p(), c.get_blue_p());
|
2010-12-28 19:55:25 -05:00
|
|
|
break;
|
|
|
|
case DataType::MIDI:
|
2011-07-22 18:15:30 -04:00
|
|
|
c = w.get_style()->get_fg (Gtk::STATE_ACTIVE);
|
|
|
|
cairo_set_source_rgb (cr, c.get_red_p(), c.get_green_p(), c.get_blue_p());
|
2010-12-28 19:55:25 -05:00
|
|
|
break;
|
|
|
|
}
|
2011-07-22 18:04:27 -04:00
|
|
|
} else {
|
2011-07-22 18:15:30 -04:00
|
|
|
c = w.get_style()->get_fg (Gtk::STATE_NORMAL);
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_set_source_rgb (cr, c.get_red_p(), c.get_green_p(), c.get_blue_p());
|
2010-12-28 19:55:25 -05:00
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
vector<int> points;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
switch (*i) {
|
|
|
|
case DataType::AUDIO:
|
|
|
|
points.push_back (-50);
|
|
|
|
points.push_back (-40);
|
|
|
|
points.push_back (-30);
|
|
|
|
points.push_back (-20);
|
|
|
|
points.push_back (-10);
|
|
|
|
points.push_back (-3);
|
|
|
|
points.push_back (0);
|
|
|
|
points.push_back (4);
|
|
|
|
break;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
case DataType::MIDI:
|
|
|
|
points.push_back (0);
|
|
|
|
if (types.size() == 1) {
|
|
|
|
points.push_back (32);
|
|
|
|
} else {
|
2011-06-01 13:00:29 -04:00
|
|
|
/* tweak so as not to overlay the -30dB mark */
|
2010-12-28 19:55:25 -05:00
|
|
|
points.push_back (48);
|
|
|
|
}
|
|
|
|
points.push_back (64);
|
|
|
|
points.push_back (96);
|
|
|
|
points.push_back (127);
|
|
|
|
break;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
char buf[32];
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
for (vector<int>::const_iterator j = points.begin(); j != points.end(); ++j) {
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
float fraction = 0;
|
|
|
|
switch (*i) {
|
|
|
|
case DataType::AUDIO:
|
|
|
|
fraction = log_meter (*j);
|
|
|
|
break;
|
|
|
|
case DataType::MIDI:
|
|
|
|
fraction = *j / 127.0;
|
|
|
|
break;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
gint const pos = height - (gint) floor (height * fraction);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_set_line_width (cr, 1.0);
|
|
|
|
cairo_move_to (cr, 0, pos);
|
|
|
|
cairo_line_to (cr, 4, pos);
|
|
|
|
cairo_stroke (cr);
|
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
snprintf (buf, sizeof (buf), "%d", abs (*j));
|
2011-07-22 18:04:27 -04:00
|
|
|
pango_layout_set_text (layout, buf, strlen (buf));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
/* we want logical extents, not ink extents here */
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
int tw, th;
|
2011-07-22 18:04:27 -04:00
|
|
|
pango_layout_get_pixel_size (layout, &tw, &th);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
int p = pos - (th / 2);
|
|
|
|
p = min (p, height - th);
|
|
|
|
p = max (p, 0);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_move_to (cr, 6, p);
|
|
|
|
pango_cairo_show_layout (cr, layout);
|
2010-12-28 19:55:25 -05:00
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_pattern_t* pattern = cairo_pattern_create_for_surface (surface);
|
|
|
|
MetricPatterns::iterator p;
|
|
|
|
|
|
|
|
if ((p = metric_patterns.find (w.get_name())) != metric_patterns.end()) {
|
|
|
|
cairo_pattern_destroy (p->second);
|
|
|
|
}
|
|
|
|
|
|
|
|
metric_patterns[w.get_name()] = pattern;
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
g_object_unref (layout);
|
|
|
|
|
|
|
|
return pattern;
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
GainMeter::meter_metrics_expose (GdkEventExpose *ev)
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Window> win (meter_metric_area.get_window());
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_t* cr;
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cr = gdk_cairo_create (win->gobj());
|
|
|
|
|
|
|
|
/* clip to expose area */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
gdk_cairo_rectangle (cr, &ev->area);
|
|
|
|
cairo_clip (cr);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_pattern_t* pattern;
|
|
|
|
MetricPatterns::iterator i = metric_patterns.find (meter_metric_area.get_name());
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
if (i == metric_patterns.end() || style_changed || dpi_changed) {
|
|
|
|
pattern = render_metrics (meter_metric_area, _types);
|
2008-09-10 11:03:30 -04:00
|
|
|
} else {
|
2011-07-22 18:04:27 -04:00
|
|
|
pattern = i->second;
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
2011-07-22 18:04:27 -04:00
|
|
|
cairo_move_to (cr, 0, 0);
|
|
|
|
cairo_set_source (cr, pattern);
|
|
|
|
|
|
|
|
gint width, height;
|
|
|
|
win->get_size (width, height);
|
|
|
|
|
|
|
|
cairo_rectangle (cr, 0, 0, width, height);
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
style_changed = false;
|
2011-07-22 18:04:27 -04:00
|
|
|
dpi_changed = false;
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
return LevelMeterButtonPress (ev); /* EMIT SIGNAL */
|
|
|
|
}
|
|
|
|
|
2010-12-28 19:55:25 -05:00
|
|
|
void
|
|
|
|
GainMeter::meter_configuration_changed (ChanCount c)
|
|
|
|
{
|
|
|
|
_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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
style_changed = true;
|
|
|
|
meter_metric_area.queue_draw ();
|
|
|
|
}
|
2011-11-13 10:12:34 -05:00
|
|
|
|