diff --git a/oscar/Graphs/gFlagsLine.cpp b/oscar/Graphs/gFlagsLine.cpp index e3635abe..9dc3a1f6 100644 --- a/oscar/Graphs/gFlagsLine.cpp +++ b/oscar/Graphs/gFlagsLine.cpp @@ -7,6 +7,9 @@ * License. See the file COPYING in the main directory of the source code * for more details. */ +#define TEST_MACROS_ENABLEDoff +#include + #include #include #include "SleepLib/profiles.h" @@ -161,6 +164,15 @@ void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion ®ion) if (!m_day) { return; } + qint64 minx,maxx,dur; + g.graphView()->GetXBounds(minx,maxx); + dur = maxx - minx; + QString text= QString("%1 -> %2 %3: %4 "). + arg(QDateTime::fromMSecsSinceEpoch(minx).time().toString()). + arg(QDateTime::fromMSecsSinceEpoch(maxx).time().toString()). + arg(QObject::tr("Selection Length")). + arg(QTime(0,0).addMSecs(dur).toString("H:mm:ss.zzz")) ; + g.renderText(text, left , top -5 ); QVector visflags;