VTK  9.3.0
vtkAxesTransformWidget.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
75#ifndef vtkAxesTransformWidget_h
76#define vtkAxesTransformWidget_h
77
78#include "vtkAbstractWidget.h"
79#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
80#include "vtkInteractionWidgetsModule.h" // For export macro
81#include "vtkLegacy.h" // for VTK_LEGACY_REMOVE
82
83VTK_ABI_NAMESPACE_BEGIN
85class vtkHandleWidget;
86
87class VTKINTERACTIONWIDGETS_EXPORT vtkAxesTransformWidget : public vtkAbstractWidget
88{
89public:
94
96
100 void PrintSelf(ostream& os, vtkIndent indent) override;
102
107 void SetEnabled(int enabling) override;
108
115 {
116 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
117 }
118
126
131
137
138protected:
141
144 {
145 Start = 0,
146 Active
147 };
148#if !defined(VTK_LEGACY_REMOVE)
149 VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
151#endif
152
154
155 // These methods handle events
159
160 // The positioning handle widgets
161 vtkHandleWidget* OriginWidget; // first end point
162 vtkHandleWidget* SelectionWidget; // used when selecting any one of the axes
163
164private:
166 void operator=(const vtkAxesTransformWidget&) = delete;
167};
168
169VTK_ABI_NAMESPACE_END
170#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
represent the vtkAxesTransformWidget
3D widget for performing 3D transformations around an axes
~vtkAxesTransformWidget() override
void PrintSelf(ostream &os, vtkIndent indent) override
Standard vtkObject methods.
static vtkAxesTransformWidget * New()
Instantiate the object.
void SetProcessEvents(vtkTypeBool) override
Methods to change the whether the widget responds to interaction.
void SetRepresentation(vtkAxesTransformRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
vtkAxesTransformRepresentation * GetLineRepresentation()
Return the representation as a vtkAxesTransformRepresentation.
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
static void SelectAction(vtkAbstractWidget *)
static void EndSelectAction(vtkAbstractWidget *)
void SetEnabled(int enabling) override
Override superclasses' SetEnabled() method because the line widget must enable its internal handle wi...
static void MoveAction(vtkAbstractWidget *)
a general widget for moving handles
a simple class to control print indentation
Definition vtkIndent.h:29
abstract class defines interface between the widget and widget representation classes
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_DEPRECATED_IN_9_2_0(reason)