#include #include "tooltip.h" #include "powergraphitem.h" PowerGraphItem::PowerGraphItem(const Graph &graph, GraphType type, QGraphicsItem *parent) : GraphItem(graph, type, parent) { setToolTip(toolTip()); } QString PowerGraphItem::toolTip() const { ToolTip tt; QLocale l(QLocale::system()); tt.insert(tr("Maximum"), l.toString(max(), 'f', 1) + UNIT_SPACE + tr("W")); tt.insert(tr("Average"), l.toString(avg(), 'f', 1) + UNIT_SPACE + tr("W")); return tt.toString(); }