PluginPinDialog: subscribe to processor name changes

This commit is contained in:
Robin Gareus 2023-05-27 14:19:59 +02:00
parent 10b2380b14
commit c9e13d49d4
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 21 additions and 8 deletions

View file

@ -252,14 +252,16 @@ private:
typedef std::shared_ptr<PluginPinWidget> PluginPinWidgetPtr;
typedef std::vector<PluginPinWidgetPtr> PluginPinWidgetList;
void route_going_away ();
void going_away ();
void processor_property_changed (PBD::PropertyChange const&);
void route_processors_changed (ARDOUR::RouteProcessorChange);
void add_processor (std::weak_ptr<ARDOUR::Processor>);
void map_height (Gtk::Allocation&);
std::shared_ptr<ARDOUR::PluginInsert> _pi;
std::shared_ptr<ARDOUR::Route> _route;
PluginPinWidgetList ppw;
PBD::ScopedConnectionList _route_connections;
PBD::ScopedConnectionList _connections;
bool _height_mapped;
};