1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/temperaturegraph.h

34 lines
675 B
C++

#ifndef TEMPERATUREGRAPH_H
#define TEMPERATUREGRAPH_H
#include "graphtab.h"
class TemperatureGraph : public GraphTab
{
Q_OBJECT
public:
TemperatureGraph(QWidget *parent = 0);
QString label() const {return tr("Temperature");}
void loadData(const Data &data, const QList<PathItem *> &paths);
void clear();
void setUnits(enum Units units);
void showTracks(bool show);
void showRoutes(bool show) {Q_UNUSED(show);}
private:
qreal avg() const;
qreal min() const {return bounds().top();}
qreal max() const {return bounds().bottom();}
void setYUnits();
void setInfo();
QList<QPointF> _avg;
enum Units _units;
bool _showTracks;
};
#endif // TEMPERATUREGRAPH_H