VTK
9.1.0
|
supports legacy function callbacks for VTK More...
#include <vtkOldStyleCallbackCommand.h>
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. More... | |
vtkOldStyleCallbackCommand * | NewInstance () const |
void | Execute (vtkObject *invoker, unsigned long eid, void *calldata) override |
Satisfy the superclass API for callbacks. More... | |
void | SetClientData (void *cd) |
Methods to set and get client and callback information. More... | |
void | SetCallback (void(*f)(void *clientdata)) |
Methods to set and get client and callback information. More... | |
void | SetClientDataDeleteCallback (void(*f)(void *)) |
Methods to set and get client and callback information. More... | |
Public Member Functions inherited from vtkCommand | |
vtkBaseTypeMacro (vtkCommand, vtkObjectBase) | |
void | UnRegister () |
Decrease the reference count (release by another object). More... | |
void | UnRegister (vtkObjectBase *) override |
Decrease the reference count (release by another object). More... | |
virtual void | Execute (vtkObject *caller, unsigned long eventId, void *callData)=0 |
All derived classes of vtkCommand must implement this method. More... | |
void | SetAbortFlag (int f) |
Set/Get the abort flag. More... | |
int | GetAbortFlag () |
void | AbortFlagOn () |
void | AbortFlagOff () |
void | SetPassiveObserver (int f) |
Set/Get the passive observer flag. More... | |
int | GetPassiveObserver () |
void | PassiveObserverOn () |
void | PassiveObserverOff () |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. More... | |
virtual vtkTypeBool | IsA (const char *name) |
Return 1 if this class is the same type of (or a subclass of) the named class. More... | |
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More... | |
virtual void | Delete () |
Delete a VTK object. More... | |
virtual void | FastDelete () |
Delete a reference to this object. More... | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. More... | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). More... | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). More... | |
int | GetReferenceCount () |
Return the current reference count of this object. More... | |
void | SetReferenceCount (int) |
Sets the reference count. More... | |
bool | GetIsInMemkind () const |
A local state flag that remembers whether this object lives in the normal or extended memory space. More... | |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
Static Public Member Functions | |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkOldStyleCallbackCommand * | SafeDownCast (vtkObjectBase *o) |
static vtkOldStyleCallbackCommand * | New () |
Static Public Member Functions inherited from vtkCommand | |
static bool | EventHasData (unsigned long event) |
Does this event type contain vtkEventData. More... | |
static const char * | GetStringFromEventId (unsigned long event) |
Convenience methods for translating between event names and event ids. More... | |
static unsigned long | GetEventIdFromString (const char *event) |
Convenience methods for translating between event names and event ids. More... | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. More... | |
static vtkIdType | GetNumberOfGenerationsFromBaseType (const char *name) |
Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More... | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
static void | SetMemkindDirectory (const char *directoryname) |
The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. More... | |
static bool | GetUsingMemkind () |
A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. More... | |
Public Attributes | |
void * | ClientData |
void(* | Callback )(void *) |
void(* | ClientDataDeleteCallback )(void *) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkOldStyleCallbackCommand () | |
~vtkOldStyleCallbackCommand () override | |
Protected Member Functions inherited from vtkCommand | |
vtkCommand () | |
~vtkCommand () override=default | |
vtkCommand (const vtkCommand &c) | |
void | operator= (const vtkCommand &) |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Additional Inherited Members | |
Static Protected Member Functions inherited from vtkObjectBase | |
static vtkMallocingFunction | GetCurrentMallocFunction () |
static vtkReallocingFunction | GetCurrentReallocFunction () |
static vtkFreeingFunction | GetCurrentFreeFunction () |
static vtkFreeingFunction | GetAlternateFreeFunction () |
Protected Attributes inherited from vtkCommand | |
int | AbortFlag |
int | PassiveObserver |
Protected Attributes inherited from vtkObjectBase | |
std::atomic< int32_t > | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
supports legacy function callbacks for VTK
vtkOldStyleCallbackCommand is a callback that supports the legacy callback methods found in VTK. For example, the legacy method vtkProcessObject::SetStartMethod() is actually invoked using the command/observer design pattern of VTK, and the vtkOldStyleCallbackCommand is used to provide the legacy functionality. The callback function should have the form void func(void *clientdata), where clientdata is special data that should is associated with this instance of vtkCallbackCommand.
Definition at line 41 of file vtkOldStyleCallbackCommand.h.
Definition at line 44 of file vtkOldStyleCallbackCommand.h.
|
protected |
|
overrideprotected |
|
static |
|
virtual |
Return 1 if this class is the same type of (or a subclass of) the named class.
Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObjectBase.
|
static |
|
protectedvirtual |
vtkOldStyleCallbackCommand * vtkOldStyleCallbackCommand::NewInstance | ( | ) | const |
|
inlinestatic |
Definition at line 46 of file vtkOldStyleCallbackCommand.h.
|
overridevirtual |
Satisfy the superclass API for callbacks.
Implements vtkCommand.
|
inline |
Methods to set and get client and callback information.
Definition at line 57 of file vtkOldStyleCallbackCommand.h.
|
inline |
Methods to set and get client and callback information.
Definition at line 58 of file vtkOldStyleCallbackCommand.h.
|
inline |
Methods to set and get client and callback information.
Definition at line 59 of file vtkOldStyleCallbackCommand.h.
void* vtkOldStyleCallbackCommand::ClientData |
Definition at line 62 of file vtkOldStyleCallbackCommand.h.
void(* vtkOldStyleCallbackCommand::Callback) (void *) |
Definition at line 63 of file vtkOldStyleCallbackCommand.h.
void(* vtkOldStyleCallbackCommand::ClientDataDeleteCallback) (void *) |
Definition at line 64 of file vtkOldStyleCallbackCommand.h.