VTK  9.0.1
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 =========================================================================*/
61 #ifndef vtkAffineWidget_h
62 #define vtkAffineWidget_h
63 
64 #include "vtkAbstractWidget.h"
65 #include "vtkInteractionWidgetsModule.h" // For export macro
66 
68 
69 class VTKINTERACTIONWIDGETS_EXPORT vtkAffineWidget : public vtkAbstractWidget
70 {
71 public:
75  static vtkAffineWidget* New();
76 
78 
82  void PrintSelf(ostream& os, vtkIndent indent) override;
84 
91  {
92  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
93  }
94 
99  {
100  return reinterpret_cast<vtkAffineRepresentation*>(this->WidgetRep);
101  }
102 
106  void CreateDefaultRepresentation() override;
107 
113  void SetEnabled(int) override;
114 
115 protected:
116  vtkAffineWidget();
117  ~vtkAffineWidget() override;
118 
119  // These are the callbacks for this widget
120  static void SelectAction(vtkAbstractWidget*);
121  static void EndSelectAction(vtkAbstractWidget*);
122  static void MoveAction(vtkAbstractWidget*);
123  static void ModifyEventAction(vtkAbstractWidget*);
124 
125  // helper methods for cursor management
126  void SetCursor(int state) override;
127 
128  // Manage the state of the widget
131  {
132  Start = 0,
133  Active
134  };
135 
136  // Keep track whether key modifier key is pressed
138 
139 private:
140  vtkAffineWidget(const vtkAffineWidget&) = delete;
141  void operator=(const vtkAffineWidget&) = delete;
142 };
143 
144 #endif
virtual void SetCursor(int vtkNotUsed(state))
abstract class for representing affine transformation widgets
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros implementing standard VTK methods.
virtual void CreateDefaultRepresentation()=0
Create the default widget representation if one is not set.
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition: vtkIndent.h:33
void SetRepresentation(vtkAffineRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene...
perform affine transformations
define the API for widget / widget representation
void SetEnabled(int) override
Methods for activating this widget.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
vtkAffineRepresentation * GetAffineRepresentation()
Return the representation as a vtkAffineRepresentation.