diff --git a/sleepyhead/Graphs/MinutesAtPressure.cpp b/sleepyhead/Graphs/MinutesAtPressure.cpp index c013733d..e9d84609 100644 --- a/sleepyhead/Graphs/MinutesAtPressure.cpp +++ b/sleepyhead/Graphs/MinutesAtPressure.cpp @@ -20,6 +20,8 @@ #include "SleepLib/profiles.h" #include "Graphs/gXAxis.h" +#include "Graphs/gYAxis.h" + MinutesAtPressure::MinutesAtPressure() :Layer(NoChannel) @@ -110,13 +112,13 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r { QRect rect = region.boundingRect(); - float width = rect.width(); float cells = m_maxpressure-m_minpressure+1; - float pix = width / cells; - float left = rect.left(); + float width = rect.width() - gYAxis::Margin; + float left = rect.left() + gYAxis::Margin; + float pix = width / cells; m_minx = graph.min_x; m_maxx = graph.max_x; @@ -136,24 +138,29 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r timelock.lock(); QMap::iterator times_end = times.end(); + QPoint mouse = graph.graphView()->currentMousePos(); - QString text = STR_TR_Pressure; - QRect rec(left,top, pix * 3,0); + QString text = schema::channel[m_presChannel].label(); + QRectF rec(left,top, pix * 3,0); rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignRight, text); rec.moveRight(left-4); painter.drawText(rec, Qt::AlignRight | Qt::AlignVCenter, text); + if (rec.contains(mouse)) { + QString text = schema::channel[m_presChannel].description(); + graph.ToolTip(text, mouse.x() + 10, mouse.y(), TT_AlignLeft); + } text = STR_UNIT_Minutes; - QRect rec2(left, top + rec.height(),pix * 3, 0); + QRectF rec2(left, top + rec.height(),pix * 3, 0); rec2 = painter.boundingRect(rec2, Qt::AlignTop | Qt::AlignRight, text); rec2.moveRight(left-4); painter.drawText(rec2, Qt::AlignRight | Qt::AlignVCenter, text); - int xpos = left; + float xpos = left; for (it = times.begin(); it != times_end; ++it) { QString text = QString::number(it.key()); QString value = QString("%1").arg(float(it.value()) / 60.0, 5, 'f', 1); - QRect rec(xpos, top, pix-1, 0); + QRectF rec(xpos, top, pix-1, 0); rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignLeft, text); rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignLeft, value); rec.setWidth(pix - 1); @@ -168,12 +175,13 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r float hh = rec.height(); - int ypos = top + hh * 2; + float ypos = top + hh * 2; QHash >::iterator eit; QHash >::iterator ev_end = events.end(); QMap::iterator vit; + int row = 0; int numchans = chans.size(); for (int i=0; i< numchans; ++i) { @@ -188,26 +196,39 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r QMap::iterator eit_end = eit.value().end(); QString text = chan.label(); - QRect rec2(xpos, ypos, pix * 3, hh); + QRectF rec2(xpos, ypos, pix * 3, hh); rec2 = painter.boundingRect(rec2, Qt::AlignTop | Qt::AlignRight, text); rec2.moveRight(left-4); + + if (rec2.contains(mouse)) { + QString text = chan.fullname(); + if (type == schema::SPAN) { + text += "\n"+QObject::tr("(% of time)"); + } + graph.ToolTip(text, mouse.x() + 10, mouse.y(), TT_AlignLeft); + } painter.drawText(rec2, Qt::AlignRight | Qt::AlignVCenter, text); for (it = times.begin(), vit = eit.value().begin(); vit != eit_end; ++vit, ++it) { float minutes = float(it.value()) / 60.0; float value = vit.value(); + QString fmt = "%1"; if (type != schema::SPAN) { + //fmt = "%1"; value = (minutes > 0.000001) ? (value * 60.0) / minutes : 0; } else { + //fmt = "%1%"; value = (minutes > 0.000001) ? (100/minutes) * (value / 60.0) : 0; } - QRect rec(xpos, ypos, pix-1, hh); + QRectF rec(xpos, ypos, pix-1, hh); if ((row & 1) == 0) { painter.fillRect(rec, QColor(245,245,255,240)); } - painter.drawText(rec, Qt::AlignCenter, QString("%1").arg(value,5,'f',2)); + + + painter.drawText(rec, Qt::AlignCenter, QString(fmt).arg(value,5,'f',2)); xpos += pix; } @@ -391,6 +412,7 @@ skip: map->events = events; map->maxtime = maxtime; map->chans = chans; + map->m_presChannel = prescode; timelock.unlock(); map->recalcFinished(); diff --git a/sleepyhead/Graphs/MinutesAtPressure.h b/sleepyhead/Graphs/MinutesAtPressure.h index ae0ca484..f1eca8b8 100644 --- a/sleepyhead/Graphs/MinutesAtPressure.h +++ b/sleepyhead/Graphs/MinutesAtPressure.h @@ -67,6 +67,7 @@ protected: QList chans; QHash > events; int maxtime; + ChannelID m_presChannel; EventStoreType m_minpressure; EventStoreType m_maxpressure; diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 01379c48..01bcc532 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -339,8 +339,8 @@ Daily::Daily(QWidget *parent,gGraphView * shared) pc->addPlot(CPAP_IPAPHi, COLOR_IPAPHi, square); gGraph * TAP2; - graphlist[STR_GRAPH_TAP] = TAP2 = new gGraph(STR_GRAPH_TAP, GraphView, QObject::tr("Time @ Pressure"), QObject::tr("Time at Pressure"), default_height); - TAP2->AddLayer(new gFlagsLabelArea(nullptr),LayerLeft,gYAxis::Margin); + graphlist[STR_GRAPH_TAP] = TAP2 = new gGraph(STR_GRAPH_TAP, GraphView, QObject::tr("By Pressure"), QObject::tr("Statistics at Pressure"), default_height); +// TAP2->AddLayer(new gFlagsLabelArea(nullptr),LayerLeft,gYAxis::Margin); TAP2->AddLayer(AddCPAP(new MinutesAtPressure())); TAP2->setBlockSelect(true);