1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/GUI/elevationgraph.h

48 lines
1016 B
C
Raw Normal View History

2015-10-12 01:12:12 +02:00
#ifndef ELEVATIONGRAPH_H
#define ELEVATIONGRAPH_H
2016-06-24 00:55:44 +02:00
#include "graphtab.h"
2015-10-12 01:12:12 +02:00
class ElevationGraphItem;
2016-06-24 00:55:44 +02:00
class ElevationGraph : 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
ElevationGraph(QWidget *parent = 0);
~ElevationGraph();
2015-10-12 01:12:12 +02:00
2016-06-24 00:55:44 +02:00
QString label() const {return tr("Elevation");}
QList<GraphItem*> loadData(const Data &data);
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);
2015-10-12 01:12:12 +02:00
2016-06-24 00:55:44 +02:00
private:
enum PathType {TrackPath, RoutePath};
qreal max() const;
qreal min() const;
qreal ascent() const;
qreal descent() const;
2017-10-04 23:15:39 +02:00
void setYUnits(Units units);
2016-08-09 01:16:19 +02:00
void setInfo();
GraphItem *loadGraph(const Graph &graph, PathType type, const QColor &color,
bool primary);
void showItems(const QList<ElevationGraphItem *> &list, bool show);
qreal _trackAscent, _trackDescent;
qreal _routeAscent, _routeDescent;
qreal _trackMax, _routeMax;
qreal _trackMin, _routeMin;
2015-12-19 20:23:07 +01:00
bool _showTracks, _showRoutes;
QList<ElevationGraphItem *> _tracks, _routes;
2015-10-12 01:12:12 +02:00
};
#endif // ELEVATIONGRAPH_H