mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-01 07:01:16 +01:00
25 lines
474 B
C++
25 lines
474 B
C++
#ifndef TEMPERATUREGRAPHITEM_H
|
|
#define TEMPERATUREGRAPHITEM_H
|
|
|
|
#include "graphitem.h"
|
|
|
|
class TemperatureGraphItem : public GraphItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TemperatureGraphItem(const Graph &graph, GraphType type, int width,
|
|
const QColor &color, QGraphicsItem *parent = 0);
|
|
|
|
qreal max() const {return _max;}
|
|
qreal min() const {return _min;}
|
|
qreal avg() const {return _avg;}
|
|
|
|
QString info() const;
|
|
|
|
private:
|
|
qreal _min, _max, _avg;
|
|
};
|
|
|
|
#endif // TEMPERATUREGRAPHITEM_H
|