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

33 lines
577 B
C
Raw Normal View History

#ifndef HEARTRATEGRAPH_H
#define HEARTRATEGRAPH_H
2016-06-24 00:55:44 +02:00
#include "graphtab.h"
class GPX;
2016-06-24 00:55:44 +02:00
class HeartRateGraph : public GraphTab
{
Q_OBJECT
public:
HeartRateGraph(QWidget *parent = 0);
2016-06-24 00:55:44 +02:00
QString label() const {return tr("Heart rate");}
void loadGPX(const GPX &gpx);
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;
2016-03-27 13:23:00 +02:00
qreal max() const {return bounds().bottom();}
void setXUnits();
2016-08-09 01:16:19 +02:00
void setInfo();
QList<QPointF> _avg;
enum Units _units;
};
#endif // HEARTRATEGRAPH_H