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

30 lines
698 B
C
Raw Normal View History

2016-06-24 00:55:44 +02:00
#ifndef GRAPHTAB_H
#define GRAPHTAB_H
2016-09-19 00:56:10 +02:00
#include <QList>
2016-06-24 00:55:44 +02:00
#include "graphview.h"
#include "units.h"
#include "timetype.h"
2016-06-24 00:55:44 +02:00
2016-10-23 11:09:20 +02:00
class Data;
2016-09-19 00:56:10 +02:00
class PathItem;
2016-06-24 00:55:44 +02:00
class GraphTab : public GraphView
{
Q_OBJECT
public:
GraphTab(QWidget *parent = 0) : GraphView(parent)
{setFrameShape(QFrame::NoFrame);}
virtual QString label() const = 0;
2016-10-23 11:09:20 +02:00
virtual void loadData(const Data &data, const QList<PathItem *> &paths) = 0;
virtual void clear() {}
virtual void setUnits(enum Units units) {GraphView::setUnits(units);}
virtual void setTimeType(enum TimeType type) {Q_UNUSED(type)}
virtual void showTracks(bool show) {Q_UNUSED(show)}
virtual void showRoutes(bool show) {Q_UNUSED(show)}
2016-06-24 00:55:44 +02:00
};
#endif // GRAPHTAB_H