mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 12:12:08 +01:00
39 lines
997 B
C++
39 lines
997 B
C++
#include <QLocale>
|
|
#include "tooltip.h"
|
|
#include "temperaturegraphitem.h"
|
|
|
|
|
|
TemperatureGraphItem::TemperatureGraphItem(const Graph &graph, GraphType type,
|
|
QGraphicsItem *parent) : GraphItem(graph, type, parent)
|
|
{
|
|
_min = GraphItem::min();
|
|
_max = GraphItem::max();
|
|
_avg = GraphItem::avg();
|
|
|
|
setToolTip(toolTip(Metric));
|
|
}
|
|
|
|
QString TemperatureGraphItem::toolTip(Units units) const
|
|
{
|
|
ToolTip tt;
|
|
qreal scale = (units == Metric) ? 1.0 : C2FS;
|
|
qreal offset = (units == Metric) ? 0 : C2FO;
|
|
QString su = (units == Metric) ?
|
|
QChar(0x00B0) + tr("C") : QChar(0x00B0) + tr("F");
|
|
QLocale l(QLocale::system());
|
|
|
|
tt.insert(tr("Average"), l.toString(avg() * scale + offset, 'f', 1)
|
|
+ UNIT_SPACE + su);
|
|
tt.insert(tr("Maximum"), l.toString(max() * scale + offset, 'f', 1)
|
|
+ UNIT_SPACE + su);
|
|
tt.insert(tr("Minimum"), l.toString(min() * scale + offset, 'f', 1)
|
|
+ UNIT_SPACE + su);
|
|
|
|
return tt.toString();
|
|
}
|
|
|
|
void TemperatureGraphItem::setUnits(Units units)
|
|
{
|
|
setToolTip(toolTip(units));
|
|
}
|