mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 13:41:16 +01:00
31 lines
546 B
C
31 lines
546 B
C
|
#ifndef GEARRATIOGRAPH_H
|
||
|
#define GEARRATIOGRAPH_H
|
||
|
|
||
|
#include <QMap>
|
||
|
#include "graphtab.h"
|
||
|
|
||
|
class GearRatioGraph : public GraphTab
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
GearRatioGraph(QWidget *parent = 0);
|
||
|
|
||
|
QString label() const {return tr("Gear ratio");}
|
||
|
QList<GraphItem*> loadData(const Data &data);
|
||
|
void clear();
|
||
|
void showTracks(bool show);
|
||
|
|
||
|
private:
|
||
|
qreal top() const;
|
||
|
qreal min() const {return bounds().top();}
|
||
|
qreal max() const {return bounds().bottom();}
|
||
|
void setInfo();
|
||
|
|
||
|
QMap<qreal, qreal> _map;
|
||
|
|
||
|
bool _showTracks;
|
||
|
};
|
||
|
|
||
|
#endif // GEARRATIOGRAPH_H
|