VTK  9.6.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
70
71#ifndef vtkRectilinearWipeWidget_h
72#define vtkRectilinearWipeWidget_h
73
74#include "vtkAbstractWidget.h"
75#include "vtkInteractionWidgetsModule.h" // For export macro
76#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
77
78VTK_ABI_NAMESPACE_BEGIN
80
81class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkRectilinearWipeWidget
82 : public vtkAbstractWidget
83{
84public:
89
91
95 void PrintSelf(ostream& os, vtkIndent indent) override;
97
107
115
120
121protected:
124
125 // These methods handle events
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,
139 };
140
141private:
143 void operator=(const vtkRectilinearWipeWidget&) = delete;
144};
145
146VTK_ABI_NAMESPACE_END
147#endif
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition vtkIndent.h:29
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