VTK  9.2.6
vtkAffineWidget.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkAffineWidget.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=========================================================================*/
60
61#ifndef vtkAffineWidget_h
62#define vtkAffineWidget_h
63
64#include "vtkAbstractWidget.h"
65#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
66#include "vtkInteractionWidgetsModule.h" // For export macro
67
69
70class VTKINTERACTIONWIDGETS_EXPORT vtkAffineWidget : public vtkAbstractWidget
71{
72public:
77
79
83 void PrintSelf(ostream& os, vtkIndent indent) override;
85
95
100 {
101 return reinterpret_cast<vtkAffineRepresentation*>(this->WidgetRep);
102 }
103
108
114 void SetEnabled(int) override;
115
116protected:
119
120 // These are the callbacks for this widget
125
126 // helper methods for cursor management
127 void SetCursor(int state) override;
128
129 // Manage the state of the widget
132 {
133 Start = 0,
135 };
136#if !defined(VTK_LEGACY_REMOVE)
137 VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
139#endif
140
141 // Keep track whether key modifier key is pressed
143
144private:
145 vtkAffineWidget(const vtkAffineWidget&) = delete;
146 void operator=(const vtkAffineWidget&) = delete;
147};
148
149#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.
WidgetStateType _WidgetState
a simple class to control print indentation
Definition vtkIndent.h:34
abstract class defines interface between the widget and widget representation classes
#define VTK_DEPRECATED_IN_9_2_0(reason)