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.
84 lines
2.3 KiB
C
84 lines
2.3 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkInteractiveArea.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 vtkInteractiveArea
|
||
|
* @brief Implements zooming and panning in a vtkContextArea.
|
||
|
*
|
||
|
* Implements zooming and panning in a vtkContextArea.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkInteractiveArea_h
|
||
|
#define vtkInteractiveArea_h
|
||
|
|
||
|
#include "vtkChartsCoreModule.h" // For export macro
|
||
|
#include "vtkContextArea.h"
|
||
|
#include "vtkNew.h" // For vtkNew
|
||
|
|
||
|
class vtkContextTransform;
|
||
|
class vtkRectd;
|
||
|
|
||
|
class VTKCHARTSCORE_EXPORT vtkInteractiveArea : public vtkContextArea
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeMacro(vtkInteractiveArea, vtkContextArea);
|
||
|
|
||
|
static vtkInteractiveArea* New();
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
///@{
|
||
|
/**
|
||
|
* \brief vtkAbstractContextItem API
|
||
|
*/
|
||
|
bool Paint(vtkContext2D* painter) override;
|
||
|
bool Hit(const vtkContextMouseEvent& mouse) override;
|
||
|
bool MouseWheelEvent(const vtkContextMouseEvent& mouse, int delta) override;
|
||
|
bool MouseMoveEvent(const vtkContextMouseEvent& mouse) override;
|
||
|
bool MouseButtonPressEvent(const vtkContextMouseEvent& mouse) override;
|
||
|
///@}
|
||
|
|
||
|
protected:
|
||
|
vtkInteractiveArea();
|
||
|
~vtkInteractiveArea() override;
|
||
|
|
||
|
///@{
|
||
|
/**
|
||
|
* \brief vtkContextArea API
|
||
|
*/
|
||
|
void SetAxisRange(vtkRectd const& data) override;
|
||
|
|
||
|
private:
|
||
|
/**
|
||
|
* Re-scale axis when interacting.
|
||
|
*/
|
||
|
void RecalculateTickSpacing(vtkAxis* axis, int const numClicks);
|
||
|
|
||
|
/**
|
||
|
* Re-computes the transformation expressing the current zoom, panning, etc.
|
||
|
*/
|
||
|
void ComputeViewTransform() override;
|
||
|
|
||
|
void ComputeZoom(
|
||
|
vtkVector2d const& origin, vtkVector2d& scale, vtkVector2d& shift, vtkVector2d& factor);
|
||
|
|
||
|
class MouseActions;
|
||
|
MouseActions* Actions;
|
||
|
|
||
|
vtkInteractiveArea(const vtkInteractiveArea&) = delete;
|
||
|
void operator=(const vtkInteractiveArea&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif // vtkInteractiveArea_h
|