prepare route pin display (shared mixer + editor-mixer window proxy)

This commit is contained in:
Robin Gareus 2016-05-10 20:06:15 +02:00
parent 4343191c45
commit d53d9b01ab
2 changed files with 7 additions and 0 deletions

View file

@ -52,6 +52,8 @@
#include "ardour/automatable.h"
#include "ardour/unknown_processor.h"
class RoutePinWindowProxy;
namespace ARDOUR {
class Amp;
@ -234,6 +236,9 @@ public:
std::list<std::string> unknown_processors () const;
RoutePinWindowProxy * pinmgr_proxy () const { return _pinmgr_proxy; }
void set_pingmgr_proxy (RoutePinWindowProxy* wp) { _pinmgr_proxy = wp ; }
/* special processors */
boost::shared_ptr<InternalSend> monitor_send() const { return _monitor_send; }
@ -911,6 +916,7 @@ private:
or 0.
*/
boost::weak_ptr<Processor> _processor_after_last_custom_meter;
RoutePinWindowProxy *_pinmgr_proxy;
void reset_instrument_info ();

View file

@ -119,6 +119,7 @@ Route::Route (Session& sess, string name, Flag flg, DataType default_type)
, _in_sidechain_setup (false)
, _strict_io (false)
, _custom_meter_position_noted (false)
, _pinmgr_proxy (0)
{
processor_max_streams.reset();
}