mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
30 lines
566 B
C++
30 lines
566 B
C++
#ifndef SPEEDGRAPHITEM_H
|
|
#define SPEEDGRAPHITEM_H
|
|
|
|
#include "timetype.h"
|
|
#include "graphitem.h"
|
|
|
|
class SpeedGraphItem : public GraphItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SpeedGraphItem(const Graph &graph, GraphType type, int width,
|
|
const QColor &color, Qt::PenStyle style, qreal movingTime,
|
|
QGraphicsItem *parent = 0);
|
|
|
|
qreal avg() const {return _avg;}
|
|
qreal mavg() const {return _mavg;}
|
|
qreal max() const {return _max;}
|
|
|
|
ToolTip info() const;
|
|
|
|
void setTimeType(TimeType type);
|
|
|
|
private:
|
|
qreal _avg, _mavg, _max;
|
|
TimeType _timeType;
|
|
};
|
|
|
|
#endif // SPEEDGRAPHITEM_H
|