Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
/*
|
|
Copyright (C) 2006,2007 John Anderson
|
|
|
|
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 "route_signal.h"
|
|
|
|
#include <ardour/route.h>
|
|
#include <ardour/track.h>
|
|
#include <ardour/panner.h>
|
|
#include <ardour/types.h>
|
|
|
|
#include "mackie_control_protocol.h"
|
|
|
|
#include <stdexcept>
|
|
|
|
using namespace Mackie;
|
|
|
|
void RouteSignal::connect()
|
|
{
|
|
if ( _strip.has_solo() )
|
|
_solo_changed_connection = _route.solo_control()->Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_solo_changed ), this ) );
|
|
|
|
if ( _strip.has_mute() )
|
|
_mute_changed_connection = _route.mute_control()->Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_mute_changed ), this ) );
|
|
|
|
if ( _strip.has_gain() )
|
|
_gain_changed_connection = _route.control(ARDOUR::GainAutomation)->Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_gain_changed ), this ) );
|
|
|
|
_name_changed_connection = _route.NameChanged.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_name_changed ), this ) );
|
|
|
|
if ( _route.panner().size() == 1 )
|
|
{
|
|
_panner_changed_connection = _route.panner()[0]->Changed.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_panner_changed ), this ) );
|
|
}
|
|
|
|
try
|
|
{
|
|
_record_enable_changed_connection =
|
|
dynamic_cast<ARDOUR::Track&>( _route ).rec_enable_control()->Changed
|
|
.connect( sigc::bind ( mem_fun ( _mcp, &MackieControlProtocol::notify_record_enable_changed ), this ) )
|
|
;
|
|
}
|
|
catch ( std::bad_cast & )
|
|
{
|
|
// this should catch the dynamic_cast to Track, if what we're working
|
|
// with can't be record-enabled
|
|
}
|
|
|
|
// TODO
|
|
// active_changed
|
|
// SelectedChanged
|
|
// RemoteControlIDChanged. Better handled at Session level.
|
|
}
|
|
|
|
void RouteSignal::disconnect()
|
|
{
|
|
_solo_changed_connection.disconnect();
|
|
_mute_changed_connection.disconnect();
|
|
_gain_changed_connection.disconnect();
|
|
_name_changed_connection.disconnect();
|
|
_panner_changed_connection.disconnect();
|
|
_record_enable_changed_connection.disconnect();
|
|
}
|
|
|
|
void RouteSignal::notify_all()
|
|
{
|
|
if ( _strip.has_solo() )
|
|
_mcp.notify_solo_changed( this );
|
|
|
|
if ( _strip.has_mute() )
|
|
_mcp.notify_mute_changed( this );
|
|
|
|
if ( _strip.has_gain() )
|
|
_mcp.notify_gain_changed( this );
|
|
|
|
_mcp.notify_name_changed( this );
|
|
|
|
if ( _strip.has_vpot() )
|
|
_mcp.notify_panner_changed( this );
|
|
|
|
if ( _strip.has_recenable() )
|
|
_mcp.notify_record_enable_changed( this );
|
|
}
|