/usr/include/vtk-6.3/vtkXYPlotWidget.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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkXYPlotWidget.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 vtkXYPlotWidget - 2D widget for manipulating a XY plot
// .SECTION Description
// This class provides support for interactively manipulating the position,
// size, and orientation of a XY Plot. It listens to Left mouse events and
// mouse movement. It will change the cursor shape based on its location. If
// the cursor is over an edge of thea XY plot it will change the cursor shape
// to a resize edge shape. If the position of a XY plot is moved to be close to
// the center of one of the four edges of the viewport, then the XY plot will
// change its orientation to align with that edge. This orientation is sticky
// in that it will stay that orientation until the position is moved close to
// another edge.
// .SECTION See Also
// vtkInteractorObserver
#ifndef vtkXYPlotWidget_h
#define vtkXYPlotWidget_h
#include "vtkInteractionWidgetsModule.h" // For export macro
#include "vtkInteractorObserver.h"
class vtkXYPlotActor;
class VTKINTERACTIONWIDGETS_EXPORT vtkXYPlotWidget : public vtkInteractorObserver
{
public:
static vtkXYPlotWidget *New();
vtkTypeMacro(vtkXYPlotWidget,vtkInteractorObserver);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get the XY plot used by this Widget. One is created automatically.
virtual void SetXYPlotActor(vtkXYPlotActor *);
vtkGetObjectMacro(XYPlotActor,vtkXYPlotActor);
// Description:
// Methods for turning the interactor observer on and off.
virtual void SetEnabled(int);
protected:
vtkXYPlotWidget();
~vtkXYPlotWidget();
// the actor that is used
vtkXYPlotActor *XYPlotActor;
//handles the events
static void ProcessEvents(vtkObject* object,
unsigned long event,
void* clientdata,
void* calldata);
// ProcessEvents() dispatches to these methods.
void OnLeftButtonDown();
void OnLeftButtonUp();
void OnMouseMove();
// used to compute relative movements
float StartPosition[2];
//BTX - manage the state of the widget
int State;
enum WidgetState
{
Moving=0,
AdjustingP1,
AdjustingP2,
AdjustingP3,
AdjustingP4,
AdjustingE1,
AdjustingE2,
AdjustingE3,
AdjustingE4,
Inside,
Outside
};
//ETX
// use to determine what state the mouse is over, edge1 p1, etc.
// returns a state from the WidgetState enum above
int ComputeStateBasedOnPosition(int X, int Y, int *pos1, int *pos2);
// set the cursor to the correct shape based on State argument
void SetCursor(int State);
private:
vtkXYPlotWidget(const vtkXYPlotWidget&); //Not implemented
void operator=(const vtkXYPlotWidget&); //Not implemented
};
#endif
|