VTK  9.1.0
vtkRectilinearWipeWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRectilinearWipeWidget.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 =========================================================================*/
102 #ifndef vtkRectilinearWipeWidget_h
103 #define vtkRectilinearWipeWidget_h
104 
105 #include "vtkAbstractWidget.h"
106 #include "vtkInteractionWidgetsModule.h" // For export macro
107 
109 
110 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
111 {
112 public:
117 
119 
123  void PrintSelf(ostream& os, vtkIndent indent) override;
125 
132  {
133  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
134  }
135 
140  {
141  return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
142  }
143 
148 
149 protected:
152 
153  // These methods handle events
157 
158  // helper methods for cursor management
159  void SetCursor(int state) override;
160 
161  // Manage the state of the widget
164  {
165  Start = 0,
166  Selected
167  };
168 
169 private:
171  void operator=(const vtkRectilinearWipeWidget&) = delete;
172 };
173 
174 #endif
vtkRectilinearWipeWidget::~vtkRectilinearWipeWidget
~vtkRectilinearWipeWidget() override
vtkRectilinearWipeWidget::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros.
vtkRectilinearWipeWidget::New
static vtkRectilinearWipeWidget * New()
Instantiate the class.
vtkRectilinearWipeWidget::vtkRectilinearWipeWidget
vtkRectilinearWipeWidget()
vtkRectilinearWipeWidget::CreateDefaultRepresentation
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
vtkRectilinearWipeRepresentation
represent a vtkRectilinearWipeWidget
Definition: vtkRectilinearWipeRepresentation.h:74
vtkRectilinearWipeWidget::WidgetState
int WidgetState
Definition: vtkRectilinearWipeWidget.h:162
vtkAbstractWidget.h
vtkWidgetRepresentation
abstract class defines interface between the widget and widget representation classes
Definition: vtkWidgetRepresentation.h:60
vtkAbstractWidget::WidgetRep
vtkWidgetRepresentation * WidgetRep
Definition: vtkAbstractWidget.h:175
vtkRectilinearWipeWidget::SelectAction
static void SelectAction(vtkAbstractWidget *)
vtkRectilinearWipeWidget::EndSelectAction
static void EndSelectAction(vtkAbstractWidget *)
vtkAbstractWidget
define the API for widget / widget representation
Definition: vtkAbstractWidget.h:66
vtkRectilinearWipeWidget::_WidgetState
_WidgetState
Definition: vtkRectilinearWipeWidget.h:164
vtkRectilinearWipeWidget::MoveAction
static void MoveAction(vtkAbstractWidget *)
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkRectilinearWipeWidget
interactively control an instance of vtkImageRectilinearWipe filter
Definition: vtkRectilinearWipeWidget.h:111
vtkRectilinearWipeWidget::SetCursor
void SetCursor(int state) override
vtkRectilinearWipeWidget::SetRepresentation
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
Definition: vtkRectilinearWipeWidget.h:131
vtkRectilinearWipeWidget::GetRectilinearWipeRepresentation
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
Definition: vtkRectilinearWipeWidget.h:139