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 =========================================================================*/
80 #ifndef vtkRectilinearWipeWidget_h
81 #define vtkRectilinearWipeWidget_h
82 
83 #include "vtkAbstractWidget.h"
84 #include "vtkInteractionWidgetsModule.h" // For export macro
85 
87 
88 class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeWidget : public vtkAbstractWidget
89 {
90 public:
94  static vtkRectilinearWipeWidget* New();
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 
125  void CreateDefaultRepresentation() override;
126 
127 protected:
129  ~vtkRectilinearWipeWidget() override;
130 
131  // These methods handle events
132  static void SelectAction(vtkAbstractWidget*);
133  static void MoveAction(vtkAbstractWidget*);
134  static void EndSelectAction(vtkAbstractWidget*);
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 
147 private:
149  void operator=(const vtkRectilinearWipeWidget&) = delete;
150 };
151 
152 #endif
virtual void SetCursor(int vtkNotUsed(state))
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros implementing standard VTK methods.
virtual void CreateDefaultRepresentation()=0
Create the default widget representation if one is not set.
vtkWidgetRepresentation * WidgetRep
vtkRectilinearWipeRepresentation * GetRectilinearWipeRepresentation()
Return the representation as a vtkRectilinearWipeRepresentation.
interactively control an instance of vtkImageRectilinearWipe filter
a simple class to control print indentation
Definition: vtkIndent.h:33
define the API for widget / widget representation
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
represent a vtkRectilinearWipeWidget
void SetRepresentation(vtkRectilinearWipeRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene...