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 =========================================================================*/
64 #ifndef vtkAffineWidget_h
65 #define vtkAffineWidget_h
66 
67 #include "vtkAbstractWidget.h"
68 #include "vtkInteractionWidgetsModule.h" // For export macro
69 
71 
72 class VTKINTERACTIONWIDGETS_EXPORT vtkAffineWidget : public vtkAbstractWidget
73 {
74 public:
78  static vtkAffineWidget* New();
79 
81 
85  void PrintSelf(ostream& os, vtkIndent indent) override;
87 
94  {
95  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
96  }
97 
102  {
103  return reinterpret_cast<vtkAffineRepresentation*>(this->WidgetRep);
104  }
105 
109  void CreateDefaultRepresentation() override;
110 
116  void SetEnabled(int) override;
117 
118 protected:
119  vtkAffineWidget();
120  ~vtkAffineWidget() override;
121 
122  // These are the callbacks for this widget
123  static void SelectAction(vtkAbstractWidget*);
124  static void EndSelectAction(vtkAbstractWidget*);
125  static void MoveAction(vtkAbstractWidget*);
126  static void ModifyEventAction(vtkAbstractWidget*);
127 
128  // helper methods for cursor management
129  void SetCursor(int state) override;
130 
131  // Manage the state of the widget
134  {
135  Start = 0,
136  Active
137  };
138 
139  // Keep track whether key modifier key is pressed
141 
142 private:
143  vtkAffineWidget(const vtkAffineWidget&) = delete;
144  void operator=(const vtkAffineWidget&) = delete;
145 };
146 
147 #endif
vtkAbstractWidget::SetCursor
virtual void SetCursor(int vtkNotUsed(state))
Definition: vtkAbstractWidget.h:179
vtkAbstractWidget::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkAbstractWidget.h
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkWidgetRepresentation
abstract class defines interface between the widget and widget representation classes
Definition: vtkWidgetRepresentation.h:59
vtkAbstractWidget::WidgetRep
vtkWidgetRepresentation * WidgetRep
Definition: vtkAbstractWidget.h:175
vtkAffineWidget::ModifierActive
int ModifierActive
Definition: vtkAffineWidget.h:140
vtkAffineWidget::SetRepresentation
void SetRepresentation(vtkAffineRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
Definition: vtkAffineWidget.h:93
vtkAbstractWidget
define the API for widget / widget representation
Definition: vtkAbstractWidget.h:65
vtkAffineRepresentation
abstract class for representing affine transformation widgets
Definition: vtkAffineRepresentation.h:47
vtkAbstractWidget::CreateDefaultRepresentation
virtual void CreateDefaultRepresentation()=0
Create the default widget representation if one is not set.
vtkAffineWidget
perform affine transformations
Definition: vtkAffineWidget.h:72
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkAbstractWidget::SetEnabled
void SetEnabled(int) override
Methods for activating this widget.
vtkAffineWidget::WidgetState
int WidgetState
Definition: vtkAffineWidget.h:132
vtkAffineWidget::GetAffineRepresentation
vtkAffineRepresentation * GetAffineRepresentation()
Return the representation as a vtkAffineRepresentation.
Definition: vtkAffineWidget.h:101
vtkAffineWidget::_WidgetState
_WidgetState
Definition: vtkAffineWidget.h:133