VTK  9.5.2
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
86
87#ifndef vtkRectilinearWipeWidget_h
88#define vtkRectilinearWipeWidget_h
89
90#include "vtkAbstractWidget.h"
91#include "vtkInteractionWidgetsModule.h" // For export macro
92#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
93
94VTK_ABI_NAMESPACE_BEGIN
96
97class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkRectilinearWipeWidget
98 : public vtkAbstractWidget
99{
100public:
105
107
111 void PrintSelf(ostream& os, vtkIndent indent) override;
113
123
131
136
137protected:
140
141 // These methods handle events
145
146 // helper methods for cursor management
147 void SetCursor(int state) override;
148
149 // Manage the state of the widget
152 {
153 Start = 0,
155 };
156
157private:
159 void operator=(const vtkRectilinearWipeWidget&) = delete;
160};
161
162VTK_ABI_NAMESPACE_END
163#endif
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
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