When we rename a track, only rename its playlist if it
[ardour.git] / libs / ardour / ardour / plugin_insert.h
index 0e530c5d8e17ace54e8b9312304e2770b1cab873..5b4a5294f2b1c8bed93d6f37fb0d80ca64e72c65 100644 (file)
@@ -77,6 +77,8 @@ class PluginInsert : public Processor
        bool is_midi_instrument() const;
 
        void realtime_handle_transport_stopped ();
+       void realtime_locate ();
+       void monitoring_changed ();
 
        struct PluginControl : public AutomationControl
        {
@@ -87,14 +89,10 @@ class PluginInsert : public Processor
                double get_value (void) const;
                XMLNode& get_state();
 
-               double user_to_ui (double) const;
-               double ui_to_user (double) const;
-               double plugin_to_ui (double) const;
-               double plugin_to_user (double) const;
+               double internal_to_interface (double) const;
+               double interface_to_internal (double) const;
 
        private:
-               double user_to_plugin (double) const;
-
                PluginInsert* _plugin;
                bool _logarithmic;
                bool _sr_dependent;
@@ -186,7 +184,6 @@ class PluginInsert : public Processor
        void set_control_ids (const XMLNode&, int version);
 
        boost::shared_ptr<Plugin> plugin_factory (boost::shared_ptr<Plugin>);
-       void add_plugin_with_activation (boost::shared_ptr<Plugin>);
        void add_plugin (boost::shared_ptr<Plugin>);
 };