|
| | JucePlugin (dsp::ProcessorBase::ProcessorBaseDependencies dependencies, StateDirectoryParentPathProvider state_path_provider, CreatePluginInstanceAsyncFunc create_plugin_instance_async_func, std::function< units::sample_rate_t()> sample_rate_provider, std::function< nframes_t()> buffer_size_provider, PluginHostWindowFactory top_level_window_provider, QObject *parent=nullptr) |
| | Constructor for JucePlugin.
|
| void | save_state (std::optional< fs::path > abs_state_dir) override |
| | Saves the state inside the standard state directory.
|
| void | load_state (std::optional< fs::path > abs_state_dir) override |
| | Load the state from the default directory or from abs_state_dir if given.
|
| nframes_t | get_single_playback_latency () const override |
| | Returns the latency of only the given processable, without adding the previous/next latencies.
|
| int | programIndex () const |
| | Returns the current program index, or -1 if no program exists.
|
| void | setProgramIndex (int index) |
|
Q_SIGNAL void | programIndexChanged (int index) |
| | Implementations should attach to this and set the program.
|
| PluginConfiguration * | configuration () const |
| Q_SIGNAL void | configurationChanged (PluginConfiguration *configuration) |
| | Emitted when the configuration is set on the plugin.
|
| dsp::ProcessorParameter * | bypassParameter () const |
| dsp::ProcessorParameter * | gainParameter () const |
| bool | uiVisible () const |
| void | setUiVisible (bool visible) |
|
Q_SIGNAL void | uiVisibleChanged (bool visible) |
| | Implementations should listen to this and show/hide the plugin UI accordingly.
|
| InstantiationStatus | instantiationStatus () const |
|
Q_SIGNAL void | instantiationStatusChanged (InstantiationStatus status) |
| Q_SIGNAL void | instantiationFinished (bool successful, const QString &error) |
| | To be emitted by implementations when instantiation finished.
|
| PluginDescriptor & | get_descriptor () const |
| utils::Utf8String | get_name () const |
| Protocol::ProtocolType | get_protocol () const |
| void | set_configuration (const PluginConfiguration &setting) |
| | Sets the plugin setting to use.
|
| void | custom_prepare_for_processing (const dsp::graph::GraphNode *node, units::sample_rate_t sample_rate, nframes_t max_block_length) final |
| void | custom_process_block (EngineProcessTimeInfo time_nfo, const dsp::ITransport &transport) noexcept final |
| | Custom processor logic after processing all owned parameters.
|
| void | custom_release_resources () final |
| fs::path | get_state_directory () const |
| bool | currently_enabled () const |
| | Returns whether the plugin is enabled (not bypassed).
|
| bool | currently_enabled_rt () const noexcept |
|
| ProcessorBase (ProcessorBaseDependencies dependencies, utils::Utf8String name={ u8"ProcessorBase" }) |
|
void | set_name (const utils::Utf8String &name) |
| | Set a custom name to be used in the DSP graph.
|
|
void | add_input_port (const dsp::PortUuidReference &uuid) |
|
void | add_output_port (const dsp::PortUuidReference &uuid) |
|
void | add_parameter (const dsp::ProcessorParameterUuidReference &uuid) |
| auto & | get_input_ports () const |
| auto & | get_output_ports () const |
| auto & | get_parameters () const |
| utils::Utf8String | get_node_name () const final |
| | Returns a human friendly name of the node.
|
| void | process_block (EngineProcessTimeInfo time_nfo, const dsp::ITransport &transport) noexcept final |
| | Calls custom_process_block() internally after processing all the parameters.
|
| void | prepare_for_processing (const graph::GraphNode *node, units::sample_rate_t sample_rate, nframes_t max_block_length) final |
| | Called to allocate resources required for processing.
|
| void | release_resources () final |
| | Called to release resources allocated by prepare_for_processing().
|
|
UuidIdentifiableObject & | operator= (const UuidIdentifiableObject &other)=default |
| auto | get_uuid () const |
|
| void | prepare_for_processing_impl (units::sample_rate_t sample_rate, nframes_t max_block_length) override |
| void | process_impl (EngineProcessTimeInfo time_info) noexcept override |
| | Plugin (ProcessorBaseDependencies dependencies, StateDirectoryParentPathProvider state_path_provider, QObject *parent) |
| | Creates/initializes a plugin and its internal plugin (LV2, etc.) using the given setting.
|
|
dsp::ProcessorParameterUuidReference | generate_default_bypass_param () const |
| | To be called by implementations to generate the default bypass parameter if the plugin does not provide its own.
|
|
dsp::ProcessorParameterUuidReference | generate_default_gain_param () const |
| | To be called by implementations to generate the default gain parameter if the plugin does not provide its own.
|
| auto | dependencies () const |
JUCE-based plugin host implementation.
This class provides hosting capabilities for VST3, AU, and other JUCE-supported plugin formats using the JUCE 8 framework.
Definition at line 19 of file juce_plugin.h.