VTK  9.2.6
vtkBoxWidget2.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkBoxWidget2.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=========================================================================*/
98
99#ifndef vtkBoxWidget2_h
100#define vtkBoxWidget2_h
101
102#include "vtkAbstractWidget.h"
103#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
104#include "vtkInteractionWidgetsModule.h" // For export macro
105
107class vtkHandleWidget;
108
109class VTKINTERACTIONWIDGETS_EXPORT vtkBoxWidget2 : public vtkAbstractWidget
110{
111public:
116
118
122 void PrintSelf(ostream& os, vtkIndent indent) override;
124
134
136
149 vtkBooleanMacro(ScalingEnabled, vtkTypeBool);
152 vtkBooleanMacro(RotationEnabled, vtkTypeBool);
155 vtkBooleanMacro(MoveFacesEnabled, vtkTypeBool);
157
163
168 void SetEnabled(int enabling) override;
169
170protected:
172 ~vtkBoxWidget2() override;
173
174 // Manage the state of the widget
177 {
178 Start = 0,
180 };
181#if !defined(VTK_LEGACY_REMOVE)
182 VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
184#endif
185
186 // These methods handle events
196
197 // Control whether scaling, rotation, and translation are supported
202
204 static void ProcessKeyEvents(vtkObject*, unsigned long, void*, void*);
205
206private:
207 vtkBoxWidget2(const vtkBoxWidget2&) = delete;
208 void operator=(const vtkBoxWidget2&) = delete;
209};
210
211#endif
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
a class defining the representation for the vtkBoxWidget2
vtkTypeBool MoveFacesEnabled
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
void SetRepresentation(vtkBoxRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
static void SelectAction3D(vtkAbstractWidget *)
void SetEnabled(int enabling) override
Override superclasses' SetEnabled() method because the line widget must enable its internal handle wi...
static void ScaleAction(vtkAbstractWidget *)
static void ProcessKeyEvents(vtkObject *, unsigned long, void *, void *)
~vtkBoxWidget2() override
static void SelectAction(vtkAbstractWidget *)
static void EndSelectAction(vtkAbstractWidget *)
static void EndSelectAction3D(vtkAbstractWidget *)
static void TranslateAction(vtkAbstractWidget *)
vtkTypeBool TranslationEnabled
vtkTypeBool RotationEnabled
static void MoveAction3D(vtkAbstractWidget *)
static void MoveAction(vtkAbstractWidget *)
static vtkBoxWidget2 * New()
Instantiate the object.
vtkTypeBool ScalingEnabled
WidgetStateType _WidgetState
void PrintSelf(ostream &os, vtkIndent indent) override
Standard class methods for type information and printing.
vtkCallbackCommand * KeyEventCallbackCommand
static void StepAction3D(vtkAbstractWidget *)
supports function callbacks
a general widget for moving handles
a simple class to control print indentation
Definition vtkIndent.h:40
abstract class defines interface between the widget and widget representation classes
int vtkTypeBool
Definition vtkABI.h:69
#define VTK_DEPRECATED_IN_9_2_0(reason)