1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/temperaturegraph.h

33 lines
576 B
C
Raw Normal View History

#ifndef TEMPERATUREGRAPH_H
#define TEMPERATUREGRAPH_H
2016-06-24 00:55:44 +02:00
#include "graphtab.h"
class GPX;
2016-06-24 00:55:44 +02:00
class TemperatureGraph : public GraphTab
{
Q_OBJECT
public:
TemperatureGraph(QWidget *parent = 0);
2016-06-24 00:55:44 +02:00
QString label() const {return tr("Temperature");}
void loadGPX(const GPX &gpx);
void clear();
void setUnits(enum Units units);
2016-06-24 00:55:44 +02:00
private:
qreal avg() const;
qreal min() const {return bounds().top();}
qreal max() const {return bounds().bottom();}
void setXUnits();
void setYUnits();
2016-08-09 01:16:19 +02:00
void setInfo();
QList<QPointF> _avg;
enum Units _units;
};
#endif // TEMPERATUREGRAPH_H