mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
43 lines
837 B
C++
43 lines
837 B
C++
#ifndef ELEVATIONGRAPH_H
|
|
#define ELEVATIONGRAPH_H
|
|
|
|
#include "graphtab.h"
|
|
|
|
class ElevationGraph : public GraphTab
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ElevationGraph(QWidget *parent = 0);
|
|
|
|
QString label() const {return tr("Elevation");}
|
|
void loadData(const Data &data, const QList<PathItem *> &paths);
|
|
void clear();
|
|
void setUnits(enum Units units);
|
|
void showTracks(bool show);
|
|
void showRoutes(bool show);
|
|
|
|
private:
|
|
enum Type {Track, Route};
|
|
|
|
qreal max() const;
|
|
qreal min() const;
|
|
qreal ascent() const;
|
|
qreal descent() const;
|
|
|
|
void setYUnits();
|
|
void setInfo();
|
|
|
|
void loadGraph(const Graph &graph, Type type, PathItem *path);
|
|
|
|
qreal _trackAscent, _trackDescent;
|
|
qreal _routeAscent, _routeDescent;
|
|
qreal _trackMax, _routeMax;
|
|
qreal _trackMin, _routeMin;
|
|
|
|
enum Units _units;
|
|
bool _showTracks, _showRoutes;
|
|
};
|
|
|
|
#endif // ELEVATIONGRAPH_H
|