QGIS/external/qwt-6.3.0/qwt_series_data.cpp
Juergen E. Fischer 33fc476d89 * replace external qwtpolar with qwt 6.3
* require qwt >=6.2 (and fallback to internal 6.3 if system's qwt doesn't suffice)
* debian doesn't have qwt for Qt6 and won't have it for trixie
2025-07-23 07:11:51 +10:00

245 lines
6.8 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
*****************************************************************************/
#include "qwt_series_data.h"
#include "qwt_point_polar.h"
static inline QRectF qwtBoundingRect( const QPointF& sample )
{
return QRectF( sample.x(), sample.y(), 0.0, 0.0 );
}
static inline QRectF qwtBoundingRect( const QwtPoint3D& sample )
{
return QRectF( sample.x(), sample.y(), 0.0, 0.0 );
}
static inline QRectF qwtBoundingRect( const QwtPointPolar& sample )
{
return QRectF( sample.azimuth(), sample.radius(), 0.0, 0.0 );
}
static inline QRectF qwtBoundingRect( const QwtIntervalSample& sample )
{
return QRectF( sample.interval.minValue(), sample.value,
sample.interval.maxValue() - sample.interval.minValue(), 0.0 );
}
static inline QRectF qwtBoundingRect( const QwtSetSample& sample )
{
if ( sample.set.empty() )
return QRectF( sample.value, 0.0, 0.0, -1.0 );
double minY = sample.set[0];
double maxY = sample.set[0];
for ( int i = 1; i < sample.set.size(); i++ )
{
if ( sample.set[i] < minY )
minY = sample.set[i];
if ( sample.set[i] > maxY )
maxY = sample.set[i];
}
return QRectF( sample.value, minY, 0.0, maxY - minY );
}
static inline QRectF qwtBoundingRect( const QwtOHLCSample& sample )
{
const QwtInterval interval = sample.boundingInterval();
return QRectF( interval.minValue(), sample.time, interval.width(), 0.0 );
}
static inline QRectF qwtBoundingRect( const QwtVectorFieldSample& sample )
{
/*
When displaying a sample as an arrow its length will be
proportional to the magnitude - but not the same.
As the factor between length and magnitude is not known
we can't include vx/vy into the bounding rectangle.
*/
return QRectF( sample.x, sample.y, 0, 0 );
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
template< class T >
QRectF qwtBoundingRectT( const QwtSeriesData< T >& series, int from, int to )
{
QRectF boundingRect( 1.0, 1.0, -2.0, -2.0 ); // invalid;
if ( from < 0 )
from = 0;
if ( to < 0 )
to = series.size() - 1;
if ( to < from )
return boundingRect;
int i;
for ( i = from; i <= to; i++ )
{
const QRectF rect = qwtBoundingRect( series.sample( i ) );
if ( rect.width() >= 0.0 && rect.height() >= 0.0 )
{
boundingRect = rect;
i++;
break;
}
}
for ( ; i <= to; i++ )
{
const QRectF rect = qwtBoundingRect( series.sample( i ) );
if ( rect.width() >= 0.0 && rect.height() >= 0.0 )
{
boundingRect.setLeft( qMin( boundingRect.left(), rect.left() ) );
boundingRect.setRight( qMax( boundingRect.right(), rect.right() ) );
boundingRect.setTop( qMin( boundingRect.top(), rect.top() ) );
boundingRect.setBottom( qMax( boundingRect.bottom(), rect.bottom() ) );
}
}
return boundingRect;
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect( const QwtSeriesData< QPointF >& series, int from, int to )
{
return qwtBoundingRectT< QPointF >( series, from, to );
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect(
const QwtSeriesData< QwtPoint3D >& series, int from, int to )
{
return qwtBoundingRectT< QwtPoint3D >( series, from, to );
}
/*!
\brief Calculate the bounding rectangle of a series subset
The horizontal coordinates represent the azimuth, the
vertical coordinates the radius.
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect(
const QwtSeriesData< QwtPointPolar >& series, int from, int to )
{
return qwtBoundingRectT< QwtPointPolar >( series, from, to );
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect(
const QwtSeriesData< QwtIntervalSample >& series, int from, int to )
{
return qwtBoundingRectT< QwtIntervalSample >( series, from, to );
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect(
const QwtSeriesData< QwtOHLCSample >& series, int from, int to )
{
return qwtBoundingRectT< QwtOHLCSample >( series, from, to );
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect(
const QwtSeriesData< QwtSetSample >& series, int from, int to )
{
return qwtBoundingRectT< QwtSetSample >( series, from, to );
}
/*!
\brief Calculate the bounding rectangle of a series subset
Slow implementation, that iterates over the series.
\param series Series
\param from Index of the first sample, <= 0 means from the beginning
\param to Index of the last sample, < 0 means to the end
\return Bounding rectangle
*/
QRectF qwtBoundingRect(
const QwtSeriesData< QwtVectorFieldSample >& series, int from, int to )
{
return qwtBoundingRectT< QwtVectorFieldSample >( series, from, to );
}