VTK
|
a simple event forwarder command More...
#include <vtkEventForwarderCommand.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... | |
vtkEventForwarderCommand * | NewInstance () const |
void | Execute (vtkObject *caller, unsigned long eid, void *callData) override |
Satisfy the superclass API for callbacks. More... | |
virtual void | SetTarget (vtkObject *obj) |
Methods to set and get client and callback information, and the callback function. More... | |
virtual void * | GetTarget () |
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 vtkEventForwarderCommand * | SafeDownCast (vtkObjectBase *o) |
static vtkEventForwarderCommand * | 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... | |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkEventForwarderCommand () | |
~vtkEventForwarderCommand () 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 | |
vtkObject * | Target |
Protected Attributes inherited from vtkCommand | |
int | AbortFlag |
int | PassiveObserver |
Protected Attributes inherited from vtkObjectBase | |
vtkAtomicInt32 | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
a simple event forwarder command
Use vtkEventForwarderCommand to forward an event to a new object. This command will intercept the event, and use InvokeEvent on a 'target' as if that object was the one that invoked the event instead of the object this command was attached to using AddObserver.
Definition at line 34 of file vtkEventForwarderCommand.h.
Definition at line 37 of file vtkEventForwarderCommand.h.
|
protected |
|
inlineoverrideprotected |
Definition at line 66 of file vtkEventForwarderCommand.h.
|
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 |
vtkEventForwarderCommand* vtkEventForwarderCommand::NewInstance | ( | ) | const |
|
inlinestatic |
Definition at line 39 of file vtkEventForwarderCommand.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 56 of file vtkEventForwarderCommand.h.
|
inlinevirtual |
Definition at line 58 of file vtkEventForwarderCommand.h.
|
protected |
Definition at line 63 of file vtkEventForwarderCommand.h.