From 53f893fb99bd72cfb28c48fb4a1b42154113b205 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 19 Nov 2013 23:06:17 +1000 Subject: [PATCH] Summary page cleanup for VPAP/ASV --- sleepyhead/SleepLib/day.cpp | 9 +- sleepyhead/SleepLib/machine_common.h | 5 +- sleepyhead/preferencesdialog.ui | 2 +- sleepyhead/summary.cpp | 163 +++++++++++++++++---------- 4 files changed, 113 insertions(+), 66 deletions(-) diff --git a/sleepyhead/SleepLib/day.cpp b/sleepyhead/SleepLib/day.cpp index 05a5116a..57bb636e 100644 --- a/sleepyhead/SleepLib/day.cpp +++ b/sleepyhead/SleepLib/day.cpp @@ -72,15 +72,20 @@ EventDataType Day::settings_max(ChannelID code) { EventDataType val=0,tmp; + bool fir=true; QList::iterator s; for (s=sessions.begin();s!=sessions.end();s++) { - if (!(*s)->enabled()) continue; + if (!(*s)->enabled()) + continue; Session & sess=*(*s); QHash::iterator i=sess.settings.find(code); if (i!=sess.settings.end()) { tmp=i.value().toDouble(); - if (tmp>val) val=tmp; + if (fir) { + val=tmp; + fir=false; + } else if (tmp>val) val=tmp; } } return val; diff --git a/sleepyhead/SleepLib/machine_common.h b/sleepyhead/SleepLib/machine_common.h index 01c2ed6b..259b2a91 100644 --- a/sleepyhead/SleepLib/machine_common.h +++ b/sleepyhead/SleepLib/machine_common.h @@ -84,14 +84,15 @@ enum MCDataType extern ChannelID NoChannel,SESSION_ENABLED; -extern ChannelID CPAP_IPAP, CPAP_IPAPLo, CPAP_IPAPHi, CPAP_EPAP, CPAP_EPAPLo, CPAP_EPAPHi, CPAP_Pressure, CPAP_PS, CPAP_Mode, CPAP_AHI, +extern ChannelID CPAP_IPAP, CPAP_IPAPLo, CPAP_IPAPHi, CPAP_EPAP, CPAP_EPAPLo, CPAP_EPAPHi, CPAP_Pressure, CPAP_PS, CPAP_PSMin, CPAP_PSMax, +CPAP_Mode, CPAP_AHI, CPAP_PressureMin, CPAP_PressureMax, CPAP_RampTime, CPAP_RampPressure, CPAP_Obstructive, CPAP_Hypopnea, CPAP_ClearAirway, CPAP_Apnea, CPAP_CSR, CPAP_LeakFlag, CPAP_ExP, CPAP_NRI, CPAP_VSnore, CPAP_VSnore2, CPAP_RERA, CPAP_PressurePulse, CPAP_FlowLimit, CPAP_FlowRate, CPAP_MaskPressure, CPAP_MaskPressureHi, CPAP_RespEvent, CPAP_Snore, CPAP_MinuteVent, CPAP_RespRate, CPAP_TidalVolume, CPAP_PTB, CPAP_Leak, CPAP_LeakMedian, CPAP_LeakTotal, CPAP_MaxLeak, CPAP_FLG, CPAP_IE, CPAP_Te, CPAP_Ti, CPAP_TgMV, CPAP_UserFlag1, CPAP_UserFlag2, CPAP_UserFlag3, CPAP_BrokenSummary, CPAP_BrokenWaveform, CPAP_RDI, -CPAP_PresReliefSet, CPAP_PresReliefMode, CPAP_PresReliefType, CPAP_PSMin, CPAP_PSMax, CPAP_Test1, CPAP_Test2; +CPAP_PresReliefSet, CPAP_PresReliefMode, CPAP_PresReliefType, CPAP_Test1, CPAP_Test2; extern ChannelID RMS9_E01, RMS9_E02, RMS9_EPR, RMS9_EPRSet, RMS9_SetPressure; extern ChannelID INTP_SmartFlex; diff --git a/sleepyhead/preferencesdialog.ui b/sleepyhead/preferencesdialog.ui index e8d9b640..0d159463 100644 --- a/sleepyhead/preferencesdialog.ui +++ b/sleepyhead/preferencesdialog.ui @@ -51,7 +51,7 @@ - 6 + 0 diff --git a/sleepyhead/summary.cpp b/sleepyhead/summary.cpp index ad17db39..b110fbe6 100644 --- a/sleepyhead/summary.cpp +++ b/sleepyhead/summary.cpp @@ -114,7 +114,8 @@ struct RXChange min=copy.min; max=copy.max; ps=copy.ps; - maxhi=copy.maxhi; + pshi=copy.pshi; + maxipap=copy.maxipap; machine=copy.machine; per1=copy.per1; per2=copy.per2; @@ -132,7 +133,8 @@ struct RXChange EventDataType min; EventDataType max; EventDataType ps; - EventDataType maxhi; + EventDataType pshi; + EventDataType maxipap; EventDataType per1; EventDataType per2; EventDataType weighted; @@ -142,7 +144,7 @@ struct RXChange short highlight; }; -enum RXSortMode { RX_first, RX_last, RX_days, RX_ahi, RX_mode, RX_min, RX_max, RX_ps, RX_maxhi, RX_per1, RX_per2, RX_weighted }; +enum RXSortMode { RX_first, RX_last, RX_days, RX_ahi, RX_mode, RX_min, RX_max, RX_ps, RX_pshi, RX_maxipap, RX_per1, RX_per2, RX_weighted }; RXSortMode RXsort=RX_first; bool RXorder=false; @@ -159,7 +161,8 @@ bool operator<(const RXChange & c1, const RXChange & c2) { case RX_min: return comp1->min < comp2->min; case RX_max: return comp1->max < comp2->max; case RX_ps: return comp1->ps < comp2->ps; - case RX_maxhi: return comp1->maxhi < comp2->maxhi; + case RX_pshi: return comp1->pshi < comp2->pshi; + case RX_maxipap: return comp1->maxipap < comp2->maxipap; case RX_per1: return comp1->per1 < comp2->per1; case RX_per2: return comp1->per2 < comp2->per2; case RX_weighted: return comp1->weighted < comp2->weighted; @@ -174,7 +177,8 @@ bool operator<(const RXChange & c1, const RXChange & c2) { case RX_min: return comp1->min > comp2->min; case RX_max: return comp1->max > comp2->max; case RX_ps: return comp1->ps > comp2->ps; - case RX_maxhi: return comp1->maxhi > comp2->maxhi; + case RX_pshi: return comp1->pshi > comp2->pshi; + case RX_maxipap: return comp1->maxipap > comp2->maxipap; case RX_per1: return comp1->per1 > comp2->per1; case RX_per2: return comp1->per2 > comp2->per2; case RX_weighted: return comp1->weighted > comp2->weighted; @@ -194,7 +198,8 @@ bool RXSort(const RXChange * comp1, const RXChange * comp2) { case RX_min: return comp1->min < comp2->min; case RX_max: return comp1->max < comp2->max; case RX_ps: return comp1->ps < comp2->ps; - case RX_maxhi: return comp1->maxhi < comp2->maxhi; + case RX_pshi: return comp1->pshi < comp2->pshi; + case RX_maxipap: return comp1->maxipap < comp2->maxipap; case RX_per1: return comp1->per1 < comp2->per1; case RX_per2: return comp1->per2 < comp2->per2; case RX_weighted: return comp1->weighted < comp2->weighted; @@ -208,8 +213,9 @@ bool RXSort(const RXChange * comp1, const RXChange * comp2) { case RX_mode: return comp1->mode > comp2->mode; case RX_min: return comp1->min > comp2->min; case RX_max: return comp1->max > comp2->max; - case RX_ps: return comp1->ps > comp2->ps; - case RX_maxhi: return comp1->maxhi > comp2->maxhi; + case RX_ps: return comp1->ps > comp2->ps; + case RX_pshi: return comp1->pshi > comp2->pshi; + case RX_maxipap: return comp1->maxipap > comp2->maxipap; case RX_per1: return comp1->per1 > comp2->per1; case RX_per2: return comp1->per2 > comp2->per2; case RX_weighted: return comp1->weighted > comp2->weighted; @@ -515,7 +521,7 @@ QString Summary::GenerateHTML() if (cpapdays>0) { QDate first,last=lastcpap; CPAPMode mode=MODE_UNKNOWN,cmode=MODE_UNKNOWN; - EventDataType cmin=0,cmax=0, cps=0, cmaxhi=0, min=0,max=0,maxhi=0,ps=0; + EventDataType cmin=0,cmax=0, cps=0, cpshi=0, cmaxipap=0, min=0,max=0,maxipap=0,ps=0,pshi=0; Machine *mach=NULL,*lastmach=NULL; PRTypes lastpr=PR_UNKNOWN, prelief=PR_UNKNOWN; short prelset=0, lastprelset=-1; @@ -546,21 +552,41 @@ QString Summary::GenerateHTML() prelset=round(day->settings_wavg(CPAP_PresReliefSet)); mode=(CPAPMode)(int)round(day->settings_wavg(CPAP_Mode)); mach=day->machine; - if (mode>=MODE_ASV) { - min=day->settings_min(CPAP_EPAP); - max=day->settings_max(CPAP_IPAPLo); - maxhi=day->settings_max(CPAP_IPAPHi); - } else if (mode>=MODE_BIPAP) { - min=day->settings_min(CPAP_EPAP); - max=day->settings_max(CPAP_IPAP); - ps=day->settings_max(CPAP_PS); - } else if (mode>=MODE_APAP) { + + min=max=ps=pshi=maxipap=0; + + if (mode==MODE_CPAP) { + min=day->settings_min(CPAP_Pressure); + } else if (modesettings_min(CPAP_PressureMin); max=day->settings_max(CPAP_PressureMax); } else { - min=day->settings_min(CPAP_Pressure); + // BIPAP or ASV machines + // min & max hold EPAP + if (day->settingExists(CPAP_EPAPLo)) { + min=day->settings_min(CPAP_EPAPLo); + } else if (day->settingExists(CPAP_EPAP)) { + max=min=day->settings_min(CPAP_EPAP); + } + if (day->settingExists(CPAP_EPAPHi)) { + max=day->settings_min(CPAP_EPAPHi); + } + + if (day->settingExists(CPAP_PSMin)) { + ps=day->settings_min(CPAP_PSMin); + } else if (day->settingExists(CPAP_PS)) { + pshi=ps=day->settings_min(CPAP_PS); + } + if (day->settingExists(CPAP_PSMax)) { + pshi=day->settings_max(CPAP_PSMax); + } + if (day->settingExists(CPAP_IPAPHi)) { + maxipap=day->settings_max(CPAP_IPAPHi); + } + } - if ((mode!=cmode) || (min!=cmin) || (max!=cmax) || (ps!=cps) || (mach!=lastmach) || (prelset!=lastprelset)) { + + if ((mode!=cmode) || (min!=cmin) || (max!=cmax) || (ps!=cps) || (pshi!=cpshi) || (maxipap!=cmaxipap) || (mach!=lastmach) || (prelset!=lastprelset)) { if ((cmode!=MODE_UNKNOWN) && (lastmach!=NULL)) { first=date.addDays(1); int days=PROFILE.countDays(MT_CPAP,first,last); @@ -573,8 +599,9 @@ QString Summary::GenerateHTML() rx.mode=cmode; rx.min=cmin; rx.max=cmax; - rx.ps=ps; - rx.maxhi=cmaxhi; + rx.ps=cps; + rx.pshi=cpshi; + rx.maxipap=cmaxipap; rx.prelief=lastpr; rx.prelset=lastprelset; rx.machine=lastmach; @@ -596,7 +623,8 @@ QString Summary::GenerateHTML() cmin=min; cmax=max; cps=ps; - cmaxhi=maxhi; + cpshi=pshi; + cmaxipap=maxipap; lastpr=prelief; lastprelset=prelset; last=date; @@ -626,7 +654,8 @@ QString Summary::GenerateHTML() rx.min=min; rx.max=max; rx.ps=ps; - rx.maxhi=maxhi; + rx.pshi=pshi; + rx.maxipap=maxipap; rx.prelief=prelief; rx.prelset=prelset; rx.machine=mach; @@ -709,6 +738,7 @@ QString Summary::GenerateHTML() tmpRX[ls]->highlight=1; //best CPAPMode mode=(CPAPMode)(int)PROFILE.calcSettingsMax(CPAP_Mode,MT_CPAP,tmpRX[ls]->first,tmpRX[ls]->last); + if (mode") .arg(tr("Best RX Setting")); @@ -740,7 +773,7 @@ QString Summary::GenerateHTML() recbox+=QString("").arg(STR_TR_Mode).arg(modestr); recbox+=QString("").arg(minstr).arg(tmpRX[ls]->min,0,'f',1).arg(STR_UNIT_CMH2O); if (!maxstr.isEmpty()) recbox+=QString("").arg(maxstr).arg(tmpRX[ls]->max,0,'f',1).arg(STR_UNIT_CMH2O); - if (!maxhistr.isEmpty()) recbox+=QString("").arg(maxhistr).arg(tmpRX[ls]->maxhi,0,'f',1).arg(STR_UNIT_CMH2O); + if (!maxhistr.isEmpty()) recbox+=QString("").arg(maxhistr).arg(tmpRX[ls]->maxipap,0,'f',1).arg(STR_UNIT_CMH2O); recbox+="
%3
%1%2
%1%2%3
%1%2%3
%1%2%3
%1%2%3
"; recbox+=QString(" "); @@ -776,7 +809,7 @@ QString Summary::GenerateHTML() recbox+=QString("%1%2").arg(STR_TR_Mode).arg(modestr); recbox+=QString("%1%2%3").arg(minstr).arg(tmpRX[0]->min,0,'f',1).arg(STR_UNIT_CMH2O); if (!maxstr.isEmpty()) recbox+=QString("%1%2%3").arg(maxstr).arg(tmpRX[0]->max,0,'f',1).arg(STR_UNIT_CMH2O); - if (!maxhistr.isEmpty()) recbox+=QString("%1%2%3").arg(maxhistr).arg(tmpRX[0]->maxhi,0,'f',1).arg(STR_UNIT_CMH2O); + if (!maxhistr.isEmpty()) recbox+=QString("%1%2%3").arg(maxhistr).arg(tmpRX[0]->maxipap,0,'f',1).arg(STR_UNIT_CMH2O); recbox+=""; } @@ -792,30 +825,17 @@ QString Summary::GenerateHTML() html+=QString(""); QString extratxt; - if (cpapmode>=MODE_ASV) { - extratxt=QString("") - .arg(STR_TR_EPAP).arg(STR_TR_IPAPLo).arg(STR_TR_IPAPHi).arg(tr("PS Min")).arg(tr("PS Max")); - } else if (cpapmode>=MODE_BIPAP) { - extratxt=QString("") - .arg(STR_TR_EPAP).arg(STR_TR_IPAP).arg(STR_TR_PS); - } else if (cpapmode>MODE_CPAP) { - extratxt=QString("") - .arg(tr("Min Pres.")).arg(tr("Max Pres.")); - } else { - extratxt=QString("") - .arg(STR_TR_Pressure); - } QString tooltip; - html+=QString("%9") + html+=QString("") .arg(STR_TR_First) .arg(STR_TR_Last) .arg(tr("Days")) .arg(ahitxt) - .arg(tr("FL")) + .arg(tr("FL")) .arg(STR_TR_Machine) - .arg(STR_TR_Mode) .arg(tr("Pr. Rel.")) - .arg(extratxt); + .arg(STR_TR_Mode) + .arg("Pressure Settings"); for (int i=0;i=MODE_ASV) { - extratxt=QString("") - .arg(rx.max,0,'f',decimals).arg(rx.maxhi,0,'f',decimals).arg(rx.max-rx.min,0,'f',decimals).arg(rx.maxhi-rx.min,0,'f',decimals); - - tooltip=QString("%1 %2% ").arg(machstr).arg(percentile*100.0)+STR_TR_EPAP+ - QString("=%1
%2% ").arg(rx.per1,0,'f',decimals).arg(percentile*100.0)+ - STR_TR_IPAP+QString("=%1").arg(rx.per2,0,'f',decimals); - } else if (mode>=MODE_BIPAP) { - extratxt=QString("") - .arg(rx.max,0,'f',decimals).arg(rx.ps,0,'f',decimals); + extratxt="
%1%2%3%4%5%1%2%3%1%2%1
%1%2%3%4%5%6%7%8
%1%2%3%4%5%6%7%8%9
%1%2%3%4%1%2
"; +// tooltip=QString("%1 %2% ").arg(machstr).arg(percentile*100.0)+STR_TR_EPAP+ +// QString("=%1
%2% ").arg(rx.per1,0,'f',decimals).arg(percentile*100.0)+ +// STR_TR_IPAP+QString("=%1").arg(rx.per2,0,'f',decimals); + if(mode>=MODE_BIPAP) { + if (rx.min>0) { + extratxt+=QString(""; + if (rx.maxipap>0) { + extratxt+=QString("") + .arg(rx.maxipap,4,'f',1); + } tooltip=QString("%1 %2% ").arg(machstr).arg(percentile*100.0)+ STR_TR_EPAP+ QString("=%1
%2% ").arg(rx.per1,0,'f',decimals) .arg(percentile*100.0) +STR_TR_IPAP+QString("=%1").arg(rx.per2,0,'f',decimals); } else if (mode>MODE_CPAP) { - extratxt=QString("").arg(rx.max,0,'f',decimals); + extratxt+=QString("") + .arg(rx.min,4,'f',1) + .arg(rx.max,4,'f',1) + .arg(STR_UNIT_CMH2O); tooltip=QString("%1 %2% ").arg(machstr).arg(percentile*100.0)+STR_TR_Pressure+ QString("=%2").arg(rx.per1,0,'f',decimals); } else { + if (cpapmode>MODE_CPAP) { - extratxt=""; + extratxt+=QString("").arg(rx.min,4,'f',1).arg(STR_UNIT_CMH2O); tooltip=QString("%1").arg(machstr); } else { - extratxt=""; + extratxt+=""; tooltip=""; } } + extratxt+="
EPAP %1") + .arg(rx.min,4,'f',1); + } + if ((rx.max>0) && (rx.min!=rx.max)) { + extratxt+=QString(" - %2") + .arg(rx.max,4,'f',1); + } + extratxt+=""; + if (rx.ps>0) { + extratxt+=QString("PS %1") + .arg(rx.ps,4,'f',1); + } + if ((rx.pshi>0) && (rx.ps!=rx.pshi)) { + extratxt+=QString(" - %2") + .arg(rx.pshi,4,'f',1); + } + extratxt+="IPAP %1%1APAP %1 - %2 CPAP %1
"; QString presrel; if (rx.prelset>0) { presrel=schema::channel[CPAP_PresReliefType].option(int(rx.prelief)); @@ -878,18 +920,17 @@ QString Summary::GenerateHTML() tooltipshow=QString("tooltip.show(\"%1\");").arg(tooltip); tooltiphide="tooltip.hide();"; } - html+=QString("%3%4%5%6%7%8%9%10%11%12") + html+=QString("%3%4%5%6%7%8%9%10%11") .arg(rx.first.toString(Qt::ISODate)) .arg(rx.last.toString(Qt::ISODate)) .arg(rx.first.toString(Qt::SystemLocaleShortDate)) .arg(rx.last.toString(Qt::SystemLocaleShortDate)) .arg(rx.days) .arg(rx.ahi,0,'f',decimals) - .arg(rx.fl,0,'f',decimals) + .arg(rx.fl,0,'f',decimals) // Not the best way to do this.. Todo: Add an extra field for data.. .arg(rx.machine->GetClass()) - .arg(schema::channel[CPAP_Mode].option(int(rx.mode)-1)) .arg(presrel) - .arg(rx.min,0,'f',decimals) + .arg(schema::channel[CPAP_Mode].option(int(rx.mode)-1)) .arg(extratxt) .arg(tooltipshow) .arg(tooltiphide);