change the way ControlProtocols (control surfaces) are notified and handle Stripable selection changes

The Editor continues to notify them, but via a direct call to ControlProtocolManager, not a signal.
The CP Manager calls the ControlProtocol static method to set up static data structures holding
selection info for all surfaces and then notifies each surface/protocol that selection has changed.
This commit is contained in:
Paul Davis 2017-05-12 14:51:31 +01:00
parent efc2660fec
commit eb3f50e15c
23 changed files with 64 additions and 83 deletions

View file

@ -19,6 +19,6 @@ def build(bld):
obj = bld (features = 'cxx c cxxprogram') obj = bld (features = 'cxx c cxxprogram')
obj.source = 'cfgtool.cc' obj.source = 'cfgtool.cc'
obj.target = 'cfgtool' obj.target = 'cfgtool'
obj.use = [ 'libpbd', 'libardour' ] obj.use = [ 'libpbd', 'libardour', 'libardour_cp' ]
obj.uselib = [ 'GLIBMM', 'XML' ] obj.uselib = [ 'GLIBMM', 'XML' ]
obj.install_path = None obj.install_path = None

View file

@ -23,6 +23,7 @@
#include "pbd/stacktrace.h" #include "pbd/stacktrace.h"
#include "pbd/unwind.h" #include "pbd/unwind.h"
#include "ardour/control_protocol_manager.h"
#include "ardour/midi_region.h" #include "ardour/midi_region.h"
#include "ardour/playlist.h" #include "ardour/playlist.h"
#include "ardour/profile.h" #include "ardour/profile.h"
@ -30,8 +31,6 @@
#include "ardour/selection.h" #include "ardour/selection.h"
#include "ardour/session.h" #include "ardour/session.h"
#include "control_protocol/control_protocol.h"
#include "editor.h" #include "editor.h"
#include "editor_drag.h" #include "editor_drag.h"
#include "editor_routes.h" #include "editor_routes.h"
@ -1090,7 +1089,7 @@ Editor::presentation_info_changed (PropertyChange const & what_changed)
/* STEP 4: notify control protocols */ /* STEP 4: notify control protocols */
ControlProtocol::StripableSelectionChanged (stripables); ControlProtocolManager::instance().stripable_selection_changed (stripables);
if (sfbrowser && _session && !_session->deletion_in_progress()) { if (sfbrowser && _session && !_session->deletion_in_progress()) {
uint32_t audio_track_cnt = 0; uint32_t audio_track_cnt = 0;

View file

@ -27,6 +27,9 @@
#include <glibmm/threads.h> #include <glibmm/threads.h>
#include "pbd/stateful.h" #include "pbd/stateful.h"
#include "control_protocol/types.h"
#include "ardour/session_handle.h" #include "ardour/session_handle.h"
namespace ARDOUR { namespace ARDOUR {
@ -80,6 +83,8 @@ class LIBARDOUR_API ControlProtocolManager : public PBD::Stateful, public ARDOUR
PBD::Signal1<void,ControlProtocolInfo*> ProtocolStatusChange; PBD::Signal1<void,ControlProtocolInfo*> ProtocolStatusChange;
void stripable_selection_changed (ARDOUR::StripableNotificationListPtr);
private: private:
ControlProtocolManager (); ControlProtocolManager ();
static ControlProtocolManager* _instance; static ControlProtocolManager* _instance;

View file

@ -557,3 +557,26 @@ ControlProtocolManager::register_request_buffer_factories ()
} }
} }
} }
void
ControlProtocolManager::stripable_selection_changed (StripableNotificationListPtr sp)
{
/* this sets up the (static) data structures owned by ControlProtocol
that are "shared" across all control protocols.
*/
DEBUG_TRACE (DEBUG::Selection, string_compose ("Surface manager: selection changed, now %1 stripables\n", sp ? sp->size() : -1));
ControlProtocol::notify_stripable_selection_changed (sp);
/* now give each protocol the chance to respond to the selection change
*/
{
Glib::Threads::Mutex::Lock lm (protocols_lock);
for (list<ControlProtocol*>::iterator p = control_protocols.begin(); p != control_protocols.end(); ++p) {
DEBUG_TRACE (DEBUG::Selection, string_compose ("selection change notification for surface \"%1\"\n", (*p)->name()));
(*p)->stripable_selection_changed ();
}
}
}

View file

@ -115,8 +115,6 @@ CC121::CC121 (Session& s)
); );
StripableSelectionChanged.connect (selection_connection, MISSING_INVALIDATOR, boost::bind (&CC121::gui_track_selection_changed, this, _1), this);
/* Catch port connections and disconnections */ /* Catch port connections and disconnections */
ARDOUR::AudioEngine::instance()->PortConnectedOrDisconnected.connect (port_connection, MISSING_INVALIDATOR, boost::bind (&CC121::connection_handler, this, _1, _2, _3, _4, _5), this); ARDOUR::AudioEngine::instance()->PortConnectedOrDisconnected.connect (port_connection, MISSING_INVALIDATOR, boost::bind (&CC121::connection_handler, this, _1, _2, _3, _4, _5), this);
buttons.insert (std::make_pair (EButton, Button (*this, _("EButton"), EButton))); buttons.insert (std::make_pair (EButton, Button (*this, _("EButton"), EButton)));
@ -1040,15 +1038,9 @@ CC121::Button::get_state () const
} }
void void
CC121::gui_track_selection_changed (StripableNotificationListPtr stripables) CC121::stripable_selection_changed ()
{ {
boost::shared_ptr<Stripable> r; set_current_stripable (first_selected_stripable());
if (!stripables->empty()) {
r = stripables->front().lock();
}
set_current_stripable (r);
} }
void void

View file

@ -298,7 +298,7 @@ class CC121 : public ARDOUR::ControlProtocol, public AbstractUI<CC121Request> {
void drop_current_stripable (); void drop_current_stripable ();
void use_master (); void use_master ();
void use_monitor (); void use_monitor ();
void gui_track_selection_changed (ARDOUR::StripableNotificationListPtr); void stripable_selection_changed ();
PBD::ScopedConnection selection_connection; PBD::ScopedConnection selection_connection;
PBD::ScopedConnectionList stripable_connections; PBD::ScopedConnectionList stripable_connections;

View file

@ -56,14 +56,10 @@ PBD::Signal1<void,boost::shared_ptr<ARDOUR::Stripable> > ControlProtocol::Toggle
PBD::Signal1<void,boost::shared_ptr<ARDOUR::Stripable> > ControlProtocol::RemoveStripableFromSelection; PBD::Signal1<void,boost::shared_ptr<ARDOUR::Stripable> > ControlProtocol::RemoveStripableFromSelection;
PBD::Signal0<void> ControlProtocol::ClearStripableSelection; PBD::Signal0<void> ControlProtocol::ClearStripableSelection;
PBD::Signal1<void,StripableNotificationListPtr> ControlProtocol::StripableSelectionChanged;
Glib::Threads::Mutex ControlProtocol::special_stripable_mutex; Glib::Threads::Mutex ControlProtocol::special_stripable_mutex;
boost::weak_ptr<Stripable> ControlProtocol::_first_selected_stripable; boost::weak_ptr<Stripable> ControlProtocol::_first_selected_stripable;
boost::weak_ptr<Stripable> ControlProtocol::_leftmost_mixer_stripable; boost::weak_ptr<Stripable> ControlProtocol::_leftmost_mixer_stripable;
StripableNotificationList ControlProtocol::_last_selected; StripableNotificationList ControlProtocol::_last_selected;
bool ControlProtocol::selection_connected = false;
PBD::ScopedConnection ControlProtocol::selection_connection;
const std::string ControlProtocol::state_node_name ("Protocol"); const std::string ControlProtocol::state_node_name ("Protocol");
@ -72,12 +68,6 @@ ControlProtocol::ControlProtocol (Session& s, string str)
, _name (str) , _name (str)
, _active (false) , _active (false)
{ {
if (!selection_connected) {
/* this is all static, connect it only once (and early), for all ControlProtocols */
StripableSelectionChanged.connect_same_thread (selection_connection, boost::bind (&ControlProtocol::stripable_selection_changed, _1));
selection_connected = true;
}
} }
ControlProtocol::~ControlProtocol () ControlProtocol::~ControlProtocol ()
@ -374,7 +364,7 @@ ControlProtocol::set_first_selected_stripable (boost::shared_ptr<Stripable> s)
} }
void void
ControlProtocol::stripable_selection_changed (StripableNotificationListPtr sp) ControlProtocol::notify_stripable_selection_changed (StripableNotificationListPtr sp)
{ {
bool had_selection = !_last_selected.empty(); bool had_selection = !_last_selected.empty();

View file

@ -57,6 +57,8 @@ class LIBCONTROLCP_API ControlProtocol : public PBD::Stateful, public PBD::Scope
virtual void midi_connectivity_established () {} virtual void midi_connectivity_established () {}
virtual void stripable_selection_changed () = 0;
PBD::Signal0<void> ActiveChanged; PBD::Signal0<void> ActiveChanged;
/* signals that a control protocol can emit and other (presumably graphical) /* signals that a control protocol can emit and other (presumably graphical)
@ -85,13 +87,6 @@ class LIBCONTROLCP_API ControlProtocol : public PBD::Stateful, public PBD::Scope
static PBD::Signal1<void,boost::shared_ptr<ARDOUR::Stripable> > RemoveStripableFromSelection; static PBD::Signal1<void,boost::shared_ptr<ARDOUR::Stripable> > RemoveStripableFromSelection;
static PBD::Signal0<void> ClearStripableSelection; static PBD::Signal0<void> ClearStripableSelection;
/* signals that one UI (e.g. the GUI) can emit to get all other UI's to
respond. Typically this will always be GUI->"others" - the GUI pays
no attention to these signals.
*/
static PBD::Signal1<void,StripableNotificationListPtr> StripableSelectionChanged;
static boost::shared_ptr<ARDOUR::Stripable> first_selected_stripable (); static boost::shared_ptr<ARDOUR::Stripable> first_selected_stripable ();
static void set_first_selected_stripable (boost::shared_ptr<ARDOUR::Stripable>); static void set_first_selected_stripable (boost::shared_ptr<ARDOUR::Stripable>);
@ -146,6 +141,7 @@ class LIBCONTROLCP_API ControlProtocol : public PBD::Stateful, public PBD::Scope
static const std::string state_node_name; static const std::string state_node_name;
static StripableNotificationList const & last_selected() { return _last_selected; } static StripableNotificationList const & last_selected() { return _last_selected; }
static void notify_stripable_selection_changed (StripableNotificationListPtr);
protected: protected:
std::vector<boost::shared_ptr<ARDOUR::Route> > route_table; std::vector<boost::shared_ptr<ARDOUR::Route> > route_table;
@ -158,14 +154,10 @@ class LIBCONTROLCP_API ControlProtocol : public PBD::Stateful, public PBD::Scope
LIBCONTROLCP_LOCAL ControlProtocol (const ControlProtocol&); /* noncopyable */ LIBCONTROLCP_LOCAL ControlProtocol (const ControlProtocol&); /* noncopyable */
bool _active; bool _active;
static Glib::Threads::Mutex special_stripable_mutex; static Glib::Threads::Mutex special_stripable_mutex;
static boost::weak_ptr<ARDOUR::Stripable> _leftmost_mixer_stripable; static boost::weak_ptr<ARDOUR::Stripable> _leftmost_mixer_stripable;
static boost::weak_ptr<ARDOUR::Stripable> _first_selected_stripable; static boost::weak_ptr<ARDOUR::Stripable> _first_selected_stripable;
static StripableNotificationList _last_selected; static StripableNotificationList _last_selected;
static void stripable_selection_changed (StripableNotificationListPtr);
static bool selection_connected;
static PBD::ScopedConnection selection_connection;
}; };
extern "C" { extern "C" {

View file

@ -108,9 +108,6 @@ FaderPort::FaderPort (Session& s)
session->engine().make_port_name_non_relative (outp->name()) session->engine().make_port_name_non_relative (outp->name())
); );
StripableSelectionChanged.connect (selection_connection, MISSING_INVALIDATOR, boost::bind (&FaderPort::gui_track_selection_changed, this, _1), this);
/* Catch port connections and disconnections */ /* Catch port connections and disconnections */
ARDOUR::AudioEngine::instance()->PortConnectedOrDisconnected.connect (port_connection, MISSING_INVALIDATOR, boost::bind (&FaderPort::connection_handler, this, _1, _2, _3, _4, _5), this); ARDOUR::AudioEngine::instance()->PortConnectedOrDisconnected.connect (port_connection, MISSING_INVALIDATOR, boost::bind (&FaderPort::connection_handler, this, _1, _2, _3, _4, _5), this);
@ -1105,7 +1102,7 @@ FaderPort::Button::get_state () const
} }
void void
FaderPort::gui_track_selection_changed (StripableNotificationListPtr stripables) FaderPort::stripable_selection_changed ()
{ {
set_current_stripable (ControlProtocol::first_selected_stripable()); set_current_stripable (ControlProtocol::first_selected_stripable());
} }

View file

@ -298,7 +298,7 @@ class FaderPort : public ARDOUR::ControlProtocol, public AbstractUI<FaderPortReq
void drop_current_stripable (); void drop_current_stripable ();
void use_master (); void use_master ();
void use_monitor (); void use_monitor ();
void gui_track_selection_changed (ARDOUR::StripableNotificationListPtr); void stripable_selection_changed ();
PBD::ScopedConnection selection_connection; PBD::ScopedConnection selection_connection;
PBD::ScopedConnectionList stripable_connections; PBD::ScopedConnectionList stripable_connections;

View file

@ -128,8 +128,6 @@ FaderPort8::FaderPort8 (Session& s)
ARDOUR::AudioEngine::instance()->Stopped.connect (port_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort8::engine_reset, this), this); ARDOUR::AudioEngine::instance()->Stopped.connect (port_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort8::engine_reset, this), this);
ARDOUR::Port::PortDrop.connect (port_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort8::engine_reset, this), this); ARDOUR::Port::PortDrop.connect (port_connections, MISSING_INVALIDATOR, boost::bind (&FaderPort8::engine_reset, this), this);
StripableSelectionChanged.connect (selection_connection, MISSING_INVALIDATOR, boost::bind (&FaderPort8::notify_gui_track_selection_changed, this), this);
/* bind button events to call libardour actions */ /* bind button events to call libardour actions */
setup_actions (); setup_actions ();
@ -1363,7 +1361,7 @@ FaderPort8::assign_strips (bool reset_bank)
case ModeTrack: case ModeTrack:
case ModePan: case ModePan:
assign_stripables (); assign_stripables ();
notify_gui_track_selection_changed (); // update selection, automation-state stripable_selection_changed (); // update selection, automation-state
break; break;
case ModePlugins: case ModePlugins:
if (_proc_params.size() > 0) { if (_proc_params.size() > 0) {
@ -1427,7 +1425,7 @@ FaderPort8::select_strip (boost::weak_ptr<Stripable> ws)
} }
if (s->is_selected () && s != first_selected_stripable ()) { if (s->is_selected () && s != first_selected_stripable ()) {
set_first_selected_stripable (s); set_first_selected_stripable (s);
notify_gui_track_selection_changed (); stripable_selection_changed ();
} else { } else {
ToggleStripableSelection (s); ToggleStripableSelection (s);
} }
@ -1538,7 +1536,7 @@ FaderPort8::notify_stripable_property_changed (boost::weak_ptr<Stripable> ws, co
} }
void void
FaderPort8::notify_gui_track_selection_changed (/*ARDOUR::StripableNotificationListPtr*/) FaderPort8::stripable_selection_changed ()
{ {
if (!_device_active) { if (!_device_active) {
/* this can be called anytime from the static /* this can be called anytime from the static

View file

@ -181,7 +181,7 @@ private:
void notify_pi_property_changed (const PBD::PropertyChange&); void notify_pi_property_changed (const PBD::PropertyChange&);
void notify_stripable_property_changed (boost::weak_ptr<ARDOUR::Stripable>, const PBD::PropertyChange&); void notify_stripable_property_changed (boost::weak_ptr<ARDOUR::Stripable>, const PBD::PropertyChange&);
void notify_gui_track_selection_changed (); void stripable_selection_changed ();
PBD::ScopedConnection selection_connection; PBD::ScopedConnection selection_connection;
PBD::ScopedConnectionList automation_state_connections; PBD::ScopedConnectionList automation_state_connections;

View file

@ -55,6 +55,8 @@ class GenericMidiControlProtocol : public ARDOUR::ControlProtocol {
int set_active (bool yn); int set_active (bool yn);
static bool probe() { return true; } static bool probe() { return true; }
void stripable_selection_changed () {}
std::list<boost::shared_ptr<ARDOUR::Bundle> > bundles (); std::list<boost::shared_ptr<ARDOUR::Bundle> > bundles ();
boost::shared_ptr<ARDOUR::Port> input_port () const; boost::shared_ptr<ARDOUR::Port> input_port () const;

View file

@ -2369,10 +2369,11 @@ MackieControlProtocol::is_mapped (boost::shared_ptr<Stripable> r) const
} }
void void
MackieControlProtocol::update_selected (boost::shared_ptr<Stripable> s, bool became_selected) MackieControlProtocol::stripable_selection_changed ()
{ {
if (became_selected) { boost::shared_ptr<Stripable> s = first_selected_stripable ();
if (s) {
check_fader_automation_state (); check_fader_automation_state ();
/* It is possible that first_selected_route() may return null if we /* It is possible that first_selected_route() may return null if we
@ -2382,7 +2383,7 @@ MackieControlProtocol::update_selected (boost::shared_ptr<Stripable> s, bool bec
* set_subview_mode() will fail, and we will reset to None. * set_subview_mode() will fail, and we will reset to None.
*/ */
if (set_subview_mode (_subview_mode, first_selected_stripable())) { if (set_subview_mode (_subview_mode, s)) {
set_subview_mode (None, boost::shared_ptr<Stripable>()); set_subview_mode (None, boost::shared_ptr<Stripable>());
} }

View file

@ -140,7 +140,6 @@ class MackieControlProtocol
bool is_midi_track (boost::shared_ptr<ARDOUR::Stripable>) const; bool is_midi_track (boost::shared_ptr<ARDOUR::Stripable>) const;
bool is_mapped (boost::shared_ptr<ARDOUR::Stripable>) const; bool is_mapped (boost::shared_ptr<ARDOUR::Stripable>) const;
boost::shared_ptr<ARDOUR::Stripable> first_selected_stripable () const; boost::shared_ptr<ARDOUR::Stripable> first_selected_stripable () const;
void update_selected (boost::shared_ptr<ARDOUR::Stripable>, bool selected);
void check_fader_automation_state (); void check_fader_automation_state ();
void update_fader_automation_state (); void update_fader_automation_state ();
@ -360,8 +359,7 @@ class MackieControlProtocol
void clear_surfaces (); void clear_surfaces ();
void force_special_stripable_to_strip (boost::shared_ptr<ARDOUR::Stripable> r, uint32_t surface, uint32_t strip_number); void force_special_stripable_to_strip (boost::shared_ptr<ARDOUR::Stripable> r, uint32_t surface, uint32_t strip_number);
void build_button_map (); void build_button_map ();
void gui_track_selection_changed (ARDOUR::StripableNotificationListPtr, bool save_list); void stripable_selection_changed ();
void _gui_track_selection_changed (ARDOUR::StripableNotificationList*, bool save_list, bool gui_did_change);
int ipmidi_restart (); int ipmidi_restart ();
void initialize (); void initialize ();
int set_device_info (const std::string& device_name); int set_device_info (const std::string& device_name);

View file

@ -381,7 +381,6 @@ Strip::notify_property_changed (const PropertyChange& what_changed)
if (what_changed.contains (ARDOUR::Properties::selected)) { if (what_changed.contains (ARDOUR::Properties::selected)) {
if (_stripable) { if (_stripable) {
_surface->write (_select->set_state (_stripable->is_selected())); _surface->write (_select->set_state (_stripable->is_selected()));
_surface->mcp().update_selected (_stripable, _stripable->is_selected());
} }
} }
} }

View file

@ -245,9 +245,6 @@ OSC::start ()
periodic_connection = periodic_timeout->connect (sigc::mem_fun (*this, &OSC::periodic)); periodic_connection = periodic_timeout->connect (sigc::mem_fun (*this, &OSC::periodic));
periodic_timeout->attach (main_loop()->get_context()); periodic_timeout->attach (main_loop()->get_context());
// catch changes to selection for GUI_select mode
StripableSelectionChanged.connect (session_connections, MISSING_INVALIDATOR, boost::bind (&OSC::gui_selection_changed, this), this);
// catch track reordering // catch track reordering
// receive routes added // receive routes added
session->RouteAdded.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&OSC::notify_routes_added, this, _1), this); session->RouteAdded.connect(session_connections, MISSING_INVALIDATOR, boost::bind (&OSC::notify_routes_added, this, _1), this);

View file

@ -77,6 +77,8 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
XMLNode& get_state (); XMLNode& get_state ();
int set_state (const XMLNode&, int version); int set_state (const XMLNode&, int version);
void stripable_selection_changed () {}
bool has_editor () const { return true; } bool has_editor () const { return true; }
void* get_gui () const; void* get_gui () const;
void tear_down_gui (); void tear_down_gui ();

View file

@ -107,8 +107,6 @@ Push2::Push2 (ARDOUR::Session& s)
/* master cannot be removed, so no need to connect to going-away signal */ /* master cannot be removed, so no need to connect to going-away signal */
master = session->master_out (); master = session->master_out ();
ControlProtocol::StripableSelectionChanged.connect (selection_connection, MISSING_INVALIDATOR, boost::bind (&Push2::stripable_selection_change, this, _1), this);
/* allocate graphics layouts, even though we're not using them yet */ /* allocate graphics layouts, even though we're not using them yet */
_canvas = new Push2Canvas (*this, 960, 160); _canvas = new Push2Canvas (*this, 960, 160);
@ -138,7 +136,6 @@ Push2::~Push2 ()
DEBUG_TRACE (DEBUG::Push2, "push2 control surface object being destroyed\n"); DEBUG_TRACE (DEBUG::Push2, "push2 control surface object being destroyed\n");
/* do this before stopping the event loop, so that we don't get any notifications */ /* do this before stopping the event loop, so that we don't get any notifications */
selection_connection.disconnect ();
port_reg_connection.disconnect (); port_reg_connection.disconnect ();
port_connection.disconnect (); port_connection.disconnect ();
@ -200,10 +197,7 @@ Push2::begin_using_device ()
splash (); splash ();
/* catch current selection, if any so that we can wire up the pads if appropriate */ /* catch current selection, if any so that we can wire up the pads if appropriate */
{ stripable_selection_changed ();
StripableNotificationListPtr sp (new StripableNotificationList (ControlProtocol::last_selected()));
stripable_selection_change (sp);
}
request_pressure_mode (); request_pressure_mode ();
@ -1525,15 +1519,16 @@ Push2::current_layout () const
} }
void void
Push2::stripable_selection_change (StripableNotificationListPtr selected) Push2::stripable_selection_changed ()
{ {
boost::shared_ptr<MidiPort> pad_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_in)->shadow_port(); boost::shared_ptr<MidiPort> pad_port = boost::dynamic_pointer_cast<AsyncMIDIPort>(_async_in)->shadow_port();
boost::shared_ptr<MidiTrack> current_midi_track = current_pad_target.lock(); boost::shared_ptr<MidiTrack> current_midi_track = current_pad_target.lock();
boost::shared_ptr<MidiTrack> new_pad_target; boost::shared_ptr<MidiTrack> new_pad_target;
StripableNotificationList const & selected (last_selected());
/* See if there's a MIDI track selected */ /* See if there's a MIDI track selected */
for (StripableNotificationList::iterator si = selected->begin(); si != selected->end(); ++si) { for (StripableNotificationList::const_iterator si = selected.begin(); si != selected.end(); ++si) {
new_pad_target = boost::dynamic_pointer_cast<MidiTrack> ((*si).lock()); new_pad_target = boost::dynamic_pointer_cast<MidiTrack> ((*si).lock());
@ -1582,6 +1577,10 @@ Push2::stripable_selection_change (StripableNotificationListPtr selected)
} }
reset_pad_colors (); reset_pad_colors ();
TrackMixLayout* tml = dynamic_cast<TrackMixLayout*> (mix_layout);
assert (tml);
tml->set_stripable (first_selected_stripable());
} }
Push2::Button* Push2::Button*

View file

@ -569,8 +569,7 @@ class Push2 : public ARDOUR::ControlProtocol
/* pad mapping */ /* pad mapping */
PBD::ScopedConnection selection_connection; void stripable_selection_changed ();
void stripable_selection_change (ARDOUR::StripableNotificationListPtr);
MusicalMode::Type _mode; MusicalMode::Type _mode;
int _scale_root; int _scale_root;

View file

@ -160,8 +160,6 @@ TrackMixLayout::TrackMixLayout (Push2& p, Session & s, std::string const & name)
minsec_text->set_font_description (fd2); minsec_text->set_font_description (fd2);
minsec_text->set_color (p2.get_color (Push2::LightBackground)); minsec_text->set_color (p2.get_color (Push2::LightBackground));
minsec_text->set_position (Duple (10 + (4 * Push2Canvas::inter_button_spacing()), 90)); minsec_text->set_position (Duple (10 + (4 * Push2Canvas::inter_button_spacing()), 90));
ControlProtocol::StripableSelectionChanged.connect (selection_connection, invalidator (*this), boost::bind (&TrackMixLayout::selection_changed, this), &p2);
} }
TrackMixLayout::~TrackMixLayout () TrackMixLayout::~TrackMixLayout ()
@ -171,16 +169,6 @@ TrackMixLayout::~TrackMixLayout ()
} }
} }
void
TrackMixLayout::selection_changed ()
{
boost::shared_ptr<Stripable> s = ControlProtocol::first_selected_stripable();
if (s) {
set_stripable (s);
}
}
void void
TrackMixLayout::show () TrackMixLayout::show ()
{ {

View file

@ -85,8 +85,6 @@ class TrackMixLayout : public Push2Layout
void stripable_property_change (PBD::PropertyChange const& what_changed); void stripable_property_change (PBD::PropertyChange const& what_changed);
void simple_control_change (boost::shared_ptr<ARDOUR::AutomationControl> ac, Push2::ButtonID bid); void simple_control_change (boost::shared_ptr<ARDOUR::AutomationControl> ac, Push2::ButtonID bid);
PBD::ScopedConnection selection_connection;
void selection_changed ();
void show_state (); void show_state ();
void drop_stripable (); void drop_stripable ();

View file

@ -55,6 +55,8 @@ public:
void wiimote_callback (int mesg_count, union cwiid_mesg mesg[]); void wiimote_callback (int mesg_count, union cwiid_mesg mesg[]);
void stripable_selection_changed () {}
protected: protected:
void do_request (WiimoteControlUIRequest*); void do_request (WiimoteControlUIRequest*);
int start (); int start ();