VTK  9.4.20251007
vtkRenderWindowInteractor.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
41
42#ifndef vtkRenderWindowInteractor_h
43#define vtkRenderWindowInteractor_h
44
45#include "vtkCommand.h" // for method sig
46#include "vtkObject.h"
47#include "vtkRenderingCoreModule.h" // For export macro
48#include "vtkSmartPointer.h" // For InteractorStyle
49#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
50
51VTK_ABI_NAMESPACE_BEGIN
52class vtkTimerIdMap;
53
54// Timer flags for win32/X compatibility
55#define VTKI_TIMER_FIRST 0
56#define VTKI_TIMER_UPDATE 1
57
58// maximum pointers active at once
59// for example in multitouch
60#define VTKI_MAX_POINTERS 5
61
64class vtkAssemblyPath;
67class vtkRenderWindow;
68class vtkRenderer;
72
73class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkRenderWindowInteractor : public vtkObject
74{
75
77
78public:
81 void PrintSelf(ostream& os, vtkIndent indent) override;
82
84
91 virtual void Initialize();
93 {
94 this->Initialized = 0;
95 this->Enabled = 0;
96 this->Initialize();
97 }
98
99
104 void UnRegister(vtkObjectBase* o) override;
105
111 virtual void Start();
112
119 virtual void ProcessEvents() {}
120
124 vtkGetMacro(Done, bool);
125 vtkSetMacro(Done, bool);
126
136 virtual void Enable()
137 {
138 this->Enabled = 1;
139 this->Modified();
140 }
141 virtual void Disable()
142 {
143 this->Enabled = 0;
144 this->Modified();
145 }
146 vtkGetMacro(Enabled, int);
147
149
153 vtkBooleanMacro(EnableRender, bool);
155 vtkSetMacro(EnableRender, bool);
157 vtkGetMacro(EnableRender, bool);
159
161
165 vtkGetObjectMacro(RenderWindow, vtkRenderWindow);
167
169
177
185 virtual void UpdateSize(int x, int y);
186
204 virtual int CreateTimer(int timerType); // first group, for backward compatibility
205 virtual int DestroyTimer(); // first group, for backward compatibility
206
211 int CreateRepeatingTimer(unsigned long duration);
212
217 int CreateOneShotTimer(unsigned long duration);
218
223 int IsOneShotTimer(int timerId);
224
228 unsigned long GetTimerDuration(int timerId);
229
233 int ResetTimer(int timerId);
234
239 int DestroyTimer(int timerId);
240
244 virtual int GetVTKTimerId(int platformTimerId);
245
246 // Moved into the public section of the class so that classless timer procs
247 // can access these enum members without being "friends"...
248 enum
249 {
252 };
253
255
264 vtkSetClampMacro(TimerDuration, unsigned long, 1, 100000);
265 vtkGetMacro(TimerDuration, unsigned long);
267
269
281 vtkSetMacro(TimerEventId, int);
282 vtkGetMacro(TimerEventId, int);
283 vtkSetMacro(TimerEventType, int);
284 vtkGetMacro(TimerEventType, int);
285 vtkSetMacro(TimerEventDuration, int);
286 vtkGetMacro(TimerEventDuration, int);
287 vtkSetMacro(TimerEventPlatformId, int);
288 vtkGetMacro(TimerEventPlatformId, int);
290
296 virtual void TerminateApp() { this->Done = true; }
297
299
306
308
316
318
325 vtkSetClampMacro(DesiredUpdateRate, double, 0.0001, VTK_FLOAT_MAX);
326 vtkGetMacro(DesiredUpdateRate, double);
328
330
335 vtkSetClampMacro(StillUpdateRate, double, 0.0001, VTK_FLOAT_MAX);
336 vtkGetMacro(StillUpdateRate, double);
338
340
344 vtkGetMacro(Initialized, int);
346
348
357 vtkGetObjectMacro(Picker, vtkAbstractPicker);
359
365
367
377
379
383 virtual void ExitCallback();
384 virtual void UserCallback();
385 virtual void StartPickCallback();
386 virtual void EndPickCallback();
388
392 virtual void GetMousePosition(int* x, int* y)
393 {
394 *x = 0;
395 *y = 0;
396 }
397
399
406
411 virtual void Render();
412
414
419 void FlyTo(vtkRenderer* ren, double x, double y, double z);
420 void FlyTo(vtkRenderer* ren, double* x) { this->FlyTo(ren, x[0], x[1], x[2]); }
421 void FlyToImage(vtkRenderer* ren, double x, double y);
422 void FlyToImage(vtkRenderer* ren, double* x) { this->FlyToImage(ren, x[0], x[1]); }
424
426
429 vtkSetClampMacro(NumberOfFlyFrames, int, 1, VTK_INT_MAX);
430 vtkGetMacro(NumberOfFlyFrames, int);
432
434
438 vtkSetMacro(Dolly, double);
439 vtkGetMacro(Dolly, double);
441
443
451 vtkGetVector2Macro(EventPosition, int);
452 vtkGetVector2Macro(LastEventPosition, int);
453 vtkSetVector2Macro(LastEventPosition, int);
454 virtual void SetEventPosition(int x, int y)
455 {
456 vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting EventPosition to (" << x
457 << "," << y << ")");
458 if (this->EventPosition[0] != x || this->EventPosition[1] != y ||
459 this->LastEventPosition[0] != x || this->LastEventPosition[1] != y)
460 {
461 this->LastEventPosition[0] = this->EventPosition[0];
462 this->LastEventPosition[1] = this->EventPosition[1];
463 this->EventPosition[0] = x;
464 this->EventPosition[1] = y;
465 this->Modified();
466 }
467 }
468 virtual void SetEventPosition(int pos[2]) { this->SetEventPosition(pos[0], pos[1]); }
469 virtual void SetEventPositionFlipY(int x, int y)
470 {
471 this->SetEventPosition(x, this->Size[1] - y - 1);
472 }
473 virtual void SetEventPositionFlipY(int pos[2]) { this->SetEventPositionFlipY(pos[0], pos[1]); }
475
476 virtual int* GetEventPositions(int pointerIndex)
477 {
478 if (pointerIndex >= VTKI_MAX_POINTERS)
479 {
480 return nullptr;
481 }
482 return this->EventPositions[pointerIndex];
483 }
484 virtual int* GetLastEventPositions(int pointerIndex)
485 {
486 if (pointerIndex >= VTKI_MAX_POINTERS)
487 {
488 return nullptr;
489 }
490 return this->LastEventPositions[pointerIndex];
491 }
492 virtual void SetEventPosition(int x, int y, int pointerIndex)
493 {
494 if (pointerIndex < 0 || pointerIndex >= VTKI_MAX_POINTERS)
495 {
496 return;
497 }
498 if (pointerIndex == 0)
499 {
500 this->LastEventPosition[0] = this->EventPosition[0];
501 this->LastEventPosition[1] = this->EventPosition[1];
502 this->EventPosition[0] = x;
503 this->EventPosition[1] = y;
504 }
505 vtkDebugMacro(<< this->GetClassName() << " (" << this << "): setting EventPosition to (" << x
506 << "," << y << ") for pointerIndex number " << pointerIndex);
507 if (this->EventPositions[pointerIndex][0] != x || this->EventPositions[pointerIndex][1] != y ||
508 this->LastEventPositions[pointerIndex][0] != x ||
509 this->LastEventPositions[pointerIndex][1] != y)
510 {
511 this->LastEventPositions[pointerIndex][0] = this->EventPositions[pointerIndex][0];
512 this->LastEventPositions[pointerIndex][1] = this->EventPositions[pointerIndex][1];
513 this->EventPositions[pointerIndex][0] = x;
514 this->EventPositions[pointerIndex][1] = y;
515 this->Modified();
516 }
517 }
518 virtual void SetEventPosition(int pos[2], int pointerIndex)
519 {
520 this->SetEventPosition(pos[0], pos[1], pointerIndex);
521 }
522 virtual void SetEventPositionFlipY(int x, int y, int pointerIndex)
523 {
524 this->SetEventPosition(x, this->Size[1] - y - 1, pointerIndex);
525 }
526 virtual void SetEventPositionFlipY(int pos[2], int pointerIndex)
527 {
528 this->SetEventPositionFlipY(pos[0], pos[1], pointerIndex);
529 }
530
532
539 vtkSetMacro(AltKey, int);
540 vtkGetMacro(AltKey, int);
542
544
549 vtkSetMacro(ControlKey, int);
550 vtkGetMacro(ControlKey, int);
552
554
557 vtkSetMacro(ShiftKey, int);
558 vtkGetMacro(ShiftKey, int);
560
562
585 vtkSetMacro(KeyCode, char);
586 vtkGetMacro(KeyCode, char);
588
590
594 vtkSetMacro(RepeatCount, int);
595 vtkGetMacro(RepeatCount, int);
597
599
619 vtkSetStringMacro(KeySym);
620 vtkGetStringMacro(KeySym);
622
624
627 vtkSetMacro(PointerIndex, int);
628 vtkGetMacro(PointerIndex, int);
630
632
635 void SetRotation(double rotation);
636 vtkGetMacro(Rotation, double);
637 vtkGetMacro(LastRotation, double);
639
641
644 void SetScale(double scale);
645 vtkGetMacro(Scale, double);
646 vtkGetMacro(LastScale, double);
648
650
653 void SetTranslation(double val[2]);
654 vtkGetVector2Macro(Translation, double);
655 vtkGetVector2Macro(LastTranslation, double);
657
659
662 void SetEventInformation(int x, int y, int ctrl, int shift, char keycode, int repeatcount,
663 const char* keysym, int pointerIndex)
664 {
665 this->SetEventPosition(x, y, pointerIndex);
666 this->ControlKey = ctrl;
667 this->ShiftKey = shift;
668 this->KeyCode = keycode;
669 this->RepeatCount = repeatcount;
670 this->PointerIndex = pointerIndex;
671 if (keysym)
672 {
673 this->SetKeySym(keysym);
674 }
675 this->Modified();
676 }
677 void SetEventInformation(int x, int y, int ctrl = 0, int shift = 0, char keycode = 0,
678 int repeatcount = 0, const char* keysym = nullptr)
679 {
680 this->SetEventInformation(x, y, ctrl, shift, keycode, repeatcount, keysym, 0);
681 }
682
683
685
689 void SetEventInformationFlipY(int x, int y, int ctrl, int shift, char keycode, int repeatcount,
690 const char* keysym, int pointerIndex)
691 {
693 x, this->Size[1] - y - 1, ctrl, shift, keycode, repeatcount, keysym, pointerIndex);
694 }
695 void SetEventInformationFlipY(int x, int y, int ctrl = 0, int shift = 0, char keycode = 0,
696 int repeatcount = 0, const char* keysym = nullptr)
697 {
698 this->SetEventInformationFlipY(x, y, ctrl, shift, keycode, repeatcount, keysym, 0);
699 }
700
701
703
706 void SetKeyEventInformation(int ctrl = 0, int shift = 0, char keycode = 0, int repeatcount = 0,
707 const char* keysym = nullptr)
708 {
709 this->ControlKey = ctrl;
710 this->ShiftKey = shift;
711 this->KeyCode = keycode;
712 this->RepeatCount = repeatcount;
713 if (keysym)
714 {
715 this->SetKeySym(keysym);
716 }
717 this->Modified();
718 }
719
720
722
733 vtkSetVector2Macro(Size, int);
734 vtkGetVector2Macro(Size, int);
735 vtkSetVector2Macro(EventSize, int);
736 vtkGetVector2Macro(EventSize, int);
738
744 virtual vtkRenderer* FindPokedRenderer(int, int);
745
754
756
764 vtkSetMacro(UseTDx, bool);
765 vtkGetMacro(UseTDx, bool);
767
769
774 virtual void MouseMoveEvent();
775 virtual void RightButtonPressEvent();
777 virtual void LeftButtonPressEvent();
783 virtual void MouseWheelLeftEvent();
784 virtual void MouseWheelRightEvent();
785 virtual void ExposeEvent();
786 virtual void ConfigureEvent();
787 virtual void EnterEvent();
788 virtual void LeaveEvent();
789 virtual void KeyPressEvent();
790 virtual void KeyReleaseEvent();
791 virtual void CharEvent();
792 virtual void ExitEvent();
795 virtual void FifthButtonPressEvent();
798
800
804 virtual void StartPinchEvent();
805 virtual void PinchEvent();
806 virtual void EndPinchEvent();
807 virtual void StartRotateEvent();
808 virtual void RotateEvent();
809 virtual void EndRotateEvent();
810 virtual void StartPanEvent();
811 virtual void PanEvent();
812 virtual void EndPanEvent();
813 virtual void TapEvent();
814 virtual void LongTapEvent();
815 virtual void SwipeEvent();
817
819
825 vtkSetMacro(RecognizeGestures, bool);
826 vtkGetMacro(RecognizeGestures, bool);
828
830
835 vtkGetMacro(PointersDownCount, int);
837
839
846 void ClearContact(size_t contactID);
847 int GetPointerIndexForContact(size_t contactID);
849 bool IsPointerIndexSet(int i);
850 void ClearPointerIndex(int i);
852
872
874
883
884protected:
887
891
892 // Used as a helper object to pick instances of vtkProp
895
896 bool Done; // is the event loop done running
897
903
907 int Style;
912
913 // Event information
918 double Rotation;
920 double Scale;
921 double LastScale;
922 double Translation[2];
925 char* KeySym;
928 int EventSize[2];
929 int Size[2];
934
938
940
941 // control the fly to
943 double Dolly;
944
954 void GrabFocus(vtkCommand* mouseEvents, vtkCommand* keypressEvents = nullptr)
955 {
956 this->Superclass::InternalGrabFocus(mouseEvents, keypressEvents);
957 }
959
964
965 // Timer related members
966 friend struct vtkTimerStruct;
967 vtkTimerIdMap* TimerMap; // An internal, PIMPLd map of timers and associated attributes
968 unsigned long TimerDuration; // in milliseconds
970
976 virtual int InternalCreateTimer(int timerId, int timerType, unsigned long duration);
977 virtual int InternalDestroyTimer(int platformTimerId);
980
981 // Force the interactor to handle the Start() event loop, ignoring any
982 // overrides. (Overrides are registered by observing StartEvent on the
983 // interactor.)
985
989 virtual void StartEventLoop() {}
990
991 bool UseTDx; // 3DConnexion device.
992
993 // when recognizing gestures VTK will take multitouch events
994 // if it receives them and convert them to gestures
1001
1002private:
1004 void operator=(const vtkRenderWindowInteractor&) = delete;
1005};
1006
1007VTK_ABI_NAMESPACE_END
1008#endif
define API for picking subclasses
abstract API for pickers that can pick an instance of vtkProp
a list of nodes that form an assembly path
superclass for callback/observer methods
Definition vtkCommand.h:384
create a window for renderers to draw into
a simple class to control print indentation
Definition vtkIndent.h:29
record and play VTK events passing through a vtkRenderWindowInteractor
an abstract superclass for classes observing events invoked by vtkRenderWindowInteractor
const char * GetClassName() const
Return the class name as a string.
void InternalReleaseFocus()
These methods allow a command to exclusively grab all events.
void InternalGrabFocus(vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
These methods allow a command to exclusively grab all events.
virtual void Modified()
Update the modification time for this object.
manage contention for cursors and other resources
Class defines API to manage the picking process.
unsigned long GetTimerDuration(int timerId)
Get the duration (in milliseconds) for the specified timerId.
void HideCursor()
Hide or show the mouse cursor, it is nice to be able to hide the default cursor if you want VTK to di...
virtual void StartEventLoop()
Run the event loop (does not return until TerminateApp is called).
virtual void FourthButtonReleaseEvent()
Fire various events.
virtual void PinchEvent()
Fire various gesture based events.
virtual void SwipeEvent()
Fire various gesture based events.
virtual void StartRotateEvent()
Fire various gesture based events.
void SetRenderWindow(vtkRenderWindow *aren)
Set/Get the rendering window being controlled by this object.
void SetKeyEventInformation(int ctrl=0, int shift=0, char keycode=0, int repeatcount=0, const char *keysym=nullptr)
Set all the keyboard-related event information in one call.
void UnRegister(vtkObjectBase *o) override
This Method detects loops of RenderWindow-Interactor, so objects are freed properly.
virtual void SetEventPositionFlipY(int pos[2], int pointerIndex)
virtual void EndPinchEvent()
Fire various gesture based events.
virtual void KeyReleaseEvent()
Fire various events.
virtual int * GetLastEventPositions(int pointerIndex)
virtual void EndPickCallback()
These methods correspond to the Exit, User and Pick callbacks.
virtual void Enable()
Enable/Disable interactions.
virtual int InternalDestroyTimer(int platformTimerId)
Internal methods for creating and destroying timers that must be implemented by subclasses.
int CreateRepeatingTimer(unsigned long duration)
Create a repeating timer, with the specified duration (in milliseconds).
vtkObserverMediator * ObserverMediator
Widget mediators are used to resolve contention for cursors and other resources.
virtual void EndRotateEvent()
Fire various gesture based events.
virtual void ExitEvent()
Fire various events.
void FlyToImage(vtkRenderer *ren, double x, double y)
Given a position x, move the current camera's focal point to x.
void SetRotation(double rotation)
Set/get the rotation for the gesture in degrees, update LastRotation.
virtual void ExposeEvent()
Fire various events.
virtual void EndPanEvent()
Fire various gesture based events.
virtual void Render()
Render the scene.
int EventPositions[VTKI_MAX_POINTERS][2]
virtual vtkRenderer * FindPokedRenderer(int, int)
When an event occurs, we must determine which Renderer the event occurred within, since one RenderWin...
virtual vtkAbstractPropPicker * CreateDefaultPicker()
Create default picker.
virtual void MouseWheelLeftEvent()
Fire various events.
virtual void MouseWheelForwardEvent()
Fire various events.
virtual void SetEventPosition(int x, int y)
Set/Get information about the current event.
virtual void TerminateApp()
This function is called on 'q','e' keypress if exitmethod is not specified and should be overridden b...
virtual void UserCallback()
These methods correspond to the Exit, User and Pick callbacks.
void SetHardwareWindow(vtkHardwareWindow *aren)
Set/Get the hardware window being controlled by this object.
virtual void LeftButtonReleaseEvent()
Fire various events.
virtual void CharEvent()
Fire various events.
virtual int DestroyTimer()
int IsOneShotTimer(int timerId)
Query whether the specified timerId is a one shot timer.
void SetEventInformation(int x, int y, int ctrl, int shift, char keycode, int repeatcount, const char *keysym, int pointerIndex)
Set all the event information in one call.
vtkObserverMediator * GetObserverMediator()
Return the object used to mediate between vtkInteractorObservers contending for resources.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void UpdateSize(int x, int y)
Event loop notification member for window size change.
virtual vtkPickingManager * CreateDefaultPickingManager()
Create default pickingManager.
virtual void LeaveEvent()
Fire various events.
static bool InteractorManagesTheEventLoop
This flag is useful when you are integrating VTK in a larger system.
virtual vtkInteractorObserver * GetInteractorStyle()
External switching between joystick/trackball/new?
virtual void FourthButtonPressEvent()
Fire various events.
virtual void MouseWheelRightEvent()
Fire various events.
virtual void EnterEvent()
Fire various events.
virtual int InternalCreateTimer(int timerId, int timerType, unsigned long duration)
Internal methods for creating and destroying timers that must be implemented by subclasses.
~vtkRenderWindowInteractor() override
virtual void RightButtonPressEvent()
Fire various events.
virtual void Start()
Start the event loop.
void SetEventInformation(int x, int y, int ctrl=0, int shift=0, char keycode=0, int repeatcount=0, const char *keysym=nullptr)
Set all the event information in one call.
void ShowCursor()
Hide or show the mouse cursor, it is nice to be able to hide the default cursor if you want VTK to di...
virtual void ConfigureEvent()
Fire various events.
virtual void FifthButtonPressEvent()
Fire various events.
virtual int * GetEventPositions(int pointerIndex)
virtual void StartPanEvent()
Fire various gesture based events.
virtual int CreateTimer(int timerType)
This class provides two groups of methods for manipulating timers.
int ResetTimer(int timerId)
Reset the specified timer.
int GetCurrentTimerId()
Internal methods for creating and destroying timers that must be implemented by subclasses.
virtual void MouseWheelBackwardEvent()
Fire various events.
virtual void SetInteractorStyle(vtkInteractorObserver *)
External switching between joystick/trackball/new?
void ClearContact(size_t contactID)
Most multitouch systems use persistent contact/pointer ids to track events/motion during multitouch e...
size_t PointerIndexLookup[VTKI_MAX_POINTERS]
void FlyTo(vtkRenderer *ren, double x, double y, double z)
Given a position x, move the current camera's focal point to x.
int CreateOneShotTimer(unsigned long duration)
Create a one shot timer, with the specified duration (in milliseconds).
void ReInitialize()
Prepare for handling events and set the Enabled flag to true.
virtual void ExitCallback()
These methods correspond to the Exit, User and Pick callbacks.
void SetEventInformationFlipY(int x, int y, int ctrl=0, int shift=0, char keycode=0, int repeatcount=0, const char *keysym=nullptr)
Calls SetEventInformation, but flips the Y based on the current Size[1] value (i.e.
vtkSmartPointer< vtkInteractorObserver > InteractorStyle
void SetTranslation(double val[2])
Set/get the translation for pan/swipe gestures, update LastTranslation.
virtual void SetCurrentGesture(vtkCommand::EventIds eid)
Get the current gesture that was recognized when handling multitouch and VR events.
void FlyToImage(vtkRenderer *ren, double *x)
Given a position x, move the current camera's focal point to x.
virtual void PanEvent()
Fire various gesture based events.
virtual void ProcessEvents()
Process all user-interaction, timer events and return.
virtual void RightButtonReleaseEvent()
Fire various events.
int LastEventPositions[VTKI_MAX_POINTERS][2]
virtual void SetEventPositionFlipY(int x, int y, int pointerIndex)
void SetEventInformationFlipY(int x, int y, int ctrl, int shift, char keycode, int repeatcount, const char *keysym, int pointerIndex)
Calls SetEventInformation, but flips the Y based on the current Size[1] value (i.e.
virtual void GetMousePosition(int *x, int *y)
Get the current position of the mouse.
virtual void SetEventPositionFlipY(int x, int y)
Set/Get information about the current event.
int GetPointerIndexForContact(size_t contactID)
Most multitouch systems use persistent contact/pointer ids to track events/motion during multitouch e...
static vtkRenderWindowInteractor * New()
virtual void FifthButtonReleaseEvent()
Fire various events.
bool IsPointerIndexSet(int i)
Most multitouch systems use persistent contact/pointer ids to track events/motion during multitouch e...
virtual void LeftButtonPressEvent()
Fire various events.
void GrabFocus(vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
friend class vtkInteractorObserver
These methods allow the interactor to control which events are processed.
virtual vtkCommand::EventIds GetCurrentGesture() const
Get the current gesture that was recognized when handling multitouch and VR events.
virtual void MiddleButtonPressEvent()
Fire various events.
virtual void StartPickCallback()
These methods correspond to the Exit, User and Pick callbacks.
int GetPointerIndexForExistingContact(size_t contactID)
Most multitouch systems use persistent contact/pointer ids to track events/motion during multitouch e...
virtual void SetKeySym(const char *)
Set/get the key symbol for the key that was pressed.
virtual void MouseMoveEvent()
Fire various events.
void FlyTo(vtkRenderer *ren, double *x)
Given a position x, move the current camera's focal point to x.
virtual void StartPinchEvent()
Fire various gesture based events.
virtual void SetEventPosition(int pos[2])
Set/Get information about the current event.
virtual void SetPicker(vtkAbstractPicker *)
Set/Get the object used to perform pick operations.
virtual int GetVTKTimerId(int platformTimerId)
Get the VTK timer ID that corresponds to the supplied platform ID.
void SetScale(double scale)
Set/get the scale for the gesture, updates LastScale.
virtual void Initialize()
Prepare for handling events and set the Enabled flag to true.
virtual void RotateEvent()
Fire various gesture based events.
virtual void TapEvent()
Fire various gesture based events.
virtual void SetEventPositionFlipY(int pos[2])
Set/Get information about the current event.
virtual void SetEventPosition(int x, int y, int pointerIndex)
int StartingEventPositions[VTKI_MAX_POINTERS][2]
void ClearPointerIndex(int i)
Most multitouch systems use persistent contact/pointer ids to track events/motion during multitouch e...
virtual void LongTapEvent()
Fire various gesture based events.
virtual void MiddleButtonReleaseEvent()
Fire various events.
virtual void RecognizeGesture(vtkCommand::EventIds)
virtual void SetEventPosition(int pos[2], int pointerIndex)
virtual void SetPickingManager(vtkPickingManager *)
Set the picking manager.
virtual void KeyPressEvent()
Fire various events.
create a window for renderers to draw into
abstract specification for renderers
Definition vtkRenderer.h:63
Hold a reference to a vtkObjectBase instance.
int vtkTypeBool
Definition vtkABI.h:64
#define VTKI_MAX_POINTERS
#define VTK_INT_MAX
Definition vtkType.h:144
#define VTK_FLOAT_MAX
Definition vtkType.h:152
#define VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL
#define VTK_MARSHAL_EXCLUDE_REASON_NOT_SUPPORTED
#define VTK_MARSHALAUTO
#define VTK_MARSHALEXCLUDE(reason)