VTK
vtkTDxInteractorStyle.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTDxInteractorStyle.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
35#ifndef vtkTDxInteractorStyle_h
36#define vtkTDxInteractorStyle_h
37
38#include "vtkRenderingCoreModule.h" // For export macro
39#include "vtkObject.h"
40
42class vtkRenderer;
44
45class VTKRENDERINGCORE_EXPORT vtkTDxInteractorStyle : public vtkObject
46{
47public:
49 void PrintSelf(ostream& os, vtkIndent indent);
50
55 virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
56
60 virtual void OnButtonPressedEvent(int button);
61
65 virtual void OnButtonReleasedEvent(int button);
66
76 virtual void ProcessEvent(vtkRenderer *renderer,
77 unsigned long event,
78 void *calldata);
79
81
85 vtkGetObjectMacro(Settings,vtkTDxInteractorStyleSettings);
88
89protected:
92
94
96
97private:
98 vtkTDxInteractorStyle(const vtkTDxInteractorStyle&) VTK_DELETE_FUNCTION;
99 void operator=(const vtkTDxInteractorStyle&) VTK_DELETE_FUNCTION;
100};
101#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract base class for most VTK objects
Definition: vtkObject.h:60
abstract specification for renderers
Definition: vtkRenderer.h:64
provide 3DConnexion device event-driven interface to the rendering window
vtkTDxInteractorStyleSettings * Settings
virtual void OnButtonPressedEvent(int button)
Action on button pressed event.
virtual void SetSettings(vtkTDxInteractorStyleSettings *settings)
virtual void OnButtonReleasedEvent(int button)
Action on button released event.
virtual ~vtkTDxInteractorStyle()
virtual void ProcessEvent(vtkRenderer *renderer, unsigned long event, void *calldata)
Dispatch the events TDxMotionEvent, TDxButtonPressEvent and TDxButtonReleaseEvent to OnMotionEvent(),...
virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo)
Action on motion event.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
Store motion information from a 3DConnexion input device.