1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/GUI/graphtab.h

31 lines
793 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;
2017-10-04 23:15:39 +02:00
virtual void clear() {GraphView::clear();}
virtual void setUnits(enum Units units) {GraphView::setUnits(units);}
2017-10-04 23:15:39 +02:00
virtual void setGraphType(GraphType type) {GraphView::setGraphType(type);}
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