From ce48401f08f3dd6b782007b7e67e0ff2f7fd6d5f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 19 Nov 2013 14:42:10 +1000 Subject: [PATCH] Overview linechart preference, ResMed pressure fixes (Needs Reimport) --- sleepyhead/Graphs/gGraphView.cpp | 13 +- sleepyhead/Graphs/gSummaryChart.cpp | 40 ++- sleepyhead/SleepLib/common.cpp | 8 +- sleepyhead/SleepLib/common.h | 2 + .../SleepLib/loader_plugins/resmed_loader.cpp | 54 +++- sleepyhead/SleepLib/machine.cpp | 2 +- sleepyhead/SleepLib/machine_common.h | 2 +- sleepyhead/SleepLib/profiles.h | 8 + sleepyhead/SleepLib/schema.cpp | 2 + sleepyhead/daily.cpp | 100 ++++-- sleepyhead/docs/channels.xml | 4 +- sleepyhead/overview.cpp | 2 +- sleepyhead/preferencesdialog.cpp | 3 + sleepyhead/preferencesdialog.ui | 299 ++++++++++-------- 14 files changed, 332 insertions(+), 207 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 1e66b784..96f55681 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -777,15 +777,8 @@ void gToolTip::paint() //actually paints it. { if (!m_visible) return; -#ifdef Q_OS_MAC - // Using this solves the wavy text bug, but is a fraction slower - bool usepixmap=m_graphview->usePixmapCache(); -#else - // Slower on Linux in this case.. - bool usepixmap=false; -#endif - int x=m_pos.x();// - tw / 2; - int y=m_pos.y();// - th; + int x=m_pos.x(); + int y=m_pos.y(); QPainter painter(m_graphview); @@ -804,7 +797,7 @@ void gToolTip::paint() //actually paints it. int z=rect.x()+rect.width(); if (z>m_graphview->width()-10) { - rect.setLeft(m_graphview->width()-2-rect.width());//m_pos.x()-m_spacer); + rect.setLeft(m_graphview->width()-2-rect.width()); rect.setRight(m_graphview->width()-2); } int h=rect.height(); diff --git a/sleepyhead/Graphs/gSummaryChart.cpp b/sleepyhead/Graphs/gSummaryChart.cpp index a58ff2d4..0003e024 100644 --- a/sleepyhead/Graphs/gSummaryChart.cpp +++ b/sleepyhead/Graphs/gSummaryChart.cpp @@ -21,13 +21,8 @@ SummaryChart::SummaryChart(QString label,GraphType type) addVertexBuffer(points=new gVertexBuffer(20000,GL_POINTS)); quads->forceAntiAlias(true); - points->setSize(10); - if (m_graphtype==GT_POINTS) { - lines->setSize(4); - } else - lines->setSize(1.5); - outlines->setSize(1); + //lines->setBlendFunc(GL_SRC_COLOR, GL_ZERO); //lines->forceAntiAlias(false); @@ -298,6 +293,22 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) { if (!m_visible) return; + points->setSize(10); + + + GraphType graphtype=m_graphtype; + + if (graphtype==GT_LINE || graphtype==GT_POINTS) { + bool pts=PROFILE.appearance->overviewLinechartMode()==OLC_Lines; + graphtype=pts ? GT_POINTS : GT_LINE; + } + + if (graphtype==GT_POINTS) { + lines->setSize(4); + } else + lines->setSize(1.5); + + rtop=top; gVertexBuffer *outlines2=w.lines(); // outlines2->setColor(Qt::black); @@ -441,11 +452,14 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) if (zd==hl_day) { QColor col=QColor("red"); col.setAlpha(64); - if (m_graphtype!=GT_POINTS) + if (graphtype!=GT_POINTS) { quads->add(x1-1,top,x1-1,top+height,x2,top+height,x2,top,col.rgba()); + } else { + quads->add((x1+barw/2)-5,top,(x1+barw/2)-5,top+height,(x2-barw/2)+5,top+height,(x2-barw/2)+5,top,col.rgba()); + } } - if (m_graphtype==GT_SESSIONS) { + if (graphtype==GT_SESSIONS) { int j; QHash >::iterator times=m_times.find(zd); QColor col=m_colors[0]; @@ -544,7 +558,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) tmp-=miny; h=tmp*ymult; // height in pixels - if (m_graphtype==GT_BAR) { + if (graphtype==GT_BAR) { GLuint col1=col.rgba(); GLuint col2=brighten(col).rgba(); @@ -556,7 +570,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) if (outlines->full()) qDebug() << "WTF??? Outlines full in SummaryChart::paint()"; } // if (bar py-=h; - } else if (m_graphtype==GT_LINE) { // if (m_graphtype==GT_BAR + } else if (graphtype==GT_LINE) { // if (m_graphtype==GT_BAR GLuint col1=col.rgba(); GLuint col2=m_colors[j].rgba(); px2=px+barw; @@ -576,7 +590,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) } lastX[j]=px2; lastY[j]=py2; - } else if (m_graphtype==GT_POINTS) { + } else if (graphtype==GT_POINTS) { GLuint col1=col.rgba(); GLuint col2=m_colors[j].rgba(); px2=px+barw; @@ -588,13 +602,13 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) } if (zd==hl_day) { - points->add(px2-barw/2,py2,QColor("red").rgba()); + points->add(px2-barw/2,py2,col2); } if (lastdaygood) { lines->add(lastX[j]-barw/2,lastY[j],px2-barw/2,py2,col2); } else { -// lines->add(x1-1,py2,x2+1,py2,col1); + lines->add(px+barw/2-1,py2,px+barw/2+1,py2,col1); } lastX[j]=px2; lastY[j]=py2; diff --git a/sleepyhead/SleepLib/common.cpp b/sleepyhead/SleepLib/common.cpp index 7db8098b..59fb23ac 100644 --- a/sleepyhead/SleepLib/common.cpp +++ b/sleepyhead/SleepLib/common.cpp @@ -127,6 +127,8 @@ QString STR_TR_CPAP; // Constant Positive Airway Pressure QString STR_TR_BIPAP; // Bi-Level Positive Airway Pressure QString STR_TR_BiLevel; // Another name for BiPAP QString STR_TR_EPAP; // Expiratory Positive Airway Pressure +QString STR_TR_EPAPLo; // Expiratory Positive Airway Pressure, Low +QString STR_TR_EPAPHi; // Expiratory Positive Airway Pressure, High QString STR_TR_IPAP; // Inspiratory Positive Airway Pressure QString STR_TR_IPAPLo; // Inspiratory Positive Airway Pressure, Low QString STR_TR_IPAPHi; // Inspiratory Positive Airway Pressure, High @@ -278,9 +280,11 @@ void initializeStrings() STR_TR_BIPAP=QObject::tr("BiPAP"); // Bi-Level Positive Airway Pressure STR_TR_BiLevel=QObject::tr("Bi-Level"); // Another name for BiPAP STR_TR_EPAP=QObject::tr("EPAP"); // Expiratory Positive Airway Pressure + STR_TR_EPAPLo=QObject::tr("Min EPAP"); // Lower Expiratory Positive Airway Pressure + STR_TR_EPAPHi=QObject::tr("Max EPAP"); // Higher Expiratory Positive Airway Pressure STR_TR_IPAP=QObject::tr("IPAP"); // Inspiratory Positive Airway Pressure - STR_TR_IPAPLo=QObject::tr("IPAPLo"); // Inspiratory Positive Airway Pressure, Low - STR_TR_IPAPHi=QObject::tr("IPAPHi"); // Inspiratory Positive Airway Pressure, High + STR_TR_IPAPLo=QObject::tr("Min IPAP"); // Lower Inspiratory Positive Airway Pressure + STR_TR_IPAPHi=QObject::tr("Max IPAP"); // Higher Inspiratory Positive Airway Pressure STR_TR_APAP=QObject::tr("APAP"); // Automatic Positive Airway Pressure STR_TR_ASV=QObject::tr("ASV"); // Assisted Servo Ventilator STR_TR_STASV=QObject::tr("ST/ASV"); diff --git a/sleepyhead/SleepLib/common.h b/sleepyhead/SleepLib/common.h index c0e5bd6d..a3140f32 100644 --- a/sleepyhead/SleepLib/common.h +++ b/sleepyhead/SleepLib/common.h @@ -134,6 +134,8 @@ extern QString STR_TR_CPAP; // Constant Positive Airway Pressure extern QString STR_TR_BIPAP; // Bi-Level Positive Airway Pressure extern QString STR_TR_BiLevel; // Another name for BiPAP extern QString STR_TR_EPAP; // Expiratory Positive Airway Pressure +extern QString STR_TR_EPAPLo; // Expiratory Positive Airway Pressure, Low +extern QString STR_TR_EPAPHi; // Expiratory Positive Airway Pressure, High extern QString STR_TR_IPAP; // Inspiratory Positive Airway Pressure extern QString STR_TR_IPAPLo; // Inspiratory Positive Airway Pressure, Low extern QString STR_TR_IPAPHi; // Inspiratory Positive Airway Pressure, High diff --git a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp index 5cc3ae2c..4cc8e38e 100644 --- a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp @@ -414,6 +414,7 @@ int ResmedLoader::Open(QString & path,Profile *profile) int j=i.value().toInt(&ok); if (ok) m->properties[STR_PROP_Model]=RMS9ModelMap[j]; + m->properties[STR_PROP_ModelNumber]=i.value(); } } @@ -1244,12 +1245,12 @@ int ResmedLoader::Open(QString & path,Profile *profile) - sess->settings[CPAP_PresReliefType]=PR_EPR; // Ramp, Fulltime // AutoSV machines don't have both fields sig=stredf.lookupSignal(RMS9_EPR); if (sig) { + sess->settings[CPAP_PresReliefType]=PR_EPR; prmode=EventDataType(sig->data[dn])*sig->gain; // Off, if (prmode<0) { @@ -1284,42 +1285,66 @@ int ResmedLoader::Open(QString & path,Profile *profile) } } else if (mode>5) { if (mode>=7) - sess->settings[CPAP_Mode]=MODE_ASV; + sess->settings[CPAP_Mode]=MODE_ASV; // interestingly, last digit of model number matches these when in full mode. else sess->settings[CPAP_Mode]=MODE_BIPAP; EventDataType tmp,epap=0,ipap=0; + + + // All S9 machines have Set Pressure + // Elite has Min Pressure and Max Pressure + // VPAP Auto has EPAP, Min EPAP, IPAP and Max IPAP, and PS + // VPAP Adapt 36007 has just EPAP and PSLo/Hi, + // VPAP Adapt 36037 has EPAPLo, EPAPHi and PSLo/Hi + + + if (stredf.lookup.contains("EPAP")) { + sig=stredf.lookup["EPAP"]; + epap=sig->data[dn]*sig->gain; + sess->settings[CPAP_EPAP]=epap; + } + if (stredf.lookup.contains("IPAP")) { + sig=stredf.lookup["IPAP"]; + ipap=sig->data[dn]*sig->gain; + sess->settings[CPAP_IPAP]=ipap; + } + if (stredf.lookup.contains("Min EPAP")) { sig=stredf.lookup["Min EPAP"]; epap=sig->data[dn]*sig->gain; - sess->settings[CPAP_EPAP]=epap; + sess->settings[CPAP_EPAPLo]=epap; + } + if (stredf.lookup.contains("Max EPAP")) { + sig=stredf.lookup["Max EPAP"]; + epap=sig->data[dn]*sig->gain; + sess->settings[CPAP_EPAPHi]=epap; + } + + if (stredf.lookup.contains("Min IPAP")) { + sig=stredf.lookup["Min IPAP"]; + ipap=sig->data[dn]*sig->gain; + sess->settings[CPAP_IPAPLo]=ipap; } if (stredf.lookup.contains("Max IPAP")) { sig=stredf.lookup["Max IPAP"]; ipap=sig->data[dn]*sig->gain; - sess->settings[CPAP_IPAP]=ipap; + sess->settings[CPAP_IPAPHi]=ipap; } if (stredf.lookup.contains("PS")) { sig=stredf.lookup["PS"]; tmp=sig->data[dn]*sig->gain; - sess->settings[CPAP_PS]=tmp; // technically this is IPAP-EPAP - if (!ipap) { - // not really possible. but anyway, just in case.. - sess->settings[CPAP_IPAP]=epap+tmp; - } + sess->settings[CPAP_PS]=tmp; // plain VPAP Pressure support } if (stredf.lookup.contains("Min PS")) { sig=stredf.lookup["Min PS"]; tmp=sig->data[dn]*sig->gain; sess->settings[CPAP_PSMin]=tmp; - sess->settings[CPAP_IPAPLo]=epap+tmp; - sess->setMin(CPAP_IPAP,epap+tmp); } if (stredf.lookup.contains("Max PS")) { sig=stredf.lookup["Max PS"]; tmp=sig->data[dn]*sig->gain; sess->settings[CPAP_PSMax]=tmp; - sess->settings[CPAP_IPAPHi]=epap+tmp; } if (stredf.lookup.contains("RR")) { // Is this a setting to force respiratory rate on S/T machines? sig=stredf.lookup["RR"]; @@ -1327,6 +1352,7 @@ int ResmedLoader::Open(QString & path,Profile *profile) sess->settings[CPAP_RespRate]=tmp*sig->gain; } + // this is not a setting on any machine I've played with, I think it's just an indication of the type of motor if (stredf.lookup.contains("Easy-Breathe")) { sig=stredf.lookup["Easy-Breathe"]; tmp=sig->data[dn]*sig->gain; @@ -2208,8 +2234,10 @@ void ResInitModelMap() // VPAP Auto Series (+H5i +Climate Control) RMS9ModelMap[36006]=RMS9ModelMap[36016]=RMS9ModelMap[36026]=RMS9_STR_VPAP_Auto; + // VPAP Adapt Series (+H5i +Climate Control) - RMS9ModelMap[36007]=RMS9ModelMap[36017]=RMS9ModelMap[36027]=RMS9ModelMap[36367]=RMS9_STR_VPAP_Adapt; + // Trev's 36037 supports variable EPAP... + RMS9ModelMap[36037]=RMS9ModelMap[36007]=RMS9ModelMap[36017]=RMS9ModelMap[36027]=RMS9ModelMap[36367]=RMS9_STR_VPAP_Adapt; // VPAP ST Series (+H5i +Climate Control) RMS9ModelMap[36008]=RMS9ModelMap[36018]=RMS9ModelMap[36028]=RMS9ModelMap[36108]= diff --git a/sleepyhead/SleepLib/machine.cpp b/sleepyhead/SleepLib/machine.cpp index a7911b8d..771edc40 100644 --- a/sleepyhead/SleepLib/machine.cpp +++ b/sleepyhead/SleepLib/machine.cpp @@ -446,7 +446,7 @@ SleepStage::~SleepStage() ChannelID NoChannel, SESSION_ENABLED; -ChannelID CPAP_IPAP, CPAP_IPAPLo, CPAP_IPAPHi, CPAP_EPAP, CPAP_Pressure, CPAP_PS, CPAP_Mode, CPAP_AHI, +ChannelID CPAP_IPAP, CPAP_IPAPLo, CPAP_IPAPHi, CPAP_EPAP, CPAP_EPAPLo, CPAP_EPAPHi, CPAP_Pressure, CPAP_PS, 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, diff --git a/sleepyhead/SleepLib/machine_common.h b/sleepyhead/SleepLib/machine_common.h index 7ce8067a..01c2ed6b 100644 --- a/sleepyhead/SleepLib/machine_common.h +++ b/sleepyhead/SleepLib/machine_common.h @@ -84,7 +84,7 @@ enum MCDataType extern ChannelID NoChannel,SESSION_ENABLED; -extern ChannelID CPAP_IPAP, CPAP_IPAPLo, CPAP_IPAPHi, CPAP_EPAP, 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_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, diff --git a/sleepyhead/SleepLib/profiles.h b/sleepyhead/SleepLib/profiles.h index 185db0bb..79939355 100644 --- a/sleepyhead/SleepLib/profiles.h +++ b/sleepyhead/SleepLib/profiles.h @@ -23,6 +23,7 @@ class Machine; enum Gender { GenderNotSpecified, Male, Female }; enum MaskType { Mask_Unknown, Mask_NasalPillows, Mask_Hybrid, Mask_StandardNasal, Mask_FullFace }; enum OverlayDisplayType { ODT_Bars, ODT_TopAndBottom }; +enum OverviewLinechartModes { OLC_Bartop, OLC_Lines }; class DoctorInfo; class UserInfo; @@ -226,6 +227,7 @@ const QString STR_AS_GraphSnapshots="EnableGraphSnapshots"; const QString STR_AS_Animations="AnimationsAndTransitions"; const QString STR_AS_SquareWave="SquareWavePlots"; const QString STR_AS_OverlayType="OverlayType"; +const QString STR_AS_OverviewLinechartMode="OverviewLinechartMode"; const QString STR_AS_UsePixmapCaching="UsePixmapCaching"; const QString STR_AS_AllowYAxisScaling="AllowYAxisScaling"; const QString STR_AS_GraphTooltips="GraphTooltips"; @@ -537,6 +539,7 @@ public: if (!m_profile->contains(STR_AS_GraphTooltips)) (*m_profile)[STR_AS_GraphTooltips]=true; if (!m_profile->contains(STR_AS_UsePixmapCaching)) (*m_profile)[STR_AS_UsePixmapCaching]=true; if (!m_profile->contains(STR_AS_OverlayType)) (*m_profile)[STR_AS_OverlayType]=ODT_Bars; + if (!m_profile->contains(STR_AS_OverviewLinechartMode)) (*m_profile)[STR_AS_OverviewLinechartMode]=OLC_Bartop; } ~AppearanceSettings() {} @@ -560,6 +563,9 @@ public: bool graphTooltips() { return (*m_profile)[STR_AS_GraphTooltips].toBool(); } //! \brief Returns the type of overlay flags (which are displayed over the Flow Waveform) OverlayDisplayType overlayType() { return (OverlayDisplayType )(*m_profile)[STR_AS_OverlayType].toInt(); } + //! \brief Returns the display type of Overview pages linechart + OverviewLinechartModes overviewLinechartMode() { return (OverviewLinechartModes )(*m_profile)[STR_AS_OverviewLinechartMode].toInt(); } + //! \brief Set the normal (unscaled) height of a graph. void setGraphHeight(int height) { (*m_profile)[STR_AS_GraphHeight]=height; } @@ -575,6 +581,8 @@ public: void setSquareWavePlots(bool sw) { (*m_profile)[STR_AS_SquareWave]=sw; } //! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform) void setOverlayType(OverlayDisplayType od) { (*m_profile)[STR_AS_OverlayType]=(int)od; } + //! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform) + void setOverviewLinechartMode(OverviewLinechartModes od) { (*m_profile)[STR_AS_OverviewLinechartMode]=(int)od; } //! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode void setAllowYAxisScaling(bool b) { (*m_profile)[STR_AS_AllowYAxisScaling]=b; } //! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode diff --git a/sleepyhead/SleepLib/schema.cpp b/sleepyhead/SleepLib/schema.cpp index 0c3e415d..3e7d0763 100644 --- a/sleepyhead/SleepLib/schema.cpp +++ b/sleepyhead/SleepLib/schema.cpp @@ -90,6 +90,8 @@ void init() schema::channel.add(GRP_CPAP,new Channel(CPAP_IPAPLo = 0x1110, DATA, SESSION, "IPAPLo", STR_TR_IPAPLo, QObject::tr("Lower Inspiratory Pressure"), STR_TR_IPAPLo, STR_UNIT_CMH2O, DEFAULT, QColor("orange"))); schema::channel.add(GRP_CPAP,new Channel(CPAP_IPAPHi = 0x1111, DATA, SESSION, "IPAPHi", STR_TR_IPAPHi, QObject::tr("Higher Inspiratory Pressure"), STR_TR_IPAPHi, STR_UNIT_CMH2O, DEFAULT, QColor("orange"))); schema::channel.add(GRP_CPAP,new Channel(CPAP_EPAP = 0x110E, DATA, SESSION, "EPAP", STR_TR_EPAP, QObject::tr("Expiratory Pressure"), STR_TR_EPAP, STR_UNIT_CMH2O, DEFAULT, QColor("light blue"))); + schema::channel.add(GRP_CPAP,new Channel(CPAP_EPAPLo = 0x111C, DATA, SESSION, "EPAPLo", STR_TR_EPAPLo, QObject::tr("Lower Expiratory Pressure"), STR_TR_EPAPLo, STR_UNIT_CMH2O, DEFAULT, QColor("light blue"))); + schema::channel.add(GRP_CPAP,new Channel(CPAP_EPAPHi = 0x111D, DATA, SESSION, "EPAPHi", STR_TR_EPAPHi, QObject::tr("Higher Expiratory Pressure"), STR_TR_EPAPHi, STR_UNIT_CMH2O, DEFAULT, QColor("aqua"))); schema::channel.add(GRP_CPAP,new Channel(CPAP_PS = 0x110F, DATA, SESSION, "PS", STR_TR_PS, QObject::tr("Pressure Support"), STR_TR_PS, STR_UNIT_CMH2O, DEFAULT, QColor("grey"))); schema::channel.add(GRP_CPAP,new Channel(CPAP_PSMin = 0x111A, SETTING, SESSION, "PSMin", QObject::tr("PS Min") , QObject::tr("Pressure Support Minimum"), QObject::tr("PS Min"), STR_UNIT_CMH2O, DEFAULT, QColor("dark cyan"))); schema::channel.add(GRP_CPAP,new Channel(CPAP_PSMax = 0x111B, SETTING, SESSION, "PSMax", QObject::tr("PS Max"), QObject::tr("Pressure Support Maximum"), QObject::tr("PS Max"), STR_UNIT_CMH2O, DEFAULT, QColor("dark magenta"))); diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 53154d5f..72b04ade 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -841,13 +841,15 @@ QString Daily::getMachineSettings(Day * cpap) { html=""; html+=QString("").arg(tr("Machine Settings")); html+=""; - int i=cpap->settings_max(CPAP_PresReliefType); - int j=cpap->settings_max(CPAP_PresReliefSet); - QString flexstr=(i>1) ? schema::channel[CPAP_PresReliefType].option(i)+" x"+QString::number(j) : STR_TR_None; - html+=QString("") - .arg(STR_TR_PrRelief) - .arg(schema::channel[CPAP_PresReliefType].description()) - .arg(flexstr); + if (cpap->settingExists(CPAP_PresReliefType)) { + int i=cpap->settings_max(CPAP_PresReliefType); + int j=cpap->settings_max(CPAP_PresReliefSet); + QString flexstr=(i>1) ? schema::channel[CPAP_PresReliefType].option(i)+" x"+QString::number(j) : STR_TR_None; + html+=QString("") + .arg(STR_TR_PrRelief) + .arg(schema::channel[CPAP_PresReliefType].description()) + .arg(flexstr); + } QString mclass=cpap->machine->GetClass(); if (mclass==STR_MACH_PRS1 || mclass==STR_MACH_FPIcon) { int humid=round(cpap->settings_wavg(CPAP_HumidSetting)); @@ -900,40 +902,76 @@ QString Daily::getCPAPInformation(Day * cpap) html+=tooltip; html+="\n"; CPAPMode mode=(CPAPMode)(int)cpap->settings_max(CPAP_Mode); - html+="\n"; + html+="\n"; html+="
%1
 
%1%2%3
%1%2%3
"+tr("PAP Setting")+": "; + html+="
"; + + + QString modestr; + + if (mode==MODE_CPAP) modestr=STR_TR_CPAP; + else if (mode==MODE_APAP) modestr=STR_TR_APAP; + else if (mode==MODE_BIPAP) modestr=STR_TR_BiLevel; + else if (mode==MODE_ASV) modestr=STR_TR_ASV; + else modestr=STR_TR_Unknown; + html+=tr("PAP Mode: %1
").arg(modestr); if (mode==MODE_CPAP) { EventDataType min=round(cpap->settings_wavg(CPAP_Pressure)*2)/2.0; - html+=STR_TR_CPAP+" "+QString::number(min)+STR_UNIT_CMH2O; + // eg: Pressure: 13cmH2O + html+=QString("%1: %2%3").arg(STR_TR_Pressure).arg(min).arg(STR_UNIT_CMH2O); } else if (mode==MODE_APAP) { EventDataType min=cpap->settings_min(CPAP_PressureMin); EventDataType max=cpap->settings_max(CPAP_PressureMax); - html+=STR_TR_APAP+" "+QString::number(min)+"-"+QString::number(max)+STR_UNIT_CMH2O; - } else if (mode==MODE_BIPAP) { - EventDataType epap=cpap->settings_min(CPAP_EPAP); - EventDataType ipap=cpap->settings_max(CPAP_IPAP); - EventDataType ps=cpap->settings_max(CPAP_PS); - html+=STR_TR_BiLevel+QString("
"+STR_TR_EPAP+": %1 "+STR_TR_IPAP+": %2 %3
"+STR_TR_PS+": %4") - .arg(epap,0,'f',1).arg(ipap,0,'f',1).arg(STR_UNIT_CMH2O).arg(ps,0,'f',1); - } - else if (mode==MODE_ASV) { - EventDataType epap=cpap->settings_min(CPAP_EPAP); - EventDataType low=cpap->settings_min(CPAP_IPAPLo); - EventDataType high=cpap->settings_max(CPAP_IPAPHi); - EventDataType psl=cpap->settings_min(CPAP_PSMin); - EventDataType psh=cpap->settings_max(CPAP_PSMax); - html+=tr("ASV")+QString("
"+STR_TR_EPAP+": %1 "+STR_TR_IPAP+": %2 - %3 %4
"+STR_TR_PS+": %5 / %6") - .arg(epap,0,'f',1) - .arg(low,0,'f',1) - .arg(high,0,'f',1) - .arg(STR_UNIT_CMH2O) + // eg: Pressure: 7.0-10.0cmH2O + html+=QString("%1: %2-%3%4").arg(STR_TR_Pressure).arg(min,0,'f',1).arg(max,0,'f',1).arg(STR_UNIT_CMH2O); + } else if (mode>=MODE_BIPAP) { + if (cpap->settingExists(CPAP_EPAPLo)) { + html+=QString(STR_TR_EPAPLo+": %1") + .arg(cpap->settings_min(CPAP_EPAPLo),0,'f',1); + + if (cpap->settingExists(CPAP_EPAPHi)) { + html+=QString("-%2") + .arg(cpap->settings_max(CPAP_EPAPHi),0,'f',1); + } + html+=STR_UNIT_CMH2O+"
"; + } else if (cpap->settingExists(CPAP_EPAP)) { + EventDataType epap=cpap->settings_min(CPAP_EPAP); + + html+=QString("%1: %2%3
").arg(STR_TR_EPAP) + .arg(epap,0,'f',1) + .arg(STR_UNIT_CMH2O); + + if (!cpap->settingExists(CPAP_IPAPHi)) { + if (cpap->settingExists(CPAP_PSMax)) { + html+=QString("%1: %2%3
").arg(STR_TR_IPAPHi) + .arg(epap+cpap->settings_max(CPAP_PSMax),0,'f',1) + .arg(STR_UNIT_CMH2O); + + } + } + } + if (cpap->settingExists(CPAP_IPAPHi)) { + html+=QString(STR_TR_IPAPHi+": %1"+STR_UNIT_CMH2O+"
") + .arg(cpap->settings_max(CPAP_IPAPHi),0,'f',1); + } else + if (cpap->settingExists(CPAP_IPAP)) { + html+=QString(STR_TR_IPAP+": %1"+STR_UNIT_CMH2O+"
") + .arg(cpap->settings_max(CPAP_IPAP),0,'f',1); + } + + if (cpap->settingExists(CPAP_PS)) { + html+=QString(STR_TR_PS+": %1"+STR_UNIT_CMH2O+"
") + .arg(cpap->settings_max(CPAP_PS),0,'f',1); + } else if (cpap->settingExists(CPAP_PSMin)) { + EventDataType psl=cpap->settings_min(CPAP_PSMin); + EventDataType psh=cpap->settings_max(CPAP_PSMax); + html+=QString(STR_TR_PS+": %1-%2"+STR_UNIT_CMH2O+"
") .arg(psl,0,'f',1) .arg(psh,0,'f',1); + } } - else html+=STR_TR_Unknown; - html+="
\n"; - // html+="
\n"; + html+="
\n"; return html; } diff --git a/sleepyhead/docs/channels.xml b/sleepyhead/docs/channels.xml index 9c9a9d01..74399ad5 100644 --- a/sleepyhead/docs/channels.xml +++ b/sleepyhead/docs/channels.xml @@ -11,8 +11,8 @@ Important: One id code per item, DO NOT CHANGE ID NUMBERS!!! - - + + diff --git a/sleepyhead/overview.cpp b/sleepyhead/overview.cpp index 9290f3f2..09778dd1 100644 --- a/sleepyhead/overview.cpp +++ b/sleepyhead/overview.cpp @@ -173,7 +173,7 @@ Overview::Overview(QWidget *parent,gGraphView * shared) : uc->addSlice(NoChannel, COLOR_Green, ST_HOURS); UC->AddLayer(uc); - fl=new SummaryChart(STR_TR_FL,GT_BAR); + fl=new SummaryChart(STR_TR_FL,GT_POINTS); fl->addSlice(CPAP_FlowLimit, COLOR_Brown, ST_CPH); FL->AddLayer(fl); diff --git a/sleepyhead/preferencesdialog.cpp b/sleepyhead/preferencesdialog.cpp index f35550d3..52edb9a7 100644 --- a/sleepyhead/preferencesdialog.cpp +++ b/sleepyhead/preferencesdialog.cpp @@ -207,6 +207,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) : ui->overlayFlagsCombo->setCurrentIndex(profile->appearance->overlayType()); + ui->overviewLinecharts->setCurrentIndex(profile->appearance->overviewLinechartMode()); ui->oximetryGroupBox->setChecked(profile->oxi->oximetryEnabled()); ui->oximetrySync->setChecked(profile->oxi->syncOximetry()); @@ -393,6 +394,8 @@ bool PreferencesDialog::Save() profile->cpap->setClockDrift(ui->clockDrift->value()); profile->appearance->setOverlayType((OverlayDisplayType)ui->overlayFlagsCombo->currentIndex()); + profile->appearance->setOverviewLinechartMode((OverviewLinechartModes)ui->overviewLinecharts->currentIndex()); + profile->cpap->setLeakMode(ui->leakModeCombo->currentIndex()); profile->cpap->setMaskType((MaskType)ui->maskTypeCombo->currentIndex()); diff --git a/sleepyhead/preferencesdialog.ui b/sleepyhead/preferencesdialog.ui index 62c75eb8..e8d9b640 100644 --- a/sleepyhead/preferencesdialog.ui +++ b/sleepyhead/preferencesdialog.ui @@ -10,7 +10,7 @@ 0 0 721 - 502 + 545 @@ -1922,148 +1922,44 @@ p, li { white-space: pre-wrap; } Graph Settings - - - - - 0 - 0 - - - - Overlay Flags - - - - - - - - 0 - 0 - - - - The visual method of displaying waveform overlay flags. - - + + - Standard Bars + Bar Tops - Top & Bottom Markers + Line Chart - - - - Graph Height - - - - - - - - 0 - 0 - - - - Default display height of graphs in pixels - - - 50 - - - 600 - - - 10 - - - 180 - - - - - - - Graph Tooltips - - - - + - Tooltip Timeout + Overview Linecharts Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - How long you want the tooltips to stay visible. - - - 1 - - - 150 - - - 10 - - - 50 - - - 1 - - - Qt::Horizontal - - - QSlider::TicksBelow - - - 10 - - - - - - - QFrame::StyledPanel - - - 5 - - - QLCDNumber::Flat - - - - - - - - - Scroll Dampening + + + + Qt::Vertical - + + + 20 + 40 + + + - + @@ -2111,18 +2007,155 @@ p, li { white-space: pre-wrap; } - - - - Qt::Vertical + + + + + + How long you want the tooltips to stay visible. + + + 1 + + + 150 + + + 10 + + + 50 + + + 1 + + + Qt::Horizontal + + + QSlider::TicksBelow + + + 10 + + + + + + + QFrame::StyledPanel + + + 5 + + + QLCDNumber::Flat + + + + + + + + + Scroll Dampening - - - 20 - 40 - + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - + + + + + + Tooltip Timeout + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + Default display height of graphs in pixels + + + 50 + + + 600 + + + 10 + + + 180 + + + + + + + Graph Tooltips + + + + + + + + 0 + 0 + + + + The visual method of displaying waveform overlay flags. + + + + + Standard Bars + + + + + Top & Bottom Markers + + + + + + + + Graph Height + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + Overlay Flags + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + +