VTK
|
implements Carbon specific functions required by vtkRenderWindowInteractor. More...
#include <vtkCarbonRenderWindowInteractor.h>
Public Types | |
typedef vtkRenderWindowInteractor | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkCarbonRenderWindowInteractor * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | Initialize () |
void | TerminateApp (void) |
virtual void | ExitCallback () |
virtual void | Enable () |
virtual void | Disable () |
void | GetLastMouseDelta (int delta[2]) |
void | SetLastMouseDelta (int deltaX, int deltaY) |
void | SetMouseInsideWindow (int val) |
int | GetMouseInsideWindow () |
void | SetMouseButtonDown (int val) |
int | GetMouseButtonDown () |
Static Public Member Functions | |
static vtkCarbonRenderWindowInteractor * | New () |
static int | IsTypeOf (const char *type) |
static vtkCarbonRenderWindowInteractor * | SafeDownCast (vtkObjectBase *o) |
static void | SetClassExitMethod (void(*f)(void *), void *arg) |
static void | SetClassExitMethodArgDelete (void(*f)(void *)) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkCarbonRenderWindowInteractor () | |
~vtkCarbonRenderWindowInteractor () | |
virtual void | StartEventLoop () |
virtual int | InternalCreateTimer (int timerId, int timerType, unsigned long duration) |
virtual int | InternalDestroyTimer (int platformTimerId) |
Protected Attributes | |
EventHandlerUPP | ViewProcUPP |
EventHandlerUPP | WindowProcUPP |
int | LastMouseDelta [2] |
int | LeaveCheckId |
int | MouseInsideWindow |
int | MouseButtonDown |
Static Protected Attributes | |
static void(* | ClassExitMethod )(void *) |
static void(* | ClassExitMethodArgDelete )(void *) |
static void * | ClassExitMethodArg |
implements Carbon specific functions required by vtkRenderWindowInteractor.
The interactor interfaces with vtkCarbonWindow to trap messages from the Carbon window manager and send them to vtk. Since OS X applications typically use the Command key where UNIX and Windows applications would use the Ctrl key, this interactor maps the Command key to Ctrl. In versions of VTK prior to VTK 6.2, it was mapped to Alt. On OS X, the Option key can be used as Alt.
Definition at line 44 of file vtkCarbonRenderWindowInteractor.h.
Reimplemented from vtkRenderWindowInteractor.
Definition at line 50 of file vtkCarbonRenderWindowInteractor.h.
vtkCarbonRenderWindowInteractor::vtkCarbonRenderWindowInteractor | ( | ) | [protected] |
static vtkCarbonRenderWindowInteractor* vtkCarbonRenderWindowInteractor::New | ( | ) | [static] |
Construct object so that light follows camera motion.
Reimplemented from vtkRenderWindowInteractor.
static int vtkCarbonRenderWindowInteractor::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type 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 vtkRenderWindowInteractor.
virtual int vtkCarbonRenderWindowInteractor::IsA | ( | const char * | name | ) | [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 vtkRenderWindowInteractor.
static vtkCarbonRenderWindowInteractor* vtkCarbonRenderWindowInteractor::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkRenderWindowInteractor.
virtual vtkObjectBase* vtkCarbonRenderWindowInteractor::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkRenderWindowInteractor.
Reimplemented from vtkRenderWindowInteractor.
void vtkCarbonRenderWindowInteractor::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkRenderWindowInteractor.
virtual void vtkCarbonRenderWindowInteractor::Initialize | ( | ) | [virtual] |
Initialize the even handler
Reimplemented from vtkRenderWindowInteractor.
virtual void vtkCarbonRenderWindowInteractor::Enable | ( | ) | [virtual] |
Enable/Disable interactions. By default interactors are enabled when initialized. Initialize() must be called prior to enabling/disabling interaction. These methods are used when a window/widget is being shared by multiple renderers and interactors. This allows a "modal" display where one interactor is active when its data is to be displayed and all other interactors associated with the widget are disabled when their data is not displayed.
Reimplemented from vtkRenderWindowInteractor.
virtual void vtkCarbonRenderWindowInteractor::Disable | ( | ) | [virtual] |
Enable/Disable interactions. By default interactors are enabled when initialized. Initialize() must be called prior to enabling/disabling interaction. These methods are used when a window/widget is being shared by multiple renderers and interactors. This allows a "modal" display where one interactor is active when its data is to be displayed and all other interactors associated with the widget are disabled when their data is not displayed.
Reimplemented from vtkRenderWindowInteractor.
void vtkCarbonRenderWindowInteractor::TerminateApp | ( | void | ) | [virtual] |
Carbon specific application terminate, calls ClassExitMethod then calls PostQuitMessage(0) to terminate app. An application can Specify ExitMethod for alternative behaviour (i.e. suppresion of keyboard exit)
Reimplemented from vtkRenderWindowInteractor.
static void vtkCarbonRenderWindowInteractor::SetClassExitMethod | ( | void(*)(void *) | f, |
void * | arg | ||
) | [static] |
Methods to set the default exit method for the class. This method is only used if no instance level ExitMethod has been defined. It is provided as a means to control how an interactor is exited given the various language bindings (tcl, Carbon, etc.).
static void vtkCarbonRenderWindowInteractor::SetClassExitMethodArgDelete | ( | void(*)(void *) | f | ) | [static] |
Methods to set the default exit method for the class. This method is only used if no instance level ExitMethod has been defined. It is provided as a means to control how an interactor is exited given the various language bindings (tcl, Carbon, etc.).
virtual void vtkCarbonRenderWindowInteractor::ExitCallback | ( | ) | [virtual] |
These methods correspond to the the Exit, User and Pick callbacks. They allow for the Style to invoke them.
Reimplemented from vtkRenderWindowInteractor.
void vtkCarbonRenderWindowInteractor::GetLastMouseDelta | ( | int | delta[2] | ) | [inline] |
This method is for internal use only. Track the Carbon mouse deltas Carbon events that don't provide mouse position directly.
Definition at line 90 of file vtkCarbonRenderWindowInteractor.h.
void vtkCarbonRenderWindowInteractor::SetLastMouseDelta | ( | int | deltaX, |
int | deltaY | ||
) | [inline] |
This method is for internal use only. Track the Carbon mouse deltas Carbon events that don't provide mouse position directly.
Definition at line 92 of file vtkCarbonRenderWindowInteractor.h.
void vtkCarbonRenderWindowInteractor::SetMouseInsideWindow | ( | int | val | ) | [inline] |
This method is for internal use only. This is a state variable used for Enter/Leave events. If the mouse is dragged outside of the window, MouseInsideWindow will remain set until the mouse button is released outside of the window.
Definition at line 101 of file vtkCarbonRenderWindowInteractor.h.
int vtkCarbonRenderWindowInteractor::GetMouseInsideWindow | ( | ) | [inline] |
This method is for internal use only. This is a state variable used for Enter/Leave events. If the mouse is dragged outside of the window, MouseInsideWindow will remain set until the mouse button is released outside of the window.
Definition at line 103 of file vtkCarbonRenderWindowInteractor.h.
void vtkCarbonRenderWindowInteractor::SetMouseButtonDown | ( | int | val | ) | [inline] |
This method is for internal use only. This is a state variable used for Enter/Leave events. It keeps track of whether a mouse button is down.
Definition at line 111 of file vtkCarbonRenderWindowInteractor.h.
int vtkCarbonRenderWindowInteractor::GetMouseButtonDown | ( | ) | [inline] |
This method is for internal use only. This is a state variable used for Enter/Leave events. It keeps track of whether a mouse button is down.
Definition at line 113 of file vtkCarbonRenderWindowInteractor.h.
virtual int vtkCarbonRenderWindowInteractor::InternalCreateTimer | ( | int | timerId, |
int | timerType, | ||
unsigned long | duration | ||
) | [protected, virtual] |
Carbon-specific internal timer methods. See the superclass for detailed documentation.
Reimplemented from vtkRenderWindowInteractor.
virtual int vtkCarbonRenderWindowInteractor::InternalDestroyTimer | ( | int | platformTimerId | ) | [protected, virtual] |
Carbon-specific internal timer methods. See the superclass for detailed documentation.
Reimplemented from vtkRenderWindowInteractor.
virtual void vtkCarbonRenderWindowInteractor::StartEventLoop | ( | ) | [protected, virtual] |
This will start up the event loop and never return. If you call this method it will loop processing events until the application is exited.
Reimplemented from vtkRenderWindowInteractor.
EventHandlerUPP vtkCarbonRenderWindowInteractor::ViewProcUPP [protected] |
Definition at line 121 of file vtkCarbonRenderWindowInteractor.h.
EventHandlerUPP vtkCarbonRenderWindowInteractor::WindowProcUPP [protected] |
Definition at line 122 of file vtkCarbonRenderWindowInteractor.h.
int vtkCarbonRenderWindowInteractor::LastMouseDelta[2] [protected] |
Definition at line 125 of file vtkCarbonRenderWindowInteractor.h.
int vtkCarbonRenderWindowInteractor::LeaveCheckId [protected] |
Definition at line 126 of file vtkCarbonRenderWindowInteractor.h.
Definition at line 127 of file vtkCarbonRenderWindowInteractor.h.
int vtkCarbonRenderWindowInteractor::MouseButtonDown [protected] |
Definition at line 128 of file vtkCarbonRenderWindowInteractor.h.
void(* vtkCarbonRenderWindowInteractor::ClassExitMethod)(void *) [static, protected] |
Class variables so an exit method can be defined for this class (used to set different exit methods for various language bindings, i.e. tcl, java, Carbon)
Definition at line 135 of file vtkCarbonRenderWindowInteractor.h.
void(* vtkCarbonRenderWindowInteractor::ClassExitMethodArgDelete)(void *) [static, protected] |
Class variables so an exit method can be defined for this class (used to set different exit methods for various language bindings, i.e. tcl, java, Carbon)
Definition at line 136 of file vtkCarbonRenderWindowInteractor.h.
void* vtkCarbonRenderWindowInteractor::ClassExitMethodArg [static, protected] |
Class variables so an exit method can be defined for this class (used to set different exit methods for various language bindings, i.e. tcl, java, Carbon)
Definition at line 137 of file vtkCarbonRenderWindowInteractor.h.