nominally add MIDI input support for AudioUnit plugins
[ardour.git] / libs / ardour / ardour / plugin.h
index aeec4ee32e0cbde302ae0362d793258dd67395ce..3d7c8d9c335c440da466b2ca7b0cc14677468303 100644 (file)
@@ -21,8 +21,7 @@
 #define __ardour_plugin_h__
 
 #include <boost/shared_ptr.hpp>
-#include <sigc++/signal.h>
-#include <glibmm/ustring.h>
+#include <string>
 
 #include "pbd/statefuldestructible.h"
 #include "pbd/controllable.h"
@@ -52,21 +51,12 @@ typedef boost::shared_ptr<Plugin> PluginPtr;
 class PluginInfo {
   public:
        PluginInfo () { }
-       PluginInfo (const PluginInfo &o)
-               : name(o.name),
-               category (o.category),
-               creator (o.creator),
-               path (o.path),
-               n_inputs(o.n_inputs),
-               n_outputs(o.n_outputs),
-               unique_id(o.unique_id),
-               index(o.index) {}
        virtual ~PluginInfo () { }
 
        std::string name;
        std::string category;
-       Glib::ustring creator;
-       Glib::ustring path;
+       std::string creator;
+       std::string path;
        ChanCount n_inputs;
        ChanCount n_outputs;
        ARDOUR::PluginType type;
@@ -120,7 +110,9 @@ class Plugin : public PBD::StatefulDestructible, public Latent
        virtual uint32_t nth_parameter (uint32_t which, bool& ok) const = 0;
        virtual void activate () = 0;
        virtual void deactivate () = 0;
-       virtual void set_block_size (nframes_t nframes) = 0;
+        virtual void flush () { deactivate(); activate(); }
+
+       virtual int set_block_size (nframes_t nframes) = 0;
 
        virtual int connect_and_run (BufferSet& bufs,
                        ChanMapping in, ChanMapping out,
@@ -136,8 +128,8 @@ class Plugin : public PBD::StatefulDestructible, public Latent
        virtual bool parameter_is_input(uint32_t) const = 0;
        virtual bool parameter_is_output(uint32_t) const = 0;
 
-       virtual bool save_preset (std::string uri) = 0;
-       virtual bool load_preset (const std::string uri);
+       virtual bool save_preset (std::string) = 0;
+       virtual bool load_preset (const std::string& uri);
 
        struct PresetRecord {
                PresetRecord(const std::string& u, const std::string& l) : uri(u), label(l) {}
@@ -146,13 +138,16 @@ class Plugin : public PBD::StatefulDestructible, public Latent
        };
 
        virtual std::vector<PresetRecord> get_presets();
+       virtual std::string current_preset() const { return std::string(); }
+
+       static PBD::Signal0<bool> PresetFileExists;
 
        const PresetRecord* preset_by_label(const std::string& label);
        const PresetRecord* preset_by_uri(const std::string& uri);
 
        virtual bool has_editor() const = 0;
 
-       sigc::signal<void,uint32_t,float> ParameterChanged;
+       PBD::Signal2<void,uint32_t,float> ParameterChanged;
 
        /* NOTE: this block of virtual methods looks like the interface
           to a Processor, but Plugin does not inherit from Processor.
@@ -176,7 +171,7 @@ class Plugin : public PBD::StatefulDestructible, public Latent
        virtual ChanCount output_streams() const;
        virtual ChanCount input_streams() const;
 
-       PluginInfoPtr get_info() { return _info; }
+       PluginInfoPtr get_info() const { return _info; }
        void set_info (const PluginInfoPtr inf) { _info = inf; }
 
        ARDOUR::AudioEngine& engine() const { return _engine; }
@@ -191,7 +186,7 @@ class Plugin : public PBD::StatefulDestructible, public Latent
 
        virtual void set_parameter (uint32_t which, float val) = 0;
 
-       bool save_preset (std::string uri, std::string domain /* vst, ladspa etc. */);
+       bool save_preset (std::string, std::string /* vst, ladspa etc. */);
 
        ARDOUR::AudioEngine&     _engine;
        ARDOUR::Session&         _session;