VTK  9.2.6
vtkSphereWidget2.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSphereWidget2.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=========================================================================*/
90#ifndef vtkSphereWidget2_h
91#define vtkSphereWidget2_h
92
93#include "vtkAbstractWidget.h"
94#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
95#include "vtkInteractionWidgetsModule.h" // For export macro
96
98class vtkHandleWidget;
99
100class VTKINTERACTIONWIDGETS_EXPORT vtkSphereWidget2 : public vtkAbstractWidget
101{
102public:
107
109
113 void PrintSelf(ostream& os, vtkIndent indent) override;
115
122 {
123 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
124 }
125
127
131 vtkSetMacro(TranslationEnabled, vtkTypeBool);
132 vtkGetMacro(TranslationEnabled, vtkTypeBool);
133 vtkBooleanMacro(TranslationEnabled, vtkTypeBool);
134 vtkSetMacro(ScalingEnabled, vtkTypeBool);
135 vtkGetMacro(ScalingEnabled, vtkTypeBool);
136 vtkBooleanMacro(ScalingEnabled, vtkTypeBool);
138
144
149 void SetEnabled(int enabling) override;
150
151protected:
154
155 // Manage the state of the widget
158 {
159 Start = 0,
160 Active
161 };
162#if !defined(VTK_LEGACY_REMOVE)
163 VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
165#endif
166
167 // These methods handle events
173
174 // Control whether scaling and translation are supported
177
179 static void ProcessKeyEvents(vtkObject*, unsigned long, void*, void*);
180
181private:
182 vtkSphereWidget2(const vtkSphereWidget2&) = delete;
183 void operator=(const vtkSphereWidget2&) = delete;
184};
185
186#endif
define the API for widget / widget representation
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:57
a class defining the representation for the vtkSphereWidget2
3D widget for manipulating a point on a sphere
static void TranslateAction(vtkAbstractWidget *)
static void ProcessKeyEvents(vtkObject *, unsigned long, void *, void *)
static vtkSphereWidget2 * New()
Instantiate the object.
~vtkSphereWidget2() override
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
static void ScaleAction(vtkAbstractWidget *)
void SetEnabled(int enabling) override
Override superclasses' SetEnabled() method because the line widget must enable its internal handle wi...
vtkCallbackCommand * KeyEventCallbackCommand
static void SelectAction(vtkAbstractWidget *)
static void MoveAction(vtkAbstractWidget *)
void SetRepresentation(vtkSphereRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
vtkTypeBool ScalingEnabled
vtkTypeBool TranslationEnabled
void PrintSelf(ostream &os, vtkIndent indent) override
Standard class methods for type information and printing.
static void EndSelectAction(vtkAbstractWidget *)
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)