VTK  9.5.20250903
vtkInteractorStyleRubberBandPick.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
93#ifndef vtkInteractorStyleRubberBandPick_h
94#define vtkInteractorStyleRubberBandPick_h
95
96#include "vtkInteractionStyleModule.h" // For export macro
98#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
99
100VTK_ABI_NAMESPACE_BEGIN
102
103class VTKINTERACTIONSTYLE_EXPORT VTK_MARSHALAUTO vtkInteractorStyleRubberBandPick
105{
106public:
109 void PrintSelf(ostream& os, vtkIndent indent) override;
110
113
115
118 void OnMouseMove() override;
119 void OnLeftButtonDown() override;
120 void OnLeftButtonUp() override;
121 void OnChar() override;
123
124protected:
127
128 virtual void Pick();
130
131 int StartPosition[2];
132 int EndPosition[2];
133
135
137
139
140private:
142 void operator=(const vtkInteractorStyleRubberBandPick&) = delete;
143};
144
145VTK_ABI_NAMESPACE_END
146#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Like TrackBallCamera, but this can pick props underneath a rubber band selection rectangle.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void OnChar() override
Event bindings.
void OnLeftButtonUp() override
Event bindings.
void OnLeftButtonDown() override
Event bindings.
void OnMouseMove() override
Event bindings.
static vtkInteractorStyleRubberBandPick * New()
interactive manipulation of the camera
dynamic, self-adjusting array of unsigned char
#define VTK_MARSHALAUTO