mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Show user flags indexes in Daily details
This commit is contained in:
parent
4cf6c41f9a
commit
164d70c026
@ -81,6 +81,7 @@ QColor COLOR_PressurePulse = Qt::red;
|
|||||||
QColor COLOR_PulseChange = COLOR_LightGray;
|
QColor COLOR_PulseChange = COLOR_LightGray;
|
||||||
QColor COLOR_SPO2Drop = COLOR_LightBlue;
|
QColor COLOR_SPO2Drop = COLOR_LightBlue;
|
||||||
QColor COLOR_UserFlag1 = QColor("#e0e0e0");
|
QColor COLOR_UserFlag1 = QColor("#e0e0e0");
|
||||||
|
QColor COLOR_UserFlag2 = QColor("#c0c0e0");
|
||||||
|
|
||||||
// Chart Colors
|
// Chart Colors
|
||||||
QColor COLOR_EPAP = Qt::blue;
|
QColor COLOR_EPAP = Qt::blue;
|
||||||
|
@ -57,6 +57,7 @@ extern QColor COLOR_PressurePulse;
|
|||||||
extern QColor COLOR_PulseChange;
|
extern QColor COLOR_PulseChange;
|
||||||
extern QColor COLOR_SPO2Drop;
|
extern QColor COLOR_SPO2Drop;
|
||||||
extern QColor COLOR_UserFlag1;
|
extern QColor COLOR_UserFlag1;
|
||||||
|
extern QColor COLOR_UserFlag2;
|
||||||
|
|
||||||
// Chart Colors
|
// Chart Colors
|
||||||
extern QColor COLOR_EPAP;
|
extern QColor COLOR_EPAP;
|
||||||
|
@ -1363,7 +1363,7 @@ void Daily::Load(QDate date)
|
|||||||
EventDataType ahi=(cpap->count(CPAP_Obstructive)+cpap->count(CPAP_Hypopnea)+cpap->count(CPAP_ClearAirway)+cpap->count(CPAP_Apnea));
|
EventDataType ahi=(cpap->count(CPAP_Obstructive)+cpap->count(CPAP_Hypopnea)+cpap->count(CPAP_ClearAirway)+cpap->count(CPAP_Apnea));
|
||||||
if (p_profile->general->calculateRDI()) ahi+=cpap->count(CPAP_RERA);
|
if (p_profile->general->calculateRDI()) ahi+=cpap->count(CPAP_RERA);
|
||||||
ahi/=hours;
|
ahi/=hours;
|
||||||
EventDataType csr,uai,oai,hi,cai,rei,fli,sai,nri,lki,vs,vs2,exp,lk2;
|
EventDataType csr,uai,oai,hi,cai,rei,fli,sai,nri,lki,vs,vs2,exp,lk2,uf1, uf2;
|
||||||
|
|
||||||
if (!isBrick && hours>0) {
|
if (!isBrick && hours>0) {
|
||||||
html+="<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n";
|
html+="<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n";
|
||||||
@ -1393,6 +1393,8 @@ void Daily::Load(QDate date)
|
|||||||
{ CPAP_Apnea, COLOR_Apnea, Qt::black, uai=cpap->count(CPAP_Apnea)/hours },
|
{ CPAP_Apnea, COLOR_Apnea, Qt::black, uai=cpap->count(CPAP_Apnea)/hours },
|
||||||
{ CPAP_ClearAirway, COLOR_ClearAirway, Qt::black, cai=cpap->count(CPAP_ClearAirway)/hours },
|
{ CPAP_ClearAirway, COLOR_ClearAirway, Qt::black, cai=cpap->count(CPAP_ClearAirway)/hours },
|
||||||
{ CPAP_NRI, COLOR_NRI, Qt::black, nri=cpap->count(CPAP_NRI)/hours },
|
{ CPAP_NRI, COLOR_NRI, Qt::black, nri=cpap->count(CPAP_NRI)/hours },
|
||||||
|
{ CPAP_UserFlag1, COLOR_UserFlag1, Qt::black, uf1=cpap->count(CPAP_UserFlag1)/hours },
|
||||||
|
{ CPAP_UserFlag2, COLOR_UserFlag2, Qt::black, uf2=cpap->count(CPAP_UserFlag2)/hours },
|
||||||
{ CPAP_FlowLimit, COLOR_FlowLimit, Qt::white, fli=cpap->count(CPAP_FlowLimit)/hours },
|
{ CPAP_FlowLimit, COLOR_FlowLimit, Qt::white, fli=cpap->count(CPAP_FlowLimit)/hours },
|
||||||
{ CPAP_SensAwake, COLOR_SensAwake, Qt::black, sai=cpap->count(CPAP_SensAwake)/hours },
|
{ CPAP_SensAwake, COLOR_SensAwake, Qt::black, sai=cpap->count(CPAP_SensAwake)/hours },
|
||||||
{ CPAP_ExP, COLOR_ExP, Qt::black, exp=cpap->count(CPAP_ExP)/hours },
|
{ CPAP_ExP, COLOR_ExP, Qt::black, exp=cpap->count(CPAP_ExP)/hours },
|
||||||
|
Loading…
Reference in New Issue
Block a user