|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Implements FUnknown and IDependent. More...
#include "fobject.h"
Public Member Functions | |
| FObject ()=default | |
| default constructor... | |
| FObject (const FObject &) | |
| FObject & | operator= (const FObject &) |
| overloads operator "=" as the reference assignment | |
| virtual | ~FObject () |
| destructor... | |
| virtual FClassID | isA () const |
| a local alternative to getFClassID () | |
| virtual bool | isA (FClassID s) const |
| evaluates if the passed ID is of the FObject type | |
| virtual bool | isTypeOf (FClassID s, bool=true) const |
| evaluates if the passed ID is of the FObject type | |
| int32 | getRefCount () |
| returns the current interface reference count | |
| FUnknown * | unknownCast () |
| get FUnknown interface from object | |
| tresult PLUGIN_API | queryInterface (const TUID _iid, void **obj) SMTG_OVERRIDE |
| please refer to FUnknown::queryInterface () | |
| uint32 PLUGIN_API | addRef () SMTG_OVERRIDE |
| please refer to FUnknown::addref () | |
| uint32 PLUGIN_API | release () SMTG_OVERRIDE |
| please refer to FUnknown::release () | |
| void PLUGIN_API | update (FUnknown *, int32) SMTG_OVERRIDE |
| empty virtual method that should be overridden by derived classes for data updates upon changes | |
| virtual void | addDependent (IDependent *dep) |
| adds dependency to the object | |
| virtual void | removeDependent (IDependent *dep) |
| removes dependency from the object | |
| virtual void | changed (int32 msg=kChanged) |
| Inform all dependents, that the object has changed. | |
| virtual void | deferUpdate (int32 msg=kChanged) |
| Similar to triggerUpdates, except only delivered in idle (usefull in collecting updates). | |
| virtual void | updateDone (int32) |
| empty virtual method that should be overridden by derived classes | |
| virtual bool | isEqualInstance (FUnknown *d) |
Static Public Member Functions | |
| static FClassID | getFClassID () |
| return Class ID as an ASCII string (statically) | |
| static void | setUpdateHandler (IUpdateHandler *handler) |
| set method for the local attribute | |
| static IUpdateHandler * | getUpdateHandler () |
| get method for the local attribute | |
| static bool | classIDsEqual (FClassID ci1, FClassID ci2) |
| compares (evaluates) 2 class IDs | |
| static FObject * | unknownToObject (FUnknown *unknown) |
| pointer conversion from FUnknown to FObject | |
Static Public Attributes | |
| static const FUID | iid |
| Special UID that is used to cast an FUnknown pointer to a FObject. | |
Static Public Attributes inherited from Steinberg::IDependent | |
| static const FUID | iid |
Static Public Attributes inherited from Steinberg::FUnknown | |
| static const FUID | iid |
Protected Attributes | |
| int32 | refCount |
| COM-model local reference count. | |
Static Protected Attributes | |
| static IUpdateHandler * | gUpdateHandler |
Additional Inherited Members | |
Public Types inherited from Steinberg::IDependent | |
| enum | ChangeMessage { kWillChange , kChanged , kDestroyed , kWillDestroy , kStdChangeMessageLast } |
Implements FUnknown and IDependent.
FObject is a polymorphic class that implements IDependent (of SKI module) and therefore derived from FUnknown, which is the most abstract base class of all.
All COM-like virtual methods of FUnknown such as queryInterface(), addRef(), release() are implemented here. On top of that, dependency-related methods are implemented too.
Pointer casting is done via the template methods FCast, either FObject to FObject or FUnknown to FObject.
FObject supports a new singleton concept, therefore these objects are deleted automatically upon program termination.
|
virtual |
destructor...
Definition at line 68 of file fobject.cpp.
|
virtual |
adds dependency to the object
Reimplemented in Steinberg::UpdateHandler.
Definition at line 141 of file fobject.cpp.
|
virtual |
please refer to FUnknown::addref ()
Implements Steinberg::FUnknown.
Definition at line 113 of file fobject.cpp.
|
virtual |
Inform all dependents, that the object has changed.
Definition at line 193 of file fobject.cpp.
|
static |
|
virtual |
Similar to triggerUpdates, except only delivered in idle (usefull in collecting updates).
Reimplemented in Steinberg::UpdateHandler.
Definition at line 202 of file fobject.cpp.
|
static |
| int32 Steinberg::FObject::getRefCount | ( | ) |
|
static |
|
virtual |
|
virtual |
|
virtual |
please refer to FUnknown::queryInterface ()
Implements Steinberg::FUnknown.
Definition at line 131 of file fobject.cpp.
|
virtual |
please refer to FUnknown::release ()
Implements Steinberg::FUnknown.
Definition at line 119 of file fobject.cpp.
|
virtual |
removes dependency from the object
Reimplemented in Steinberg::UpdateHandler.
Definition at line 153 of file fobject.cpp.
|
static |
| FUnknown * Steinberg::FObject::unknownCast | ( | ) |
|
virtual |
empty virtual method that should be overridden by derived classes for data updates upon changes
Implements Steinberg::IDependent.
|
virtual |
|
staticprotected |
|
static |
|
protected |