diff --git a/sleepyhead/common_gui.cpp b/sleepyhead/common_gui.cpp index 5028a7ac..79899fe8 100644 --- a/sleepyhead/common_gui.cpp +++ b/sleepyhead/common_gui.cpp @@ -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; diff --git a/sleepyhead/common_gui.h b/sleepyhead/common_gui.h index f4e72af3..5d6cba30 100644 --- a/sleepyhead/common_gui.h +++ b/sleepyhead/common_gui.h @@ -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; diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 1190d9e4..9a02366a 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -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+="\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 },