VTK  9.5.2
vtkAffineWidget.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
48
49#ifndef vtkAffineWidget_h
50#define vtkAffineWidget_h
51
52#include "vtkAbstractWidget.h"
53#include "vtkInteractionWidgetsModule.h" // For export macro
54#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
55
56VTK_ABI_NAMESPACE_BEGIN
58
59class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkAffineWidget : public vtkAbstractWidget
60{
61public:
66
68
72 void PrintSelf(ostream& os, vtkIndent indent) override;
74
84
89 {
90 return reinterpret_cast<vtkAffineRepresentation*>(this->WidgetRep);
91 }
92
97
103 void SetEnabled(int) override;
104
105protected:
108
109 // These are the callbacks for this widget
114
115 // helper methods for cursor management
116 void SetCursor(int state) override;
117
118 // Manage the state of the widget
121 {
122 Start = 0,
124 };
125
126 // Keep track whether key modifier key is pressed
128
129private:
130 vtkAffineWidget(const vtkAffineWidget&) = delete;
131 void operator=(const vtkAffineWidget&) = delete;
132};
133
134VTK_ABI_NAMESPACE_END
135#endif
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
vtkWidgetRepresentation * WidgetRep
abstract class for representing affine transformation widgets
static void ModifyEventAction(vtkAbstractWidget *)
void SetEnabled(int) override
Methods for activating this widget.
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
static void SelectAction(vtkAbstractWidget *)
void SetCursor(int state) override
static void MoveAction(vtkAbstractWidget *)
void SetRepresentation(vtkAffineRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK class macros.
~vtkAffineWidget() override
vtkAffineRepresentation * GetAffineRepresentation()
Return the representation as a vtkAffineRepresentation.
static void EndSelectAction(vtkAbstractWidget *)
static vtkAffineWidget * New()
Instantiate this class.
a simple class to control print indentation
Definition vtkIndent.h:29
abstract class defines interface between the widget and widget representation classes
#define VTK_MARSHALAUTO