Rename TAP to By Pressure, added tooltips on it's headers

This commit is contained in:
Mark Watkins 2014-08-12 18:04:53 +10:00
parent 3ce49d9354
commit 67203a8c49
3 changed files with 37 additions and 14 deletions

View File

@ -20,6 +20,8 @@
#include "SleepLib/profiles.h" #include "SleepLib/profiles.h"
#include "Graphs/gXAxis.h" #include "Graphs/gXAxis.h"
#include "Graphs/gYAxis.h"
MinutesAtPressure::MinutesAtPressure() :Layer(NoChannel) MinutesAtPressure::MinutesAtPressure() :Layer(NoChannel)
@ -110,13 +112,13 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r
{ {
QRect rect = region.boundingRect(); QRect rect = region.boundingRect();
float width = rect.width();
float cells = m_maxpressure-m_minpressure+1; 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_minx = graph.min_x;
m_maxx = graph.max_x; m_maxx = graph.max_x;
@ -136,24 +138,29 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r
timelock.lock(); timelock.lock();
QMap<EventStoreType, int>::iterator times_end = times.end(); QMap<EventStoreType, int>::iterator times_end = times.end();
QPoint mouse = graph.graphView()->currentMousePos();
QString text = STR_TR_Pressure; QString text = schema::channel[m_presChannel].label();
QRect rec(left,top, pix * 3,0); QRectF rec(left,top, pix * 3,0);
rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignRight, text); rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignRight, text);
rec.moveRight(left-4); rec.moveRight(left-4);
painter.drawText(rec, Qt::AlignRight | Qt::AlignVCenter, text); 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; 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 = painter.boundingRect(rec2, Qt::AlignTop | Qt::AlignRight, text);
rec2.moveRight(left-4); rec2.moveRight(left-4);
painter.drawText(rec2, Qt::AlignRight | Qt::AlignVCenter, text); painter.drawText(rec2, Qt::AlignRight | Qt::AlignVCenter, text);
int xpos = left; float xpos = left;
for (it = times.begin(); it != times_end; ++it) { for (it = times.begin(); it != times_end; ++it) {
QString text = QString::number(it.key()); QString text = QString::number(it.key());
QString value = QString("%1").arg(float(it.value()) / 60.0, 5, 'f', 1); 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, text);
rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignLeft, value); rec = painter.boundingRect(rec, Qt::AlignTop | Qt::AlignLeft, value);
rec.setWidth(pix - 1); rec.setWidth(pix - 1);
@ -168,12 +175,13 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r
float hh = rec.height(); float hh = rec.height();
int ypos = top + hh * 2; float ypos = top + hh * 2;
QHash<ChannelID, QMap<EventStoreType, EventDataType> >::iterator eit; QHash<ChannelID, QMap<EventStoreType, EventDataType> >::iterator eit;
QHash<ChannelID, QMap<EventStoreType, EventDataType> >::iterator ev_end = events.end(); QHash<ChannelID, QMap<EventStoreType, EventDataType> >::iterator ev_end = events.end();
QMap<EventStoreType, EventDataType>::iterator vit; QMap<EventStoreType, EventDataType>::iterator vit;
int row = 0; int row = 0;
int numchans = chans.size(); int numchans = chans.size();
for (int i=0; i< numchans; ++i) { for (int i=0; i< numchans; ++i) {
@ -188,26 +196,39 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r
QMap<EventStoreType, EventDataType>::iterator eit_end = eit.value().end(); QMap<EventStoreType, EventDataType>::iterator eit_end = eit.value().end();
QString text = chan.label(); 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 = painter.boundingRect(rec2, Qt::AlignTop | Qt::AlignRight, text);
rec2.moveRight(left-4); 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); painter.drawText(rec2, Qt::AlignRight | Qt::AlignVCenter, text);
for (it = times.begin(), vit = eit.value().begin(); vit != eit_end; ++vit, ++it) { for (it = times.begin(), vit = eit.value().begin(); vit != eit_end; ++vit, ++it) {
float minutes = float(it.value()) / 60.0; float minutes = float(it.value()) / 60.0;
float value = vit.value(); float value = vit.value();
QString fmt = "%1";
if (type != schema::SPAN) { if (type != schema::SPAN) {
//fmt = "%1";
value = (minutes > 0.000001) ? (value * 60.0) / minutes : 0; value = (minutes > 0.000001) ? (value * 60.0) / minutes : 0;
} else { } else {
//fmt = "%1%";
value = (minutes > 0.000001) ? (100/minutes) * (value / 60.0) : 0; 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) { if ((row & 1) == 0) {
painter.fillRect(rec, QColor(245,245,255,240)); 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; xpos += pix;
} }
@ -391,6 +412,7 @@ skip:
map->events = events; map->events = events;
map->maxtime = maxtime; map->maxtime = maxtime;
map->chans = chans; map->chans = chans;
map->m_presChannel = prescode;
timelock.unlock(); timelock.unlock();
map->recalcFinished(); map->recalcFinished();

View File

@ -67,6 +67,7 @@ protected:
QList<ChannelID> chans; QList<ChannelID> chans;
QHash<ChannelID, QMap<EventStoreType, EventDataType> > events; QHash<ChannelID, QMap<EventStoreType, EventDataType> > events;
int maxtime; int maxtime;
ChannelID m_presChannel;
EventStoreType m_minpressure; EventStoreType m_minpressure;
EventStoreType m_maxpressure; EventStoreType m_maxpressure;

View File

@ -339,8 +339,8 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
pc->addPlot(CPAP_IPAPHi, COLOR_IPAPHi, square); pc->addPlot(CPAP_IPAPHi, COLOR_IPAPHi, square);
gGraph * TAP2; gGraph * TAP2;
graphlist[STR_GRAPH_TAP] = TAP2 = new gGraph(STR_GRAPH_TAP, GraphView, QObject::tr("Time @ Pressure"), QObject::tr("Time at Pressure"), default_height); 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(new gFlagsLabelArea(nullptr),LayerLeft,gYAxis::Margin);
TAP2->AddLayer(AddCPAP(new MinutesAtPressure())); TAP2->AddLayer(AddCPAP(new MinutesAtPressure()));
TAP2->setBlockSelect(true); TAP2->setBlockSelect(true);