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

37 lines
608 B
C
Raw Normal View History

2015-10-12 01:12:12 +02:00
#ifndef SPEEDGRAPH_H
#define SPEEDGRAPH_H
#include <QList>
2016-06-24 00:55:44 +02:00
#include "graphtab.h"
2015-10-12 01:12:12 +02:00
2016-02-12 10:23:14 +01:00
class GPX;
2016-06-24 00:55:44 +02:00
class SpeedGraph : public GraphTab
2015-10-12 01:12:12 +02:00
{
2015-10-13 00:27:49 +02:00
Q_OBJECT
2015-10-12 01:12:12 +02:00
public:
2015-10-17 01:33:02 +02:00
SpeedGraph(QWidget *parent = 0);
2015-10-12 01:12:12 +02:00
2016-06-24 00:55:44 +02:00
QString label() const {return tr("Speed");}
2015-10-17 12:08:30 +02:00
void loadGPX(const GPX &gpx);
2015-10-12 01:12:12 +02:00
void clear();
2015-12-19 20:23:07 +01:00
void setUnits(enum Units units);
void showTracks(bool show);
void showRoutes(bool show) {Q_UNUSED(show);}
2015-10-12 01:12:12 +02:00
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();
void setYUnits();
2016-08-09 01:16:19 +02:00
void setInfo();
2015-12-19 20:23:07 +01:00
2015-10-12 01:12:12 +02:00
QList<QPointF> _avg;
2016-08-19 19:48:44 +02:00
enum Units _units;
2016-08-19 19:48:44 +02:00
bool _showTracks;
2015-10-12 01:12:12 +02:00
};
#endif // SPEEDGRAPH_H