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 =========================================================================*/
102 #ifndef vtkRectilinearWipeWidget_h
103 #define vtkRectilinearWipeWidget_h
104 
105 #include "vtkAbstractWidget.h"
106 #include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
107 #include "vtkInteractionWidgetsModule.h" // For export macro
108 
110 
111 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
112 {
113 public:
118 
120 
124  void PrintSelf(ostream& os, vtkIndent indent) override;
126 
133  {
134  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
135  }
136 
141  {
142  return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
143  }
144 
149 
150 protected:
153 
154  // These methods handle events
158 
159  // helper methods for cursor management
160  void SetCursor(int state) override;
161 
162  // Manage the state of the widget
165  {
166  Start = 0,
167  Selected
168  };
169 #if !defined(VTK_LEGACY_REMOVE)
170  VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
172 #endif
173 
174 private:
176  void operator=(const vtkRectilinearWipeWidget&) = delete;
177 };
178 
179 #endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition: vtkIndent.h:119
represent a vtkRectilinearWipeWidget
interactively control an instance of vtkImageRectilinearWipe filter
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
static void SelectAction(vtkAbstractWidget *)
static void EndSelectAction(vtkAbstractWidget *)
static vtkRectilinearWipeWidget * New()
Instantiate the class.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros.
void SetCursor(int state) override
~vtkRectilinearWipeWidget() override
static void MoveAction(vtkAbstractWidget *)
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
abstract class defines interface between the widget and widget representation classes
#define VTK_DEPRECATED_IN_9_2_0(reason)