Files
GoldenCheetah/qwt/src/qwt_plot_picker.h
Joachim Kohlhammer 49cf6340a4 Upgraded Qwt to 6.2 (branch: qwt-multiaxes) (#4427)
This commit is based on https://github.com/GoldenCheetah/GoldenCheetah/pull/3956
with the following additions / changes:
* Upgraded to the latest version of the multiaxes-branch, thus eliminating crashes of GoldenCheetah on startup
* Disabled the emitting of Layout Requests on geometry changes of QwtScaleWidget - without this, CPU utilization was up to 100% on one core
* Added the class SplineLookup, reusing small portions of code from Qwt 6.1
* Re-added the splines in WPrime and RideFile (resampling), using the new interface of QwtSpline
* Appveyor: qwt in cache-section now depends on qwt/qwtconfig.prin.in for refresh on version change
2024-01-06 18:59:55 -03:00

123 lines
3.1 KiB
C++

/******************************************************************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#ifndef QWT_PLOT_PICKER_H
#define QWT_PLOT_PICKER_H
#include "qwt_global.h"
#include "qwt_picker.h"
#include "qwt_axis_id.h"
class QwtPlot;
class QPointF;
class QRectF;
#if QT_VERSION < 0x060000
template< typename T > class QVector;
#endif
/*!
\brief QwtPlotPicker provides selections on a plot canvas
QwtPlotPicker is a QwtPicker tailored for selections on
a plot canvas. It is set to a x-Axis and y-Axis and
translates all pixel coordinates into this coordinate system.
*/
class QWT_EXPORT QwtPlotPicker : public QwtPicker
{
Q_OBJECT
public:
explicit QwtPlotPicker( QWidget* canvas );
virtual ~QwtPlotPicker();
explicit QwtPlotPicker( QwtAxisId xAxisId, QwtAxisId yAxisId, QWidget* );
explicit QwtPlotPicker( QwtAxisId xAxisId, QwtAxisId yAxisId,
RubberBand rubberBand, DisplayMode trackerMode, QWidget* );
void setAxes( QwtAxisId xAxisId, QwtAxisId yAxisId );
void setXAxis( QwtAxisId );
void setYAxis( QwtAxisId );
QwtAxisId xAxis() const;
QwtAxisId yAxis() const;
QwtPlot* plot();
const QwtPlot* plot() const;
QWidget* canvas();
const QWidget* canvas() const;
Q_SIGNALS:
/*!
A signal emitted in case of QwtPickerMachine::PointSelection.
\param pos Selected point
*/
void selected( const QPointF& pos );
/*!
A signal emitted in case of QwtPickerMachine::RectSelection.
\param rect Selected rectangle
*/
void selected( const QRectF& rect );
/*!
A signal emitting the selected points,
at the end of a selection.
\param pa Selected points
*/
void selected( const QVector< QPointF >& pa );
/*!
A signal emitted when a point has been appended to the selection
\param pos Position of the appended point.
\sa append(). moved()
*/
void appended( const QPointF& pos );
/*!
A signal emitted whenever the last appended point of the
selection has been moved.
\param pos Position of the moved last point of the selection.
\sa move(), appended()
*/
void moved( const QPointF& pos );
protected:
QRectF scaleRect() const;
QRectF invTransform( const QRect& ) const;
QRect transform( const QRectF& ) const;
QPointF invTransform( const QPoint& ) const;
QPoint transform( const QPointF& ) const;
virtual QwtText trackerText( const QPoint& ) const QWT_OVERRIDE;
virtual QwtText trackerTextF( const QPointF& ) const;
virtual void move( const QPoint& ) QWT_OVERRIDE;
virtual void append( const QPoint& ) QWT_OVERRIDE;
virtual bool end( bool ok = true ) QWT_OVERRIDE;
virtual void axesChanged();
private:
class PrivateData;
PrivateData* m_data;
};
#endif