VTK
|
#include <vtkTclUtil.h>
Public Member Functions | |
void | SetStringCommand (const char *arg) |
void | SetInterp (Tcl_Interp *interp) |
void | Execute (vtkObject *, unsigned long, void *) |
All derived classes of vtkCommand must implement this method. 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... | |
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 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 vtkTclCommand * | 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 | |
char * | StringCommand |
Tcl_Interp * | Interp |
Protected Member Functions | |
vtkTclCommand () | |
~vtkTclCommand () | |
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 &) |
Definition at line 63 of file vtkTclUtil.h.
|
protected |
|
protected |
|
inlinestatic |
Definition at line 66 of file vtkTclUtil.h.
void vtkTclCommand::SetStringCommand | ( | const char * | arg | ) |
|
inline |
Definition at line 69 of file vtkTclUtil.h.
|
virtual |
All derived classes of vtkCommand must implement this method.
This is the method that actually does the work of the callback. The caller argument is the object invoking the event, the eventId parameter is the id of the event, and callData parameter is data that can be passed into the execute method. (Note: vtkObject::InvokeEvent() takes two parameters: the event id (or name) and call data. Typically call data is nullptr, but the user can package data and pass it this way. Alternatively, a derived class of vtkCommand can be used to pass data.)
Implements vtkCommand.
char* vtkTclCommand::StringCommand |
Definition at line 73 of file vtkTclUtil.h.
Tcl_Interp* vtkTclCommand::Interp |
Definition at line 74 of file vtkTclUtil.h.