VTK  9.5.2
vtkInteractorStyleSwitch.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
22
23#ifndef vtkInteractorStyleSwitch_h
24#define vtkInteractorStyleSwitch_h
25
26#include "vtkInteractionStyleModule.h" // For export macro
28#include "vtkWrappingHints.h" // For VTK_MARSHALMANUAL
29
30#define VTKIS_JOYSTICK 0
31#define VTKIS_TRACKBALL 1
32
33#define VTKIS_CAMERA 0
34#define VTKIS_ACTOR 1
35
36VTK_ABI_NAMESPACE_BEGIN
42
43class VTKINTERACTIONSTYLE_EXPORT VTK_MARSHALMANUAL vtkInteractorStyleSwitch
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
55
61
63
66 vtkGetObjectMacro(CurrentStyle, vtkInteractorStyle);
73
78 void OnChar() override;
79
81
88
89protected:
92
94
101
105
106private:
108 void operator=(const vtkInteractorStyleSwitch&) = delete;
109};
110
111VTK_ABI_NAMESPACE_END
112#endif
a simple class to control print indentation
Definition vtkIndent.h:29
manipulate objects in the scene independently of one another
interactive manipulation of the camera
void SetAutoAdjustCameraClippingRange(vtkTypeBool value) override
We must override this method in order to pass the setting down to the underlying styles.
vtkInteractorStyleMultiTouchCamera * MultiTouchCamera
void SetCurrentStyleToJoystickActor()
Set/Get current style.
vtkInteractorStyleJoystickActor * JoystickActor
static vtkInteractorStyleSwitch * New()
vtkInteractorStyleJoystickCamera * JoystickCamera
void SetInteractor(vtkRenderWindowInteractor *iren) override
The sub styles need the interactor too.
void SetCurrentStyleToTrackballActor()
Set/Get current style.
void SetCurrentStyleToJoystickCamera()
Set/Get current style.
void OnChar() override
Only care about the char event, which is used to switch between different styles.
void SetCurrentRenderer(vtkRenderer *) override
Overridden from vtkInteractorObserver because the interactor styles used by this class must also be u...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetCurrentStyleToMultiTouchCamera()
Set/Get current style.
void SetCurrentStyleToTrackballCamera()
Set/Get current style.
vtkInteractorStyleTrackballActor * TrackballActor
void SetDefaultRenderer(vtkRenderer *) override
Overridden from vtkInteractorObserver because the interactor styles used by this class must also be u...
vtkInteractorStyleTrackballCamera * TrackballCamera
~vtkInteractorStyleSwitch() override
manipulate objects in the scene independent of each other
interactive manipulation of the camera
platform-independent render window interaction including picking and frame rate control.
abstract specification for renderers
Definition vtkRenderer.h:60
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALMANUAL