VSTHostFromClientPOV

Access to VST host from the VST client perspective. The IHostCommand subset is accessible from the plugin client with no knowledge of the format

Constructors

this
this(HostCallbackFunction hostCallback, AEffect* effect)
Undocumented in source.

Members

Enums

HostCaps
enum HostCaps

Capabilities

Functions

beginParamEdit
void beginParamEdit(int paramIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
canDo
bool canDo(HostCaps caps)
Undocumented in source. Be warned that the author may not have intended to support it.
endParamEdit
void endParamEdit(int paramIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
getDAW
DAW getDAW()
Undocumented in source. Be warned that the author may not have intended to support it.
getPluginFormat
PluginFormat getPluginFormat()
Undocumented in source. Be warned that the author may not have intended to support it.
getVSTTimeInfo
TimeInfo getVSTTimeInfo(long fallbackTimeInSamples)

Gets VSTTimeInfo structure, null if not all flags are supported

paramAutomate
void paramAutomate(int paramIndex, float value)
Undocumented in source. Be warned that the author may not have intended to support it.
productString
const(char)* productString()
Undocumented in source. Be warned that the author may not have intended to support it.
requestResize
bool requestResize(int width, int height)

Request plugin window resize.

sendVstMidiEvent
bool sendVstMidiEvent(VstEvent* event)
Undocumented in source. Be warned that the author may not have intended to support it.
vendorString
const(char)* vendorString()
Undocumented in source. Be warned that the author may not have intended to support it.
wantEvents
void wantEvents()

Inherited Members

From IHostCommand

beginParamEdit
void beginParamEdit(int paramIndex)

Notifies the host that editing of a parameter has begun from UI side.

paramAutomate
void paramAutomate(int paramIndex, float value)

Notifies the host that a parameter was edited from the UI side. This enables the host to record automation. It is illegal to call paramAutomate outside of a beginParamEdit/endParamEdit pair.

endParamEdit
void endParamEdit(int paramIndex)

Notifies the host that editing of a parameter has finished from UI side.

requestResize
bool requestResize(int widthLogicalPixels, int heightLogicalPixels)

Requests to the host a resize of the plugin window's PARENT window, given logical pixels of plugin window.

getDAW
DAW getDAW()

Report the identied host name (DAW). MAYDO: not available for LV2.

getPluginFormat
PluginFormat getPluginFormat()

Gets the plugin format used at runtime. Version identifier may not be enough in the future, in case of unity builds.

Meta