2016-03-21 22:37:55 +01:00
|
|
|
#ifndef HEARTRATEGRAPH_H
|
|
|
|
#define HEARTRATEGRAPH_H
|
|
|
|
|
2016-06-24 00:55:44 +02:00
|
|
|
#include "graphtab.h"
|
2016-03-21 22:37:55 +01:00
|
|
|
|
2016-06-24 00:55:44 +02:00
|
|
|
class HeartRateGraph : public GraphTab
|
2016-03-21 22:37:55 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
HeartRateGraph(QWidget *parent = 0);
|
|
|
|
|
2016-06-24 00:55:44 +02:00
|
|
|
QString label() const {return tr("Heart rate");}
|
2016-10-23 11:09:20 +02:00
|
|
|
void loadData(const Data &data, const QList<PathItem *> &paths);
|
2016-03-21 22:37:55 +01:00
|
|
|
void clear();
|
2016-08-16 00:27:54 +02:00
|
|
|
void showTracks(bool show);
|
2016-03-21 22:37:55 +01:00
|
|
|
|
2016-06-24 00:55:44 +02:00
|
|
|
private:
|
2016-03-21 22:37:55 +01:00
|
|
|
qreal avg() const;
|
2016-03-27 13:23:00 +02:00
|
|
|
qreal max() const {return bounds().bottom();}
|
2016-08-09 01:16:19 +02:00
|
|
|
void setInfo();
|
2016-03-21 22:37:55 +01:00
|
|
|
|
|
|
|
QList<QPointF> _avg;
|
2016-08-19 19:48:44 +02:00
|
|
|
|
2016-03-27 15:04:58 +02:00
|
|
|
enum Units _units;
|
2016-08-19 19:48:44 +02:00
|
|
|
bool _showTracks;
|
2016-03-21 22:37:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HEARTRATEGRAPH_H
|