VTK  9.2.6
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 =========================================================================*/
83 #ifndef vtkRectilinearWipeWidget_h
84 #define vtkRectilinearWipeWidget_h
85 
86 #include "vtkAbstractWidget.h"
87 #include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
88 #include "vtkInteractionWidgetsModule.h" // For export macro
89 
91 
92 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
93 {
94 public:
98  static vtkRectilinearWipeWidget* New();
99 
101 
105  void PrintSelf(ostream& os, vtkIndent indent) override;
107 
114  {
115  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
116  }
117 
122  {
123  return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
124  }
125 
129  void CreateDefaultRepresentation() override;
130 
131 protected:
133  ~vtkRectilinearWipeWidget() override;
134 
135  // These methods handle events
136  static void SelectAction(vtkAbstractWidget*);
137  static void MoveAction(vtkAbstractWidget*);
138  static void EndSelectAction(vtkAbstractWidget*);
139 
140  // helper methods for cursor management
141  void SetCursor(int state) override;
142 
143  // Manage the state of the widget
146  {
147  Start = 0,
148  Selected
149  };
150 #if !defined(VTK_LEGACY_REMOVE)
151  VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
153 #endif
154 
155 private:
157  void operator=(const vtkRectilinearWipeWidget&) = delete;
158 };
159 
160 #endif
virtual void SetCursor(int vtkNotUsed(state))
#define VTK_DEPRECATED_IN_9_2_0(reason)
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
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
interactively control an instance of vtkImageRectilinearWipe filter
a simple class to control print indentation
Definition: vtkIndent.h:39
define the API for widget / widget representation
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
represent a vtkRectilinearWipeWidget
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene...