1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-17 20:34:23 +02:00

Graph loading performance improvement

+ code/API cleanup
This commit is contained in:
2019-08-25 10:54:25 +02:00
parent a70c6f0f24
commit 609ac0c57a
33 changed files with 346 additions and 219 deletions

View File

@ -4,12 +4,15 @@
#include <QMap>
#include "graphtab.h"
class GearRatioGraphItem;
class GearRatioGraph : public GraphTab
{
Q_OBJECT
public:
GearRatioGraph(QWidget *parent = 0);
~GearRatioGraph();
QString label() const {return tr("Gear ratio");}
QList<GraphItem*> loadData(const Data &data);
@ -25,6 +28,7 @@ private:
QMap<qreal, qreal> _map;
bool _showTracks;
QList<GearRatioGraphItem*> _tracks;
};
#endif // GEARRATIOGRAPH_H