VTK  9.0.1
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 =========================================================================*/
93 #ifndef vtkBoxWidget2_h
94 #define vtkBoxWidget2_h
95 
96 #include "vtkAbstractWidget.h"
97 #include "vtkInteractionWidgetsModule.h" // For export macro
98 
100 class vtkHandleWidget;
101 
102 class VTKINTERACTIONWIDGETS_EXPORT vtkBoxWidget2 : public vtkAbstractWidget
103 {
104 public:
108  static vtkBoxWidget2* New();
109 
111 
115  void PrintSelf(ostream& os, vtkIndent indent) override;
117 
124  {
125  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
126  }
127 
129 
137  vtkSetMacro(TranslationEnabled, vtkTypeBool);
138  vtkGetMacro(TranslationEnabled, vtkTypeBool);
139  vtkBooleanMacro(TranslationEnabled, vtkTypeBool);
140  vtkSetMacro(ScalingEnabled, vtkTypeBool);
141  vtkGetMacro(ScalingEnabled, vtkTypeBool);
142  vtkBooleanMacro(ScalingEnabled, vtkTypeBool);
143  vtkSetMacro(RotationEnabled, vtkTypeBool);
144  vtkGetMacro(RotationEnabled, vtkTypeBool);
145  vtkBooleanMacro(RotationEnabled, vtkTypeBool);
146  vtkSetMacro(MoveFacesEnabled, vtkTypeBool);
147  vtkGetMacro(MoveFacesEnabled, vtkTypeBool);
148  vtkBooleanMacro(MoveFacesEnabled, vtkTypeBool);
150 
156 
161  void SetEnabled(int enabling) override;
162 
163 protected:
165  ~vtkBoxWidget2() override;
166 
167  // Manage the state of the widget
170  {
171  Start = 0,
172  Active
173  };
174 
175  // These methods handle events
185 
186  // Control whether scaling, rotation, and translation are supported
191 
193  static void ProcessKeyEvents(vtkObject*, unsigned long, void*, void*);
194 
195 private:
196  vtkBoxWidget2(const vtkBoxWidget2&) = delete;
197  void operator=(const vtkBoxWidget2&) = delete;
198 };
199 
200 #endif
define the API for widget / widget representation
a class defining the representation for the vtkBoxWidget2
3D widget for manipulating a box
static vtkBoxWidget2 * New()
Instantiate the object.
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 *)
vtkTypeBool ScalingEnabled
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
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:34
abstract base class for most VTK objects
Definition: vtkObject.h:54
abstract class defines interface between the widget and widget representation classes
int vtkTypeBool
Definition: vtkABI.h:69