/usr/include/vtk-6.3/vtkRectilinearWipeRepresentation.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkRectilinearWipeRepresentation.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkRectilinearWipeRepresentation - represent a vtkRectilinearWipeWidget
// .SECTION Description
// This class is used to represent and render a vtkRectilinearWipeWidget. To
// use this class, you need to specify an instance of a
// vtkImageRectilinearWipe and vtkImageActor. This provides the information
// for this representation to construct and place itself.
//
// The class may be subclassed so that alternative representations can
// be created. The class defines an API and a default implementation that
// the vtkRectilinearWipeWidget interacts with to render itself in the scene.
// .SECTION Caveats
// The separation of the widget event handling and representation enables
// users and developers to create new appearances for the widget. It also
// facilitates parallel processing, where the client application handles
// events, and remote representations of the widget are slaves to the
// client (and do not handle events).
// .SECTION See Also
// vtkRectilinearWipeWidget vtkWidgetRepresentation vtkAbstractWidget
#ifndef vtkRectilinearWipeRepresentation_h
#define vtkRectilinearWipeRepresentation_h
#include "vtkInteractionWidgetsModule.h" // For export macro
#include "vtkWidgetRepresentation.h"
class vtkImageRectilinearWipe;
class vtkImageActor;
class vtkPoints;
class vtkCellArray;
class vtkPolyData;
class vtkProperty2D;
class vtkPolyDataMapper2D;
class vtkActor2D;
class VTKINTERACTIONWIDGETS_EXPORT vtkRectilinearWipeRepresentation : public vtkWidgetRepresentation
{
public:
// Description:
// Instantiate this class.
static vtkRectilinearWipeRepresentation *New();
// Description:
// Standard methods for instances of this class.
vtkTypeMacro(vtkRectilinearWipeRepresentation,vtkWidgetRepresentation);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Specify an instance of vtkImageRectilinearWipe to manipulate.
void SetRectilinearWipe(vtkImageRectilinearWipe *wipe);
vtkGetObjectMacro(RectilinearWipe,vtkImageRectilinearWipe);
// Description:
// Specify an instance of vtkImageActor to decorate.
void SetImageActor(vtkImageActor *imageActor);
vtkGetObjectMacro(ImageActor,vtkImageActor);
// Description:
// The tolerance representing the distance to the widget (in pixels)
// in which the cursor is considered to be on the widget, or on a
// widget feature (e.g., a corner point or edge).
vtkSetClampMacro(Tolerance,int,1,10);
vtkGetMacro(Tolerance,int);
// Description:
// Get the properties for the widget. This can be manipulated to set
// different colors, line widths, etc.
vtkGetObjectMacro(Property,vtkProperty2D);
// Description:
// Subclasses of vtkRectilinearWipeRepresentation must implement these methods. These
// are the methods that the widget and its representation use to
// communicate with each other.
virtual void BuildRepresentation();
virtual void StartWidgetInteraction(double eventPos[2]);
virtual void WidgetInteraction(double eventPos[2]);
virtual int ComputeInteractionState(int X, int Y, int modify=0);
//BTX
// Enums define the state of the prop relative to the mouse pointer
// position. Used by ComputeInteractionState() to communicate with the
// widget.
enum _InteractionState
{
Outside=0,
MovingHPane,
MovingVPane,
MovingCenter
};
//ETX
// Description:
// Methods to make this class behave as a vtkProp.
virtual void GetActors2D(vtkPropCollection *);
virtual void ReleaseGraphicsResources(vtkWindow *);
virtual int RenderOverlay(vtkViewport *viewport);
virtual int RenderOpaqueGeometry(vtkViewport *viewport);
virtual int RenderTranslucentPolygonalGeometry(vtkViewport *viewport);
virtual int HasTranslucentPolygonalGeometry();
protected:
vtkRectilinearWipeRepresentation();
~vtkRectilinearWipeRepresentation();
// Instances that this class manipulates
vtkImageRectilinearWipe *RectilinearWipe;
vtkImageActor *ImageActor;
// The pick tolerance of the widget in pixels
int Tolerance;
// This is used to track the beginning of interaction with the prop
double StartWipePosition[2];
// Indicates which part of widget is currently active based on the
// state of the instance of the vtkImageRectilinearWipe.
int ActiveParts;
// Geometric structure of widget
vtkPoints *Points; // The nine points defining the widget geometry
vtkCellArray *Lines; // lines defining the boundary
vtkPolyData *Wipe;
vtkPolyDataMapper2D *WipeMapper;
vtkActor2D *WipeActor;
vtkProperty2D *Property;
// These are used to track the coordinates (in display coordinate system)
// of the mid-edge and center point of the widget
double DP4[3];
double DP5[3];
double DP6[3];
double DP7[3];
double DP8[3];
int Dims[3]; // Dimensions of the input image to the wipe
int I; //the i-j define the plane that is being displayed
int J;
private:
vtkRectilinearWipeRepresentation(const vtkRectilinearWipeRepresentation&); //Not implemented
void operator=(const vtkRectilinearWipeRepresentation&); //Not implemented
};
#endif
|