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

49 lines
1.3 KiB
C++
Raw Normal View History

#include "tooltip.h"
2018-03-10 20:25:13 +01:00
#include "format.h"
#include "speedgraphitem.h"
2017-10-04 23:15:39 +02:00
SpeedGraphItem::SpeedGraphItem(const Graph &graph, GraphType type,
qreal movingTime, QGraphicsItem *parent) : GraphItem(graph, type, parent)
{
2017-09-25 19:56:04 +02:00
_units = Metric;
_timeType = Total;
_avg = graph.last().s() / graph.last().t();
_mavg = graph.last().s() / movingTime;
2017-09-25 19:56:04 +02:00
setToolTip(toolTip());
}
2017-09-25 19:56:04 +02:00
QString SpeedGraphItem::toolTip() const
{
ToolTip tt;
2018-02-11 23:51:57 +01:00
qreal scale = (_units == Imperial) ? MS2MIH : (_units == Nautical)
? MS2KN : MS2KMH;
QString su = (_units == Imperial) ? tr("mi/h") : (_units == Nautical)
? tr("kn") : tr("km/h");
2018-03-10 20:25:13 +01:00
QString pace = Format::timeSpan((3600.0 / ((_timeType == Total)
? avg() * scale : mavg() * scale)), false);
QString pu = (_units == Metric) ? tr("min/km") : (_units == Imperial) ?
tr("min/mi") : tr("min/nmi");
tt.insert(tr("Maximum"), QString::number(max() * scale, 'f', 1)
+ UNIT_SPACE + su);
2017-09-25 19:56:04 +02:00
tt.insert(tr("Average"), QString::number((_timeType == Total)
? avg() * scale : mavg() * scale, 'f', 1) + UNIT_SPACE + su);
2018-03-10 20:25:13 +01:00
tt.insert(tr("Pace"), pace + UNIT_SPACE + pu);
return tt.toString();
}
void SpeedGraphItem::setUnits(Units units)
{
2017-09-25 19:56:04 +02:00
_units = units;
setToolTip(toolTip());
}
void SpeedGraphItem::setTimeType(TimeType type)
{
_timeType = type;
setToolTip(toolTip());
}