mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 13:41:16 +01:00
33 lines
629 B
C++
33 lines
629 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);
|
|
|
|
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
|