VTK  9.4.20250102
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 "vtkInteractionWidgetsModule.h" // For export macro
80#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
81
82VTK_ABI_NAMESPACE_BEGIN
84class vtkHandleWidget;
85
86class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkAxesTransformWidget : public vtkAbstractWidget
87{
88public:
93
95
99 void PrintSelf(ostream& os, vtkIndent indent) override;
101
106 void SetEnabled(int enabling) override;
107
114 {
115 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
116 }
117
122 {
123 return reinterpret_cast<vtkAxesTransformRepresentation*>(this->WidgetRep);
124 }
125
130
136
137protected:
140
143 {
144 Start = 0,
145 Active
146 };
147
149
150 // These methods handle events
154
155 // The positioning handle widgets
156 vtkHandleWidget* OriginWidget; // first end point
157 vtkHandleWidget* SelectionWidget; // used when selecting any one of the axes
158
159private:
161 void operator=(const vtkAxesTransformWidget&) = delete;
162};
163
164VTK_ABI_NAMESPACE_END
165#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:108
abstract class defines interface between the widget and widget representation classes
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO