VTK  9.1.0
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=========================================================================*/
67#ifndef vtkAffineWidget_h
68#define vtkAffineWidget_h
69
70#include "vtkAbstractWidget.h"
71#include "vtkInteractionWidgetsModule.h" // For export macro
72
74
75class VTKINTERACTIONWIDGETS_EXPORT vtkAffineWidget : public vtkAbstractWidget
76{
77public:
82
84
88 void PrintSelf(ostream& os, vtkIndent indent) override;
90
97 {
98 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
99 }
100
105 {
106 return reinterpret_cast<vtkAffineRepresentation*>(this->WidgetRep);
107 }
108
113
119 void SetEnabled(int) override;
120
121protected:
124
125 // These are the callbacks for this widget
130
131 // helper methods for cursor management
132 void SetCursor(int state) override;
133
134 // Manage the state of the widget
137 {
138 Start = 0,
139 Active
140 };
141
142 // Keep track whether key modifier key is pressed
144
145private:
146 vtkAffineWidget(const vtkAffineWidget&) = delete;
147 void operator=(const vtkAffineWidget&) = delete;
148};
149
150#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:43
abstract class defines interface between the widget and widget representation classes