VTK  9.0.1
vtkRectilinearWipeWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRectilinearWipeWidget.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
77 #ifndef vtkRectilinearWipeWidget_h
78 #define vtkRectilinearWipeWidget_h
79 
80 #include "vtkAbstractWidget.h"
81 #include "vtkInteractionWidgetsModule.h" // For export macro
82 
84 
85 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
86 {
87 public:
92 
94 
98  void PrintSelf(ostream& os, vtkIndent indent) override;
100 
107  {
108  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
109  }
110 
115  {
116  return reinterpret_cast<vtkRectilinearWipeRepresentation*>(this->WidgetRep);
117  }
118 
123 
124 protected:
127 
128  // These methods handle events
132 
133  // helper methods for cursor management
134  void SetCursor(int state) override;
135 
136  // Manage the state of the widget
139  {
140  Start = 0,
141  Selected
142  };
143 
144 private:
146  void operator=(const vtkRectilinearWipeWidget&) = delete;
147 };
148 
149 #endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
a simple class to control print indentation
Definition: vtkIndent.h:34
represent a vtkRectilinearWipeWidget
interactively control an instance of vtkImageRectilinearWipe filter
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
static void SelectAction(vtkAbstractWidget *)
static void EndSelectAction(vtkAbstractWidget *)
static vtkRectilinearWipeWidget * New()
Instantiate the class.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
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