VTK  9.4.20241221
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
90#ifndef vtkRectilinearWipeWidget_h
91#define vtkRectilinearWipeWidget_h
92
93#include "vtkAbstractWidget.h"
94#include "vtkInteractionWidgetsModule.h" // For export macro
95#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
96
97VTK_ABI_NAMESPACE_BEGIN
99
100class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkRectilinearWipeWidget
101 : public vtkAbstractWidget
102{
103public:
108
110
114 void PrintSelf(ostream& os, vtkIndent indent) override;
116
123 {
124 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
125 }
126
131 {
132 return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
133 }
134
139
140protected:
143
144 // These methods handle events
148
149 // helper methods for cursor management
150 void SetCursor(int state) override;
151
152 // Manage the state of the widget
155 {
156 Start = 0,
157 Selected
158 };
159
160private:
162 void operator=(const vtkRectilinearWipeWidget&) = delete;
163};
164
165VTK_ABI_NAMESPACE_END
166#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition vtkIndent.h:108
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_MARSHALAUTO