From 09f47ef2f196b5eba142ace0b5ff87bf8aa2bc61 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 4 Mar 2016 00:23:18 +1000 Subject: [PATCH] Disable Flex EPAP trace, seeing it doesn't want to plot. Will revisit later --- sleepyhead/Graphs/MinutesAtPressure.cpp | 8 +++----- sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp | 8 ++++---- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/sleepyhead/Graphs/MinutesAtPressure.cpp b/sleepyhead/Graphs/MinutesAtPressure.cpp index 9749fa53..d143c8b1 100644 --- a/sleepyhead/Graphs/MinutesAtPressure.cpp +++ b/sleepyhead/Graphs/MinutesAtPressure.cpp @@ -286,7 +286,6 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r row++; } -#ifdef UGLYLINES float maxmins = float(maxtime) / 60.0; float ymult = height / maxmins; @@ -308,7 +307,7 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r float minutes = float(it.value()) / 60.0; y2 = minutes * ymult; - painter.drawLine(xpos, bottom-y1, xpos+pix, bottom-y2); + // painter.drawLine(xpos, bottom-y1, xpos+pix, bottom-y2); y1 = y2; xpos += pix; } @@ -349,7 +348,7 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r schema::ChanType type = chan.type(); if (type == schema::SPAN) continue; - painter.setPen(QPen(QColor(chan.defaultColor()), 2)); + //painter.setPen(QPen(QColor(chan.defaultColor()), 2)); eit = events.find(code); xpos = left;//+pix/2; @@ -362,7 +361,7 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r y2 = value * emult; //painter.drawPoint(xpos, bottom-y1); - painter.drawLine(xpos, bottom-y1, xpos+pix, bottom-y2); + // painter.drawLine(xpos, bottom-y1, xpos+pix, bottom-y2); xpos += pix; y1 = y2; @@ -371,7 +370,6 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r } } -#endif // QString txt=QString("%1 %2").arg(maxmins).arg(float(maxevents * 60.0) / maxmins); // graph.renderText(txt, rect.left(), rect.top()-10); diff --git a/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp b/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp index c85ce340..83d67d8a 100644 --- a/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/prs1_loader.cpp @@ -1428,10 +1428,10 @@ bool PRS1Import::ParseF0Events() // Perhaps this check is not necessary, as it will theoretically add extra resolution to pressure chart // for bipap models and above??? - if (mode <= MODE_BILEVEL_FIXED) { - if (!(EPAP = session->AddEventList(CPAP_EPAP, EVL_Event, 0.1F))) { return false; } - EPAP->AddEvent(t, data[0]); - } +// if (mode <= MODE_BILEVEL_FIXED) { +// if (!(EPAP = session->AddEventList(CPAP_EPAP, EVL_Event, 0.1F))) { return false; } +// EPAP->AddEvent(t, data[0]); +// } } break;