Show user flags indexes in Daily details

This commit is contained in:
Mark Watkins 2014-07-20 16:08:38 +10:00
parent 4cf6c41f9a
commit 164d70c026
3 changed files with 5 additions and 1 deletions

View File

@ -81,6 +81,7 @@ QColor COLOR_PressurePulse = Qt::red;
QColor COLOR_PulseChange = COLOR_LightGray;
QColor COLOR_SPO2Drop = COLOR_LightBlue;
QColor COLOR_UserFlag1 = QColor("#e0e0e0");
QColor COLOR_UserFlag2 = QColor("#c0c0e0");
// Chart Colors
QColor COLOR_EPAP = Qt::blue;

View File

@ -57,6 +57,7 @@ extern QColor COLOR_PressurePulse;
extern QColor COLOR_PulseChange;
extern QColor COLOR_SPO2Drop;
extern QColor COLOR_UserFlag1;
extern QColor COLOR_UserFlag2;
// Chart Colors
extern QColor COLOR_EPAP;

View File

@ -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));
if (p_profile->general->calculateRDI()) ahi+=cpap->count(CPAP_RERA);
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) {
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_ClearAirway, COLOR_ClearAirway, Qt::black, cai=cpap->count(CPAP_ClearAirway)/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_SensAwake, COLOR_SensAwake, Qt::black, sai=cpap->count(CPAP_SensAwake)/hours },
{ CPAP_ExP, COLOR_ExP, Qt::black, exp=cpap->count(CPAP_ExP)/hours },