VTK  9.1.0
vtkRectilinearWipeRepresentation.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkRectilinearWipeRepresentation.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=========================================================================*/
48#ifndef vtkRectilinearWipeRepresentation_h
49#define vtkRectilinearWipeRepresentation_h
50
51#include "vtkInteractionWidgetsModule.h" // For export macro
53
55class vtkImageActor;
56class vtkPoints;
57class vtkCellArray;
58class vtkPolyData;
59class vtkProperty2D;
61class vtkActor2D;
62
63class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeRepresentation : public vtkWidgetRepresentation
64{
65public:
70
72
76 void PrintSelf(ostream& os, vtkIndent indent) override;
78
80
84 vtkGetObjectMacro(RectilinearWipe, vtkImageRectilinearWipe);
86
88
91 void SetImageActor(vtkImageActor* imageActor);
92 vtkGetObjectMacro(ImageActor, vtkImageActor);
94
96
101 vtkSetClampMacro(Tolerance, int, 1, 10);
102 vtkGetMacro(Tolerance, int);
104
106
110 vtkGetObjectMacro(Property, vtkProperty2D);
112
114
119 void BuildRepresentation() override;
120 void StartWidgetInteraction(double eventPos[2]) override;
121 void WidgetInteraction(double eventPos[2]) override;
122 int ComputeInteractionState(int X, int Y, int modify = 0) override;
124
125 // Enums define the state of the prop relative to the mouse pointer
126 // position. Used by ComputeInteractionState() to communicate with the
127 // widget.
129 {
130 Outside = 0,
133 MovingCenter
134 };
135
137
142 int RenderOverlay(vtkViewport* viewport) override;
143 int RenderOpaqueGeometry(vtkViewport* viewport) override;
147
148protected:
151
152 // Instances that this class manipulates
155
156 // The pick tolerance of the widget in pixels
158
159 // This is used to track the beginning of interaction with the prop
160 double StartWipePosition[2];
161
162 // Indicates which part of widget is currently active based on the
163 // state of the instance of the vtkImageRectilinearWipe.
165
166 // Geometric structure of widget
167 vtkPoints* Points; // The nine points defining the widget geometry
168 vtkCellArray* Lines; // lines defining the boundary
173
174 // These are used to track the coordinates (in display coordinate system)
175 // of the mid-edge and center point of the widget
176 double DP4[3];
177 double DP5[3];
178 double DP6[3];
179 double DP7[3];
180 double DP8[3];
181
182 int Dims[3]; // Dimensions of the input image to the wipe
183 int I; // the i-j define the plane that is being displayed
184 int J;
185
186private:
188 void operator=(const vtkRectilinearWipeRepresentation&) = delete;
189};
190
191#endif
a actor that draws 2D data
Definition: vtkActor2D.h:49
object to represent cell connectivity
Definition: vtkCellArray.h:190
draw an image in a rendered 3D scene
Definition: vtkImageActor.h:52
make a rectilinear combination of two images.
a simple class to control print indentation
Definition: vtkIndent.h:43
represent and manipulate 3D points
Definition: vtkPoints.h:43
draw vtkPolyData onto the image plane
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:95
an ordered list of Props
represent surface properties of a 2D image
Definition: vtkProperty2D.h:47
represent a vtkRectilinearWipeWidget
vtkTypeBool HasTranslucentPolygonalGeometry() override
Methods to make this class behave as a vtkProp.
void WidgetInteraction(double eventPos[2]) override
Subclasses of vtkRectilinearWipeRepresentation must implement these methods.
int RenderOpaqueGeometry(vtkViewport *viewport) override
Methods to make this class behave as a vtkProp.
int ComputeInteractionState(int X, int Y, int modify=0) override
Subclasses of vtkRectilinearWipeRepresentation must implement these methods.
int RenderOverlay(vtkViewport *viewport) override
Methods to make this class behave as a vtkProp.
void SetRectilinearWipe(vtkImageRectilinearWipe *wipe)
Specify an instance of vtkImageRectilinearWipe to manipulate.
void SetImageActor(vtkImageActor *imageActor)
Specify an instance of vtkImageActor to decorate.
void BuildRepresentation() override
Subclasses of vtkRectilinearWipeRepresentation must implement these methods.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instances of this class.
static vtkRectilinearWipeRepresentation * New()
Instantiate this class.
void StartWidgetInteraction(double eventPos[2]) override
Subclasses of vtkRectilinearWipeRepresentation must implement these methods.
int RenderTranslucentPolygonalGeometry(vtkViewport *viewport) override
Methods to make this class behave as a vtkProp.
void GetActors2D(vtkPropCollection *) override
Methods to make this class behave as a vtkProp.
void ReleaseGraphicsResources(vtkWindow *) override
Methods to make this class behave as a vtkProp.
abstract specification for Viewports
Definition: vtkViewport.h:56
abstract class defines interface between the widget and widget representation classes
window superclass for vtkRenderWindow
Definition: vtkWindow.h:45
int vtkTypeBool
Definition: vtkABI.h:69