VTK  9.3.1
vtkRectilinearWipeWidget.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
71 #ifndef vtkRectilinearWipeWidget_h
72 #define vtkRectilinearWipeWidget_h
73 
74 #include "vtkAbstractWidget.h"
75 #include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
76 #include "vtkInteractionWidgetsModule.h" // For export macro
77 #include "vtkLegacy.h" // for VTK_LEGACY_REMOVE
78 
79 VTK_ABI_NAMESPACE_BEGIN
81 
82 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
83 {
84 public:
88  static vtkRectilinearWipeWidget* New();
89 
91 
95  void PrintSelf(ostream& os, vtkIndent indent) override;
97 
104  {
105  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
106  }
107 
112  {
113  return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
114  }
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 #if !defined(VTK_LEGACY_REMOVE)
141  VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
143 #endif
144 
145 private:
147  void operator=(const vtkRectilinearWipeWidget&) = delete;
148 };
149 
150 VTK_ABI_NAMESPACE_END
151 #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:28
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...