VTK
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 =========================================================================*/
77 #ifndef vtkRectilinearWipeWidget_h
78 #define vtkRectilinearWipeWidget_h
79 
80 #include "vtkInteractionWidgetsModule.h" // For export macro
81 #include "vtkAbstractWidget.h"
82 
84 
85 
86 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
87 {
88 public:
92  static vtkRectilinearWipeWidget *New();
93 
95 
99  void PrintSelf(ostream& os, vtkIndent indent) override;
101 
108  {this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));}
109 
114  {return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);}
115 
119  void CreateDefaultRepresentation() override;
120 
121 protected:
123  ~vtkRectilinearWipeWidget() override;
124 
125  // These methods handle events
126  static void SelectAction(vtkAbstractWidget*);
127  static void MoveAction(vtkAbstractWidget*);
128  static void EndSelectAction(vtkAbstractWidget*);
129 
130  // helper methods for cursor management
131  void SetCursor(int state) override;
132 
133  // Manage the state of the widget
136  {
137  Start=0,
138  Selected
139  };
140 
141 private:
143  void operator=(const vtkRectilinearWipeWidget&) = delete;
144 };
145 
146 #endif
vtkAbstractWidget::SetCursor
virtual void SetCursor(int vtkNotUsed(state))
Definition: vtkAbstractWidget.h:178
vtkRectilinearWipeRepresentation
represent a vtkRectilinearWipeWidget
Definition: vtkRectilinearWipeRepresentation.h:55
vtkAbstractWidget::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkRectilinearWipeWidget::WidgetState
int WidgetState
Definition: vtkRectilinearWipeWidget.h:134
vtkAbstractWidget.h
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkAbstractWidget
define the API for widget / widget representation
Definition: vtkAbstractWidget.h:63
vtkRectilinearWipeWidget::_WidgetState
_WidgetState
Definition: vtkRectilinearWipeWidget.h:135
vtkAbstractWidget::CreateDefaultRepresentation
virtual void CreateDefaultRepresentation()=0
Create the default widget representation if one is not set.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkRectilinearWipeWidget
interactively control an instance of vtkImageRectilinearWipe filter
Definition: vtkRectilinearWipeWidget.h:86
vtkRectilinearWipeWidget::SetRepresentation
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
Definition: vtkRectilinearWipeWidget.h:107
vtkRectilinearWipeWidget::GetRectilinearWipeRepresentation
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
Definition: vtkRectilinearWipeWidget.h:113