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

34 lines
672 B
C
Raw Normal View History

#ifndef TEMPERATUREGRAPH_H
#define TEMPERATUREGRAPH_H
2016-06-24 00:55:44 +02:00
#include "graphtab.h"
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");}
2016-09-19 00:56:10 +02:00
void loadGPX(const GPX &gpx, const QList<PathItem *> &paths);
void clear();
void setUnits(enum Units units);
void showTracks(bool show);
void showRoutes(bool show) {Q_UNUSED(show);}
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 setYUnits();
2016-08-09 01:16:19 +02:00
void setInfo();
QList<QPointF> _avg;
2016-08-19 19:48:44 +02:00
enum Units _units;
2016-08-19 19:48:44 +02:00
bool _showTracks;
};
#endif // TEMPERATUREGRAPH_H