mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Something prettier than an empty Event Breakdown :)
This commit is contained in:
parent
cafdfc5563
commit
039b7d2f9a
@ -14,5 +14,6 @@
|
||||
<file>icons/refresh.png</file>
|
||||
<file>docs/usage.html</file>
|
||||
<file>icons/oximeter.png</file>
|
||||
<file>docs/0.0.gif</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
26
daily.cpp
26
daily.cpp
@ -724,9 +724,9 @@ void Daily::Load(QDate date)
|
||||
float vsi=cpap->count(CPAP_VSnore)/cpap->hours();
|
||||
float fli=cpap->count(CPAP_FlowLimit)/cpap->hours();
|
||||
|
||||
float p90=cpap->p90(CPAP_Pressure);
|
||||
eap90=cpap->p90(CPAP_EPAP);
|
||||
iap90=cpap->p90(CPAP_IPAP);
|
||||
//float p90=cpap->p90(CPAP_Pressure);
|
||||
//eap90=cpap->p90(CPAP_EPAP);
|
||||
//iap90=cpap->p90(CPAP_IPAP);
|
||||
QString submodel=tr("Unknown Model");
|
||||
|
||||
//html+="<tr><td colspan=4 align=center><i>"+tr("Machine Information")+"</i></td></tr>\n";
|
||||
@ -781,14 +781,18 @@ void Daily::Load(QDate date)
|
||||
// ^^ Scratch that.. pie now includes text..
|
||||
|
||||
if (pref["EnableGraphSnapshots"].toBool()) { // AHI Pie Chart
|
||||
html+="</tr>\n<tr><td colspan=4 align=center><i>"+tr("Event Breakdown")+"</i></td></tr>\n";
|
||||
G_AHI->setFixedSize(gwwidth,120);
|
||||
QPixmap pixmap=G_AHI->renderPixmap(gwwidth,120,false); //gwwidth,gwheight,false);
|
||||
QByteArray byteArray;
|
||||
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
||||
buffer.open(QIODevice::WriteOnly);
|
||||
pixmap.save(&buffer, "PNG");
|
||||
html += "<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
||||
if (ahi+rei+fli>0) {
|
||||
html+="</tr>\n<tr><td colspan=4 align=center><i>"+tr("Event Breakdown")+"</i></td></tr>\n";
|
||||
G_AHI->setFixedSize(gwwidth,120);
|
||||
QPixmap pixmap=G_AHI->renderPixmap(gwwidth,120,false); //gwwidth,gwheight,false);
|
||||
QByteArray byteArray;
|
||||
QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray
|
||||
buffer.open(QIODevice::WriteOnly);
|
||||
pixmap.save(&buffer, "PNG");
|
||||
html += "<tr><td colspan=4 align=center><img src=\"data:image/png;base64," + byteArray.toBase64() + "\"></td></tr>\n";
|
||||
} else {
|
||||
html += "<tr><td colspan=4 align=center><img src=\"qrc:/docs/0.0.gif\"></td></tr>\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
html+="</table>"
|
||||
|
@ -265,7 +265,7 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
||||
sess->SetSessionID(starttime/1000L);
|
||||
|
||||
sess->setMin(OXI_Pulse,ev_pulse->min());
|
||||
sess->setMax(OXI_Pulse,ev_pulse->min());
|
||||
sess->setMax(OXI_Pulse,ev_pulse->max());
|
||||
sess->setFirst(OXI_Pulse,ev_pulse->first());
|
||||
sess->setLast(OXI_Pulse,ev_pulse->last());
|
||||
sess->avg(OXI_Pulse);
|
||||
@ -284,11 +284,6 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
||||
//sess->min(OXI_SPO2);
|
||||
//sess->max(OXI_SPO2);
|
||||
|
||||
sess->setMin(OXI_SPO2,ev_spo2->min());
|
||||
sess->setMax(OXI_SPO2,ev_spo2->max());
|
||||
sess->setFirst(OXI_SPO2,ev_spo2->first());
|
||||
sess->setLast(OXI_SPO2,ev_spo2->last());
|
||||
|
||||
//sess->min(OXI_Plethysomogram);
|
||||
//sess->max(OXI_Plethysomogram);
|
||||
sess->avg(OXI_Plethysomogram);
|
||||
|
Loading…
Reference in New Issue
Block a user