VTK  9.0.3
vtkInteractorStyleJoystickCamera.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkInteractorStyleJoystickCamera.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 =========================================================================*/
39 #ifndef vtkInteractorStyleJoystickCamera_h
40 #define vtkInteractorStyleJoystickCamera_h
41 
42 #include "vtkInteractionStyleModule.h" // For export macro
43 #include "vtkInteractorStyle.h"
44 
45 class VTKINTERACTIONSTYLE_EXPORT vtkInteractorStyleJoystickCamera : public vtkInteractorStyle
46 {
47 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
53 
57  void OnMouseMove() override;
58  void OnLeftButtonDown() override;
59  void OnLeftButtonUp() override;
60  void OnMiddleButtonDown() override;
61  void OnMiddleButtonUp() override;
62  void OnRightButtonDown() override;
63  void OnRightButtonUp() override;
64  void OnMouseWheelForward() override;
65  void OnMouseWheelBackward() override;
67 
68  // These methods for the different interactions in different modes
69  // are overridden in subclasses to perform the correct motion. Since
70  // they are called by OnTimer, they do not have mouse coord parameters
71  // (use interactor's GetEventPosition and GetLastEventPosition)
72  void Rotate() override;
73  void Spin() override;
74  void Pan() override;
75  void Dolly() override;
76 
77 protected:
80 
81  virtual void Dolly(double factor);
82 
83 private:
85  void operator=(const vtkInteractorStyleJoystickCamera&) = delete;
86 };
87 
88 #endif
a simple class to control print indentation
Definition: vtkIndent.h:34
interactive manipulation of the camera
virtual void Dolly(double factor)
void OnMouseMove() override
Event bindings controlling the effects of pressing mouse buttons or moving the mouse.
void OnMouseWheelBackward() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkInteractorStyleJoystickCamera * New()
void Rotate() override
These methods for the different interactions in different modes are overridden in subclasses to perfo...
provide event-driven interface to the rendering window (defines trackball mode)