You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/3rd/VTK7.1/include/vtkInteractorStyleRubberBan...

81 lines
2.4 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkInteractorStyleRubberBandPick.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.
=========================================================================*/
/**
* @class vtkInteractorStyleRubberBandPick
* @brief Like TrackBallCamera, but this can pick props underneath a rubber band selection rectangle.
*
*
* This interactor style allows the user to draw a rectangle in the render
* window by hitting 'r' and then using the left mouse button.
* When the mouse button is released, the attached picker operates on the pixel
* in the center of the selection rectangle. If the picker happens to be a
* vtkAreaPicker it will operate on the entire selection rectangle.
* When the 'p' key is hit the above pick operation occurs on a 1x1 rectangle.
* In other respects it behaves the same as its parent class.
*
* @sa
* vtkAreaPicker
*/
#ifndef vtkInteractorStyleRubberBandPick_h
#define vtkInteractorStyleRubberBandPick_h
#include "vtkInteractionStyleModule.h" // For export macro
#include "vtkInteractorStyleTrackballCamera.h"
class vtkUnsignedCharArray;
class VTKINTERACTIONSTYLE_EXPORT vtkInteractorStyleRubberBandPick : public vtkInteractorStyleTrackballCamera
{
public:
static vtkInteractorStyleRubberBandPick *New();
vtkTypeMacro(vtkInteractorStyleRubberBandPick, vtkInteractorStyleTrackballCamera);
void PrintSelf(ostream& os, vtkIndent indent);
void StartSelect();
//@{
/**
* Event bindings
*/
virtual void OnMouseMove();
virtual void OnLeftButtonDown();
virtual void OnLeftButtonUp();
virtual void OnChar();
//@}
protected:
vtkInteractorStyleRubberBandPick();
~vtkInteractorStyleRubberBandPick();
virtual void Pick();
void RedrawRubberBand();
int StartPosition[2];
int EndPosition[2];
int Moving;
vtkUnsignedCharArray *PixelArray;
int CurrentMode;
private:
vtkInteractorStyleRubberBandPick(const vtkInteractorStyleRubberBandPick&) VTK_DELETE_FUNCTION;
void operator=(const vtkInteractorStyleRubberBandPick&) VTK_DELETE_FUNCTION;
};
#endif