mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 13:41:16 +01:00
32 lines
584 B
C++
32 lines
584 B
C++
#ifndef CADENCEGRAPH_H
|
|
#define CADENCEGRAPH_H
|
|
|
|
#include "graphtab.h"
|
|
|
|
class CadenceGraph : public GraphTab
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CadenceGraph(QWidget *parent = 0);
|
|
|
|
QString label() const {return tr("Cadence");}
|
|
void loadData(const Data &data, const QList<PathItem *> &paths);
|
|
void clear();
|
|
void setUnits(enum Units) {}
|
|
void showTracks(bool show);
|
|
void showRoutes(bool show) {Q_UNUSED(show);}
|
|
|
|
private:
|
|
qreal avg() const;
|
|
qreal max() const {return bounds().bottom();}
|
|
void setInfo();
|
|
|
|
QList<QPointF> _avg;
|
|
|
|
enum Units _units;
|
|
bool _showTracks;
|
|
};
|
|
|
|
#endif // CADENCEGRAPH_H
|