VTK
|
supports function callbacks More...
#include <vtkCallbackCommand.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... | |
vtkCallbackCommand * | NewInstance () const |
void | Execute (vtkObject *caller, unsigned long eid, void *callData) override |
Satisfy the superclass API for callbacks. More... | |
virtual void | SetClientData (void *cd) |
Methods to set and get client and callback information, and the callback function. More... | |
virtual void * | GetClientData () |
virtual void | SetCallback (void(*f)(vtkObject *caller, unsigned long eid, void *clientdata, void *calldata)) |
virtual void | SetClientDataDeleteCallback (void(*f)(void *)) |
void | SetAbortFlagOnExecute (int f) |
Set/Get the abort flag on execute. More... | |
int | GetAbortFlagOnExecute () |
void | AbortFlagOnExecuteOn () |
void | AbortFlagOnExecuteOff () |
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... | |
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 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... | |
int | GetReferenceCount () |
Return the current reference count of this object. More... | |
void | SetReferenceCount (int) |
Sets the reference count. More... | |
void | PrintRevisions (ostream &) |
Legacy. 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 vtkCallbackCommand * | SafeDownCast (vtkObjectBase *o) |
static vtkCallbackCommand * | 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 vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
Public Attributes | |
void(* | Callback )(vtkObject *, unsigned long, void *, void *) |
void(* | ClientDataDeleteCallback )(void *) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkCallbackCommand () | |
~vtkCallbackCommand () override | |
Protected Member Functions inherited from vtkCommand | |
vtkCommand () | |
~vtkCommand () override | |
vtkCommand (const vtkCommand &c) | |
void | operator= (const vtkCommand &) |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | CollectRevisions (ostream &) |
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
int | AbortFlagOnExecute |
void * | ClientData |
Protected Attributes inherited from vtkCommand | |
int | AbortFlag |
int | PassiveObserver |
Protected Attributes inherited from vtkObjectBase | |
vtkAtomicInt32 | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
supports function callbacks
Use vtkCallbackCommand for generic function callbacks. That is, this class can be used when you wish to execute a function (of the signature described below) using the Command/Observer design pattern in VTK. The callback function should have the form
void func(vtkObject*, unsigned long eid, void* clientdata, void *calldata)
where the parameter vtkObject* is the object invoking the event; eid is the event id (see vtkCommand.h); clientdata is special data that should is associated with this instance of vtkCallbackCommand; and calldata is data that the vtkObject::InvokeEvent() may send with the callback. For example, the invocation of the ProgressEvent sends along the progress value as calldata.
Definition at line 50 of file vtkCallbackCommand.h.
Definition at line 53 of file vtkCallbackCommand.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 |
vtkCallbackCommand* vtkCallbackCommand::NewInstance | ( | ) | const |
|
inlinestatic |
Definition at line 55 of file vtkCallbackCommand.h.
|
overridevirtual |
Satisfy the superclass API for callbacks.
Recall that the caller is the instance invoking the event; eid is the event id (see vtkCommand.h); and calldata is information sent when the callback was invoked (e.g., progress value in the vtkCommand::ProgressEvent).
Implements vtkCommand.
|
inlinevirtual |
Methods to set and get client and callback information, and the callback function.
Definition at line 72 of file vtkCallbackCommand.h.
|
inlinevirtual |
Definition at line 74 of file vtkCallbackCommand.h.
|
inlinevirtual |
Definition at line 76 of file vtkCallbackCommand.h.
|
inlinevirtual |
Definition at line 79 of file vtkCallbackCommand.h.
|
inline |
Set/Get the abort flag on execute.
If this is set to true the AbortFlag will be set to On automatically when the Execute method is triggered and a callback is set.
Definition at line 87 of file vtkCallbackCommand.h.
|
inline |
Definition at line 89 of file vtkCallbackCommand.h.
|
inline |
Definition at line 91 of file vtkCallbackCommand.h.
|
inline |
Definition at line 93 of file vtkCallbackCommand.h.
void(* vtkCallbackCommand::Callback) (vtkObject *, unsigned long, void *, void *) |
Definition at line 96 of file vtkCallbackCommand.h.
void(* vtkCallbackCommand::ClientDataDeleteCallback) (void *) |
Definition at line 97 of file vtkCallbackCommand.h.
|
protected |
Definition at line 101 of file vtkCallbackCommand.h.
|
protected |
Definition at line 102 of file vtkCallbackCommand.h.