VTK  9.3.0
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
77#ifndef vtkRectilinearWipeWidget_h
78#define vtkRectilinearWipeWidget_h
79
80#include "vtkAbstractWidget.h"
81#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
82#include "vtkInteractionWidgetsModule.h" // For export macro
83#include "vtkLegacy.h" // for VTK_LEGACY_REMOVE
84
85VTK_ABI_NAMESPACE_BEGIN
87
88class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
89{
90public:
95
97
101 void PrintSelf(ostream& os, vtkIndent indent) override;
103
110 {
111 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
112 }
113
118 {
119 return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
120 }
121
126
127protected:
130
131 // These methods handle events
135
136 // helper methods for cursor management
137 void SetCursor(int state) override;
138
139 // Manage the state of the widget
142 {
143 Start = 0,
144 Selected
145 };
146#if !defined(VTK_LEGACY_REMOVE)
147 VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
149#endif
150
151private:
153 void operator=(const vtkRectilinearWipeWidget&) = delete;
154};
155
156VTK_ABI_NAMESPACE_END
157#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition vtkIndent.h:38
represent a vtkRectilinearWipeWidget
interactively control an instance of vtkImageRectilinearWipe filter
static vtkRectilinearWipeWidget * New()
Instantiate the class.
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
static void SelectAction(vtkAbstractWidget *)
static void EndSelectAction(vtkAbstractWidget *)
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)