VTK  9.0.1
vtkInteractorStyleTrackballCamera.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkInteractorStyleTrackballCamera.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 =========================================================================*/
44 #ifndef vtkInteractorStyleTrackballCamera_h
45 #define vtkInteractorStyleTrackballCamera_h
46 
47 #include "vtkInteractionStyleModule.h" // For export macro
48 #include "vtkInteractorStyle.h"
49 
50 class VTKINTERACTIONSTYLE_EXPORT vtkInteractorStyleTrackballCamera : public vtkInteractorStyle
51 {
52 public:
55  void PrintSelf(ostream& os, vtkIndent indent) override;
56 
58 
62  void OnMouseMove() override;
63  void OnLeftButtonDown() override;
64  void OnLeftButtonUp() override;
65  void OnMiddleButtonDown() override;
66  void OnMiddleButtonUp() override;
67  void OnRightButtonDown() override;
68  void OnRightButtonUp() override;
69  void OnMouseWheelForward() override;
70  void OnMouseWheelBackward() override;
72 
73  // These methods for the different interactions in different modes
74  // are overridden in subclasses to perform the correct motion. Since
75  // they are called by OnTimer, they do not have mouse coord parameters
76  // (use interactor's GetEventPosition and GetLastEventPosition)
77  void Rotate() override;
78  void Spin() override;
79  void Pan() override;
80  void Dolly() override;
81  void EnvironmentRotate() override;
82 
84 
87  vtkSetMacro(MotionFactor, double);
88  vtkGetMacro(MotionFactor, double);
90 
91 protected:
94 
95  double MotionFactor;
96 
97  virtual void Dolly(double factor);
98 
99 private:
101  void operator=(const vtkInteractorStyleTrackballCamera&) = delete;
102 };
103 
104 #endif
vtkInteractorStyle::Dolly
virtual void Dolly()
Definition: vtkInteractorStyle.h:306
vtkInteractorStyle.h
vtkInteractorStyleTrackballCamera::MotionFactor
double MotionFactor
Definition: vtkInteractorStyleTrackballCamera.h:95
vtkInteractorStyle::Pan
virtual void Pan()
Definition: vtkInteractorStyle.h:305
vtkInteractorStyle::OnMiddleButtonUp
virtual void OnMiddleButtonUp()
Definition: vtkInteractorStyle.h:239
vtkInteractorStyle::OnMouseMove
virtual void OnMouseMove()
Generic event bindings can be overridden in subclasses.
Definition: vtkInteractorStyle.h:235
vtkInteractorStyle::Spin
virtual void Spin()
Definition: vtkInteractorStyle.h:304
vtkInteractorStyle::EnvironmentRotate
virtual void EnvironmentRotate()
Definition: vtkInteractorStyle.h:309
vtkInteractorStyle::OnMiddleButtonDown
virtual void OnMiddleButtonDown()
Definition: vtkInteractorStyle.h:238
vtkInteractorStyle::OnRightButtonDown
virtual void OnRightButtonDown()
Definition: vtkInteractorStyle.h:240
vtkInteractorStyle::OnMouseWheelForward
virtual void OnMouseWheelForward()
Definition: vtkInteractorStyle.h:242
vtkInteractorStyle::OnLeftButtonDown
virtual void OnLeftButtonDown()
Definition: vtkInteractorStyle.h:236
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkInteractorStyle
provide event-driven interface to the rendering window (defines trackball mode)
Definition: vtkInteractorStyle.h:147
vtkInteractorStyle::OnMouseWheelBackward
virtual void OnMouseWheelBackward()
Definition: vtkInteractorStyle.h:243
vtkInteractorStyle::OnLeftButtonUp
virtual void OnLeftButtonUp()
Definition: vtkInteractorStyle.h:237
vtkInteractorStyle::New
static vtkInteractorStyle * New()
This class must be supplied with a vtkRenderWindowInteractor wrapper or parent.
vtkInteractorStyleTrackballCamera
interactive manipulation of the camera
Definition: vtkInteractorStyleTrackballCamera.h:50
vtkInteractorStyle::Rotate
virtual void Rotate()
These methods for the different interactions in different modes are overridden in subclasses to perfo...
Definition: vtkInteractorStyle.h:303
vtkInteractorStyle::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInteractorStyle::OnRightButtonUp
virtual void OnRightButtonUp()
Definition: vtkInteractorStyle.h:241