VTK  9.3.20240420
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
71#ifndef vtkAffineWidget_h
72#define vtkAffineWidget_h
73
74#include "vtkAbstractWidget.h"
75#include "vtkInteractionWidgetsModule.h" // For export macro
76#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
77
78VTK_ABI_NAMESPACE_BEGIN
80
81class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkAffineWidget : public vtkAbstractWidget
82{
83public:
88
90
94 void PrintSelf(ostream& os, vtkIndent indent) override;
96
103 {
104 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
105 }
106
111 {
112 return reinterpret_cast<vtkAffineRepresentation*>(this->WidgetRep);
113 }
114
119
125 void SetEnabled(int) override;
126
127protected:
130
131 // These are the callbacks for this widget
136
137 // helper methods for cursor management
138 void SetCursor(int state) override;
139
140 // Manage the state of the widget
143 {
144 Start = 0,
145 Active
146 };
147
148 // Keep track whether key modifier key is pressed
150
151private:
152 vtkAffineWidget(const vtkAffineWidget&) = delete;
153 void operator=(const vtkAffineWidget&) = delete;
154};
155
156VTK_ABI_NAMESPACE_END
157#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
abstract class for representing affine transformation widgets
perform affine transformations
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:108
abstract class defines interface between the widget and widget representation classes
#define VTK_MARSHALAUTO