1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-27 00:44:24 +02:00

Added track statistics

This commit is contained in:
2015-10-12 01:12:12 +02:00
parent 5131a9d81d
commit 96e8415e00
15 changed files with 535 additions and 143 deletions

View File

@ -12,7 +12,8 @@
#include <QFileInfoList>
#include "poi.h"
class Graph;
class ElevationGraph;
class SpeedGraph;
class Track;
class GUI : public QMainWindow
@ -70,8 +71,8 @@ private:
QLabel *_fileName;
QLabel *_zoom;
Graph *_elevationGraph;
Graph *_speedGraph;
ElevationGraph *_elevationGraph;
SpeedGraph *_speedGraph;
Track *_track;
POI _poi;
@ -80,6 +81,7 @@ private:
int _dirIndex;
QString _saveFileName;
unsigned _files;
};
#endif // GUI_H