VST 3 SDK VST 3.7
SDK for developing VST plug-in
|
Base class for VST 3 Component and Edit Controller. More...
#include <vstcomponentbase.h>
Public Member Functions | |
ComponentBase () | |
~ComponentBase () override | |
FUnknown * | getHostContext () const |
Returns the hostContext (set by the host during initialize call). More... | |
IConnectionPoint * | getPeer () const |
Returns the peer for the messaging communication (you can only use IConnectionPoint::notify for communicate between peers, do not try to cast peerConnection. More... | |
IMessage * | allocateMessage () const |
Allocates a message instance (do not forget to release it). More... | |
tresult | sendMessage (IMessage *message) const |
Sends the given message to the peer. More... | |
tresult | sendTextMessage (const char8 *text) const |
Sends a simple text message to the peer (max 255 characters). More... | |
tresult | sendMessageID (const char8 *messageID) const |
Sends a message with a given ID without any other payload. More... | |
virtual tresult | receiveText (const char8 *text) |
Receives a simple text message from the peer (max 255 characters). More... | |
tresult | initialize (FUnknown *context) SMTG_OVERRIDE |
tresult | terminate () SMTG_OVERRIDE |
tresult | connect (IConnectionPoint *other) SMTG_OVERRIDE |
tresult | disconnect (IConnectionPoint *other) SMTG_OVERRIDE |
tresult | notify (IMessage *message) SMTG_OVERRIDE |
virtual tresult | initialize (FUnknown *context)=0 |
virtual tresult | terminate ()=0 |
Public Member Functions inherited from FUnknown | |
virtual tresult | queryInterface (const TUID _iid, void **obj)=0 |
virtual uint32 | addRef ()=0 |
virtual uint32 | release ()=0 |
virtual tresult | connect (IConnectionPoint *other)=0 |
virtual tresult | disconnect (IConnectionPoint *other)=0 |
virtual tresult | notify (IMessage *message)=0 |
Public Attributes | |
OBJ_METHODS(ComponentBase, FObject) DEFINE_INTERFACES DEF_INTERFACE(IPluginBase) DEF_INTERFACE(IConnectionPoint) END_DEFINE_INTERFACES(FObject) REFCOUNT_METHODS(FObject) protected IPtr< IConnectionPoint > | peerConnection |
Additional Inherited Members | |
Static Public Attributes inherited from IPluginBase | |
static const FUID | iid |
Static Public Attributes inherited from FUnknown | |
static const FUID | iid |
Static Public Attributes inherited from IConnectionPoint | |
static const FUID | iid |
Base class for VST 3 Component and Edit Controller.
ComponentBase | ( | ) |
|
override |
|
inline |
Returns the hostContext (set by the host during initialize call).
|
inline |
Returns the peer for the messaging communication (you can only use IConnectionPoint::notify for communicate between peers, do not try to cast peerConnection.
IMessage * allocateMessage | ( | ) | const |
Allocates a message instance (do not forget to release it).
Sends a simple text message to the peer (max 255 characters).
Text is interpreted as UTF-8.
Sends a message with a given ID without any other payload.
Receives a simple text message from the peer (max 255 characters).
Text is UTF-8 encoded.
Implements IPluginBase.
Reimplemented in EditController, and SingleComponentEffect.
|
virtual |
Implements IPluginBase.
Reimplemented in EditController, EditControllerEx1, and SingleComponentEffect.
|
virtual |
Implements IConnectionPoint.
|
virtual |
Implements IConnectionPoint.
Implements IConnectionPoint.
OBJ_METHODS (ComponentBase, FObject) DEFINE_INTERFACES DEF_INTERFACE (IPluginBase) DEF_INTERFACE (IConnectionPoint) END_DEFINE_INTERFACES (FObject) REFCOUNT_METHODS (FObject) protected IPtr<IConnectionPoint> peerConnection |