mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Rename TAP to By Pressure, added tooltips on it's headers
This commit is contained in:
parent
3ce49d9354
commit
67203a8c49
@ -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<EventStoreType, int>::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<ChannelID, QMap<EventStoreType, EventDataType> >::iterator eit;
|
||||
QHash<ChannelID, QMap<EventStoreType, EventDataType> >::iterator ev_end = events.end();
|
||||
QMap<EventStoreType, EventDataType>::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<EventStoreType, EventDataType>::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();
|
||||
|
@ -67,6 +67,7 @@ protected:
|
||||
QList<ChannelID> chans;
|
||||
QHash<ChannelID, QMap<EventStoreType, EventDataType> > events;
|
||||
int maxtime;
|
||||
ChannelID m_presChannel;
|
||||
EventStoreType m_minpressure;
|
||||
EventStoreType m_maxpressure;
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user