From 1b67688b121cb30eb4a174d822168f0f1cde94fa Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Tue, 3 Sep 2019 12:56:10 -0700 Subject: [PATCH] Fix problem with advanced graphs. Update release notes. --- oscar/daily.cpp | 22 ++++++++++++++++------ oscar/docs/release_notes.html | 6 +++++- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 6da28052..b4b029b5 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -64,7 +64,10 @@ inline QString channelInfo(ChannelID code) { // + (schema::channel[code].units() != "0" ? "\n("+schema::channel[code].units()+")" : ""); } - +// +// List here the graph codes in the order they are to be displayed. +// Do NOT list a code twice, or Oscar will crash when the profile is closed! +// // Standard graph order const QList standardGraphOrder = {STR_GRAPH_SleepFlags, STR_GRAPH_FlowRate, STR_GRAPH_Pressure, STR_GRAPH_LeakRate, STR_GRAPH_FlowLimitation, STR_GRAPH_Snore, STR_GRAPH_TidalVolume, STR_GRAPH_MaskPressure, STR_GRAPH_RespRate, STR_GRAPH_MinuteVent, @@ -78,7 +81,7 @@ const QList standardGraphOrder = {STR_GRAPH_SleepFlags, STR_GRAPH_FlowR const QList advancedGraphOrder = {STR_GRAPH_SleepFlags, STR_GRAPH_FlowRate, STR_GRAPH_MaskPressure, STR_GRAPH_TidalVolume, STR_GRAPH_MinuteVent, STR_GRAPH_Ti, STR_GRAPH_Te, STR_GRAPH_FlowLimitation, STR_GRAPH_Pressure, STR_GRAPH_LeakRate, STR_GRAPH_Snore, STR_GRAPH_RespRate, STR_GRAPH_PTB, STR_GRAPH_RespEvent, - STR_GRAPH_Ti, STR_GRAPH_Te, STR_GRAPH_SleepStage, STR_GRAPH_Inclination, STR_GRAPH_Orientation, STR_GRAPH_TestChan1, + STR_GRAPH_SleepStage, STR_GRAPH_Inclination, STR_GRAPH_Orientation, STR_GRAPH_TestChan1, STR_GRAPH_Oxi_Pulse, STR_GRAPH_Oxi_SPO2, STR_GRAPH_Oxi_Perf, STR_GRAPH_Oxi_Plethy, STR_GRAPH_AHI, STR_GRAPH_TAP }; @@ -215,16 +218,19 @@ Daily::Daily(QWidget *parent,gGraphView * shared) graphlist[STR_GRAPH_SleepFlags] = SF = new gGraph(STR_GRAPH_SleepFlags, GraphView, STR_TR_EventFlags, STR_TR_EventFlags, default_height); SF->setPinned(true); + //============================================ + // Create graphs from 'interesting' CPAP codes + // + // If this list of codes is changed, you must + // also adjust the standard and advanced graph + // order at the beginning of daily.cpp. + //============================================ const ChannelID cpapcodes[] = { CPAP_FlowRate, CPAP_Pressure, CPAP_Leak, CPAP_FLG, CPAP_Snore, CPAP_TidalVolume, CPAP_MaskPressure, CPAP_RespRate, CPAP_MinuteVent, CPAP_PTB, CPAP_RespEvent, CPAP_Ti, CPAP_Te, /* CPAP_IE, */ ZEO_SleepStage, POS_Inclination, POS_Orientation, CPAP_Test1 }; - const ChannelID oximetercodes[] = { - OXI_Pulse, OXI_SPO2, OXI_Perf, OXI_Plethy - }; - // Create graphs from the cpap code list int cpapsize = sizeof(cpapcodes) / sizeof(ChannelID); @@ -234,6 +240,10 @@ Daily::Daily(QWidget *parent,gGraphView * shared) // qDebug() << "Creating graph for code" << code << schema::channel[code].code(); } + const ChannelID oximetercodes[] = { + OXI_Pulse, OXI_SPO2, OXI_Perf, OXI_Plethy + }; + // Add graphs from the Oximeter code list int oxisize = sizeof(oximetercodes) / sizeof(ChannelID); diff --git a/oscar/docs/release_notes.html b/oscar/docs/release_notes.html index ae516146..f4f87ed9 100644 --- a/oscar/docs/release_notes.html +++ b/oscar/docs/release_notes.html @@ -10,7 +10,11 @@ Which was written and copyright 2011-2018 © Mark Watkins Changes and fixes in OSCAR **AFTER** v1.1.0-testing-4
  • Portions of OSCAR are © 2019 by The OSCAR Team
  • -
  • [fix] Show a progress bar when setting range to a large number of days
  • +
  • [new] Default graphs and View/reset graphs use a different order for advanced CPAP modes
  • +
  • [new] Add preference setting to include serial number on machine settings list
  • +
  • [fix] Correct formatting of event number in Daily Events tab
  • +
  • [fix] Correct timezone offset for somnopose imports
  • +
  • [fix] Show a progress bar when setting Overview range to a large number of days